@font-face {
    font-family: HelveticaNeueCyr; /* Имя шрифта */
    src: url(../fonts/helveticaneuecyr-roman.ttf); /* Путь к файлу со шрифтом */
}

@font-face {
    font-family: HelveticaNeueCyrBold; /* Имя шрифта */
    src: url(../fonts/helveticaneuecyr400.ttf); /* Путь к файлу со шрифтом */
}
.calculator {
    width: 100%;
    text-align: left !important;
    overflow: hidden;
    margin-bottom: 30px
}

.calculator__title {
    font-size: 24px !important;
    font-weight: bold !important;
    margin-bottom: 50px
}

.calculator-top {
    max-width: 100%;
    padding: 40px 50px;
    background: #f3f3f3
}

.calculator-top__wrapper {
    display: flex
}

.calculator__select {
    width: 100% !important;
    height: 42px;
    background: inherit;
    /*border: 0 !important;*/
    outline: 0 !important;
    color: #000;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("images/arrow.png") no-repeat center right
}

.calculator__select:before {
    content: "▼";
    padding: 0 8px;
    font-size: 12px;
    position: absolute;
    right: 8px;
    top: 4px;
    z-index: 1;
    text-align: center;
    width: 100px;
    height: 100px;
    pointer-events: none;
    box-sizing: border-box
}

.calculator__btn {
    width: 150px;
    margin-left: 30px;
    font-size: 16px !important;
    padding: 0 !important;
    border-radius: 4px;
    height: 44px
}

.calculator__btn-calculation {
    background: #e84c3d;
    color: #fff
}

.calculator__area {
    margin-top: 15px;
    width: 318px;
    background: #e7e7e7;
    height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e8e8e;
    font-size: 14px !important
}

.calculator-bottom {
    padding: 0;
    max-height: 0;
    transition: padding-bottom .3s, padding-top .3s, max-height 1.5s
}

.calculator-bottom__wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.calculator-bottom-active {
    padding: 40px 50px
}

.calculator__subtitle {
    font-size: 18px !important;
    font-weight: bold !important
}

.calculator__choice,
.calculator__more{
    height: 105px;
    width: 32%;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-top: 20px;
    padding: 20px 30px 20px 60px;
    position: relative;
    cursor: pointer
}

.calculator__choice-disabled,
.calculator__more-disabled{
    color: #a9a9a9 !important;
    cursor: default
}

.calculator__choice-disabled .choice__price,
.calculator__more-disabled .more__price{
    font-weight: normal !important;
    font-size: 11px !important
}

.calculator__choice-disabled .choice__info,
.calculator__more-disabled .more__info{
    cursor: pointer
}

.calculator__choice-disabled:hover .choice__checkbox,
.calculator__more-disabled:hover .more__checkbox{
    background: none !important;
    border: 2px solid #ddd !important
}

.calculator__choice:hover .choice__checkbox,
.calculator__more:hover .more__checkbox{
    background: #fee12a;
    border: 2px solid #fee12a
}

.calculator__choice:nth-child(3n+2),
.calculator__more:nth-child(3n+2){
    margin-left: 2%;
    margin-right: 2%
}

#file {
    display: none !important
}

.input__wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 150px;
    border: 1px solid #e1e1e1;
    position: relative;
    margin-bottom: 0 !important;
    border-radius: 1px;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    padding: 0 15px;
    font-size: 16px !important;
    color: #8e8e8e !important;
    font-weight: normal !important
}

.input__text {
    position: absolute;
    font-size: 14px !important;
    top: -25px;
    left: 15px;
    width: 100%
}

.input__item {
    width: calc(100% - 25px);
    height: 42px;
    border: 0 !important;
    outline: 0 !important;
    background: inherit;
    color: #000 !important
}

.input__item::placeholder {
    font-size: 16px !important;
    color: #8e8e8e !important;
    font-weight: normal !important
}

.choice__input,
.more__input{
    display: none
}

.choice__input:checked ~ .choice__checkbox,
.more__input:checked ~ .more__checkbox{
    background: #fff;
    border: 6px solid #fee12a
}

.choice__title,
.more__title{
    font-size: 16px !important;
    font-weight: bold !important;
    margin-bottom: 10px;
    max-width: 90%
}

