@charset "UTF-8";
/* CSS Document */

/* ==========================================
   TECOVAS SERVICE OPTIONS REDESIGN
   ========================================== */

#service_option {
  background: fffffff;
  padding: 18px 0 30px;
}

.tecovas-services__title {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #000;
  text-transform: none;
}

.tecovas-services__title span {
  font-size: 15px;
  font-weight: 400;
}

.tecovas-service-list {
  display: flex;
  flex-direction: column;
}

.tecovas-service-col {
  float: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tecovas-service-card {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 20px 0 30px;
  border-bottom: 1px solid #dddddd;
}

.tecovas-service-col:last-child .tecovas-service-card {
  border-bottom: 0;
}

.tecovas-service-card__content {
  flex: 1 1 58%;
  max-width: 620px;
}

.tecovas-service-card__media {
  flex: 0 0 auto;
  max-width: 100%;
  min-height: 0;
  border: none;
  overflow: visible;
  background: transparent;
}

.tecovas-service-card__media img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.tecovas-service-card .complete_restoration ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tecovas-service-card__selector {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px !important;
  position: relative;
}

.tecovas-service-card__selector input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.tecovas-service-card__selector .radiomark {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  background: transparent;
  flex-shrink: 0;
  margin: 0;
}

.tecovas-service-card__selector input[type="radio"]:checked + .radiomark::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bdbdbd;
}

.tecovas-service-card__price {
  color: #ff2a23;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  min-width: 74px;
}

.tecovas-service-card__name {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  cursor: pointer;
}

.tecovas-service-card__features {
  margin: 0 0 18px 20px;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.45;
  color: #111111;
}

.tecovas-service-card__features > li {
  margin-bottom: 4px;
}

.tecovas-service-card__features ul {
  margin-top: 2px;
  padding-left: 20px;
}

.tecovas-service-card__note {
  display: inline-block;
  background: #f2f2f0;
  padding: 12px 18px;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #202020;
}
 
@media (max-width: 991px) {
  .tecovas-service-card {
    flex-direction: column;
    gap: 24px;
  }

 .tecovas-service-card__content,
  .tecovas-service-card__media {
    max-width: none;
  }

  .tecovas-service-card__media {
    width: 100%;
    min-height: 220px;
  } 
}

@media (max-width: 767px) {
  .tecovas-services__title {
    font-size: 22px;
  }

  .tecovas-service-card__selector {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }

  .tecovas-service-card__price {
    font-size: 24px;
    min-width: auto;
  }

  .tecovas-service-card__name {
    font-size: 16px;
  }

  .tecovas-service-card__features {
    font-size: 15px;
  }

  .tecovas-service-card__note {
    font-size: 12px;
  }
}