@charset "UTF-8";
.t-insurances__grid {
  background-image: linear-gradient(to bottom, #d0d0d0 -1%, #f5f5f5 2%);
  padding: 50px 0 50px 0;
}
@media (max-width: 1599.98px) {
  .t-insurances__grid {
    padding: 40px 0 40px 0;
  }
}
@media (max-width: 991.98px) {
  .t-insurances__grid {
    padding: 30px 0 30p 0;
  }
}

.t-filter {
  background: #007ac7;
}
.t-filter__container {
  display: flex;
  width: 100%;
}
@media (max-width: 991.98px) {
  .t-filter__container {
    display: block;
  }
}
.t-filter__item {
  flex: 1;
  height: 60px;
  opacity: 1;
  cursor: pointer;
  padding: 12px 60px 0 20px;
  position: relative;
}
.t-filter__item:hover {
  background: #2c4b70;
}
.t-filter__item:hover .t-filter__select {
  display: block;
}
.t-filter__item:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  height: 70%;
  width: 1px;
  background: #ffffff;
  opacity: 0.4;
  transform: translate(0, -50%);
}
@media (max-width: 991.98px) {
  .t-filter__item:after {
    display: none;
  }
}
.t-filter__item:last-child::after {
  display: none;
}
.t-filter__item-name {
  margin: 0;
  line-height: 1;
  color: #ffffff;
  opacity: 0.75;
  font-size: 0.625em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-filter__item-value {
  margin: 4px 0 0 0;
  font-size: 0.875em;
  font-weight: bold;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-filter__item-arrow {
  position: absolute;
  top: 12px;
  right: 22px;
  border-right: 1px solid #ffffff;
  border-top: 1px solid #ffffff;
  width: 20px;
  height: 20px;
  opacity: 0.75;
  transform: rotate(135deg);
}
.t-filter__item-insureds {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.t-filter__select {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 37px 70px -15px rgba(0, 0, 0, 0.34);
  border-radius: 0 0 20px 20px;
  padding: 15px 10px 15px 0;
  z-index: 9;
}
.t-filter__select a {
  display: block;
  padding: 8px 20px;
  color: #333333;
  font-size: 0.875em;
}
.t-filter__select a:hover {
  font-weight: 800;
  color: #007ac7;
}
.t-filter__select-scroll {
  max-height: 338px;
  overflow-y: auto;
}
.t-filter__select-scroll::-webkit-scrollbar {
  width: 6px;
}
.t-filter__select-scroll::-webkit-scrollbar-thumb {
  background: #007ac7;
  border-radius: 10px;
}

.t-insureds {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.t-insureds.is-active {
  opacity: 1 !important;
  pointer-events: initial;
}
.t-insureds__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.6;
}
.t-insureds__popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 30px 25px 40px 25px;
  border-radius: 20px;
  box-shadow: 0 37px 70px -5px rgba(0, 0, 0, 0.34);
  width: 370px;
  max-width: 95%;
}
.t-insureds__popup-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
  color: #007ac7;
  text-align: center;
}
.t-insureds__validate {
  display: none;
}
.t-insureds .o-button-yellow,
.t-insureds .o-button-outline {
  display: block !important;
  width: 200px !important;
  height: 40px;
  margin: 0 auto 10px auto !important;
  min-width: initial;
  text-align: center;
  padding: 10px 15px !important;
}
.t-insureds .o-button-yellow {
  margin-top: 25px !important;
  font-size: 1em;
}
.t-insureds .o-button-outline {
  margin-bottom: 0 !important;
}

.c-form-insureds__validate {
  display: none;
  font-size: 0.8125em;
  margin-top: 15px;
  color: red;
  text-align: center;
}

.t-copay {
  display: flex;
  width: 100%;
  background: #e1e1e1;
  border-radius: 30px;
}
.t-copay__info {
  background: #e1e1e1;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 80px;
  padding: 20px 30px;
  border-radius: 10px;
  color: #333333;
  font-weight: 500;
}
.t-copay__info:before {
  content: "ℹ";
  font-family: Arial, sans-serif;
  font-size: 2.1875em;
}
.t-copay__item {
  flex: 1;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 600;
  color: #979797;
  padding: 10px;
  text-align: center;
}
.t-copay__item:hover, .t-copay__item:active, .t-copay__item:focus, .t-copay__item:visited {
  color: #979797;
}
@media (max-width: 1599.98px) {
  .t-copay__item {
    min-height: 48px;
    font-size: 0.875em;
  }
}
.t-copay__item.is-active {
  background: #007ac7;
  color: #ffffff;
}
.t-copay__item.is-active:hover, .t-copay__item.is-active:active, .t-copay__item.is-active:focus, .t-copay__item.is-active:visited {
  color: #ffffff;
}
.t-copay__item.is-active:first-child {
  border-radius: 60px 0 0 60px;
}
.t-copay__item.is-active:last-child {
  border-radius: 0 60px 60px 0;
}
.t-copay__item.is-active:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #007ac7;
}
@media (max-width: 767.98px) {
  .t-copay__item.is-active:after {
    display: none;
  }
}
.t-copay__price {
  display: block;
  text-transform: lowercase;
  font-style: italic;
  font-size: 0.75em;
  font-weight: normal;
}
@media (max-width: 1599.98px) {
  .t-copay__price {
    font-size: 0.6875em;
  }
}

