.style-form, .style-form *{
    box-sizing: border-box;
}
.style-form{
    position: relative;
}
.style-form__title, .style-form__selected-label{
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 5px;
}
.style-form__selected-label{
    margin-top: 10px;
}
label.style-form__title{
    cursor: pointer;
    display: block;
}
.style-form__radio-buttons{
    display: inline-flex;
    overflow: hidden;
    border-radius: 4px;
    width: auto;
    border: 1px solid #c9cccf;
    position: relative;
    transition: .3s all;
}
.style-form__radio-buttons:hover, .style-form__radio-buttons:hover .style-form__radio-button{
    border-color: #3a87ad;
}
.style-form__radio-buttons:hover{
    box-shadow: 0 0 5px rgba(58,135,173,1);
}
.style-form__radio-button{
    overflow: hidden;
    border-right: 1px solid #c9cccf;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: .3s all;
}
.style-form__radio-button:last-child{
    border-right: 0 !important;
}
.style-form__radio-button input{
    position: absolute;
    left: -9999px;
}
.style-form__radio-button label, .style-form input[type=text], .style-form input[type=email], .style-form input[type=tel]{
    line-height: normal;
    font-size: 16px;
    transition: .3s all;
    cursor: pointer;
    padding: 7px 20px;
    display: block;
}
.style-form__radio-button input:checked+label{
    color: #3a87ad;
}
.style-form__radio-checked{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #d9edf7;
    width: auto;
    transition: .2s all;
}
input, select, textarea{
    outline: none;
    width: 100%;
}

