.block--tariff-calculator {
  position: relative;
}
.block--tariff-calculator .tc {
  max-width: 960px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc {
    width: calc(100vw - 32px);
  }
}
.block--tariff-calculator .tc__types {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background-color: var(--c-white);
  border-radius: 16px 16px 0 0;
  width: fit-content;
  padding: 16px 32px;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc__types {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    border-bottom: 1px solid var(--c-dark-300);
    width: 100%;
    padding: 16px;
  }
}
.block--tariff-calculator .tc__type {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc__type {
    gap: 0;
  }
}
.block--tariff-calculator .tc__type .type__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  opacity: 0;
  transition: opacity 350ms var(--cb);
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc__type .type__icon {
    display: none;
  }
}
.block--tariff-calculator .tc__type .type__name {
  color: var(--c-dark-500);
  transition: color 350ms var(--cb);
}
.block--tariff-calculator .tc__type--active .type__icon {
  opacity: 1;
}
.block--tariff-calculator .tc__type--active .type__name {
  color: var(--c-primary);
}
.block--tariff-calculator .tc__type--active:hover .type__name {
  color: var(--c-primary);
}
.block--tariff-calculator .tc__form {
  background-color: var(--c-white);
  border-radius: 0 16px 16px 16px;
  padding: 32px 16.6666666667%;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc__form {
    border-radius: 0 0 16px 16px;
    padding: 16px;
  }
}
.block--tariff-calculator .tc__form .form__row {
  align-items: center;
}
.block--tariff-calculator .tc__form .form__row--consumption.hidden {
  display: none;
}
.block--tariff-calculator .tc__toggles {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, min-content);
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc__toggles {
    gap: 32px;
    margin-bottom: 32px;
  }
}
.block--tariff-calculator .tc__toggles .tc__toggle {
  display: flex;
}
.block--tariff-calculator .tc__range-icons {
  display: none;
}
.block--tariff-calculator .tc__range-icons.active {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.block--tariff-calculator .tc__range-icon {
  height: 20px;
}
.block--tariff-calculator .tc .button {
  margin-top: 20px;
}
.block--tariff-calculator .tc__no-results {
  margin-top: 32px;
}
.block--tariff-calculator .tc__no-results .headline {
  margin-bottom: 8px;
}
.block--tariff-calculator .tc .tariffs-modal {
  display: block;
  background-color: var(--c-primary-100);
  height: 100vh;
  width: 100vw;
  padding: 120px 16px;
  position: fixed;
  bottom: 0;
  left: 0;
  overflow: auto;
  opacity: 1;
  z-index: 25;
  transition: opacity 350ms var(--cb), transform 350ms var(--cb);
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal {
    padding: 80px 16px;
  }
}
.block--tariff-calculator .tc .tariffs-modal__close {
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}
.block--tariff-calculator .tc .tariffs-modal__close svg circle {
  transition: fill 350ms var(--cb);
}
.block--tariff-calculator .tc .tariffs-modal__close:hover svg circle {
  fill: var(--c-secondary);
}
.block--tariff-calculator .tc .tariffs-modal__drawer {
  max-width: 1336px;
  margin: 0 auto;
}
.block--tariff-calculator .tc .tariffs-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 72px;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__head {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }
}
.block--tariff-calculator .tc .tariffs-modal__entered-data {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  background-color: var(--c-white);
  border-radius: 8px;
  width: 55%;
  padding: 16px;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__entered-data {
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__entry {
    margin-bottom: 16px;
  }
}
.block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__entry .entry__value {
  color: var(--c-dark-500);
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__entry--product {
    width: 25%;
  }
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__entry--consuption {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__entry--city {
    width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__entry--customer {
    width: 50%;
  }
}
.block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__change-data {
  cursor: pointer;
  color: var(--c-secondary);
  text-decoration: underline;
  transition: color 350ms var(--cb);
}
.block--tariff-calculator .tc .tariffs-modal__entered-data .entered-data__change-data:hover {
  color: var(--c-primary);
}
.block--tariff-calculator .tc .tariffs-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__body {
    grid-template-columns: repeat(var(--tariff-count), 1fr);
    gap: 16px;
    overflow: auto;
    scroll-snap-type: x mandatory;
  }
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal__details--desktop {
    display: none;
  }
}
.block--tariff-calculator .tc .tariffs-modal__details--mobile {
  margin-top: 32px;
}
@media only screen and (min-width: 1025px) {
  .block--tariff-calculator .tc .tariffs-modal__details--mobile {
    display: none;
  }
}
.block--tariff-calculator .tc .tariffs-modal .details {
  grid-column: 1/4;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal .details {
    width: calc(100vw - 32px);
  }
}
.block--tariff-calculator .tc .tariffs-modal .details.active {
  padding: 40px 0;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal .details.active {
    padding: 0;
  }
}
.block--tariff-calculator .tc .tariffs-modal .details .headline--h4 {
  margin-bottom: 16px;
}
.block--tariff-calculator .tc .tariffs-modal .details__name {
  margin-bottom: 12px;
}
.block--tariff-calculator .tc .tariffs-modal .details__description {
  margin-bottom: 32px;
}
.block--tariff-calculator .tc .tariffs-modal .details__meta-fields {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 80px;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal .details__meta-fields {
    flex-direction: column;
    gap: 0;
  }
}
.block--tariff-calculator .tc .tariffs-modal .details__meta-field {
  width: 33.3333333333%;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator .tc .tariffs-modal .details__meta-field {
    width: 100%;
  }
}
.block--tariff-calculator .tc .tariffs-modal .details__contract {
  margin-bottom: 32px;
}
.block--tariff-calculator .tc .tariffs-modal .details__documents {
  margin-bottom: 32px;
}
.block--tariff-calculator .tc .tariffs-modal .details__documents a {
  display: block;
  color: var(--c-primary);
  margin-bottom: 8px;
}
.block--tariff-calculator .tc .tariffs-modal .details__documents a:hover {
  color: var(--c-secondary);
}
.block--tariff-calculator .tc .tariffs-modal .details__row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 8px;
}
.block--tariff-calculator .tc .tariffs-modal .details__col:nth-child(2) {
  color: var(--c-dark-500);
  text-align: right;
}
.block--tariff-calculator .tc .tariffs-modal.inactive {
  opacity: 0;
  transform: translateY(100%);
}
.block--tariff-calculator.has-background {
  padding: 120px 0;
  z-index: 0;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator.has-background {
    padding: 80px 0;
  }
}
.block--tariff-calculator.has-background:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  height: 100%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: absolute;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator.has-background:before {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.block--tariff-calculator.has-background--darkgreen:before {
  background-color: var(--c-primary);
  background-image: url("../../../media/img/pattern_arrow_multiple.svg");
}
.block--tariff-calculator.has-background--lightgreen:before {
  background-color: var(--c-primary-200);
  background-image: url("../../../media/img/pattern_arrow_single.svg");
  background-position: right center;
}
@media only screen and (max-width: 1024px) {
  .block--tariff-calculator.has-background--lightgreen:before {
    background-size: cover;
  }
}
.block--tariff-calculator.active-results {
  z-index: 25;
}

.tariff.tariff--card {
  display: grid;
  grid-row: auto/span 4;
  grid-template-rows: subgrid;
  background-color: var(--c-primary);
  border-radius: 8px;
  padding: 32px;
}
@media only screen and (max-width: 1024px) {
  .tariff.tariff--card {
    min-width: calc(100vw - 64px);
    scroll-snap-align: start;
  }
}
.tariff.tariff--card .tariff__name {
  color: var(--c-white);
  margin: 0 0 24px 0;
}
.tariff.tariff--card .tariff__description {
  color: var(--c-white);
}
.tariff.tariff--card .tariff__body {
  width: 100%;
}
.tariff.tariff--card .tariff__details {
  padding: 16px;
  border-radius: 4px;
  background-color: var(--c-white);
  font-weight: 500;
}
.tariff.tariff--card .tariff__details .tariff__row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  font-size: calc(var(--fs-text-s-min) * 1px);
  line-height: calc(var(--lh-text-s-min) * 1px);
  letter-spacing: var(--ls-text-s-max);
  margin-bottom: 8px;
}
@media screen and (min-width: 576px) {
  .tariff.tariff--card .tariff__details .tariff__row {
    font-size: calc(var(--fs-text-s-min) * 1px + (var(--fs-text-s-max) - var(--fs-text-s-min)) * (100vw - 576px) / (624));
  }
}
@media screen and (min-width: 1200px) {
  .tariff.tariff--card .tariff__details .tariff__row {
    font-size: calc(var(--fs-text-s-max) * 1px);
  }
}
@media screen and (min-width: 576px) {
  .tariff.tariff--card .tariff__details .tariff__row {
    line-height: calc(var(--lh-text-s-min) * 1px + (var(--lh-text-s-max) - var(--lh-text-s-min)) * (100vw - 576px) / (624));
  }
}
@media screen and (min-width: 1200px) {
  .tariff.tariff--card .tariff__details .tariff__row {
    line-height: calc(var(--lh-text-s-max) * 1px);
  }
}
@media only screen and (max-width: 1024px) {
  .tariff.tariff--card .tariff__details .tariff__row {
    letter-spacing: var(--ls-text-s-min);
  }
}
.tariff.tariff--card .tariff__details .tariff__row .tariff__col:nth-child(2) {
  text-align: right;
}
.tariff.tariff--card .tariff__details .tariff__row .tariff__full {
  grid-column: 1/-1;
  text-align: right;
}
.tariff.tariff--card .tariff__details .tariff__row:not(:first-child) {
  color: var(--c-dark-500);
}
.tariff.tariff--card .tariff__details .tariff__row:nth-child(2) {
  border-bottom: 1px solid var(--c-dark-300);
  color: var(--c-primary);
  padding-bottom: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.tariff.tariff--card .tariff__details-toggle {
  cursor: pointer;
  color: var(--c-white);
  text-decoration: underline;
  margin-top: 24px;
  transition: color 350ms var(--cb);
}
.tariff.tariff--card .tariff__details-toggle:hover {
  color: var(--c-primary-200);
}
.tariff.tariff--card .tariff__details-toggle.active {
  color: var(--c-secondary);
}

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