.choice__price,
.more__price{
    font-size: 14px !important;
    font-weight: bold !important
}

.choice__one_price,
.more__one_price{
    margin-top: 3px;
    font-size: 14px !important;
    color: #999
}

.choice__checkbox,
.more__checkbox{
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 100%;
    left: 24px;
    top: 20px
}

.choice__info,
.more__info{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #989898;
    border-radius: 100%;
    right: 24px;
    top: 20px;
    color: #fff;
    opacity: .3;
    transition: opacity .15s;
    z-index: 2
}

.choice__info:hover,
.more__info:hover{
    opacity: 1;
    z-index: 5
}

.choice__info:hover .info__wrapper,
.more__info:hover .info__wrapper{
    visibility: visible
}

.info__wrapper {
    color: #000;
    min-width: 250px;
    background: #f3f3f3;
    padding: 15px 20px;
    box-shadow: 0 0 10px 0 rgba(50, 50, 50, .3);
    border-radius: 4px;
    opacity: 1;
    position: absolute;
    top: 35px;
    left: -210px;
    visibility: hidden
}

.info__wrapper::before {
    content: "";
    border: 10px solid transparent;
    border-bottom: 10px solid #f3f3f3;
    position: absolute;
    top: -20px;
    right: 20px
}

.info__wrapper .info__text {
    font-size: 12px !important
}

.cart-accept-policy {
    font-size: 12px;
    line-height: 14px
}

.cart-accept-policy a {
    color: #4990e2
}

.order__wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 20px
}

.order__text {
    width: 32%;
    font-size: 14px !important
}

.order__file {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    width: 32%;
    height: 118px;
    border: 2px dotted #ffe200;
    border-radius: 8px;
    font-size: 14px;
    font-weight: normal;
    line-height: 18px;
    cursor: pointer;
    text-align: center !important
}

.order__file span {
    display: block;
    color: #4990e2
}

.order__file span.gray {
    margin-top: 10px;
    font-size: 12px;
    color: #a2a2a2
}

.order__file-active {
    border: 2px solid #f3f3f3 !important;
    background: #f3f3f3 !important
}

.order__wrapper {
    width: 31%
}

.order__input {
    width: 100%;
    color: #000 !important;
    border: 1px solid #e1e1e1;
    background: inherit;
    min-height: 40px
}

.order__input::placeholder {
    font-size: 16px !important;
    color: #8e8e8e !important;
    font-weight: normal !important
}

.order__input:focus {
    outline: 2px solid #ffe200
}

.order__input:focus + .input__text {
    visibility: visible
}

.order__input:focus-visible + .input__text {
    visibility: visible
}

.order .input__wrapper {
    display: block;
    width: 100%;
    margin: 0 0 30px !important;
    padding: 0;
    border: 0
}

.order .input__text {
    top: -22px
}

.order .input__text-active {
    visibility: visible !important
}

.order__btn {
    width: 100%;
    margin: 0 0 20px 0 !important;
    outline: 0 !important
}

.order .input__text {
    visibility: hidden
}

.drag-hover {
    background: gray
}

.drag-error {
    border: 2px dotted red
}

.order__btn-disable {
    background: #a9a9a9 !important;
    outline: 0 !important;
    cursor: inherit !important
}

.input-error {
    border: 1px solid red !important
}

.file__success {
    display: none;
    align-items: center;
    padding: 35px 30px;
    width: 100%
}

.file__success-active {
    display: flex
}

.success__img-wrapper {
    position: relative;
    margin-right: 15px;
    flex: 0 0 auto
}

.success__text {
    font-size: 14px !important
}

.success__file {
    position: absolute;
    bottom: 3px;
    font-size: 12px !important;
    font-weight: bold !important;
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    color: #e84c3d
}

.file__text-disable {
    display: none
}