.style-form input[type=text], .style-form textarea, .style-form input[type=email], .style-form input[type=tel], .style-form input[type=number], .style-form input[type=email], .style-form input[type=tel]{
    border: 1px solid #c9cccf;
    border-radius: 4px;
    cursor: initial;
    transition: .3s all;
    height: auto;
}
.style-form input[type=text]:focus, .style-form textarea:focus, .style-form input[type=email]:focus, .style-form input[type=tel]:focus, .style-form input[type=number]:focus, .style-form .open-list input[type=text]{
    border-color: #3a87ad;
    box-shadow: 0 0 5px rgba(58,135,173,1);
}
.style-form__autocomplete-input input{
    transition: .3s all;
}
.style-form textarea{
    padding: 7px 12px;
    margin: 0;
}
.style-form__list-content .hide-item, .style-form__list-content .hide-parent{
    display: none;
}
.style-form__autocomplete-empty-list{
    cursor: not-allowed;
    padding: 7px 20px;
    font-size: 18px;
    font-weight: 500;
    display: none;
}
.style-form__autocomplete-list{
    display: none;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 59px;
    width: 100%;
    border: 1px solid #c9cccf;
    border-radius: 4px;
    z-index: 10;
    background: #fff;
    margin-top: 4px;
    max-height: 250px;
    min-height: 150px;
    padding-top: 40px;
    padding-left: 40px;
}
.style-form__list-parent-item-title{
    padding: 6px 20px;
    font-size: 18px;
    font-weight: 500;
    cursor: text;
    border-bottom: 1px solid #c9cccf;
}
.style-form__list-item-title{
    cursor: pointer;
    padding: 8px 20px 8px 40px;
    border-bottom: 1px solid #c9cccf;
    font-size: 14px;
    transition: .2s all;
    position: relative;
}
.style-form__list-item-title.selected-item{
    padding-left: 45px;
}
.style-form__list-item-title svg{
    opacity: 0;
    transform: scale(0.5);
    color: rgba(0, 128, 0, 1);
    fill: rgba(0, 128, 0, 1);
    position: absolute;
    top: calc(50% - 13px);
    left: 16px;
    transition: .3s opacity;
}
.style-form__list-item-title.selected-item svg{
    opacity: 1;
}
.style-form__list-item{
    position: relative;
}
.style-form__list-item-title:before, .style-form__list-item-title:after{
    position: absolute;
    content: "";
    display: block;
    transition: .2s all;
    left: 0;
    right: 0;
}
.style-form__list-item-title:before{
    background: rgba(8, 114, 184, 0.2);
    z-index: -2;
    top: 0;
    bottom: 100%;
}
.style-form__list-item-title:after{
    background: rgba(0, 128, 0, 0.2);
    z-index: -1;
    top: 100%;
    bottom: 0;
}
.style-form__list-item-title:hover{
    border-color: rgba(8, 114, 184, 1);
}
.style-form__list-item-title.selected-item{
    border-color: rgba(0, 128, 0, 1);
}
.style-form__list-item-title:hover:before{
    bottom: 0;
}
.style-form__list-item-title.selected-item:before{
    bottom: 100%;
}
.style-form__list-item-title.selected-item:after{
    top: 0;
}
.style-form__autocomplete-selected{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.style-form__selected-item{
    border: 1px solid #c9cccf;
    padding: 7px 24px 7px 12px;
    border-radius: 2px;
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}
.style-form__item-remove{
    position: absolute;
    top: -2px;
    right: -2px;
    cursor: pointer;
    width: 24px;
    height: 24px;
}
.style-form__item-remove svg{
    transform: scale(0.4);
    transition: .3s all;
}
.style-form__item-remove:hover svg{
    color: #d20911;
    fill: #d20911;
}
.style-form__list-content{
    overflow: hidden;
    max-height: 200px;
    overflow-y: auto;
}
.style-form__autocomplete-informer{
    position: absolute;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    top: 0;
    left: 0;
    padding: 7px 12px;
    text-align: center;
    width: 100%;
    background: rgba(252, 248, 227, 1);
    color: rgba(192, 152, 83, 1);
    border-bottom: 1px solid rgba(192, 152, 83, 1);
}
.style-form__autocomplete-informer .style-form__temp-informer{
    top: 4px;
}
.style-form__autocomplete-informer svg{
    transform: scale(0.7);
    margin-top: -2px;
    color: rgba(192, 152, 83, 1);
    fill: rgba(192, 152, 83, 1);
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}
.style-form__selected-button{
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 0;
    width: 40px;
    display: flex;
    z-index: 2;
    align-items: center;
    justify-content: center;
    height: calc(100% - 40px);
    background: rgba(252, 248, 227, 1);
    color: rgba(192, 152, 83, 1);
    border-right: 1px solid rgba(192, 152, 83, 1);
}
.style-form__selected-button span{
    transform: rotate(-90deg);
    display: block;
    white-space: nowrap;
    color: rgba(192, 152, 83, 1);
}
.style-form__temp-informer{
    position: absolute;
    background: rgba(0,0,0,.7);
    color: #fff;
    padding: 7px 12px;
    border-radius: 4px;
    top: 0px;
    cursor: pointer;
    z-index: 5;
    right: 20px;
    opacity: 0;
}
.style-form__autocomplete_selected_empty{
    color: rgba(0,0,0,0.5);
    padding: 7px 12px 7px 0;
    margin-right: 10px;
    margin-bottom: 10px;
}
.style-form__list-content>.style-form__list-parent-item>.style-form__list-parent-item-title{
    font-weight: bold;
}
.style-form__list-content>.style-form__list-item .style-form__list-item-title{
    padding-left: 20px;
}
.style-form__list-content>.style-form__list-item .style-form__list-item-title.selected-item{
    padding-left: 45px;
}
.style-form.error .style-form__autocomplete-input input,
.style-form.error .style-form__text-input input,
.style-form.error .style-form__email-input input{
    background: rgba(210,9,17,0.1);
    border-color: #d20911;
    box-shadow: 0 0 5px rgba(210,9,17,0.9);
}
.style-form.success .style-form__autocomplete-input input,
.style-form.success .style-form__text-input input,
.style-form.success .style-form__email-input input{
    background: rgba(0, 128, 0, 0.1);
    border-color: rgba(0, 128, 0, 1);
    box-shadow: none;
}
.style-form__validate{
    position: absolute;
    right: 10px;
    z-index: 10;
    top: 60px;
    transition: .3s all;
}
.style-form__validate svg{
    transform: scale(0.6);
    position: absolute;
    right: 0;
    top: -28px;
    opacity: 0;
    transition: .3s opacity;
}
.style-form.error .icon-error{
    opacity: 1;
    fill: rgba(210,9,17,0.9);
    color: rgba(210,9,17,0.9);
}
.style-form.success .icon-success{
    opacity: 1;
    fill: rgba(0, 128, 0, 1);
    color: rgba(0, 128, 0, 1);
}
.style-form__autocomplete-input{
    position: relative;
}
.style-form__autocomplete-input input{
    padding-right: 40px;
}

.style-form__input-informer{
    font-size: 12px;
    padding: 3px 20px 5px;
    color: #242424;
    background: #c9cccf;
    letter-spacing: 0.5px;
    border-radius: 0 0 4px 4px;
    margin-top: 0px;
    position: relative;
}
.style-form__input-informer a{
    font-weight: bold;
    color: #000;
}
.style-form__has-informer{
    border-radius: 4px 4px 0 0 !important;
    position: relative;
    z-index: 1;
}
.style-form__file-input{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.style-form__file-input .style-form__title{
    width: 100%;

}
.style-form__general-file-input{
    width: 25%;
    overflow: hidden;
    position: relative;
    padding-right: 7px;
}
.style-form__general-file-input input{
    position: absolute;
    left: -999px;
}
.style-form__label-file-input{
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    text-align: center;
    transition: .3s all;
    cursor: pointer;
    border-radius: 4px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik05IDE2aC04djZoMjJ2LTZoLTh2LTFoOXY4aC0yNHYtOGg5djF6bTExIDJjLjU1MiAwIDEgLjQ0OCAxIDFzLS40NDggMS0xIDEtMS0uNDQ4LTEtMSAuNDQ4LTEgMS0xem0tNy41IDBoLTF2LTE0Ljg4M2wtNC43MzUgNS43MzItLjc2NS0uNjQ0IDYuMDIxLTcuMjA1IDUuOTc5IDcuMTk1LS43NjQuNjQ1LTQuNzM2LTUuNzI0djE0Ljg4NHoiLz48L3N2Zz4=) center calc(50% - 20px) no-repeat #f0f0f0;
    background-size: 30% auto;
    padding-top: 50px;
    border: 1px solid #c9cccf;
    font-size: 16px;
    letter-spacing: 1px;
}
.style-form__label-file-input:hover{
    border-color: #3a87ad;
    color: #3a87ad;
    box-shadow: 0 0 5px rgba(58,135,173,1);
    transform: scale(.9);
}
.style-form__conteiner-photo{
    width: 75%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.style-form__item-photo {
    width: 32.5%;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yNCAyMmgtMjR2LTIwaDI0djIwem0tMS0xOWgtMjJ2MThoMjJ2LTE4em0tMSAxNmgtMTlsNC03LjQ5MiAzIDMuMDQ4IDUuMDEzLTcuNTU2IDYuOTg3IDEyem0tMTEuODQ4LTIuODY1bC0yLjkxLTIuOTU2LTIuNTc0IDQuODIxaDE1LjU5M2wtNS4zMDMtOS4xMDgtNC44MDYgNy4yNDN6bS00LjY1Mi0xMS4xMzVjMS4zOCAwIDIuNSAxLjEyIDIuNSAyLjVzLTEuMTIgMi41LTIuNSAyLjUtMi41LTEuMTItMi41LTIuNSAxLjEyLTIuNSAyLjUtMi41em0wIDFjLjgyOCAwIDEuNS42NzIgMS41IDEuNXMtLjY3MiAxLjUtMS41IDEuNS0xLjUtLjY3Mi0xLjUtMS41LjY3Mi0xLjUgMS41LTEuNXoiLz48L3N2Zz4=) center no-repeat #F0F0F0;
    background-size: 30% auto;
    border-radius: 4px;
    height: 120px;
    transition: .3s all;
    border: 1px solid #c9cccf;
    position: relative;
}
.style-form__item-photo.not-empty-photo:hover{
    border-color: #d20911;
    background-size: 32% auto;
    cursor: default;
    box-shadow: 0 0 5px rgba(210,9,17,0.9);
}
.style-form__item-photo.not-empty-photo{
    text-align: center;
    overflow: hidden;
}
.style-form__item-photo.not-empty-photo img{
    display: block !important;
    min-height: 100%;
    min-width: 100%;
    max-height: 150%;
    max-width: 150%;
}
.style-form__item-photo:after{
    content: "Удалить файл";
    display: flex;
    justify-content: flex-end;
    text-align: right;
    align-items: flex-end;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    z-index: 2;
    position: absolute;
    opacity: 0;
    cursor: pointer;
    font-size: 10px;
    color: #d20911;
}
.style-form__item-photo:before{
    content: "Удалить файл";
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .4s all;
    color: #d20911;
    font-weight: bold;
    font-size: 20px;
    z-index: 3;
    cursor: pointer;
    transform: rotate(-45deg);
}
.style-form__item-photo.not-empty-photo:after{
    opacity: 1;
}
.style-form__item-photo.not-empty-photo:hover:before{
    opacity: 1;
}
.style-form__item-photo.not-empty-photo:hover:after{
    color: transparent;
}
.style-form__general-file-input.load-photos{
    position: relative;
}
.style-form__general-file-input.load-photos .style-form__label-file-input,
.style-form__general-file-input.full-photos .style-form__label-file-input{
    opacity: 0;
    z-index: -2;
}
.style-form__general-file-input.load-photos:after, .style-form__general-file-input.full-photos:before{
    cursor: not-allowed;
    border-color: #3a87ad;
    color: #3a87ad;
    background-color: transparent;
    background-image: url(/assets/caches/img/upload.gif);
    box-shadow: 0 0 5px rgba(58,135,173,1);
    border-radius: 4px;
    font-weight: bold;
    position: absolute;
    content: "Идет загрузка файлов";
    left: 5px;
    top: 5px;
    right: 8px;
    bottom: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    background-size: 70px auto;
    background-repeat: no-repeat;
    background-position: center -1px;
    padding-top: 60px;
}
.style-form__general-file-input.full-photos:before{
    content: "Загружено максимальное количество файлов!";
    padding-left: 20px;
    padding-right: 20px;
    border-color: #f89406;
    color: #f89406;
    box-shadow: 0 0 5px rgba(251, 180, 80, 1);
    background-image: none;
    padding-top: 0;
    background-color: rgba(251, 180, 80, .1);

}
.search-form__upload-order, .search-form__success-order{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border: 2px solid #3a87ad;
    background: #f0f3f4;
    align-items: center;
    justify-content: center;
    opacity: 1;
    border-radius: 4px;
    display: none;
    z-index: 11;
}
.search-form__success-order{
    border-color: #4CAF50;
    background: #fff;
    border-width: 5px;
    flex-direction: column;
    border-radius: 4px;
    padding: 20px;
}
.search-form__upload-order img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}
.search-form__success-text.title{
    font-size: 30px;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
    color: rgba(0, 128, 0, 1);
}
.search-form__success-text.sub{
    text-align: center;
    margin-top: 10px;
    max-width: 550px;
    font-size: 20px;
    color: rgba(0, 128, 0, 1);
}
.search-form__success-text.repeat{
    width: 100%;
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
}
.search-form__success-text.repeat>div{
    width: 50%;
    text-align: left;
}
.search-form__success-text.repeat .left{
    display: flex;
    align-items: center;
}
.search-form__success-text.repeat .right>div{
    float: left;
    margin-right: 15px;
}
.search-form__success-text.repeat .right svg{
    transform: scale(1.5);
    margin-top: 5px;
    fill: #f89406;
    color: #f89406;
}
.search-form__success-text.repeat .left svg{
    transform: scale(2);
    margin-left: 20px;
    display: inline-block;
    vertical-align: top;
    margin-top: 2px;
    fill: #3a87ad;
    color: #3a87ad
}
.search-form__success-text.repeat .left a{
    font-size: 16px;
    font-weight: bold;
    line-height: 23px;
}
.search-form__success-text.repeat a{
    display: block;
}
/** анимация на окончание оформления заявки **/
.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
    transform: scale(1.5);
}
.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
    display: none;
}
.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #FFFFFF;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}
@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
/****************************************************/

