@charset "UTF-8";
@import "/assets/template/fonts/dincondensed.css";
@import "/assets/template/fonts/dinpro.css";
#gtnCalculator {
  overflow: hidden;
}

.tariff-selection .header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.tariff-selection .title {
  color: #212529;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 2.5em;
}
.tariff-selection .subtitle {
  color: #666;
  font-size: 1.2em;
}
@media (max-width: 767px) {
  .tariff-selection .subtitle {
    font-size: 1.3em;
  }
}
.tariff-selection .subtitle {
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.25em;
}
.tariff-selection .tariffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.tariff-selection .tariff-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 3px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.tariff-selection .tariff-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #f03900;
}
.tariff-selection .tariff-card::after {
  content: "→";
  position: absolute;
  top: 30px;
  right: 30px;
  color: #f03900;
  font-size: 1.8em;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tariff-selection .tariff-card:hover::after {
  opacity: 1;
}
.tariff-selection .speed {
  font-size: 3em;
  font-weight: 800;
  color: #212529;
  line-height: 1;
  margin-bottom: 10px;
}
.tariff-selection .unit {
  font-size: 0.4em;
  color: #777;
  font-weight: 500;
}
.tariff-selection .tariff-title {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 30px;
  min-height: 60px;
}
.tariff-selection .price-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #eee;
}
.tariff-selection .price-from {
  font-size: 0.95em;
  color: #888;
  margin-bottom: 5px;
}
.tariff-selection .price {
  font-size: 2.2em;
  font-weight: 700;
  color: #f03900;
  line-height: 1;
}
.tariff-selection .price-period {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}
.tariff-selection .min-price-note {
  font-size: 0.85em;
  color: #4CAF50;
  margin-top: 8px;
  font-weight: 600;
}
.tariff-selection .features {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}
.tariff-selection .features li {
  padding: 8px 0;
  color: #555;
  position: relative;
  padding-left: 25px;
}
.tariff-selection .features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: bold;
}
.tariff-selection .footer {
  text-align: center;
  margin-top: 60px;
  color: #777;
  font-size: 0.9em;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.tariff-selection .note {
  font-size: 0.85em;
  color: #888;
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .tariff-selection .tariffs-grid {
    grid-template-columns: 1fr;
  }
  .tariff-selection .tariff-card {
    padding: 30px 20px;
  }
  .tariff-selection h1 {
    font-size: 2em;
  }
}

.selections label {
  font-size: 1.3em;
  color: #212529;
  margin-bottom: 25px;
  font-weight: 600;
}

.tariff-calculator .subtitle {
  color: #666;
  font-size: 1.4em;
}
@media (max-width: 767px) {
  .tariff-calculator .subtitle {
    font-size: 1.3em;
  }
}
.tariff-calculator .subtitle {
  max-width: 750px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.25em;
  text-align: center;
}
@media (max-width: 767px) {
  .tariff-calculator .subtitle {
    margin: 1.5rem auto 1.5rem auto;
  }
}
.tariff-calculator select {
  border: 2px solid #f1f1f1;
  border-radius: 5px;
}
.tariff-calculator option[disabled] {
  color: #ccc;
}
.tariff-calculator del {
  color: #999;
  font-weight: 300;
}
.tariff-calculator .selections {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.tariff-calculator .selections .connect-selections, .tariff-calculator .selections .tariff-selections {
  width: 45%;
}
.tariff-calculator .selections select {
  width: 100%;
}
.tariff-calculator .back-link {
  display: inline-flex;
  align-items: center;
  color: #666;
  text-decoration: none;
  margin-bottom: 30px;
  font-weight: 500;
  transition: color 0.2s;
}
.tariff-calculator .back-link:hover {
  color: #f03900;
}
.tariff-calculator .back-link::before {
  content: "←";
  margin-right: 8px;
  font-size: 1.2em;
}
.tariff-calculator .tariff-header {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.tariff-calculator .speed-display {
  font-size: 4em;
  font-weight: 800;
  color: #212529;
  line-height: 1;
  margin-bottom: 10px;
}
.tariff-calculator .unit {
  font-size: 0.4em;
  color: #777;
  font-weight: 500;
}
.tariff-calculator .tariff-name {
  color: #666;
  font-size: 1.2em;
  margin-top: 10px;
}
.tariff-calculator .config-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}
.tariff-calculator .config-section {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .tariff-calculator .config-section {
    margin-bottom: 20px;
  }
}
.tariff-calculator .config-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.tariff-calculator .section-title {
  font-size: 1.3em;
  color: #212529;
  margin-bottom: 15px;
  font-family: "DIN Pro Cond", sans-serif;
  font-weight: 400;
  padding-left: 0.5rem;
}
.tariff-calculator {
  /* Стили для переключателя ТВ */
}
.tariff-calculator .option-switch-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #f9f9f9;
  border: 2px solid #f1f1f1;
  border-radius: 20px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .tariff-calculator .option-switch-wrapper {
    flex-wrap: wrap;
  }
}
.tariff-calculator .option-switch-wrapper.option-switch-on {
  border-color: #f03900;
  background: #fff3f3;
  color: #f03900;
}
.tariff-calculator .option-switch-wrapper.active {
  background: #fff3f3;
  border: 3px solid #f03900;
}
.tariff-calculator .option-info {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .tariff-calculator .option-info {
    flex-basis: 100%;
  }
}
.tariff-calculator .option-title {
  font-size: 18px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 5px;
}
.tariff-calculator .option-description {
  color: #666;
  font-family: "DIN Pro Cond", sans-serif;
  font-size: 0.95em;
}
@media (max-width: 767px) {
  .tariff-calculator .option-description {
    margin-bottom: 10px;
  }
}
.tariff-calculator .option-price {
  font-family: "DIN Pro Cond", sans-serif;
  font-weight: 900;
  color: #f03900;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .tariff-calculator .option-price {
    margin-left: 0;
  }
}
.tariff-calculator .option-price {
  font-size: 1.2em;
  min-width: 100px;
  text-align: right;
}
.tariff-calculator .option-switch {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  width: 60px;
  height: 32px;
  margin-left: 20px;
}
.tariff-calculator .option-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.tariff-calculator .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.tariff-calculator .slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.tariff-calculator input:checked + .slider {
  background-color: #f03900;
}
.tariff-calculator input:checked + .slider:before {
  transform: translateX(28px);
}
.tariff-calculator {
  /* Стили для слайдера Астра Бонус */
}
.tariff-calculator .bonus-slider-wrapper {
  background: #f9f9f9;
  border-radius: 20px;
  padding: 25px;
}
.tariff-calculator .bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.tariff-calculator .bonus-title {
  font-weight: 600;
  color: #212529;
}
.tariff-calculator .bonus-value {
  font-weight: 700;
  color: #f03900;
  font-size: 1.3em;
  min-width: 60px;
  text-align: right;
}
.tariff-calculator .bonus-slider {
  width: 100%;
  height: 10px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, #f1f1f1 0%, #f03900 100%);
  outline: none;
  border-radius: 5px;
}
.tariff-calculator .bonus-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border: 3px solid #f03900;
}
.tariff-calculator .bonus-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border: 3px solid #f03900;
}
.tariff-calculator .bonus-scale {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: #666;
  font-size: 0.9em;
}
.tariff-calculator {
  /* Стили для выбора периода */
}
.tariff-calculator .period-option {
  background: #f9f9f9;
  border: 2px solid #f1f1f1;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.tariff-calculator .period-option:hover {
  border-color: rgba(24, 24, 27, 0.5);
  background: #f1f1f1;
  color: #18181b;
}
.tariff-calculator .period-option.selected {
  border-color: #f03900;
  background: #fff3f3;
}
.tariff-calculator .period-option-input[disabled] + label {
  display: none;
}
.tariff-calculator .speed-option {
  background: #f9f9f9;
  border: 2px solid #f1f1f1;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.tariff-calculator .speed-option:hover {
  border-color: rgba(24, 24, 27, 0.5);
  background: #f1f1f1;
  color: #18181b;
}
.tariff-calculator .speed-option.selected {
  border-color: #f03900;
  background: #fff3f3;
  color: #f03900;
}
.tariff-calculator .btn-check:checked + .btn {
  border-color: #f03900;
  background: #fff3f3;
  color: #f03900;
}
.tariff-calculator .speed-speed {
  line-height: 1em;
}
.tariff-calculator .speed-speed span {
  display: block;
  line-height: 32px;
  margin-bottom: 10px;
  font-size: 2em;
}
.tariff-calculator .speed-speed small {
  display: block;
  color: #666;
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 400;
}
@media (min-width: 768px) and (max-width: 991px) {
  .tariff-calculator .speed-speed {
    font-size: 1.8em;
  }
}
.tariff-calculator .speed-speed {
  font-weight: 700;
  color: #212529;
  text-shadow: 1px 1px 1px #ffffff;
}
@media (max-width: 767px) {
  .tariff-calculator .speed-speed {
    margin-bottom: 0;
  }
  .tariff-calculator .speed-speed span {
    flex-basis: 100%;
  }
}
.tariff-calculator .speed-features {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
}
.tariff-calculator .speed-features li {
  display: block;
  font-size: 1em;
  line-height: 1.2em;
  font-family: "DIN Pro Cond", sans-serif;
}
@media (max-width: 767px) {
  .tariff-calculator .speed-features li {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.3em;
  }
}
@media (min-width: 992px) {
  .tariff-calculator .speed-features li {
    line-height: 1.2em;
  }
}
.tariff-calculator .speed-features li {
  text-align: left;
  padding: 1px 0 5px 25px;
  color: #555;
  position: relative;
}
.tariff-calculator .speed-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f03900;
  font-weight: bold;
}
.tariff-calculator .period-months {
  font-size: 2em;
  line-height: 1em;
  font-weight: 700;
  color: #212529;
  margin-bottom: 10px;
  text-shadow: 1px 1px 1px #ffffff;
}
.tariff-calculator .period-label {
  color: #666;
  font-size: 1em;
  line-height: 1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.tariff-calculator .period-discount {
  color: #f03900;
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1em;
}
.tariff-calculator {
  /* Итоговый блок */
}
.tariff-calculator .total-block {
  background: url(/assets/template/image/buttons/bg1.png) center center;
  background-size: 120% 120%;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 40px;
  color: white;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .tariff-calculator .total-block {
    padding: 20px;
    margin-top: 20px;
  }
}
.tariff-calculator .total-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  opacity: 0.9;
}
.tariff-calculator .total-price {
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-family: "DIN Pro Cond", sans-serif;
}
.tariff-calculator .total-price span {
  font-weight: 400;
}
.tariff-calculator .total-period {
  font-size: 1.1em;
  opacity: 0.9;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .tariff-calculator .total-period {
    margin-bottom: 0;
  }
}
.tariff-calculator .total-details {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  font-size: 1.1em;
}
@media (max-width: 767px) {
  .tariff-calculator .total-details {
    margin-top: 15px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 0;
    font-size: 1.2em;
  }
}
.tariff-calculator .detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "DIN Pro Cond", sans-serif;
}
.tariff-calculator .detail-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.tariff-calculator #oldPrice {
  text-decoration: line-through;
}
.tariff-calculator .connect-button {
  display: block;
  text-align: center;
  background: white;
  color: #f03900;
  border: none;
  padding: 18px 40px;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 15px;
  cursor: pointer;
  width: 100%;
  margin-top: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 2px;
  font-family: "DIN Pro Cond", sans-serif;
  text-transform: uppercase;
}
.tariff-calculator .connect-button:hover {
  background: #ffffff;
  color: #18181b;
}
.tariff-calculator .note {
  font-size: 0.85em;
  color: #888;
  margin-top: 25px;
  text-align: center;
  font-style: italic;
}
@media (max-width: 767px) {
  .tariff-calculator .container {
    padding: 0;
  }
  .tariff-calculator .tariff-header, .tariff-calculator .config-card {
    padding: 30px 15px 20px 15px;
    border-radius: 20px;
  }
  .tariff-calculator .speed-display {
    font-size: 3em;
  }
  .tariff-calculator .total-price {
    font-size: 2.5em;
  }
}

