/*---------------------
  Look up
-----------------------*/

.overview-content:not(:last-child) {
  margin-bottom: 16px;
}

.overview-content > a {
  display: block;
  margin-bottom: 20px;
}

.overview-content a img:first-child {
  max-height: 60px;
}

.overview-content a img:nth-child(2) {
  max-height: 80px;
}

.overview-content h4 {
  color: black;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.overview-content .nav-scroll ul {
  border-bottom: none;
  justify-content: center;
  margin-bottom: 24px;
}

.overview-content .nav-scroll ul button {
  font-size: 24px;
  font-weight: 700;
  color: black;
  background: #efefef;
  border-color: #B4B4B4;
  border-bottom-width: 5px;
  border-radius: 20px 20px 0 0;
  padding: 12px 24px;
  position: relative;
}

.overview-content .nav-scroll ul button::before {
  content: '';
  border-top: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.overview-content .nav-scroll ul button.active::before {
  border-left-color: #00A651;
}

.overview-content .nav-scroll ul button:hover,
.overview-content .nav-scroll ul button.active {
  border-color: #00A651;
  color: #004dbb;
}

.overview-content h3 {
  font-weight: 700;
}

.overview-content p {
  font-size: 18px;
  line-height: 24px;
  color: black;
}

.overview-content p:nth-child(3) {
  font-size: 14px;
  font-style: italic;
  color: #6C757D;
}

.btn-active {
  width: 100%;
  padding: 14px 28px;
  border-radius: 7px;
  background: #08C851;
  color: black;
  font-weight: 700;
}

.btn-active:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.form-lookup {
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-input {
  flex: 1;
}

.form-lookup input {
  min-height: 58px;
  border-radius: 9px;
  font-size: 14px;
}

.form-lookup input:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.form-lookup button {
  border-color: #08C851;
  background: #08C851;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 63px;
}

.form-lookup button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.service-info table.table-info {
  font-weight: 700;
  box-shadow: 0px 5.65px 5.65px 0px #00000017;
}

.service-info table.table-info td:nth-child(odd) {
  background: #E6F0FF;
}

.service-info .accordion-item:not(:last-child) {
  margin-bottom: 16px;
}

.service-info h2 .accordion-button {
  background-color: #D9D9D9;
  color: black;
  font-weight: 700;
}

.service-info h2 .accordion-button:focus {
  box-shadow: none;
}

.conditions-content li {
  position: relative;
}

.conditions-content li:not(:last-child) {
  margin-bottom: 8px;
}

.conditions-content li::before {
  content: '\f111';
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  font-size: 13px;
  color: #FF6900;
  display: inline-block;
  margin-right: 5px;
}

.conditions-content a {
  display: block;
  text-align: right;
  color: #FB2C36;
  margin-top: 40px;
}

.form-activation .form-group:not(:last-child) {
  margin-bottom: 16px;
}

.form-activation label {
  color: #004dbb;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-activation input,
.form-activation select {
  min-height: 59px;
  font-style: italic;
/*  color: #939393;*/
}

.form-activation input:focus,
.form-activation select:focus {
  box-shadow: none;
}

.form-activation input::placeholder,
.form-activation select::placeholder {
  color: #939393;
}

.form-activation #code {
  color: #f00;
  font-weight: 700;
  background-color: #efefef;
}

.instructions {
  margin-top: 24px;
}

.icon-box.left {
  flex-flow: row wrap;
  display: flex;
  align-items: center;
}

.icon-box-img {
  width: 55px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-bottom: 0;
}

.icon-box-text {
  flex: 1 1 0px;
  padding-left: 10px;
}

@media (max-width: 767px) {

  .service-info table {
    white-space: nowrap;
  }

  .form-lookup {
    justify-content: center;
  }
  
  .form-input {
    flex: auto;
  }

  .nav-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .overview-content .nav-scroll ul {
    flex-wrap: nowrap;
  }

  .overview-content .nav-scroll ul button {
    font-size: 20px;
  }
}