/** автозаполнение для варианта с одиночным выбором **/

.autocomplete-multiple-false .style-form__selected-label,
.autocomplete-multiple-false .style-form__autocomplete_selected_empty,
.autocomplete-multiple-false .style-form__selected-button{
    display: none !important;
}
.autocomplete-multiple-false .style-form__autocomplete-list{
    padding-left: 0;
    padding-top: 0;
}
.autocomplete-multiple-false .style-form__autocomplete-selected{
    left: 0;
    top: 26px;
    width: 100%;
    background: #fff;
    z-index: 1;
    position: absolute;
    overflow: hidden;
    transition: .3s all;
}
.autocomplete-multiple-false .style-form__selected-item{
    width: 100%;
    margin: 0;
}
.autocomplete-multiple-false .style-form__item-remove{
    position: relative;
    display: inline-block;
    top: 0;
    right: 0;
    margin-top: -3px;
    vertical-align: top;
    margin-bottom: -3px;
    margin-left: 10px;
}
.autocomplete-multiple-false .style-form__item-remove svg{
    transform: scale(.6);
}
.not-models .style-form__list-parent-item-title{
    height: 0;
    overflow: hidden;
    border: 0;
    padding: 0;
}
/*****************************************************/

@media( max-width: 640px){
    .search-form__success-text.repeat>div{
        width: 100%;
    }
    .search-form__success-text.repeat .right{
        margin-top: 30px;
        text-align: left;
    }
    .search-form__success-text.repeat{
        max-width: 310px;
        margin-top: 30px;
        flex-wrap: wrap;
    }
    .search-form__success-text.repeat .left svg{
        float: left;
        margin-left: 0;
        margin-right: 30px;
    }
    .search-form__success-text.repeat .right>div{
        margin-right: 30px;
    }
}