.gtn-btn-group {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
}
.gtn-btn-group label {
  position: relative;
}
.gtn-btn-group label div, .gtn-btn-group label ul {
  position: relative;
  z-index: 100;
}
.gtn-btn-group label:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: -75%;
  left: -50%;
  width: 250%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(15deg);
}
.gtn-btn-group.gtn-btn-group-speed label {
  flex-grow: 1;
  flex-basis: calc(33% - 24px);
}
@media (max-width: 1399px) {
  .gtn-btn-group.gtn-btn-group-speed label {
    flex-basis: calc(33% - 24px);
  }
}
.gtn-btn-group.gtn-btn-group-speed.col-count-1 label {
  flex-grow: 1;
  flex-basis: calc(100% - 24px);
}
@media (max-width: 1399px) {
  .gtn-btn-group.gtn-btn-group-speed.col-count-1 label {
    flex-basis: calc(100% - 24px);
  }
}
.gtn-btn-group.gtn-btn-group-speed.col-count-2 label {
  flex-grow: 1;
  flex-basis: calc(50% - 24px);
}
@media (max-width: 1399px) {
  .gtn-btn-group.gtn-btn-group-speed.col-count-2 label {
    flex-basis: calc(50% - 24px);
  }
}
.gtn-btn-group.gtn-btn-group-speed.col-count-3 label {
  flex-grow: 1;
  flex-basis: calc(33% - 24px);
}
@media (max-width: 1399px) {
  .gtn-btn-group.gtn-btn-group-speed.col-count-3 label {
    flex-basis: calc(33% - 24px);
  }
}
.gtn-btn-group.gtn-btn-group-speed.col-count-4 label {
  flex-grow: 1;
  flex-basis: calc(25% - 24px);
}
@media (max-width: 1399px) {
  .gtn-btn-group.gtn-btn-group-speed.col-count-4 label {
    flex-basis: calc(50% - 24px);
  }
}
.gtn-btn-group.gtn-btn-group-speed.col-count-5 label {
  flex-grow: 1;
  flex-basis: calc(20% - 24px);
}
@media (max-width: 1399px) {
  .gtn-btn-group.gtn-btn-group-speed.col-count-5 label {
    flex-basis: calc(50% - 24px);
  }
}
.gtn-btn-group.gtn-btn-group-period label {
  flex-grow: 1;
  flex-basis: calc(25% - 24px);
}
@media (max-width: 991px) {
  .gtn-btn-group.gtn-btn-group-period label {
    flex-basis: calc(50% - 24px);
  }
}

