.container-calculator {
  max-width: 1028px;
}

.d-none {
  display: none !important;
}

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 6px;
}

.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  right: -12px;
  top: -10px;
  border-radius: 50%;
  background: #1C54F4;
  cursor: pointer;
  text-align: center;
}
.noUi-horizontal .noUi-handle div {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #E1E3E8;
  border-radius: 4px;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #1C54F4;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  user-select: none;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #9D9D9D;
  font-size: 14px;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 4px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.noUi-value:last-child:after {
  content: "+";
}

.calculator-page {
  max-width: 1028px;
}

.calculator-headline {
  margin-bottom: 2em;
  text-align: center;
}
@media (min-width: 1024px) {
  .calculator-headline {
    margin-bottom: 2.25em;
  }
}

.calculator-cost {
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2392156863);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 4em;
}
@media (min-width: 1024px) {
  .calculator-cost {
    font-size: 11px;
  }
}
@media (min-width: 1400px) {
  .calculator-cost {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .calculator-cost {
    min-height: 50em;
    flex-direction: row;
    margin-bottom: 5.5em;
  }
}
@media (min-width: 1400px) {
  .calculator-cost {
    min-height: 56.25em;
  }
}
.calculator-cost__step {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .calculator-cost__step {
    height: 100%;
  }
  .calculator-cost__step .blue_button, .calculator-cost__step .light_blue_button {
    margin-top: auto;
  }
}
.calculator-cost__left {
  padding: 1.5em 2em 0.75em;
}
@media (min-width: 1024px) {
  .calculator-cost__left {
    padding: 2.5em 3.75em;
    width: 50%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.calculator-cost__left__type-select {
  display: flex;
  gap: 0.75em;
  user-select: none;
  width: 100%;
}
@media (min-width: 1024px) {
  .calculator-cost__left__TOV {
    height: 100%;
  }
}
.calculator-cost__right {
  padding: 1.5em 2em 1.75em;
  background: #252D55;
  color: #fff;
}
@media (min-width: 1024px) {
  .calculator-cost__right {
    padding: 2.5em 3.75em;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.calculator-cost__right__headline {
  font-size: 1.25em;
  font-weight: 500;
  margin-bottom: 0.5em;
}
.calculator-cost__right__subheadline {
  font-size: 0.875em;
  font-weight: 400;
  margin-bottom: 1.5em;
}
.calculator-cost__right__cost {
  margin-bottom: 2em;
}
.calculator-cost__right__cost span {
  font-size: 2em;
  font-weight: 700;
}
.calculator-cost__right__send-form__top {
  display: flex;
  justify-content: space-between;
  gap: 1.25em;
}
.calculator-cost__right__send-form__bottom {
  margin-bottom: 3em;
}
.calculator-cost__right__send-form .wpcf7-form-control-wrap {
  margin-bottom: 1.25em;
}
.calculator-cost__right__send-form input:not(.wpcf7-submit) {
  width: 100%;
  border: none;
  font-size: 0.875em;
  height: 2.375em;
  outline: none;
  border-radius: 4px;
  padding: 0 0.75em;
  font-family: e-Ukraine;
}
.calculator-cost__right__send-form input:not(.wpcf7-submit)::placeholder {
  font-size: 0.875em;
}
.calculator-cost__right__send-form .blue_button {
  background: #2040a4;
}
.calculator-cost__right__send-form .blue_button:hover {
  background: #fff;
}
.calculator-cost__right__send-form .blue_button .ajax-loader {
  position: absolute;
}
.calculator-cost__headline {
  margin-bottom: 1.5em;
  font-size: 1.125em;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .calculator-cost__headline {
    margin-bottom: 1em;
  }
}
@media (min-width: 1400px) {
  .calculator-cost__headline {
    margin-bottom: 1.5em;
  }
}
.calculator-cost__block {
  margin-bottom: 3em;
}
@media (min-width: 1024px) {
  .calculator-cost__block {
    margin-bottom: 2em;
  }
}
@media (min-width: 1400px) {
  .calculator-cost__block {
    margin-bottom: 3em;
  }
}
.calculator-cost__block__slider {
  max-width: calc(100% - 0.625em);
  margin: auto;
}
.calculator-cost .radio-buttons input[type=radio] {
  display: none;
}
.calculator-cost .radio-buttons label {
  padding: 0.625em 1.25em;
  background-color: #F1F3F8;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.25s;
  width: 100%;
  height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calculator-cost .radio-buttons input[type=radio]:checked + label {
  background-color: #1C54F4;
  color: #fff;
  border-color: #1C54F4;
}
.calculator-cost .radio-buttons input[type=radio]:hover + label {
  background-color: #e0e0e0;
}
@media (min-width: 1024px) and (max-width: 1400px) {
  .calculator-cost .noUi-value-horizontal {
    font-size: 10px;
  }
}

.styled-radio {
  display: flex;
  cursor: pointer;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
  /* Accessible outline */
  /* emove comment to use */
  /*
    &:focus-within {
        outline: .125em solid $primary-color;
    }
  */
}
.styled-radio:last-child {
  margin-bottom: 0;
}
.styled-radio--same-line {
  display: flex;
  flex-direction: row;
}
.styled-radio--same-line label {
  margin-bottom: 0;
  margin-right: 3em;
}
.styled-radio input {
  position: absolute;
  left: -9999px;
}
.styled-radio input:checked + span {
  font-weight: 500;
}
.styled-radio input:checked + span:before {
  border-color: #1C54F4;
}
.styled-radio input:checked + span:after {
  content: "";
  background: #1C54F4;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 4px;
  border-radius: 50%;
}
.styled-radio span {
  display: flex;
  align-items: center;
  border-radius: 100%;
  transition: 0.25s ease;
  position: relative;
  font-weight: 400;
  font-size: 0.875em;
}
.styled-radio span:before {
  display: flex;
  flex-shrink: 0;
  content: "";
  background-color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 14px;
  transition: 0.25s ease;
  border: 2px #1E293B solid;
}

.calculator-cost__right__selected-values {
  display: flex;
  flex-wrap: wrap;
}
.calculator-cost__right__selected-values.TOV-selected [data-type=FOP] {
  display: none;
}
.calculator-cost__right__selected-values.FOP-selected [data-type=TOV] {
  display: none;
}

.output-item {
  background: #fff;
  color: #1E293B;
  font-weight: 500 !important;
  padding: 0.75em 2.625em;
  border-radius: 32px;
  margin-bottom: 1em;
  margin-right: 1em;
}

.light_blue_button {
  color: #1C54F4;
  background: #d1dbfd;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  border-radius: 40px;
  border: 2px solid transparent;
  transition: all 0.4s ease-out;
}
.light_blue_button span {
  padding: 1.125em 3em;
}

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