@media screen and (max-width: 1000px) {
    .calculator-top {
        position: relative;
        padding-bottom: 100px
    }

    .calculator-top__wrapper {
        justify-content: space-between
    }

    .calculator-top__wrapper .input__wrapper {
        margin: 0 !important;
        width: 24% !important
    }

    .calculator__area {
        width: 49.3333333333%
    }

    .calculator__btn-calculation {
        position: absolute;
        bottom: 40px;
        width: calc(100% - 100px);
        margin: 0;
        left: 50px
    }

    .calculator__choice {
        width: 49%;
        margin: 20px 0 0 0 !important
    }

    .calculator__choice:nth-child(2n) {
        margin-left: 2% !important
    }

    .order__text {
        width: 100%
    }

    .order__wrap {
        flex-wrap: wrap
    }

    .order__file {
        width: 100%;
        margin-bottom: 50px
    }

    .order__wrapper {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%
    }

    .order__wrapper .input__wrapper {
        width: 49%
    }

    .order__btn {
        width: 100%
    }
}

@media screen and (max-width: 710px) {
    .calculator__title {
        font-size: 18px !important;
        margin-bottom: 15px !important
    }

    .calculator-top__wrapper {
        flex-wrap: wrap
    }

    .calculator-top__wrapper .input__wrapper {
        width: 100% !important;
        margin-top: 25px !important
    }

    .calculator-top__wrapper .input__wrapper .input__text {
        top: -20px
    }

    .calculator-top__wrapper .input__wrapper:nth-child(2) {
        margin-bottom: 60px !important
    }

    .choice__title {
        margin-bottom: 5px !important
    }

    .calculator__area {
        position: absolute;
        top: 220px;
        width: calc(100% - 100px)
    }

    .calculator__choice {
        width: 100% !important;
        margin: 10px 0 10px 0 !important
    }

    .calculator__choice:nth-child(2n) {
        margin: 10px 0 10px 0 !important
    }

    .order__wrapper .input__wrapper {
        width: 100% !important
    }
}

@media screen and (max-width: 452px) {
    .calculator__area {
        width: calc(100% - 24px)
    }

    .calculator-top {
        padding: 30px 12px 95px
    }

    .calculator-bottom-active {
        padding: 30px 12px
    }

    .calculator__btn-calculation {
        bottom: 30px;
        width: calc(100% - 24px);
        left: 12px
    }
}

@media screen and (max-width: 345px) {
    .choice__title {
        width: 60%
    }
}

.calculation-price{
    display: flex;
    margin: 20px auto 40px;
}
.calculation-price p{
    margin: 0 20px;
    font-family: HelveticaNeueCyr;
    font-size: 22px;
    text-transform: uppercase;
    color: #333;
    line-height: 24px;
}
.calculation-top {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: flex-start;
    padding: 30px;
    height: 130px;
    border: 1px solid #333;
    box-sizing: border-box;
    border-radius: 6px;
}
.calculation-top .field:first-child{
    margin-left: 30px;
}
.calculation-top .field{
    display: flex;
    flex-direction: column;
    width: 252px;
    align-items: center;
    margin-right: 30px;
}
.calculation-top .field input::placeholder,.calculation-top .field select::placeholder{
    color: #000;
    font-size: 14px;
    text-align: center;
}
.calculation-top .field input, .calculation-top .field select {
    width: 252px;
    height: 40px;
    font-family: HelveticaNeueCyr;
    font-size: 16px;
    text-align: center;
    background: #fff;
    border: 1px solid #ABABAB;
    color: #000;
    box-sizing: border-box;
    border-radius: 6px;
}
.calculation-top .field input::-webkit-input-placeholder       {opacity: 1; transition: opacity 0.3s ease;}
.calculation-top .field input::-moz-placeholder                {opacity: 1; transition: opacity 0.3s ease;}
.calculation-top .field input:-moz-placeholder                 {opacity: 1; transition: opacity 0.3s ease;}
.calculation-top .field input:-ms-input-placeholder            {opacity: 1; transition: opacity 0.3s ease;}
.calculation-top .field input:focus::-webkit-input-placeholder {opacity: 0; transition: opacity 0.3s ease;}
.calculation-top .field input:focus::-moz-placeholder          {opacity: 0; transition: opacity 0.3s ease;}
.calculation-top .field input:focus:-moz-placeholder           {opacity: 0; transition: opacity 0.3s ease;}
.calculation-top .field input:focus:-ms-input-placeholder      {opacity: 0; transition: opacity 0.3s ease;}

.calculation-top .field select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-left: 20px;
    color: #000;
    font-size: 14px;
    line-height: 14px;
}
.calculation-top .quantity svg{
    position: relative;
    top: -30px;
    right: -80px;
}