.option-switch-wrapper {
  position: relative;
  overflow: hidden;
}
.option-switch-wrapper div, .option-switch-wrapper label {
  position: relative;
  z-index: 100;
}

.tariff-calculator .total-block .total-title, .tariff-calculator .total-block .total-period {
  font-weight: 500;
  letter-spacing: 1px;
  font-family: "DIN Pro Cond", sans-serif;
}
.tariff-calculator .total-block .total-period > span {
  display: block;
  font-weight: 500;
  font-size: 140%;
}
.tariff-calculator .total-block .total-period > span span {
  font-weight: 400;
}
.tariff-calculator .total-block {
  position: relative;
  overflow: hidden;
}
.tariff-calculator .total-block div, .tariff-calculator .total-block a {
  position: relative;
  z-index: 100;
}
.tariff-calculator .total-block:after {
  content: "";
  position: absolute;
  z-index: 10;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  transform: rotate(-5deg);
}

#gtnCalculator .text-muted {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.25em;
  font-weight: 300;
  text-align: left;
  color: rgba(33, 37, 41, 0.5) !important;
}
@media (max-width: 991px) {
  #gtnCalculator .text-muted {
    width: 95%;
    font-size: 17px;
  }
}
#gtnCalculator .text-muted span {
  font-weight: 600;
  color: rgba(33, 37, 41, 0.75) !important;
}
@media (max-width: 991px) {
  #gtnCalculator .text-muted span {
    display: block;
    line-height: 1.65em;
  }
  #gtnCalculator .text-muted span:first-child {
    font-size: 23px;
  }
  #gtnCalculator .text-muted span:last-child {
    margin-bottom: 0.35em;
  }
}

