/**
 * All of the CSS for the public-facing CSS source
 * for the MODEC motor model's specs.
 */
.actuator-adaptator-references{
  max-width: var(--max-container-width);
  width: 100%;
}

.actuator-adaptator-references h4{
  margin-left: 10px !important;
  margin-bottom: 0.5em !important;
  color: var(--color-primary);
  font-weight: 600;
}


.actuator-adaptator-references.container-align-left{
  margin-right: auto;
}

.actuator-adaptator-references.container-align-center{
  margin-left: auto;
  margin-right: auto;
}

.actuator-adaptator-references.container-align-right{
  margin-left: auto;
}

table.actuator-adaptator-references-table {
  width: 100%;
  text-align: center;
  font-size:1em;
  border-spacing: 0;
}

table.actuator-adaptator-references-table tbody tr td:nth-child(1) {
  background-color: #eee !important;
  font-weight: 600 !important;
}

table.actuator-adaptator-references-table{
  border-collapse: collapse;
}
table.actuator-adaptator-references-table th, table.actuator-adaptator-references-table td {
  border: 1px solid #ccc;
  padding: 4px;
}

table.actuator-adaptator-references-table td {
  background-color: white;
}

table.actuator-adaptator-references-table thead th {
  margin: 0;
  padding: 4px;
  font-size: .9em;
  font-weight: 600;
  vertical-align: center;
  color: #374047;
  background-color: #eee;
}
table.actuator-adaptator-references-table thead th:not(:first-child) {
  min-width: 75px;
  color: #374047;
  background-color: #eee;
}
table.actuator-adaptator-references-table thead tr:first-child th:first-child {
  width: fit-content;
  color: white;
  background-color: #b4007a;
}


table.actuator-adaptator-references-table tbody .chip{
  background-color: #fff;
  border: 1px solid #af0078;
  color: #af0078;
  padding: 0px 4px;
  margin: 0px 2px;
  border-radius: 10px;
  transition: all .33s ease 0s;
}

table.actuator-adaptator-references-table tbody .not-link.chip:hover{
  /*opacity: .8;*/
  color: white;
  background-color: #af0078;
  opacity: .8;
  transition: all .33s ease 0s;
}

table.actuator-adaptator-references-table tbody td a{
  font-weight: 400 !important;
  transition: all .33s ease 0s;
  line-height: 30px;
}
table.actuator-adaptator-references-table tbody a:hover .chip{
  /*opacity: .8;*/
  color: white;
  background-color: #af0078;
  transition: all .33s ease 0s;
}


@media only screen and (max-width: 600px){
  .actuator-adaptator-references{
    max-width: 100%;
    width: 100%;
  }
}

.actuator-adaptator-references-title{
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 10px;
}