.calculator_wrap * {
    outline: none;
}

.flex_start_between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.text-center {
    text-align: center!important;
}

.calculator_wrap {
    margin: 0 auto;
    max-width: 1000px;
    margin-top: -100px;
    padding: .75em 0;
    color: #7a7a7a;
}

.flex-wrap {
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.d-flex {
    display: flex;
}

.calculator_wrap__title {
    color: #54595f;
    font-size: 16px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.calculator_wrap__text{
    font-size: 12px;
}

.calculator__form_title {
    color: #54595f;
    margin: 20px 0;
    font-size: 14px;
    text-align: center;
}

.calculator__form_field {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.calculator__form_field_caption,
.slider_item__caption {
    color: #54595f;
    width: 300px;
    max-width: 200px;
    display: inline-block;
    margin-right: 10px;
    font-size: 12px;
}

.calculator__form_field_input {
    border: solid 1px #ddaf98;
    color: #953;
    border-radius: 3px;
    padding: 5px;
    max-width: 150px;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 15px;
    transition: .5s;
}

.calculator__form_field_input:focus {
    border-color: #472c1f;
    color: #321c11;
}

.calculator__form_subtitle {
    color: #54595f;
    margin: 20px 0;
    font-size: 14px;
}

.calculator__form_select {
    width: 100%;
    position: relative;
}

.calculator__form_select_list {
    background: white;
    position: absolute;
    width: 100%;
    overflow: auto;
    max-height: 200px;
    box-shadow: 0px 0px 3px 0px #ddaf98;
    display: none;
}

.calculator__form_select_list li {
    padding: 5px 0 5px 5px;
    transition: .5s;
    font-size: 14px;
    cursor: pointer;
}

.calculator__form_select_list li:hover {
    background: #f2f2f2;
}

.calculator__form_select input {
    cursor: pointer;
}

.calculator__form_field > .calculator__form_subtitle {
    margin-left: -20px;
}

.calculator__form_field > .calculator__form_subtitle,
.calculator__form_field > .calculator__form_subtitle + input {
    margin-top: 20px;
    max-width: 345px;
}

.note {
    text-align: right;
    font-size: 12px;
    font-style: italic;
    margin-bottom: 5px;
}

.note sup{
    font-size: 18px;
    position: relative;
    top: 3px;
    color: red;
}

.note+.note{
    margin-bottom: 60px;
    display: block;
}

.calculator__form_result_title {
    font-size: 16px;
}

.flex_start_between.result .calculator__form_result_title{
    margin: 5px;
    padding: 5px;
    font-size: 16px;
    width: calc(100% - 40px);
    min-width: unset; 
}

.calculator__form_result_value{
    padding: 5px 10px;
    border-bottom: 1px solid #ddaf98;
    text-align: center;
    font-size: 16px;
    margin: 5px;
    margin-bottom: 5px;
}

.slider_list {
    width: 100%;
    margin-top: 40px;
    background: rgba(213, 213, 213, 0.55);
    border-radius: 3px;
}

.start {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 7px;
    font-size: 47px;
    color: #373737;
}


.slider_item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.slider_item:first-child{
    text-align: center;
    display: block;
    width: 650px;
}

.slider_item h3{
    margin-bottom: 20px;
}

.slider_wrap {
    width: 100%;
    max-width: 200px;
}

.slider_wrap > p {
    margin-top: 16px;
}

.dop_params{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.radio_wrap{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
}

.dop_params>div{
    width: 220px;
    margin: 20px 0;
}

.radio__title {
    text-transform: initial;
    margin-right: 14px;
    font-size: 14px;
    color: #54595f;
    min-height: 32px;
}

.radio__item input {
    display: none;
}

.radio__item label {
    font-size: 14px;
    cursor: pointer;
    padding-left: 30px;
    position: relative;
}

.radio__item label:before,
.radio__item label:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    left: 0;
    top: 4px;
    transition: background .5s;
    background: transparent;
}

.radio__item label:before {
    width: 15px;
    height: 15px;
    border: solid 1px #c56a4f;
    box-sizing: border-box;
}

.radio__item input:checked + label:after {
    width: 11px;
    height: 11px;
    top: 6px;
    left: 2px;
    background: #472c1f;
}

.result > .flex_start_between {
    justify-content: flex-start;
    align-items: center;
}

.calculator_wrap__text_has_input {
    margin: 0 0 0 20px;
    max-width: 650px;
}

.calculator_wrap__text_has_input .calculator__form_field_input {
    max-width: 100px;
    padding: 0 5px;
    line-height: 14px;
}

.payback {
    padding-left: 20px;
}

.payback > p {
    margin: 0;
    padding-right: 6px;
}

/*.payback .calculator__form_field_input {
    margin-right: 16px;
}*/

.fraction {
    margin-right: 8px;
}

.fraction > p:first-child {
    border-bottom: solid 1px #c56a4f;
}

.ui-slider-wrapper{position:relative}.ui-slider-wrapper .ui-slider-horizontal{width:100%}.ui-slider-labels{position:absolute;border:1px solid transparent}.ui-slider-label-ticks{border:1px solid transparent;position:absolute;white-space:nowrap}.ui-slider-label-ticks span{font-size:.9em;min-width:1.2em}.ui-slider-wrapper.horizontal{height:4.5em}.horizontal .ui-slider-labels{left:0;right:0;top:.7em}.horizontal .ui-slider-label-ticks{width:1.2em;height:.8em;text-align:center;border-left:1px solid #999}.horizontal .ui-slider-label-ticks span{position:relative;display:inline-block;margin-left:-1.2em;top:.8em}.ui-slider-wrapper.vertical{width:4.5em}.vertical .ui-slider-labels{top:1px;bottom:0;left:.7em}.vertical .ui-slider-label-ticks{height:1.2em;width:.8em;border-bottom:1px solid #999}.vertical .ui-slider-label-ticks span{position:relative;display:inline-block;margin-left:1em;top:.6em}

.kzp-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sliderlens {
    opacity: .8;
    cursor: pointer;
}
.sliderlens.focus {
    opacity: 1;
}
.sliderlens .range {
    background-color: #050505;
    border-width: 0.0625em;
    border-style: solid;
    -webkit-border-image: -webkit-linear-gradient(top, #121212, #787878) 1;
    -moz-border-image: -moz-linear-gradient(top, #121212, #787878) 1;
    -o-border-image: -o-linear-gradient(top, #121212, #787878) 1;
    -ms-border-image: -ms-linear-gradient(top, #121212, #787878) 1;
    border-image: linear-gradient(to bottom, #121212, #787878) 1;
}
.sliderlens .range > div {
    background-color: #313131;
}
.sliderlens .range.drag > div {
    cursor: ew-resize;
}
.sliderlens .range.drag.dragging > div {
    cursor: none;
}
.sliderlens > .handle,
.sliderlens > .handle1,
.sliderlens > .handle2 {
    border-radius: 3em/.75em;
    cursor: ew-resize;
    background-color: #fff;
    box-shadow: 0 0 0.3125em -0.03125em #000000;
    border: 0 solid #787878;
    border-bottom-color: #121212;
    border-width: 0.0625em 0;
}
.sliderlens > .handle:before,
.sliderlens > .handle1:before,
.sliderlens > .handle2:before,
.sliderlens > .handle:after,
.sliderlens > .handle1:after,
.sliderlens > .handle2:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.sliderlens > .handle.dragging,
.sliderlens > .handle1.dragging,
.sliderlens > .handle2.dragging {
    box-shadow: 0 0 0.3125em -0.0625em #000000;
}
.sliderlens > .handle .range,
.sliderlens > .handle1 .range,
.sliderlens > .handle2 .range {
    -webkit-border-image: -webkit-linear-gradient(top, #121212, #d1d1d1) 1;
    -moz-border-image: -moz-linear-gradient(top, #121212, #d1d1d1) 1;
    -o-border-image: -o-linear-gradient(top, #121212, #d1d1d1) 1;
    -ms-border-image: -ms-linear-gradient(top, #121212, #d1d1d1) 1;
    border-image: linear-gradient(to bottom, #121212, #d1d1d1) 1;
}
.sliderlens > .handle:before {
    right: 50%;
    bottom: 55%;
    border-right: 0.0625em solid #bababa;
    z-index: 1;
}
.sliderlens > .handle:after {
    background: -webkit-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: -moz-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: -o-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: -ms-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: linear-gradient(to right, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
}
.sliderlens > .handle1 {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.sliderlens > .handle1:after {
    background: -webkit-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: -moz-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: -o-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: -ms-linear-gradient(left, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: linear-gradient(to right, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
}
.sliderlens > .handle2 {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.sliderlens > .handle2:after {
    background: -webkit-linear-gradient(left, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: -moz-linear-gradient(left, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: -o-linear-gradient(left, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: -ms-linear-gradient(left, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: linear-gradient(to right, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
}
.sliderlens svg > path {
    stroke: #bababa;
}
.sliderlens svg > g > text {
    fill: #373737;
    font-size: .5em;
}
.sliderlens.vert > .handle,
.sliderlens.vert > .handle1,
.sliderlens.vert > .handle2 {
    cursor: ns-resize;
    border-radius: 3em/.75em;
}
.sliderlens.vert > .handle .range,
.sliderlens.vert > .handle1 .range,
.sliderlens.vert > .handle2 .range {
    -webkit-border-image: -webkit-linear-gradient(top, #121212, #787878) 1;
    -moz-border-image: -moz-linear-gradient(top, #121212, #787878) 1;
    -o-border-image: -o-linear-gradient(top, #121212, #787878) 1;
    -ms-border-image: -ms-linear-gradient(top, #121212, #787878) 1;
    border-image: linear-gradient(to bottom, #121212, #787878) 1;
}
.sliderlens.vert > .handle:before {
    right: 55%;
    bottom: 50%;
    border-right: none;
    border-bottom: 0.0625em solid #bababa;
}
.sliderlens.vert > .handle:after {
    background: -webkit-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: -moz-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: -o-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: -ms-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 50%, rgba(56, 56, 56, 0.25) 50%, rgba(56, 56, 56, 0.95) 100%);
}
.sliderlens.vert > .handle1 {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.sliderlens.vert > .handle1:after {
    background: -webkit-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: -moz-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: -o-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: -ms-linear-gradient(top, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
    background: linear-gradient(to bottom, rgba(69, 69, 69, 0.95) 0%, rgba(120, 120, 120, 0.25) 100%);
}
.sliderlens.vert > .handle2 {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.sliderlens.vert > .handle2:after {
    background: -webkit-linear-gradient(top, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: -moz-linear-gradient(top, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: -o-linear-gradient(top, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: -ms-linear-gradient(top, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
    background: linear-gradient(to bottom, rgba(56, 56, 56, 0.25) 0%, rgba(56, 56, 56, 0.95) 100%);
}
.sliderlens.fixed {
    border-width: 0.0625em;
    border-style: solid;
    -webkit-border-image: -webkit-linear-gradient(top, #121212, #787878) 1;
    -moz-border-image: -moz-linear-gradient(top, #121212, #787878) 1;
    -o-border-image: -o-linear-gradient(top, #121212, #787878) 1;
    -ms-border-image: -ms-linear-gradient(top, #121212, #787878) 1;
    border-image: linear-gradient(to bottom, #121212, #787878) 1;
    background-color: #383838;
    cursor: ew-resize;
}
.sliderlens.fixed:before,
.sliderlens.fixed:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-width: 0 0 0.0625em 0;
    border-style: solid;
    pointer-events: none;
    -webkit-border-image: -webkit-linear-gradient(top, #050505, #5f5f5f) 1;
    -moz-border-image: -moz-linear-gradient(top, #050505, #5f5f5f) 1;
    -o-border-image: -o-linear-gradient(top, #050505, #5f5f5f) 1;
    -ms-border-image: -ms-linear-gradient(top, #050505, #5f5f5f) 1;
    border-image: linear-gradient(to bottom, #050505, #5f5f5f) 1;
}
.sliderlens.fixed:after {
    border-width: 0 0.0625em;
    box-shadow: inset 1em 0 1.25em -0.5em #000000, inset -1em 0 1.25em -0.5em #000000;
}
.sliderlens.fixed.vert {
    cursor: ns-resize;
}
.sliderlens.fixed.vert:before {
    border-width: 0 0.0625em;
}
.sliderlens.fixed.vert:after {
    border-width: 0 0 0.0625em 0;
    box-shadow: /*inset 0 0 @refScale*.25 @borderColor,*/
            inset 0 1em 1.25em -0.5em #000000, inset 0 -1em 1.25em -0.5em #000000;
}
.sliderlens.fixed > .handle {
    border-radius: 0;
    border: none;
}
.sliderlens.vert .range.drag > div {
    cursor: ns-resize;
}
.sliderlens.dragging {
    cursor: none;
}
.sliderlens.dragging > .handle,
.sliderlens.dragging > .handle1,
.sliderlens.dragging > .handle2 {
    cursor: none;
}

.handle{
    width: 20%!important;
}

.kzp_input{
    max-width: 100%;
    display: block;
    min-width: 650px;
}

.start{
    width: 121px;
    height: 53px;
    background-image: url(/wp-content/themes/twentyseventeen/assets/images/start.png);
    overflow: hidden;
}

.start span{
    padding: 0 6px;
}

.dop_params {
    background: rgba(213, 213, 213, 0.55);
    padding: 0 60px;
    border-radius: 3px;
    margin-bottom: 20px;
}

.kzp-flex h3+div {
    background: rgba(213, 213, 213, 0.55);
    padding: 0 60px;
    border-radius: 3px;
    padding-bottom: 20px!important;
}

.q_ust_calc{
    justify-content: flex-end;
    margin-top: 20px;
}

.start_wrap {
    display: flex;
    align-items: center;
}

.start_wrap svg{
    cursor: pointer;
    margin: 5px;
    fill: hsl( 20, 40%, 20% );
    height: 53px;
    width: 20px;
}
.wrap {
    padding: 0;
    margin: 0;
}
.wrap .RadioBtnsWrap {
    display: inline-block;
    position: relative;
    width: 140px;
}
.wrap .RadioBtnsWrap label {
    display: inline-block;
    position: relative;
    margin-left: 40px;
    text-align: left;
    height: 40px;
    line-height: 40px;
    min-width: 100px;
    font-size: 16px;
    cursor: pointer;
}
/*.wrap .RadioBtnsWrap label:not(:nth-of-type(1)) {
  margin-top: 17px;
}*/
.wrap .Radio {
    -webkit-appearance: none;
    height: 0;
    width: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
}
.wrap .RadioBtnsWrap label::after {
    content: 'x';
    color: transparent;
    position: absolute;
    left: -44px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    background-color: #FFFFFF;
    display: inline-block;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    border-color: #b0623b;
    border-style: solid;
    border-width: 8px;
    /*transition: background-color 0.6s, border-width 0.4s, width 0.6s, height 0.6s, left 0.6s;
    -webkit-transition: background-color 0.6s, border-width 0.4s, width 0.6s, height 0.6s, left 0.6s;*/
    -webkit-box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.75);
}
.wrap .Radio:checked + label::after {
    background-color: #472c1f;
    width: 20px;
    height: 20px;
    left: -47px;
    top: 4px;
    border-width: 6px;
    -webkit-box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.75), inset 0px 0px 5px 1px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.75), inset 0px 0px 5px 1px rgba(0, 0, 0, 0.75);
}
.wrap .RadioBtnsWrap label:not(:nth-of-type(1))::before {
    content: '';
    position: absolute;
    left: -39px;
    height: 57px;
    width: 4px;
    display: inline-block;
    background-color: #b0623b;
    -webkit-box-shadow: 1px 4px 2px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 1px 4px 2px 1px rgba(0, 0, 0, 0.25);
}
.wrap .RadioBtnsWrap label::before {
    bottom: 28px;
}
.wrap .Radio:checked + label + input + label::before {
    height: 52px;
    /*transition: height 0s linear 0.3s;
    -webkit-transition: height 0s linear 0.3s;*/
}

.count{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
}


@media screen and (max-width: 1024px) {

    .calculator_wrap {
        padding-right: 10px;
        padding-left: 10px;
        box-sizing: border-box;
    }

    .kzp-flex {
        flex-direction: column;
    }

    .dop_params>div {
        width: 48%;
    }

}

@media screen and (max-width: 889px) {

    .dop_params>div {
        flex-direction: column;
    }

    .slider_list, .result {
        flex-direction: column;
        align-items: center;
    }

}

@media screen and (max-width: 700px) {

    .result {
        flex-direction: column;
    }

    .slider_item__caption {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
    }

    .radio__title {
        min-width: unset;
    }

    .radio_wrap {
        padding-left: 10px;
    }

    .calculator_wrap {
        margin-top: -60px;
    }

    .slider_item:first-child {
        width: 100%;
    }

    .sliderlens,
    .slider_wrap {
        max-width: 100%;
    }

    .kzp_input {
        min-width: unset !important;
    }

}

@media screen and (max-width: 512px) {

    .slider_list,
    .calculator__form_field {
        flex-direction: column;
    }

    .mob-row {
        flex-direction: row;
    }

    .kzp-flex > .calculator__form_title {

    }

    .dop_params {
        padding: 0;
    }

    .kzp-flex h3+div { 
        padding: 0; 
        width: 100%;
    }

    .wrap {
        padding: 0 !important;
    }

}

/*#custom-handle2,#custom-handle1{*/
/*    width: 3em;*/
/*    height: 1.6em;*/
/*    top: 50%;*/
/*    margin-top: -.8em;*/
/*    text-align: center;*/
/*    line-height: 1.6em;*/
/*}*/


.slider1 label, .slider2 label, .slider4 label, .slider3 label{
    position: absolute;
    width: 20px;
    margin-left: -10px;
    text-align: center;
    margin-top: -30px;
}

.step2_form, .step1_form, .step0_form{
    display: none;
}

.error{
    color:red;
    margin: 0;
}

.step0_form .error{
    display: block;
    margin: 10px;
    text-align: center;
    font-size: 14px;
}

.cfg__step_wrap+p.error {    
    width: 100%;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 30px;
    font-size: 17px;
    box-sizing: border-box;
    max-width: 700px;
    text-shadow: 1px 1px 2px #6a3b2a;
    letter-spacing: 1px;
    line-height: 22px;
}

.cfg__step_wrap+p.error span {
    display: inline-block;
    margin-right: 20px;
    border: 2px solid red;
    padding: 10px;
    border-radius: 100%;
    height: 50px;
    width: 50px;
    font-size: 30px;
    font-weight: bold;
}

.stay_request__form_field a{
    color: #c46a50;
    font-size: 22px;
}

.cfg+#kayzp_total a+.after_cfg__calculated_value_item.before_price,
.cfg+#kayzp_total a+.after_cfg__calculated_value_item+.after_cfg__calculated_value_item.before_price {
    display: none;
}