#periodOptionsFeaturesView {
  display: block;
}
@media (min-width: 768px) {
  #periodOptionsFeaturesView {
    display: none;
  }
}
#periodOptionsFeaturesView {
  overflow: hidden;
  transition: all 1s ease-in-out;
  margin-bottom: 20px;
}
#periodOptionsFeaturesView .speed-features {
  margin: 0 auto;
  padding: 0;
  display: flex;
  height: 135px;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#periodOptionsFeaturesView .speed-features li {
  display: block;
  margin: 0 auto;
  width: 95%;
  font-size: 17px;
  line-height: 1.3em;
}

#speedOptionsRange, #periodOptionsRange {
  display: block;
  position: relative;
  padding-top: 32px;
  margin: 0 20px;
}
#speedOptionsRange .speed-range-labels, #periodOptionsRange .speed-range-labels {
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  line-height: 1.5em;
  margin-top: 10px;
  margin-bottom: 10px;
  width: calc(100% + 30px);
  margin-left: -15px;
}
#speedOptionsRange .speed-range-labels span, #periodOptionsRange .speed-range-labels span {
  display: block;
  width: 60px;
  flex-grow: 0;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 1em;
}
#speedOptionsRange .speed-range-labels span.active, #periodOptionsRange .speed-range-labels span.active {
  color: #f03900;
}
#speedOptionsRange .speed-range-labels span small, #periodOptionsRange .speed-range-labels span small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
#speedOptionsRange .speed-range-labels span small:first-child, #periodOptionsRange .speed-range-labels span small:first-child {
  margin-top: 5px;
}
#speedOptionsRange .speed-range-labels span small.range-discount, #periodOptionsRange .speed-range-labels span small.range-discount {
  color: #f03900;
}
#speedOptionsRange .speed-range-labels-bg, #periodOptionsRange .speed-range-labels-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: calc(100% + 4px);
  margin-left: -2px;
}
#speedOptionsRange .speed-range-labels-bg span, #periodOptionsRange .speed-range-labels-bg span {
  display: block;
  width: 32px;
  height: 32px;
  background: #f1f1f1;
  border-radius: 50%;
}
#speedOptionsRange .speed-range-labels-bg span.active span, #periodOptionsRange .speed-range-labels-bg span.active span {
  background: #f03900;
  border: 2px solid #f1f1f1;
}
#speedOptionsRange .speed-range-slider, #periodOptionsRange .speed-range-slider {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  margin: 11px 0;
  background: #f1f1f1;
  outline: none;
  border-radius: 5px;
  z-index: 2;
}
#speedOptionsRange .speed-range-slider::-webkit-slider-thumb, #periodOptionsRange .speed-range-slider::-webkit-slider-thumb {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f03900;
  cursor: pointer;
  border: none;
  z-index: 2;
}
#speedOptionsRange .speed-range-slider::-moz-range-thumb, #periodOptionsRange .speed-range-slider::-moz-range-thumb {
  position: relative;
  -moz-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f03900;
  cursor: pointer;
  border: none;
  z-index: 2;
}