.t-products {
  margin-top: 50px;
}
.t-products__top {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  .t-products__top {
    display: block;
  }
}
.t-products__results {
  font-size: 1.5em;
  font-weight: normal;
  color: #333333;
  margin: 0;
}
@media (max-width: 1599.98px) {
  .t-products__results {
    font-size: 1.2em;
  }
}
@media (max-width: 991.98px) {
  .t-products__results {
    text-align: center;
    font-size: 1.375em;
  }
}
.t-products__results strong {
  font-weight: 900;
  color: #007ac7;
}
.t-products__filter {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .t-products__filter {
    margin-top: 20px;
    justify-content: space-between;
  }
}
.t-products__order {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 228px;
  border-radius: 30px;
  position: relative;
  height: 40px;
  padding: 5px 40px 5px 20px;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .t-products__order {
    width: 260px;
  }
}
.t-products__order:after {
  content: "";
  position: absolute;
  top: 12px;
  right: 18px;
  border-right: 2px solid #007ac7;
  border-top: 2px solid #007ac7;
  width: 10px;
  height: 10px;
  opacity: 0.75;
  transform: rotate(135deg);
}
.t-products__order:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #ffffff;
}
.t-products__order:hover .t-products__order-dropdown {
  display: block;
}
.t-products__order-title {
  font-size: 0.75em;
  margin: 0;
  color: #888888;
  position: relative;
  z-index: 1;
}
.t-products__order-active {
  font-size: 0.875em;
  color: #333333;
  margin: 0;
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.t-products__order-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 37px 70px -15px rgba(0, 0, 0, 0.34);
  display: none;
  border-radius: 0 0 10px 10px;
  z-index: 9;
}
.t-products__order-dropdown a {
  display: block;
  padding: 8px 20px;
  color: #333333;
  font-size: 0.875em;
  opacity: 1;
}
.t-products__checks {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  background-color: #007ac7;
  transition: background-color 0.2s ease;
  border-radius: 20px;
  height: 40px;
  padding: 5px 22px;
  position: relative;
}
.t-products__checks > span {
  color: #ffffff;
  font-size: 0.875em;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .t-products__checks > span {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .t-products__checks {
    width: 40px;
    padding: 0;
  }
}
.t-products__checks:hover {
  background-color: #20446f;
}
.t-products__checks:hover .t-products__checks-dropdown {
  display: block;
}
.t-products__checks img {
  height: 14px;
  width: auto;
}
.t-products__checks-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 15px;
  z-index: 10;
}
.t-products__checks-dropdown > div {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 22px 54px -20px rgba(0, 0, 0, 0.5);
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
@media (max-width: 767.98px) {
  .t-products__checks-dropdown > div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575.98px) {
  .t-products__checks-dropdown > div {
    grid-template-columns: repeat(1, 1fr);
    border-radius: 10px;
  }
}
.t-products__checks-dropdown > div:after {
  content: "";
  position: absolute;
  top: -10px;
  right: 30px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ffffff;
}
@media (max-width: 575.98px) {
  .t-products__checks-dropdown > div:after {
    right: 10px;
  }
}
.t-products__checks-column {
  flex: 1;
  border-right: 1px solid #e1e1e1;
  padding: 15px 30px;
}
@media (max-width: 767.98px) {
  .t-products__checks-column:nth-child(even) {
    border-right: none;
  }
}
@media (max-width: 575.98px) {
  .t-products__checks-column {
    border-right: none;
  }
}
@media (min-width: 768px) {
  .t-products__checks-column:last-child {
    border: none;
  }
}
.t-products__checks-column a {
  padding-left: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: #333333;
}
.t-products__checks-column a:hover, .t-products__checks-column a:active, .t-products__checks-column a:focus, .t-products__checks-column a:visited {
  color: #333333;
}
.t-products__checks-column a.is-active span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  background: #007ac7;
}
.t-products__checks-column a span {
  width: 20px;
  height: 20px;
  border: 1px solid #007ac7;
  border-radius: 4px;
  position: relative;
}
.t-products__checks-title {
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 500;
  margin: 0 0 20px 0;
  color: #007ac7;
}
.t-products__list {
  margin: 40px 0 0 0;
}