.calculation-top a,
.calculation-top button{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 11px 77px;
    width: 252px;
    height: 40px;
    background: #FFE100;
    color: #000;
    border: none;
    margin-top: 30px;
    border-radius: 6px;
    font-family: HelveticaNeueCyr;
    text-decoration:none !important;
    cursor:pointer;
}
.calculation-top .field label{
    font-family: HelveticaNeueCyrBold;
    color: #333;
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 14px;
}
.calculation-wrapper{
    margin-top: 20px;
    width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.methods_application {
    flex-wrap: wrap;
    margin: 10px;
    align-items: stretch;
    justify-content: space-between;
    color: #000;
}
.methods_application .method{
    background-color: #ebebeb;
    width: 32%;
    flex-direction: column;
    margin-bottom: 20px;
}
.methods_application .method, .methods_application, .methods_application .name_time, .methods_application .img_description{
    display: flex;
}

.methods_application, .methods_application .name_time, .methods_application .img_description{
    flex-direction: row;
    width: 100%;
    height: 100%;
}
.methods_application .name_time{
    align-items: center;
    height: 60px;
}
.methods_application .name_time .name, .methods_application .img_description img {
    width: 40%;
    height: auto;
}

.methods_application .name_time .time, .methods_application .img_description .description_button{
    width: 60%;
}
.img_description .description_button {
    display: flex;
    border-top: 2px solid black;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: #ebebeb;
    padding: 18px;
    width: 60%;
    align-items: end;
}
.img_description .description_button .description{
    width: 100%;
}
.methods_application .name_time .time, .methods_application .name_time .name {
    height: 60px;
    padding: 22px 10px;
}
.methods_application .name_time .time{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.methods_application .name_time .time svg{
    margin-right: 5px;
}
.methods_application .name_time .name  {
    background: #f4d854;
    line-height: normal;
    font-weight: bold;
}

.methods_application .method .img_description .description_button .buttons{
    background: #f4d854;
    padding: 12px 40px;
    color: black;
    text-align: center;
    box-shadow: 0px 0px 4px 4px rgb(0 0 0 / 10%);
    border-radius: 8px;
    float: right;
}

.application_method{
    display: flex;
    margin: 80px auto 20px;
}
.application_method p{
    margin: 0 20px;
    font-family: HelveticaNeueCyr;
    font-size: 22px;
    text-transform: uppercase;
    color: #333;
    line-height: 24px;
}



@media screen and (max-width: 1024px) {
    .stages-wrapper{
        width: 100%;
    }

    .stage{
        width: calc(25% - 30px);
        align-items: normal;
        align-self: baseline;
    }
    .stage-img-wrapper{
        display: flex;
        justify-content: center;
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }
    .stage-img-wrapper .stage-img{
        width: 87%;
        height: auto;
        left: 38px;
        top: 2px;
    }
    .calculation-wrapper{
        width:100%;
        margin-top: 0;
    }
    .calculation-top{
        padding: 28px;
    }
    .calculation-top .field{
        width: calc(25% - 30px);
        margin: 0 10px;
    }
    .calculation-top .field input{
        width: 100%;
    }
    .calculation-top .quantity svg{
        right: -50px;
    }
    .calculation-top button{
        width: 18%;
    }
    .calculation-top .field:first-child{
        margin-left: 0;
    }
    .card{
        width: calc(50% - 40px);
        margin: 20px 15px;
    }
    .card .img {
        width: 236px;
    }
    .card .img img{
        width: 182px;
        height: 114px;
        top: 29px;
        left: 20px;
    }
    .card .img .shelkografia {
        height: 70px;
    }
    .card .right .text p{
        font-size: 12px;
        line-height: 18px;
        width: 94%;
    }
    .card .right .text p br{
        display: none;
    }
    .types_clothing{
        flex-wrap: wrap;
        justify-content: center;
    }
    .types_clothing div{
        width: calc(50% - 134px);
        margin-right: 0;
    }
    .heading_symbolic{
        margin: 40px 0 0 0;
    }
    .heading_logotype img{
        width: 96%;
        text-align: center;
    }
    .blocks{
        justify-content: flex-end;
    }
    .block-text{
        width: calc(50% - 10px);
        height: auto;
        padding: 30px;
        margin-right: 30px;
    }
    .line{
        margin: 46px auto;
    }
    .line svg{
        width: 685px;
    }
    .advantages_block{
        width: 984px;
    }
    .advantages_block .text{
        margin: 40px 40px 20px 40px;
    }
}
@media screen and (min-width: 767px) and (max-width: 1023px) {
    .stages-wrapper{
        height: auto;
        margin-bottom: 40px;
    }
    .stage-text{
        margin-top: 24px;
    }
    .stage-text p{
        font-size: 16px;
    }
    .stage-text svg{
        width: 16px;
        height: 16px;
    }
    .calculation-price p{
        font-size: 18px;
        line-height: 24px;
    }
    .calculation-top{
        padding: 24px;
        height: 120px;
    }
    .calculation-top .field{
        width: calc(20% - 20px);
        margin: 0 10px;
        height: 90px;
    }
    .calculation-top .field label{
        margin-bottom: 0;
        font-size: 14px;
        height: 40px;
    }
    .calculation-top .field input, .calculation-top .field select{
        height: 30px;
        border-radius: 4px;
        font-size: 14px;
    }
    .calculation-top .field select{
        padding-left: 20px;
        text-align: center;
    }
    .calculation-top button{
        height: 30px;
        font-size: 14px!important;
        border-radius: 4px;
        color: #333;
        align-self: flex-end;
        margin: 0 auto;
        position: inherit;
        width: calc(20% - 20px);
    }
    .calculation-top .quantity svg{
        width: 14px;
        height: 14px;
        top: -26%;
        left: 34%;
    }
    .types_clothing div{
        width: calc(50% - 4px);
        margin-right: 0;
    }
    .heading_symbolic{
        font-size: 16px;
    }
    .application_method{
        margin-top: 40px;
    }
    .application_method p{
        font-size: 18px;
    }

    .heading_logotype p{
        font-size: 40px;
    }
    .block{
        margin: 10px;
    }

    .block-text.imidj{
        margin-left: 18px;
        margin-right: 0;
    }
    .block .block-text{
        width: calc(50% - 10px);
        margin-bottom: 0;
        margin-right: 18px;
    }
    .block img{
        width: calc(50% - 10px);
    }
    .card{
        width: 90%;
    }
    .needed_logo p{
        font-size: 18px;
    }
    .needed .description{
        font-size: 16px;
    }
    .image_needed svg{
        width: 90%;
    }
    .blocks{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .block-text{
        width:90%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .advantages p{
        font-size: 18px;
    }
    .advantages_block{
        width: 90%;
        height: auto;;
    }
    .advantages_block .text{
        font-size: 16px;
    }
    .advantages_block .list{
        width: 90%;
    }
    .methods_application .method{
        width: 49%;
    }

}
@media screen and (min-width: 320px) and (max-width: 766px) {
    .methods_application .method{
        width: 100%;
    }
    .image_needed {
        width: 90%;
        margin: 0 auto;
    }
    .image_needed img{
        width: 100%;
    }
    .grey_block{
        height:auto;
    }
    .advantages_block{
        width: 90%;
        height: auto;
    }
    .advantages p{
        font-size: 18px;
        text-align: center;
    }
    .advantages_block .list{
        width: 90%;
    }
    .advantages_block .text{
        font-size: 16px;
        margin: 20px 20px 10px 20px;
    }
    .advantages_block .text.grey{
        line-height: 16px;
    }
    .advantages_block .list .item span{
        margin-left: 6px;
        width: 90%;
    }
    .line svg{
        width: 86%;
    }
    .blocks{
        align-items: center;
        flex-direction: column;
        width: 90%;
        margin: 0 auto;
    }
    .block-text{
        width: 90%;
        margin-right: 0;
    }
    .image_needed svg{
        width: 90%;
    }
    .slick-dots{
        list-style-type: none;
        display: flex;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        padding: 0;
    }
    .slick-slider-dots{

        display: flex;
        margin: 10px;
        border: 2px solid #E5E5E5;
        border-radius: 50%;
        width: 14px;
        height: 14px;
        font-size: 0;
        background-color: #E5E5E5;
    }
    .slick-active .slick-slider-dots{
        border: 2px solid #787878;
        background: #787878;
    }
    .card{
        width: 90%;
        height: auto;
        flex-direction: column;
    }
    .card .img{
        width: 80%;
        height: auto;
        margin: auto;
    }
    .card .img img, .card .img .shelkografia{
        top: 25px;
        width: 90%;
        height: 90%;
    }
    .card .hour{
        width: 100%;
        height: auto;
        position: inherit;
        margin-top: 40px;
        margin-left: 16px;
    }

    .card .right{
        margin: 10px auto;
        width: 90%;
        height: auto;
    }
    .card .right .text p{
        font-size: 16px;
        width: 90%;
        margin: 0 30px;
        line-height: 16px;
    }
    .card .button{
        margin: 10px auto;
        position: inherit;
        right: 0;
        bottom: 0;
        top: 0;
        left: 0;
    }
    .needed{
        padding-top:10px;
    }
    .needed .description{
        font-size: 16px;
        width: 90%;
        margin: 30px auto;
    }
    .needed_logo p{
        font-size: 18px;
        text-align: center;
    }
    .arrows-right svg, .arrows-left svg{
        width: 60px;
    }
    .application_method p{
        font-size: 18px;
        text-align: center;
    }
    .calculation-top{
        padding: 16px;
        flex-direction: column;
        height: auto;
    }
    .calculation-top .field:first-child{
        margin: 0 auto;
    }
    .calculation-top .field{
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
    .calculation-top .field label{
        margin: 14px 0;
    }
    .calculation-top .quantity{
        position: relative;
    }
    .calculation-top .quantity svg{
        position: absolute;
        top: 54px;
        right: 40px;
    }
    .calculation-top .field select > .select__item{
        text-align: center;
    }
    .calculation-top .field select{
        padding-left: 20px;
        text-align: unset;
    }
    .calculation-top button{
        position: inherit;
        width: 90%;
        margin: 30px auto 5px;
        color: #333;
    }

    .types_clothing div{
        width: 100%;
    }
    .types_clothing div img{
        width: 100%;
    }
    .types_clothing .heading.even{
        top: 14px;
        font-size: 14px;
        right: 14px;
    }
    .types_clothing .heading.odd{
        bottom: 14px;
        right: 32px;
        font-size: 14px;
    }
    .heading_symbolic{
        font-size: 16px;
    }
    .heading_logotype img{
        width: 100%;
        margin-bottom: 50px;
    }
    .heading_logotype p{
        font-size: 26px;
    }
    .needed{
        margin: 10px;
    }
    .needed_logo{
        margin-top: 28px;
    }
    .blocks > .block{
        width: 300px;
    }
    .block-text{
        width: 100%;
        margin: 0 0 16px 0;
    }
    .block-text.imidj{
        width: 100%;
        margin: 16px 0 0 0;
    }
    .slick-slide img{
        width: 300px;
    }

    .calculation-price p{
        font-size: 18px;
        text-align: center;
    }
    .stages-wrapper{
        height: auto;
        margin-bottom: 60px;
    }
    .stages{
        flex-direction: row;
        overflow-x: scroll;
        padding: 10px 0 30px 0;
        justify-content: inherit;
        height: auto;
    }
    .stage{
        width: 44%;
        height: auto;
        padding: 0 10px;
    }
    .stage .stage-img{
        width: 120px;
        height: 120px;
        -ms-flex-item-align:center;
        -ms-grid-row-align:center;
        align-self:center;
        -webkit-box-align:center;
        -ms-flex-align:center;
        align-items:center
    }
    .stage-text{
        margin-top: 20px;
    }
    .stage-text p{
        font-size: 14px;
        margin-right: 2px;
    }
    .stage-text svg{
        width: 10px;
    }
    .breadcrumbs{
        white-space: inherit!important;
        overflow-y: initial!important;
        width: 90%;
    }
}
@media screen and (min-width: 355px) and (max-width: 400px){
    .slick-slide img{
        width: 260px;
    }
}
@media screen and (min-width: 320px) and (max-width: 355px){
    .block-text{
        width: 110%;
        margin: 0 0 16px 0;
    }
    .block-text.imidj{
        width: 100%;
        margin: 16px 0 0 0;
    }
    .slick-slide img{
        width: 240px;
    }
}
.order__input{
    padding: 0 10px;
}
.logos_s.product-description img{
    height: auto;
}