#speedOptionsFeaturesView {
  margin-bottom: 3rem;
}
#speedOptionsFeaturesView .speed-option-text {
  display: block;
  background: white;
  padding: 15px 20px;
  border-radius: 20px;
  max-width: 360px;
  overflow: hidden;
  border: 2px solid #ffffff;
  cursor: pointer;
}
#speedOptionsFeaturesView .speed-option-text:hover {
  border: 2px solid rgba(24, 24, 27, 0.5);
}
#speedOptionsFeaturesView .speed-option-text.active {
  border: 2px solid #f03900;
}
#speedOptionsFeaturesView .speed-option-text .speed-speed-text {
  font-size: 22px;
  line-height: 1.5em;
  font-weight: 600;
  color: #212529;
  margin-bottom: 5px;
  padding-left: 25px;
}
#speedOptionsFeaturesView.col-count-1 .speed-option-text {
  flex-grow: 1;
  flex-basis: calc(100% - 24px);
}
@media (max-width: 1399px) {
  #speedOptionsFeaturesView.col-count-1 .speed-option-text {
    flex-basis: calc(100% - 24px);
  }
}
#speedOptionsFeaturesView.col-count-2 .speed-option-text {
  flex-grow: 1;
  flex-basis: calc(50% - 24px);
}
@media (max-width: 1399px) {
  #speedOptionsFeaturesView.col-count-2 .speed-option-text {
    flex-basis: calc(50% - 24px);
  }
}
#speedOptionsFeaturesView.col-count-3 .speed-option-text {
  flex-grow: 1;
  flex-basis: calc(33% - 24px);
}
@media (max-width: 1399px) {
  #speedOptionsFeaturesView.col-count-3 .speed-option-text {
    flex-basis: calc(33% - 24px);
  }
}
#speedOptionsFeaturesView.col-count-4 .speed-option-text {
  flex-grow: 1;
  flex-basis: calc(25% - 24px);
}
@media (max-width: 1399px) {
  #speedOptionsFeaturesView.col-count-4 .speed-option-text {
    flex-basis: calc(50% - 24px);
  }
}
#speedOptionsFeaturesView.col-count-5 .speed-option-text {
  flex-grow: 1;
  flex-basis: calc(20% - 24px);
}
@media (max-width: 1399px) {
  #speedOptionsFeaturesView.col-count-5 .speed-option-text {
    flex-basis: calc(50% - 24px);
  }
}

#periodMarkers, #speedMarkers {
  display: none;
}

#periodOptionsRange .speed-range-labels-bg > span,
#periodOptionsRange .speed-range-labels > span {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

#periodOptionsRange.disabled .speed-range-labels > span {
  opacity: 0;
}
#periodOptionsRange.disabled .speed-range-labels > span:first-child {
  opacity: 1;
}
#periodOptionsRange.disabled .speed-range-labels-bg > span {
  opacity: 0;
}
#periodOptionsRange.disabled .speed-range-labels-bg > span:first-child {
  opacity: 1;
}

.gtn-calculator-stage {
  max-width: 992px;
  margin: 0 auto;
}

#mapLocation {
  position: relative;
  z-index: 1;
}
#mapLocation.lock:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  opacity: 0;
  z-index: 2;
}

.gtn-calculator-stage {
  position: relative;
  z-index: 1;
}

#speedOneOptionsFeaturesView {
  z-index: 2;
  display: block;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding: 20px 30px 15px 15px;
  border-radius: 20px;
  background-color: #ffffff;
  border: 2px solid #f1f1f1;
  position: absolute;
  left: -9999px;
  top: -9999px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
#speedOneOptionsFeaturesView .speed-features-decor-wrapper {
  display: flex;
  justify-content: start;
  z-index: 2;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
}
#speedOneOptionsFeaturesView .speed-features-decor {
  position: relative;
  width: 32px;
  height: 0;
}
#speedOneOptionsFeaturesView .speed-features-decor:after {
  display: block;
  z-index: 2;
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffffff;
}
#speedOneOptionsFeaturesView .speed-features-decor:before {
  display: block;
  z-index: 1;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #f1f1f1;
}
#speedOneOptionsFeaturesView .close-tooltip {
  display: block;
  z-index: 2;
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  line-height: 14px;
  color: #212529;
  cursor: pointer;
  opacity: 0.5;
}
#speedOneOptionsFeaturesView .close-tooltip:hover {
  opacity: 1;
}

#speedExtraOptions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#speedExtraOptions .option-zone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
}
@media (max-width: 767px) {
  #speedExtraOptions .option-switch-wrapper {
    justify-content: end;
  }
}
#speedExtraOptions .option-switch-wrapper {
  flex-basis: calc(100% - 10px);
  flex-grow: 1;
  margin-bottom: 8px;
}
#speedExtraOptions .option-switch-wrapper:last-child {
  margin-bottom: 0;
}
#speedExtraOptions .option-switch-wrapper.disabled {
  display: none;
}

#periodOptionsRange .speed-range-labels span small.range-caption {
  white-space: nowrap;
}
#periodOptionsRange .speed-range-labels span small.range-discount {
  white-space: nowrap;
}
@media (max-width: 767px) {
  #periodOptionsRange.gtn-range-compact .speed-range-labels span, #periodOptionsRange.gtn-range-compact .speed-range-labels span {
    width: 32px;
  }
  #periodOptionsRange.gtn-range-compact .speed-range-labels, #periodOptionsRange.gtn-range-compact .speed-range-labels {
    width: calc(100% + 4px);
    margin-left: -2px;
  }
  #periodOptionsRange.gtn-range-compact .speed-range-labels span small.range-caption {
    font-size: 10px;
  }
  #periodOptionsRange.gtn-range-compact .speed-range-labels span small.range-discount {
    white-space: normal;
  }
}

/*# sourceMappingURL=calculator.css.map */
