ul {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1.2rem;
    vertical-align: baseline;
    list-style-type: none;
}

body {
    line-height: 1;
}

*:focus {
    outline: none;
}

.order-title h2,
.section-title {
    margin-bottom: 30px;
    color: #504B4B;
    font-size: 40px;
    font-weight: 600;
    line-height: inherit;
}

.calculator .section-title {
    margin-bottom: 20px;
}


.calculator-navbar {
    display: flex;
    align-items: flex-start;
}

.calculator-navbar button {
    margin-right: 30px;
    display: flex;
    align-items: center;
    padding: 0 11px;
    border: 0;
    border-radius: 10px 10px 0px 0px;
    border-top: 1px solid #765EFF;
    background: #F9FCFF;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: all 0.7s ease;
    height: 40px;
    z-index: 1;
}

.calculator-navbar button p {
    color: #765EFF;
    font-size: 15px;
    transition: all 0.7s ease;
    font-weight: 500;
    margin: 0;
}

.calculator-navbar button img {
    margin-right: 6px;
    transition: all 0.7s ease;
}

.calculator-navbar .calculator-navbar__active {
    background: #765EFF;
}

.calculator-navbar .calculator-navbar__active p {
    color: white;
}


.calculator-navbar .calculator-navbar__active img {
    filter: brightness(0) invert(1);
}


.calculator-form__wrapper {
    border-radius: 0px 0px 10px 10px;
    background: rgba(250, 253, 255, 0.90);
    box-shadow: 0px 5px 15px 0px rgba(126, 126, 126, 0.10);
    padding: 30px 23px;
    position: relative;
}


.calculator-form__navbar,
.orders-navbar {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.calculator-form__navbar button,
.orders-navbar button {
    color: #CECED0;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    transition: all 0.7s ease;
    border: 0;
    background: transparent;
    margin-right: 25px;
    cursor: pointer;
}

.calculator-form__navbar button:before,
.orders-navbar button:before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    background: #CECED0;
    transition: all 0.7s ease;
    border-radius: 15px;
}


.calculator-form__navbar .calculator-form__navbar-active,
.orders-navbar .order-form__navbar-active {
    color: #765EFF;
}

.calculator-form__navbar .calculator-form__navbar-active:before,
.orders-navbar .order-form__navbar-active:before {
    background: #765EFF;
}


.calculator-form__transport-company {
    width: 227px;
    margin-bottom: 25px;
    margin-right: 23px;
}

.select-title {
    position: absolute;
    top: 6px;
    color: #A9A9A9;
    font-family: Rubik;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 14px;
}

.select-block {
    position: relative;
    height: 45px;
    border-radius: 6px;
    background: #F0F9FF;
}

.calculator-form__container {
    height: 100%;
}


@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-5%, 0, 0);
        transform: translate3d(-5%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-5%, 0, 0);
        transform: translate3d(-5%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


.calculator-form__container-block,
.order-block {
    display: none;
    flex-wrap: wrap;
    align-items: flex-end;
}

.calculator-form__container-block-active,
.order-block__active {
    display: flex;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}


@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-5%, 0, 0);
        transform: translate3d(-5%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(-5%, 0, 0);
        transform: translate3d(-5%, 0, 0)
    }
}

.calculator-form__container-block-disabled,
.order-block__disabled {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.calculator-form__block {
    display: none;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.calculator-form__block-active {
    display: flex;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    z-index: 2;
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 20%, 0);
        transform: translate3d(0, 20%, 0)
    }
}


.calculator-form__block-disabled {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.calculator-form__city {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    width: 1122px;
}

.input-contain,
.input-contain__block-textarea {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: 6px;
    background: #EAF6FF;
    height: 45px;
    padding-left: 15px;
}

.offer-calc__block .input-contain:last-child {
    margin-bottom: 0;
}

.input-contain input {
    position: relative;
    border: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-contain input {
    height: 45px;
}

.input-contain input,
.input-contain .text,
.input-contain__block-textarea textarea,
.input-contain__block-textarea,
.input-contain__block-textarea .text {
    color: #504B4B;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}

.input-contain .text strong,
.input-contain__block-textarea .text strong {
    color: #ff0000cf;
    font-weight: 500;
}



.input-contain input {
    padding-top: 17px;
    width: 100%;
    background: transparent;
    z-index: 1;
}

.input-contain .placeholder-text,
.input-contain__block-textarea .placeholder-text {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2px;
    right: 0;
    background-color: transparent;
    pointer-events: none;
    display: flex;
    align-items: center;
    padding-left: 14px;
}

.input-contain .text,
.input-contain__block-textarea .text {
    background-color: transparent;
    transform: translate(0);
    transition: transform 0.15s ease-out, font-size 0.15s ease-out, background-color 0.2s ease-out, color 0.15s ease-out;
}


.input-contain input:focus+.placeholder-text .text,
.input-contain :not(input[value=""])+.placeholder-text .text {
    color: #A9A9A9;
    font-family: Rubik;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transform: translate(0, -73%);
    z-index: 1;
}

.specs-item {
    display: flex;
    flex-wrap: wrap;
    border-radius: 5px;
    background: #F4FAFF;
}

.calculator-form__specs-item {
    width: 845px;
    margin-right: 23px;
}

.city-selects__change {
    width: 35px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 8px;
    border-radius: 2px;
    border: 2px solid #765EFF;
    cursor: pointer;
    background: transparent;
    transition: all 0.7s ease;
}

.city-selects__change:hover {
    background: #765EFF;
}

.city-selects__change img {
    width: 16px;
    transition: all 0.7s ease;
}

.city-selects__change:hover img {
    filter: brightness(0) invert(1);
}


.city-select__block {
    border-radius: 6px;
    background: #F0F9FF;
    width: 531px;
}

.nice-select .current {
    overflow: hidden;
    position: relative;
}

.city-select .nice-select .current:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 95px;
    height: 50px;
    right: 0;
    border-radius: 0px 6px 6px 0px;
    background: linear-gradient(90deg, rgba(237, 247, 255, 0.10) 9.27%, #F2FAFF 75.51%);
}


.city-select .list {
    width: auto;
}


.city-select .current {
    width: 100%;
}

.calculator-form__specs-item .input-contain {
    width: 194px;
}

.specs-title {
    width: 100%;
    padding: 9px 14px;
    color: #504B4B;
    font-family: Rubik;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.calculator-form__specs-x {
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    color: #504B4B;

    font-family: Rubik;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}



.package-select {
    width: 266px;
    margin-right: 23px;
}

.calculator-form__city,
.calculator-form__transport-company {
    margin-bottom: 20px;
}

.purple-btn {
    border-radius: 10px;
    background: #765EFF;
    color: #FFF;
    font-family: Rubik;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 0;
    padding: 0 20px;
    height: 45px;
    cursor: pointer;
    border: 2px solid #765EFF;
    transition: all 0.7s ease;
}

.calculate-transport-company {
    width: 194px;
}

.purple-btn:hover {
    color: #765EFF;
    background: transparent;
}


.calculate-form__output {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.calculate-form__output-block,
.calculate-form__output-block span {
    color: #504B4B;

    font-family: Rubik;
    font-size: 19px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.calculate-form__output-block {
    margin-right: 36px;
    position: relative;
}

.calculate-form__output-block img {
    margin-left: -2px;
}

.calculate-form__output small {
    width: 100%;
    color: #A9A9A9;
    font-family: Rubik;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin-top: 10px;
}


.calculator-form__marketplace {
    width: 300px;
    margin-right: 30px;
}

.calculator-form__container-block-marketplace .calculator-city__select {
    margin-right: 30px;
    width: 530px;
}


.calculator-form__container-block-marketplace .city-select__block-input {
    width: 260px;
    margin-right: 30px;
    display: flex;
    align-content: center;
    justify-content: flex-start;
    position: relative;
}

.calculator-form__container-block-marketplace {
    height: 100%;
    max-height: 50px;
    transition: max-height 2s cubic-bezier(0, 1, 0, 1);
}

.calculator-form__container-block-marketplace-total {
    max-height: 9999px;
    transition: max-height 2s ease-in-out;
}

.calculate-form__output__disabled {
    opacity: 0;
    transition: all 0.7s ease;
}

.calculate-form__output__active {
    opacity: 1;
}

.alert-total {
    opacity: 0;
    position: absolute;
    bottom: -35px;
    background-color: red;
    color: white;
    background-color: rgba(220, 53, 69, .9);
    font-size: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    left: 0;
    pointer-events: none;
    transition: all 0.7s ease;
}

.total-input__invalid .input-contain {
    outline: 2px solid rgba(220, 53, 69, .9);
    border-radius: 6px;
    transition: all 0.7s ease;
}

.total-input__invalid .alert-total {
    opacity: 1;
}

.form-block__contract {
    justify-content: flex-end;
}

.form-block__contract .input-tel {
    width: 300px;
    margin-right: 25px;
}

.form-block__contract .input-email {
    width: 300px;
    margin-right: 25px;
}

.form-block__contract .input-id {
    width: 724px;
}

.form-block__contract .purple-btn {
    margin-top: 20px;
    width: 250px;
}

.calculator-form__block__pay {
    justify-content: center;
    padding: 50px 0;
}

.calculator-form__block__pay .purple-btn {
    width: 450px;
    margin: 0 30px;
    font-size: 18px;
}


.input-contain,
.selectric {
    position: relative;
}


.selectric:before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 95px;
    height: 45px;
    right: 0;
    border-radius: 0px 6px 6px 0px;
    background: linear-gradient(90deg, rgba(237, 247, 255, 0.10) 9.27%, #F2FAFF 75.51%);
    z-index: 1;
}

.fancybox-slide--html .fancybox-close-small {
    display: none;
}

.modal-text {
    border-radius: 15px;
    position: relative;
    padding: 40px 50px;
    width: 740px;
}

.close-modal {
    position: absolute;
    cursor: pointer;
    right: 20px;
    top: 20px;
    width: 20px;
    height: 20px;
    transition: all 0.7s ease;
    z-index: 11;
}

.close-modal:hover {
    transform: rotate(180deg);
}

.modal-title {
    margin-bottom: 20px;
}

.modal-title h2 {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #504B4B;
}

.modal-title hr {
    background: #765EFF;
    border: 0;
    width: 100%;
    height: 2px;
    border-radius: 20px;
    color: #504B4B;
}

.modal-text__container p {
    margin-bottom: 10px;
    font-size: 20px;
}

.modal-text__container p:last-child {
    margin-bottom: 0;
}


.order-title h2,
.section-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
}

.orders__wrapper {
    border-radius: 10px 10px;
    background: rgba(250, 253, 255, 0.90);
    box-shadow: 0px 5px 15px 0px rgba(126, 126, 126, 0.10);
    padding: 30px 23px;
}

.order-block form {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
}

.order-transport__company .order-form__transport-company {
    width: 235px;
    margin-right: 25px;
    margin-bottom: 20px;
}

.order-transport__company .order-radio__buttons {
    margin-bottom: 20px;
}

.order-radio__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.order-transport__company .order-transport-form__city {
    width: 100%;
    display: flex;
    margin-bottom: 20px;
}

.order-form__contacts {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.order-form__contact,
.order-form__block {
    width: calc(33% - 10px);
    margin-bottom: 15px;
}

.order-form__contacts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.order-transport__company .specs-item {
    display: flex;
    width: 845px;
    margin-right: 25px;
    margin-bottom: 20px;
}

.order-transport__company .specs-item .input-contain {
    width: 194px;
}

.radio-buttons__title {
    width: 100%;
    text-align: center;
    color: #504B4B;
    font-family: Rubik;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 8px;
}


.radio-button input[type=radio] {
    display: none;
}

.radio-button label {
    display: inline-block;
    cursor: pointer;
    position: relative;
    user-select: none;
    z-index: 0;
    color: #765EFF;
    transition: all 0.7s ease;
    font-size: 15px;
    padding: 9px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radio-button label:before {
    content: "";
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
    border: 2px solid #765EFF;
    z-index: -1;
}

.order-radio__buttons .radio-button:nth-of-type(2) label:before {
    border-radius: 5px 0 0 5px;
}

.order-radio__buttons .radio-button:nth-of-type(3) label:before {
    border-radius: 0 5px 5px 0;
}

/* Checked */
.radio-button input[type=radio]:checked+label:before {
    background: #765EFF;
}

.radio-button input[type=radio]:checked+label {
    color: white;
}

/* Hover */
.radio-button label:hover:before {
    filter: brightness(120%);
}

/* Disabled */
.radio-button input[type=radio]:disabled+label:before {
    background: transparent;
}

.order-radio__hav {
    width: 257px;
}

.order-transport-form__city .city-select__block {
    width: calc(50% - 23px);
}

.order-radio__shop .radio-button {
    width: 75px;
}

.order-radio__shop .radio-button label {
    font-size: 17px;
    padding: 8px 0;
}

.order-radio__shop {
    width: 150px;
}



.input-contain__block-textarea textarea {
    position: relative;
    border: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-contain__block-textarea textarea {
    height: 100px;
}

.input-contain__block-textarea textarea {
    resize: none;
}

.input-contain__block-textarea textarea {
    color: #2A2B33;
}

.input-contain__block-textarea textarea {
    padding-top: 23px;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    position: relative;
}


.input-contain__block-textarea textarea:focus+.placeholder-text .text,
.input-contain__block-textarea :not(textarea[value=""])+.placeholder-text .text {
    transform: translate(0, -7px);
    z-index: 1;
    color: #A9A9A9;
    font-family: Rubik;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.input-contain__block-textarea .placeholder-text {
    top: 15px;
    bottom: auto;
}


.input-contain__block-textarea {
    height: 145px;
    width: 100%;
    margin-bottom: 20px;
}

.form-privacy {
    width: 100%;
    color: #A9A9A9;
    font-family: Rubik;
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: right;
    margin-bottom: 15px;
}

.order-block__send {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.order-marketplace__select,
.order-marketplace__select-item {
    width: 300px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.order-marketplace-city__select {
    margin-bottom: 15px;
    width: calc(33% - 7px);
    margin-right: 20px;
}

.order-marketplace__block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: all 0.7s ease;
    height: 100%;
    overflow: hidden;
    max-height: 58px;
}

.order-marketplace__block-header-disabled {
    max-height: 0;
}


.order-block__send .purple-btn {
    margin-left: auto;
}


.item-edit__btn {
    font-family: Rubik;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    transition: all 0.7s ease;
    border-radius: 10px;
    cursor: pointer;
}

.item-edit__btn:hover {
    color: white;
}

.item-edit__btn:hover img {
    filter: brightness(0) invert(1);
}


.item-edit__btn img {
    width: auto;
    height: 23px;
    margin-right: 8px;
    transition: all 0.7s ease;
}

.delete-item__marketplace {
    color: rgba(255, 0, 0, 80%);
    border: 2px solid rgba(255, 0, 0, 80%);
}


.delete-item__marketplace:hover {
    background: rgba(255, 0, 0, 80%);
}


.order-marketplace__block-title,
.delete-item__marketplace {
    margin-bottom: 15px;
}

.order-marketplace__block-title,
.order-marketplace__block-title span {
    color: rgb(80, 75, 75);
    font-family: Rubik;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
}

.add-more__items {
    color: rgb(118, 94, 255);
    border: 2px solid rgb(118, 94, 255);
}

.add-more__items:hover {
    background: rgb(118, 94, 255);
}

.order-marketplace__blocks {
    width: 100%;
}


.order-marketplace__block {
    width: 100%;
    transition: all 1s ease;
    height: 100%;
    overflow: hidden;
}

.order-form__block-active {
    max-height: 500px;
}

.order-form__block-disabled {
    max-height: 0;
}


.order-marketplace__block-header-disabled .delete-item__marketplace {
    pointer-events: none;
}

.modal-order__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 215px;
    margin-top: 30px;
}

.fancybox-slide {
    padding: 0;
    background: transparent;
}

.modal-order {
    width: 1374px;
    padding: 0;
    background: transparent;
}

.modal-order .orders__wrapper {
    background: white;
}

.order-transport__company {
    margin-top: -15px;
}

.order-transport__company .package-select {
    margin-bottom: 20px;
}

.calculator-form__container,
.order-block form {
    width: 100%;
}

.calculator-form__wrapper,
.orders__wrapper {
    box-shadow: 0px 4px 11px 7px rgba(126, 126, 126, 0.10);
}

.calculate-form__output-block span {
    font-weight: 500;
}

.order-from__shop {
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: 100%;
    overflow: hidden;
    transition: all 0.7s ease;
    max-height: 0;
}

.order-from__shop-active {
    max-height: 55px;
}

.order-from__shop .input-contain {
    margin-bottom: 20px;
}

.order-from__shop .input-contain:nth-child(1) {
    width: calc(65% - 23px);
}

.order-from__shop .input-contain:nth-child(2) {
    width: calc(22% - 23px);
}

.order-from__shop .input-contain:nth-child(3) {
    width: 13%;
}

.home-slider__text-small {
    font-size: 22px;
    line-height: 115%;
}

.header__main-logo img {
    width: 100%;
    height: 100%;
}

.mainmenu ul {
    display: flex;
    align-items: center;
}

.main-items .container-big {
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-items .container-big .row {
    width: 97%;
}

.main-items {
    z-index: 10;
    top: -50px;
    position: relative;
}

.main-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 11px 7px rgba(126, 126, 126, 0.10);
    border-radius: 10px;
    background: rgba(250, 253, 255, 1);
    padding: 25px 15px;
    transition: all 0.7s ease;
    position: relative;
    border-top: 4px solid white;
}

.main-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.main-title h3 {
    color: #504B4B;
    font-size: 21px;
    margin: 0;
    padding-right: 10px;
    height: 48px;
}

.main-title img {
    max-width: 135px;
    max-height: 40px;
}

.main-text {
    font-size: 17px;
    margin: 0;
    line-height: 21px;
    margin-bottom: 20px;
}

.main-item .purple-btn {
    width: 100%;
}

.main-item:hover {
    transform: translateY(-5px);
    border-top: 4px solid #765EFF;
}

.home-about__text p {
    font-size: 16px;
    line-height: 20px;
}

.hidden-input__form-name {
    display: none;
}

.modal-feedback {
    width: 512px;
    padding: 0;
    border-radius: 10px;
    background: transparent;
}

.modal-feedback__form-wrapper {
    background: rgba(250, 253, 255, 0.90);
    box-shadow: 0px 5px 15px 0px rgba(126, 126, 126, 0.10);
    padding: 30px;
    background: white;
}

.modal-feedback__title {
    text-align: center;
    margin-bottom: 30px;
}

.modal-feedback__title h2 {
    margin-bottom: 10px;
    color: #504B4B;
    font-size: 35px;
    font-weight: 500;
}

.modal-feedback__title p {
    color: #504B4B;
    font-size: 20px;
}

.modal-feedback__form-wrapper form .input-contain {
    width: 100%;
    margin-bottom: 15px;
}

.modal-feedback__form-wrapper form .form-privacy {
    text-align: center;
}

.modal-feedback__form-wrapper form .purple-btn {
    width: 100%;
}

.ajax-message {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(250, 253, 255, 0.90);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.ajax-message__active {
    display: flex;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.ajax-message img {
    width: 280px;
    height: 280px;
    margin-bottom: 20px;
}


.ajax-message__text h3 {
    color: #504B4B;
    line-height: 1.2;
    font-weight: 500;
    font-size: 35px;
    margin-bottom: 10px;
}

.ajax-message__text p {
    font-size: 26px;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.ajax-message__active img {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.3s;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


.ajax-message__active .ajax-message__text h3 {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.ajax-message__active .ajax-message__text p {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 0.5s;
}

.form-block__contract .ajax-message {
    flex-direction: row;
    text-align: left;
}

.form-block__contract .ajax-message img {
    margin-bottom: 0;
    width: 100px;
    margin-right: 20px;
}

.form-block__contract .ajax-message__text h3 {
    font-size: 27px;
    margin-bottom: 6px;
}

.form-block__contract .ajax-message__text p {
    font-size: 21px;
}

.modal-feedback .ajax-message img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.modal-feedback .ajax-message .ajax-message__text h3 {
    font-size: 28px;
    margin-bottom: 6px;
}

.modal-feedback .ajax-message {
    font-size: 22px;
}

.features {
    margin-bottom: 80px;
    margin-top: 50px;
}

.features-block {
    box-shadow: 0px 4px 11px 7px rgba(126, 126, 126, 0.10);
    border-radius: 10px;
    background: rgba(250, 253, 255, 1);
    padding: 25px 14px 25px 20px;
    transition: all 0.7s ease;
    position: relative;
    display: flex;
    align-items: center;
}

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

.features-block img {
    width: 85px;
    margin-right: 15px;
    height: 85px;
}

.features .home-contacts__header {
    margin-bottom: 35px;
}

.features-text {
    padding-top: 10px;
}

.features .col-4-lg {
    margin-bottom: 20px;
}

.features-text h3 {
    font-size: 21px;
    margin: 0;
    margin-bottom: 10px;
    font-weight: 600;
    color: #504B4B;
}

.features-text p {
    font-size: 16px;
    line-height: 19px;
}

.home-contacts__header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-contacts__header:before,
.home-contacts__header:after{
    content: '';
    position: relative;
    height: 2px;
    background: #765EFF;
    flex-grow: 0.47;
}

.upload-btn {
    position: relative;
    display: flex;
    text-align: center;
    height: 45px;
    flex-direction: column;
    width: 400px;
    cursor: pointer;
    justify-content: center;
    overflow: hidden;
}

.upload-btn__bg {
    border-radius: 6px;
    border: 2px solid #765EFF;
    width: 100%;
    height: 100%;
    position: absolute;
}

.upload-btn input[type=file] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}

.input-contain input+.error,
.upload-btn input+.error,
.input-contain__block-textarea textarea+.error {
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 0;
    border: 2px solid rgb(255, 74, 74);
    left: 0px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}


.input-contain input+.error:before,
.upload-btn input+.error:before,
.input-contain__block-textarea textarea+.error:before {
    content: '';
    background: url('../../img/error-icon.svg') center no-repeat;
    background-size: cover;
    position: absolute;
    right: 10px;
    height: 16px;
    width: 16px;
}

.input-contain__block-textarea textarea+.error:before {
    top: 10px;
}

.upload-btn__title {
    display: flex;
    align-items: center;
    padding: 0 10px 0 17px;
}

.upload-btn__title span {
    color: #504B4B;
    font-family: Rubik;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    overflow: hidden;
    text-align: left;
    text-overflow: ellipsis;
    transition: all 0.7s ease;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.upload-btn__title img {
    width: 30px;
    margin-right: 15px;
}

.upload-btn:hover .upload-btn__title span {
    transform: translateX(-8px);
}



/* Focus */
.input-file input[type=file]:focus+.input-file-btn {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25);
}

/* Hover/Active */
.upload-btn:hover .input-file-btn {
    background-color: #59be6e;
}

.upload-btn:active .input-file-btn {
    background-color: #2E703A;
}

/* Disabled */
.upload-btn input[type=file]:disabled+.input-file-btn {
    background-color: #eee;
}

.home-about {
    position: relative;
    z-index: 1;
}

.header__main-phone-numbers {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.header__main-phone-numbers a:first-child {
    margin-bottom: 5px;
}

.header__main-phone-numbers a {
    font-size: 18px;
    color: #504B4B;
    transition: all 0.7s ease;
}

@-webkit-keyframes scaleImage {
    from {
        transform: scale(2);
    }

    to {
        transform: scale(1);
    }
}

@keyframes scaleImage {
    from {
        transform: scale(2);
    }

    to {
        transform: scale(1);
    }
}

.scale-image {
    -webkit-animation-name: scaleImage;
    animation-name: scaleImage;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes fadeInLeftSlow {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftSlow {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-10%, 0, 0);
        transform: translate3d(-10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInLeftSlow {
    -webkit-animation-name: fadeInLeftSlow;
    animation-name: fadeInLeftSlow;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}


.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.upload-alert img {
    margin-bottom: -35px;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    to {
        opacity: 0
    }
}


.ajax-message__disable {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.download-app-link__wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 50px;
}

.download-app-link {
    display: flex;
    align-items: center;
    color: white;
    font-size: 15px;
}

.download-app-link img {
    height: 30px;
    margin-right: 9px;
}

.header__main-menu .download-app-link__wrapper {
    display: none;
}

.home-contacts__map iframe {
    width: 100%;
    height: 100%;
}

.modal-check__status {
    width: 800px;
    padding: 35px 30px;
    border-radius: 10px;
}

.modal-check__status .s-plugin-orderstatus-container h5 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 500;
    color: #504B4B;
    margin: 0;
    margin-bottom: 20px;
}

.modal-check__status .s-plugin-orderstatus-container .field-label,
.modal-check__status .s-plugin-orderstatus-container .result .error,
.modal-check__status .s-plugin-orderstatus-container .message {
    font-size: 17px;
}

.field-label {
    margin-right: 10px;
}

.modal-check__status .s-plugin-orderstatus-container .label-order-prefix,
.modal-check__status .s-plugin-orderstatus-container .order_no {
    margin-right: 5px;
    color: #504B4B;
    font-weight: 600;
    font-family: Rubik;
}

.modal-check__status .s-plugin-orderstatus-container .order_no {
    margin-left: 10px;
}

.modal-check__status .s-plugin-orderstatus-container form {
    display: flex;
    align-items: center;
}

.modal-check__status .s-plugin-orderstatus-container .order_status {
    height: 45px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    font-family: Rubik;
    margin-right: 15px;
}

.modal-check__status .s-plugin-orderstatus-container form input[type="text"] {
    border: 0;
    width: 100%;
    border-radius: 6px;
    background: #EAF6FF;
    height: 45px;
    padding: 0 13px;
    width: 150px;
    margin-right: 15px;
}

.modal-check__status .s-plugin-orderstatus-container form input[type="text"],
.modal-check__status .s-plugin-orderstatus-container form input[type="text"]::placeholder {
    color: #504B4B;
    font-size: 14px;
    font-weight: 600;
    font-family: Rubik;
}

.modal-check__status .s-plugin-orderstatus-container form input[type="submit"],
.modal-check__status .s-plugin-orderstatus-container .reset {
    border-radius: 10px;
    background: #765EFF;
    color: #FFF;
    font-family: Rubik;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 0;
    padding: 0 25px;
    height: 45px;
    cursor: pointer;
    border: 2px solid #765EFF;
    transition: all 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-check__status .s-plugin-orderstatus-container form input[type="submit"]:hover,
.modal-check__status .s-plugin-orderstatus-container .reset:hover {
    color: #765EFF;
    background: transparent;
}

.modal-check__status .s-plugin-orderstatus-container .result .error {
    margin-right: 20px;
}

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

.check-status__section-form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}


.check-status__section {
    margin-bottom: 50px;
}

.check-status__section-form .s-plugin-orderstatus-container h5 {
    margin: 0;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: #504B4B;
}



.check-status__section-form .s-plugin-orderstatus-container .field-label {}



.check-status__section-form .s-plugin-orderstatus-container input[type="submit"],
.check-status__section-form .s-plugin-orderstatus-container .reset {
    border-radius: 8px;
    background: #765EFF;
    color: #FFF;
    font-family: Rubik;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 0;
    padding: 0 35px;
    height: 50px;
    cursor: pointer;
    border: 2px solid #765EFF;
    transition: all 0.7s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-status__section-form .s-plugin-orderstatus-container form input[type="submit"]:hover,
.check-status__section-form .s-plugin-orderstatus-container .reset:hover {
    color: #765EFF;
    background: transparent;
}

.check-status__section-form .s-plugin-orderstatus-container input[type="text"],
.check-status__section-form .s-plugin-orderstatus-container input[type="text"]::placeholder {
    color: #504B4B;
    font-size: 17px;
    font-weight: 600;
    font-family: Rubik;
}

.check-status__section-form .s-plugin-orderstatus-container input[type="text"] {
    border: 0;
    width: 100%;
    border-radius: 6px;
    background: #EAF6FF;
    height: 50px;
    padding: 0 13px;
    width: 180px;
    margin-right: 15px;
}


.check-status__section-form .s-plugin-orderstatus-container .field-label,
.check-status__section-form .s-plugin-orderstatus-container .result .error,
.check-status__section-form .s-plugin-orderstatus-container .message,
.check-status__section-form .s-plugin-orderstatus-container .label-order-prefix {
    font-size: 22px;
}

.field-label {
    margin-right: 10px;
}

.check-status__section-form .s-plugin-orderstatus-container .label-order-prefix,
.check-status__section-form .s-plugin-orderstatus-container .order_no {
    margin-right: 5px;
    color: #504B4B;
    font-weight: 600;
    font-family: Rubik;
}

.check-status__section-form .s-plugin-orderstatus-container .order_no {
    margin-left: 10px;
}

.check-status__section-form .s-plugin-orderstatus-container form {
    display: flex;
    align-items: center;
    height: 50px;
}

.check-status__section-form .s-plugin-orderstatus-container .order_status {
    height: 45px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    font-family: Rubik;
    margin-right: 15px;
}

.check-status__section-form .s-plugin-orderstatus-container {
    height: 128px;
    display: block;
}

.check-status__section-form .s-plugin-orderstatus-container .result .error {
    margin-right: 20px;
}

.header__main-block {
    display: flex;
    align-items: flex-start;
    flex: 1;
    justify-content: flex-end;
}

.header__main-check-status {
    display: flex;
    align-items: center;
    background: #f6f6f6;
    height: 64px;
    padding: 0 20px;
    margin-right: 20px;
    border-radius: 15px;
    cursor: pointer;
}

.header__main-check-status img {
    height: 28px;
    margin-right: 10px;
}

.header__main-check-status span {
    font-size: 16px;
    font-weight: 500;
    color: #504B4B;
    transition: all 0.7s ease;
}

.header__main-check-status:hover span {
    color: #765EFF;
}

.order-marketplace__select-wrapper {
    width: 100%;
}

.order-marketplace-city__select+.order-form__block {
    margin-right: 20px;
}

.form-warning-message {
    color: #ff0000cf;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
}


.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.steps-container {
    width: 1103px;
    height: 843px;
    position: relative;
    margin-top: -25px;
}

.step-block__wrapper {
    position: absolute;
    left: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.step-block {
    padding: 28px 20px;
    width: 428px;
    border-radius: 5px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.07);
    background: rgb(255, 255, 255);
    position: relative;
}

.steps-container .step-block__wrapper:nth-child(2n) {
    justify-content: flex-end;
}

.steps-container .step-block__wrapper:before {
    content: '';
    position: absolute;
    right: 548px;
    width: 6px;
    height: 160px;
    border-radius: 20px;
    background: rgb(118, 94, 255);
    bottom: 140px;
    z-index: -1;
}

.step-block__circle{
    position: absolute;
    width: 14px;
    height: 14px;
    background: url("../../img/step-circle.svg") center no-repeat;
    background-size: cover;
    z-index: 2;
    border-radius: 50%;
    right: 544px;
    top: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-block__wrapper:after{
    content: '';
    position: absolute;
    background: url("../../img/step-line.svg") center no-repeat;
    background-size: cover;
    height: 2px;
    width: 85px;
    left: 443px;
  top: 82px;
}

.steps-container .step-block__wrapper:nth-child(2n):after {
    left: auto;
    right: 443px;
}


.steps-container .step-block__wrapper:nth-child(2n):before {
    right: auto;
    left: 549px;
}

.steps-container .step-block__wrapper:nth-child(1) {
    top: 20px;
    z-index: 3;
}

.steps-container .step-block__wrapper:nth-child(2) {
    top: 175px;
    z-index: 2;
}

.steps-container .step-block__wrapper:nth-child(3) {
    top: 328px;
}

.steps-container .step-block__wrapper:nth-child(4) {
    top: 481px;
}

.steps-container .step-block__wrapper:nth-child(5) {
    top: 633px;
}


.step-block__second {
    right: 0;
}

.step-block__title {
    display: flex;
    align-items: flex-end;
    margin-bottom: 16px;
}

.step-block__title h3 {
    color: rgb(118, 94, 255);
    font-size: 75px;
    font-weight: 500;
    line-height: 56px;
    margin: 0;
    margin-right: 13px;
}

.step-block__title h4 {
    color: rgb(49, 53, 60);
    font-size: 23px;
    font-weight: 500;
    margin: 0;
}

.step-block p,
.step-block p a,
.step-block p strong {
    font-size: 19px;
    font-weight: 400;
    line-height: 23px;
    margin: 0;
}

.step-block p {
    color: rgb(80, 75, 75);
}

.step-block p a{
    cursor: pointer;
}

.step-block p a,
.step-block p strong {
    color: rgb(39, 86, 254);
}

.step-block p a {
    text-decoration: underline rgb(39, 86, 254);
}


.steps-container .step-block__wrapper:first-child:before{
display: none;
}

.steps-container .step-block__wrapper:nth-child(2):before{
    height: 178px;
    bottom: 114px;
}

.steps{
    margin-bottom: 60px;
}

.download-app__buttons{
    display: flex;
    align-items: center;
}


@-webkit-keyframes fadeInRightSlow {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRightSlow {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.fadeInRightSlow {
    -webkit-animation-name: fadeInRightSlow;
    animation-name: fadeInRightSlow;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.calculator{
    position: relative;
    z-index: 2;
}

.time-working__warning{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 10;
    background: rgba(250, 253, 255, 0.90);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.time-working__warning-active{
    display: flex;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.time-working__warning img{
    width: 130px;
    margin-bottom: 15px;
}

.time-working__warning h4, .time-working__warning p{
    width: 390px;
}

.time-working__warning h4{
    color: #504B4B;
    line-height: 1.2;
    font-weight: 500;
    margin: 0;
    font-size: 26px;
    margin-bottom: 7px;
}

.time-working__warning p, .time-working__warning p span{
    margin: 0;
    font-size: 23px;
}

.time-working__warning p{
    line-height: 27px;
}

.time-working__warning p span{
color: #ff0000cf;
}

.error-validation::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    font-size: 0;
    border: 2px solid rgb(255, 74, 74);
    left: 0px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    pointer-events: none;
    top: 0;
    z-index: 9999;
}


@media (max-width: 1450px) {

    .calculator-form__transport-company,
    .order-transport__company .order-form__transport-company {
        margin-right: 15px;
        width: 185px;
        margin-bottom: 15px;
    }


    .calculator-form__city {
        width: 874px;
        margin-bottom: 15px;
    }

    .calculator-form__city .city-select__block {
        width: 414px;
    }

    .selectric .label,
    .selectric-items li,
    .input-contain input,
    .input-contain__block-textarea textarea,
    .input-contain input,
    .input-contain .text,
    .input-contain__block-textarea textarea,
    .input-contain__block-textarea,
    .input-contain__block-textarea .text {
        font-size: 13px;
    }

    .select-title,
    .input-contain input:focus+.placeholder-text .text,
    .input-contain :not(input[value=""])+.placeholder-text .text,
    .input-contain__block-textarea textarea:focus+.placeholder-text .text,
    .input-contain__block-textarea :not(textarea[value=""])+.placeholder-text .text {
        font-size: 10px;
    }

    .input-contain,
    .select-block {
        height: 40px;
    }

    .city-selects__change {
        width: 30px;
        height: 40px;
        margin: 0 4px;
    }

    .selectric {
        padding-top: 21px;
    }

    .input-contain input {
        padding-top: 12px;
    }

    .city-selects__change img {
        width: 13px;
    }

    .package-select {
        width: 235px;
        margin-right: 15px;
    }

    .calculator-form__specs-item,
    .order-transport__company .specs-item {
        width: 644px;
        margin-right: 15px;
    }

    .purple-btn {
        height: 40px;
        font-size: 17px;
    }

    .calculate-transport-company {
        width: 165px;
    }

    .calculator-form__specs-item .input-contain,
    .order-transport__company .specs-item .input-contain {
        width: 145px;
    }

    .input-contain input {
        height: 40px;
    }

    .calculator-form__specs-x {
        font-size: 16px;
        height: 40px;
    }

    .input-contain input:focus+.placeholder-text .text,
    .input-contain :not(input[value=""])+.placeholder-text .text {
        transform: translate(0, -70%);
    }

    .calculate-form__output-block,
    .calculate-form__output-block span {
        font-size: 15px;
    }

    .calculate-form__output small {
        font-size: 11px;
        margin-top: 5px;
    }

    .calculator-form__marketplace {
        width: 225px;
        margin-right: 20px;
    }

    .calculator-form__container-block-marketplace .calculator-city__select {
        width: 440px;
        margin-right: 20px;
    }

    .calculator-form__container-block-marketplace .city-select__block-input {
        width: 205px;
        margin-right: 20px;
    }

    .form-block__contract .input-tel {
        width: 215px;
        margin-right: 20px;
    }

    .form-block__contract .input-email {
        width: 271px;
        margin-right: 15px;
    }

    .form-block__contract .input-id {
        width: 553px;
    }

    .item-edit__btn {
        font-size: 17px;
        padding: 6px 10px;
        border-radius: 7px;
    }

    .item-edit__btn img {
        height: 19px;
        margin-right: 5px;
    }

    .selectric-wrapper::before {
        top: 18px;
    }

    .order-transport__company .package-select {
        margin-bottom: 15px;
    }

    .radio-button label {
        font-size: 13px;
        padding: 8px 11px;
    }

    .order-radio__hav {
        width: 220px;
    }

    .radio-buttons__title {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .order-transport__company .order-radio__buttons,
    .order-transport__company .order-transport-form__city {
        margin-bottom: 15px;
    }

    .input-contain__block-textarea {
        height: 120px;
    }

    .order-transport__company .specs-item {
        margin-bottom: 15px;
    }

    .modal-order {
        width: 1120px;
    }

    .order-title h2,
    .section-title {
        font-size: 35px;
    }

    .calculator-form__navbar button,
    .orders-navbar button {
        font-size: 15px;
    }

    .main-title h3 {
        font-size: 19px;
        height: 40px;
    }

    .main-title img {
        max-width: 100px;
        max-height: 35px;
    }

    .main-text {
        font-size: 13px;
        line-height: 16px;
    }

    .features-block img {
        width: 70px;
    }

    .features-block {
        padding: 25px 15px;
    }

    .features-text h3 {
        font-size: 16px;
    }

    .features-text p {
        font-size: 12px;
        line-height: 14px;
    }

    .features {
        margin-bottom: 60px;
        margin-top: 40px;
    }

    .ajax-message__text h3 {
        margin: 0;
    }

    .ajax-message img {
        width: 220px;
        height: 220px;
        margin-bottom: 15px;
    }

    .ajax-message__text h3 {
        margin: 0;
        margin-bottom: 10px;
        font-size: 30px;
    }

    .ajax-message__text p {
        font-size: 24px;
    }

    .upload-btn {
        height: 40px;
    }

    .upload-btn__title img {
        width: 26px;
    }

    .download-app-link,
    .header__top-item a {
        font-size: 11px;
    }

    .download-app-link img {
        height: 23px;
    }


    .header__main-info {
        min-width: 235px;
    }

    .header__main-phone-numbers a {
        font-size: 15px;
    }

    .mainmenu li {
        margin-right: 15px;
    }

    .mainmenu li a {
        font-size: 14px;
    }

    .header__main-logo {
        width: 170px;
    }

    .header__main-phone {
        min-width: auto;
    }

    .header__main-check-status span {
        font-size: 14px;
    }


    .header__main-check-status {
        padding: 0 15px;
        margin-right: 15px;
    }

    .order-marketplace-city__select {
        width: calc(33% - 15px);
    }
}

@media (max-width: 1200px) {
    .calculate-transport-company {
        margin-top: 15px;
    }

    .calculator-form__specs-item,
    .order-transport__company .specs-item {
        width: 619px;
    }

    .calculator-form__specs-item .input-contain,
    .order-transport__company .specs-item .input-contain {
        width: 139px;
    }

    .calculator-form__container-block-marketplace .calculator-city__select {
        width: 420px;
    }

    .calculator-form__container-block-marketplace .city-select__block-input {
        width: 179px;
    }

    .calculate-marketplace {
        margin-top: 20px;
    }

    .calculator-form__container-block-marketplace {
        max-height: 90px;
        align-items: center;
        justify-content: space-between;
    }

    .calculator-form__container-block-marketplace .calculate-form__output-block {
        margin-right: 0;
    }

    .form-block__contract .input-id {
        width: 434px;
    }

    .form-block__contract .input-email {
        width: 220px;
        margin-right: 15px;
    }

    .form-block__contract .input-tel {
        width: 195px;
        margin-right: 20px;
    }

    .calculator-form__block__pay .purple-btn {
        width: auto;
    }

    .modal-order {
        width: 930px;
    }

    .calculator-form__container-block-transport-company .calculator-form__transport-company {
        order: 1;
    }

    .calculator-form__container-block-transport-company .package-select {
        order: 2;
        margin-bottom: 15px;
    }

    .calculator-form__container-block-transport-company .calculator-form__city {
        order: 3;
    }

    .calculator-form__container-block-transport-company .calculator-form__specs-item {
        order: 4;
    }

    .calculator-form__container-block-transport-company .calculate-transport-company {
        order: 6;
    }

    .calculator-form__container-block-transport-company .calculate-form__output {
        order: 5;
    }

    .home-slider__text {
        width: 85%;
        left: 70px;
    }

    .modal-order__item .orders__wrapper {
        padding: 60px 23px 40px 23px;
    }

    .features-text p {
        font-size: 15px;
        line-height: 19px;
    }

    .features-text h3 {
        font-size: 19px;
    }

    .home-contacts__header p {
        font-size: 30px;
    }

    .features .container-big .row {
        align-items: stretch;
    }

    .header__main-check-status span {
        display: none;
    }

    .header__main-logo {
        margin-right: 20px;
    }

    .header__main-phone-icon {
        width: 55px;
        height: 55px;
        font-size: 16px;
        margin-right: 15px;
    }

    .header__main-check-status img {
        height: 23px;
        margin-right: 0;
    }

    .header__main-check-status {
        height: 55px;
        width: 55px;
        justify-content: center;
        padding: 0;
    }

    .steps-container{
        width: 100%;
        height: auto;
    }

    .step-block__wrapper{
        position: inherit;
        top: auto !important;
        width: 100%;
        justify-content: center !important;
        margin-bottom: 30px;
        flex-direction: column;
    }


    .step-block{
        width: 80%;
        margin-bottom: 30px;
    }

    .steps-container .step-block__wrapper:before, .steps-container .step-block__wrapper:after{
        display: none;
    }

    .step-block__circle{
        height: 120px;
        width: 30px;
        position: inherit;
        right: auto;
        top: auto;
        background: url("../../img/step-arrow-bottom.svg") center no-repeat;
        background-size: contain;
        border-radius: 0;
    }
    
    .steps-container .step-block__wrapper:last-child .step-block__circle{
        display: none;
    }

    .steps-container .step-block__wrapper:last-child .step-block, .steps-container .step-block__wrapper:last-child{
        margin-bottom: 0;
    }

    .steps-container {
        margin-top: 0;
    }

    .home-slider__text-header {
        font-size: 34px;
    }

}


@media (max-width: 991px) {


    .home-contacts__header:before,
    .home-contacts__header:after {
        flex-grow: 0.46;
    }

    .order-from__shop .input-contain:nth-child(1) {
        width: 100%;
    }

    .order-from__shop .input-contain:nth-child(2),
    .order-from__shop .input-contain:nth-child(3) {
        width: calc(50% - 15px)
    }

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

    .calculator-form__city,
    .order-transport__company .order-transport-form__city {
        flex-direction: column;
        position: relative;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
    }

    .order-from__shop-active {
        max-height: 120px;
    }

    .city-select__block,
    .city-selects__change {
        width: 100% !important;
    }

    .city-selects__change {
        margin: 15px 0;
    }

    .calculator-form__container-block-marketplace .calculator-city__select {
        order: 1;
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .calculator-form__container-block-marketplace .city-select__block-input {
        order: 3;
    }

    .calculator-form__marketplace {
        order: 4;
    }

    .calculate-marketplace {
        order: 5;
    }

    .calculate-form__output__disabled {
        order: 6;
    }

    .calculator-form__container-block-marketplace .city-select__block-input,
    .calculator-form__container-block-marketplace .calculator-form__marketplace,
    .form-block__contract .input-tel,
    .form-block__contract .input-email {
        width: calc(50% - 8px);
        margin-right: 0;
    }

    .form-block__contract .input-tel,
    .form-block__contract .input-email {
        margin-bottom: 15px;
    }

    .form-block__contract .input-id {
        width: 100%;
    }

    .form-block__contract {
        justify-content: space-between;
    }

    .calculator-form__container-block-marketplace {
        max-height: 100%;
    }

    .calculator-form__block__pay .purple-btn {
        font-size: 12px;
    }

    .calculator-navbar button p {
        font-size: 13px;
    }

    .order-radio__shop,
    .order-radio__hav {
        margin: 0 auto;
    }

    .item-edit__btn {
        font-size: 14px;
    }

    .item-edit__btn img {
        height: 16px;
    }

    .order-marketplace-city__select {
        width: 100%;
        margin-right: 0;
    }

    .order-title h2,
    .section-title {
        font-size: 28px;
    }

    .calculator-navbar button img {
        height: 15px;
    }

    .modal-order {
        width: 690px;
    }

    .order-marketplace__block-title,
    .order-marketplace__block-title span {
        font-size: 24px;
    }

    .main-title img {
        max-width: 129px;
        max-height: 55px;
    }

    .main-title h3 {
        font-size: 25px;
        height: auto;
    }

    .main-text {
        font-size: 17px;
        line-height: 22px;
    }

    .main-title {
        margin-bottom: 25px;
    }

    .home-slider__text {
        width: 100%;
        left: 0;
        align-items: center;
        padding: 0 50px 15px;
    }

    .features-text h3 {
        font-size: 17px;
    }

    .features-text p {
        font-size: 12px;
        line-height: 15px;
    }

    .upload-btn {
        width: 415px;
    }

    .header__main-info {
        min-width: unset;
    }


    .modal-check__status {
        width: 500px;
    }

    .modal-check__status .s-plugin-orderstatus-container .field-label,
    .modal-check__status .s-plugin-orderstatus-container .result .error,
    .modal-check__status .s-plugin-orderstatus-container .message,

    .check-status__section-form.s-plugin-orderstatus-container .field-label,
    .check-status__section-form .s-plugin-orderstatus-container .result .error,
    .check-status__section-form .s-plugin-orderstatus-container .message {
        font-size: 14px;
    }

    .modal-check__status .s-plugin-orderstatus-container h5,
    .check-status__section-form .s-plugin-orderstatus-container h5 {
        font-size: 30px;
    }

    .modal-check__status .s-plugin-orderstatus-container .order_status,
    .modal-check__status .s-plugin-orderstatus-container form input[type="submit"],

    .check-status__section-form .s-plugin-orderstatus-container .order_status,
    .check-status__section-form .s-plugin-orderstatus-container form input[type="submit"],

    .modal-check__status .s-plugin-orderstatus-container .reset,
    .modal-check__status .s-plugin-orderstatus-container form input[type="text"],

    .check-status__section-form .s-plugin-orderstatus-container .reset,
    .check-status__section-form .s-plugin-orderstatus-container form input[type="text"] {
        height: 40px;
    }

    .modal-check__status .s-plugin-orderstatus-container .result {
        flex-wrap: wrap;
    }

    .modal-check__status .s-plugin-orderstatus-container .reset {
        width: 100%;
        margin-top: 15px;

    }

    .check-status__section-form .s-plugin-orderstatus-container .reset {
        padding: 0 25px;
        font-size: 16px;
    }


    .modal-check__status .s-plugin-orderstatus-container .result .order_status+span,
    .modal-check__status .s-plugin-orderstatus-container .result .error+span,
    .check-status__section-form .s-plugin-orderstatus-container .result .error+span {
        width: 100%;
    }

    .modal-check__status .s-plugin-orderstatus-container .order_status {
        margin-right: 0;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="submit"] {
        width: 100%;
        margin-top: 15px;
    }

    .modal-check__status .s-plugin-orderstatus-container form {
        flex-wrap: wrap;
    }

    .modal-check__status .s-plugin-orderstatus-container .result .error,
    .check-status__section-form .s-plugin-orderstatus-container .result .error {
        width: 100%;
        margin-right: 0;
        text-align: center;
    }

    .check-status__section-form .s-plugin-orderstatus-container h5 {
        margin-bottom: 20px;
    }

    .header__main-phone-number.open {
        z-index: 15;
    }

    .order-form__contact,
    .order-form__block {
        width: calc(50% - 10px);
    }
    
    .home-slider__text-header {
        font-size: 26px;
        line-height: 30px;
    }
}


@media (max-width: 768px) {

    .upload-btn__title span {
        font-size: 14px;
    }

    .purple-btn {
        height: 45px;
        font-size: 19px;
        width: 100%;
    }

    .upload-btn {
        height: 45px;
        margin-bottom: 15px;
        width: 91vw;
    }

    .upload-btn__title img {
        width: 25px;
    }

    .home-contacts__header:before,
    .home-contacts__header:after {
        flex-grow: 0.4;
    }

    .upload-btn:hover .upload-btn__title span {
        transform: translateX(0px);
    }

    .order-from__shop .input-contain:nth-child(2),
    .order-from__shop .input-contain:nth-child(3) {
        width: calc(50% - 8px);
    }

    .calculator-navbar button {
        margin-right: 20px;
    }

    .calculator-form__navbar button,
    .orders-navbar button {
        font-size: 14px;
    }

    .calculator-form__specs-x__disabled {
        display: none;
    }

    .calculator-form__specs-item .input-contain,
    .order-transport__company .specs-item .input-contain {
        width: calc(50% - 12px);
        margin-top: 15px;
    }

    .calculator-form__specs-x {
        margin-top: 15px;
    }

    .specs-title {
        padding: 9px 14px 0 14px;
    }

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

    .order-form__contacts .order-form__block {
        width: calc(50% - 8px);
        margin-bottom: 15px;
    }

    .form-privacy {
        text-align: left;
        font-size: 12px;
    }

    .orders-wrapper__without-modal .order-block__send .purple-btn {
        margin-left: auto;
    }

    .modal-order {
        width: 510px;
    }

    .order-marketplace__select,
    .order-marketplace__select-item {
        width: 100%;
        margin-right: 0;
    }

    .order-transport__marketplace .order-form__contacts .order-form__block:last-child {
        width: 100%;
    }

    .calculator-form__specs-item,
    .order-transport__company .specs-item {
        width: 100%;
        margin-right: 0;
    }

    .modal-text {
        width: calc(100% - 30px)
    }

    .modal-text {
        padding: 50px 25px;
    }

    .modal-title h2 {
        font-size: 23px;
    }

    .modal-text__container p {
        font-size: 17px;
    }

    .calculator-form__block__pay .purple-btn {
        width: 100%;
    }

    .calculator-form__block__pay .modal-privacy-pay {
        margin-bottom: 15px;
    }

    .modal-text {
        border-radius: 7px;
    }

    .order-from__shop .input-contain {
        margin-bottom: 12px;
    }

    .home-slider__text-header {
        font-size: 22px;
        line-height: 25px;
    }

    .home-slider__text-small {
        font-size: 19px;
        line-height: 115%;
    }

    .main-title img {
        max-width: 170px;
    }

    .calculator h2 {
        margin-bottom: 15px;
    }

    .order-title h2,
    .section-title {
        margin-bottom: 25px;
    }

    .calculator {
        margin-top: 25px;
    }

    .main-items {
        top: -40px;
    }


    .features-text p {
        font-size: 19px;
        line-height: 24px;
    }

    .features-block img {
        width: 100px;
        margin-right: 20px;
    }

    .features-text h3 {
        font-size: 21px;
    }

    .download-app-link {
        margin-bottom: 20px;
    }

    .check-status__section-form .s-plugin-orderstatus-container form,
    .check-status__section-form .result {
        flex-wrap: wrap;
    }

    .check-status__section-form .result {
        justify-content: space-between;
        width: 100%;
    }

    .check-status__section-form .s-plugin-orderstatus-container form input[type="submit"],
    .check-status__section-form .s-plugin-orderstatus-container .reset {
        width: 100%;
        margin-top: 25px;
    }

    .check-status__section-form .s-plugin-orderstatus-container .label-order-prefix {
        margin-right: 13px;
    }

    .check-status__section-form .order_status+span {
        width: 100%;
    }

    .check-status__section-form .s-plugin-orderstatus-container .result .error {
        font-size: 18px;
    }

    .check-status__section-form .s-plugin-orderstatus-container .message {
        font-size: 16px;
    }

    .check-status__section-form .s-plugin-orderstatus-container {
        height: 161px;
    }

    .download-app__buttons{
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 576px) {

    .order-title h2,
    .section-title {
        font-size: 30px;
    }

    .calculator-navbar {
        flex-direction: column;
    }

    .calculator-navbar button {
        width: 100%;
        margin-bottom: 15px;
        border-radius: 5px;
        margin-right: 0;
    }

    .calculator-navbar button:last-child {
        margin-bottom: 0;
    }

    .calculator-form__wrapper,
    .orders__wrapper {
        padding: 15px 10px;
    }

    .calculator-form__navbar,
    .orders-navbar {
        flex-direction: column;
        margin: 10px 0;
    }

    .calculator-form__navbar button,
    .orders-navbar button {
        margin-bottom: 15px;
    }

    .calculator-navbar button img {
        height: auto;
        width: 20px;
        max-height: 20px;
    }

    .selectric .label,
    .selectric-items li,
    .input-contain input,
    .input-contain__block-textarea textarea,
    .input-contain input,
    .input-contain .text,
    .input-contain__block-textarea textarea,
    .input-contain__block-textarea,
    .input-contain__block-textarea .text {
        font-size: 11px;
    }

    .order-transport__company {
        margin-top: 0;
    }

    .select-title,
    .input-contain input:focus+.placeholder-text .text,
    .input-contain :not(input[value=""])+.placeholder-text .text,
    .input-contain__block-textarea textarea:focus+.placeholder-text .text,
    .input-contain__block-textarea :not(textarea[value=""])+.placeholder-text .text {
        font-size: 9px;
    }

    .order-title h2,
    .section-title {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .calculator-form__container-block-transport-company .package-select {
        margin-right: 15px;
    }

    .order-form__contacts .order-form__block {
        width: 100%;
    }

    .calculator-form__container-block-transport-company .package-select,
    .calculator-form__container-block-transport-company .calculator-form__transport-company {
        width: 100%;
        margin-right: 0;
    }

    .select-title {
        top: 7px;
    }

    .selectric {
        padding-top: 23px;
    }

    .select-title {
        top: 9px;
    }

    .input-contain input {
        padding-top: 14px;
    }

    .selectric-wrapper::before {
        width: 8px;
        height: 5px;
        right: 8px;
    }

    .select-title,
    .selectric .label,
    .input-contain .placeholder-text,
    .input-contain__block-textarea .placeholder-text,
    .input-contain,
    .input-contain__block-textarea {
        padding: 0 8px;
    }

    .selectric-items li {
        padding: 10px 8px;
    }

    .input-contain .placeholder-text,
    .input-contain__block-textarea .placeholder-text {
        left: 0px;
    }

    .specs-title {
        padding: 9px 8px 0 8px;
    }

    .calculator-form__specs-item {
        margin-right: 0;
    }

    .city-selects__change {
        height: 35px;
    }

    .city-selects__change img {
        width: 11px;
    }

    .calculate-form__output-block,
    .calculate-form__output-block span {
        font-size: 12px;
    }

    .calculate-form__output small {
        font-size: 8px;
    }

    .calculate-transport-company {
        width: 100%;
    }


    .calculator-form__container-block-marketplace .calculator-form__marketplace {
        order: 3;
        width: 100%;
        margin-bottom: 10px;
    }

    .calculator-form__container-block-marketplace .city-select__block-input {
        width: 100%;
        order: 4;
    }

    .calculator-form__container-block-marketplace .purple-btn {
        width: 100%;
    }

    .calculator-form__container-block-marketplace .calculate-form__output-block,
    .calculator-form__container-block-marketplace .calculate-form__output-block span {
        font-size: 16px;
    }

    .purple-btn {
        font-size: 16px;
        border-radius: 5px;
    }

    .calculate-marketplace {
        margin-top: 15px;
    }

    .calculate-form__output {
        margin-top: 15px;
    }

    .form-block__contract .input-tel,
    .form-block__contract .input-email,
    .form-block__contract .purple-btn,
    .orders-wrapper__without-modal .order-transport__company .order-block__send .purple-btn,
    .orders-wrapper__modal .order-transport__company .order-block__send .purple-btn,
    .orders-wrapper__modal-item .order-transport__company .order-block__send .purple-btn {
        width: 100%;
    }

    .orders-wrapper__without-modal .order-block__send .purple-btn {
        margin-right: 0;
    }

    .order-transport__marketplace .order-block__send {
        justify-content: space-between;
    }

    .calculate-form__output-block img {
        margin-left: -2px;
        height: 6px;
    }

    .input-contain__block-textarea textarea {
        padding-top: 18px;
    }

    .order-radio__shop .radio-button {
        width: 50px;
    }

    .calculator-form__block__pay .purple-btn {
        width: 100%;
        margin: 0;
    }

    .order-radio__shop .radio-button label {
        font-size: 16px;
        padding: 12px 0;
    }

    .order-radio__shop .radio-button {
        width: 60px;
    }

    .order-transport__company .order-form__transport-company,
    .order-transport__company .package-select {
        width: 100%;
        margin-right: 0;
    }

    .calculator-form__block__pay .modal-privacy-pay {
        margin-bottom: 15px;
    }

    .modal-order {
        width: calc(100% - 15px)
    }

    .order-marketplace-city__select,
    .order-marketplace__select,
    .order-marketplace__select-item {
        margin-bottom: 15px;
    }

    .input-contain,
    .select-block {
        height: 45px;
    }

    .item-edit__btn img {
        height: 13px;
    }

    .order-marketplace__block-title,
    .order-marketplace__block-title span {
        font-size: 22px;
    }

    .input-contain__block-textarea {
        height: 150px;
    }

    .close-modal {
        right: 12px;
        top: 12px;
        width: 16px;
        height: 16px;
    }

    .modal-title h2 {
        font-size: 14px;
    }

    .modal-text {
        padding: 40px 20px;
    }

    .modal-text__container p {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .modal-title {
        margin-bottom: 15px;
    }

    .calculator-form__navbar button::before,
    .orders-navbar button::before {
        bottom: -4px;
    }

    .home-slider__text {
        padding: 0 20px 10px;
    }

    .home-slider__text-header {
        font-size: 19px;
        line-height: 22px;
        margin-bottom: 15px;
    }

    .home-slider__text-small {
        font-size: 16px;
        line-height: 18px;
    }

    .modal-order__btn {
        margin-top: 15px;
    }

    .main-title img {
        max-width: 120px;
        max-height: 50px;
    }

    .main-title h3 {
        font-size: 21px;
    }

    .main-text {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 15px;
    }

    .main-title {
        margin-bottom: 15px;
    }

    .modal-order__item .orders__wrapper {
        padding: 40px 10px 15px 10px;
    }

    .modal-feedback {
        width: calc(100% - 100px)
    }

    .modal-feedback__title p {
        font-size: 15px;
    }

    .modal-feedback__title {
        margin-bottom: 20px;
    }

    .modal-feedback__title h2 {
        font-size: 30px;
    }

    .home-contacts__header p {
        font-size: 23px;
    }

    .features .home-contacts__header {
        margin-bottom: 20px;
    }

    .calculator .container-big .row .col-12 {
        margin-bottom: 0;
    }

    .features-block {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .features-block img {
        width: 120px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .features-text h3 {
        font-size: 20px;
    }

    .features-text p {
        font-size: 17px;
        line-height: 21px;
        margin-bottom: 0;
    }

    .home-contacts__text {
        margin-top: 0;
    }

    .ajax-message img {
        width: 130px;
        height: 130px;
        margin-bottom: 10px;
    }

    .ajax-message__text h3 {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .ajax-message__text p {
        font-size: 15px;
    }

    .form-block__contract .ajax-message {
        flex-direction: column;
    }

    .form-block__contract .ajax-message img {
        width: 110px;
        margin-right: 0;
    }

    .ajax-message__text {
        text-align: center;
    }

    .form-block__contract .ajax-message__text p {
        font-size: 16px;
    }

    .form-block__contract .ajax-message__text h3 {
        font-size: 22px;
        margin-bottom: 5px;
    }

    .home-contacts__text {
        font-size: 16px;
        line-height: 22px;
    }


    .upload-btn__title span {
        font-size: 12px;
    }

    .upload-btn__title {
        padding: 0 7px 0 11px;
    }

    .upload-btn__title img {
        width: 21px;
        margin-right: 9px;
    }

    .upload-btn:hover .upload-btn__title span {
        transform: translateX(0px);
    }

    .upload-btn__title span {
        font-size: 3.2vw;
    }

    .upload-btn__title img {
        width: 20px;
        margin-right: 6px;
    }

    .ajax-message img {
        width: 260px;
        height: 260px;
    }

    .upload-alert img {
        margin-bottom: -40px;
    }

    .download-app-link {
        font-size: 13px;
    }

    .download-app-link img {
        height: 30px;
    }

    .header__main-menu .download-app-link__wrapper {
        margin-top: 20px;
    }

    .home-contacts__map #map {
        height: 550px;
    }

    .modal-check__status {
        width: calc(100% - 20px);
        padding: 30px 15px 20px 15px;
    }

    .modal-check__status .s-plugin-orderstatus-container h5 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .modal-check__status .s-plugin-orderstatus-container .field-label,
    .modal-check__status .s-plugin-orderstatus-container .result .error,
    .modal-check__status .s-plugin-orderstatus-container .message {
        font-size: 13px;
    }

    .modal-check__status .s-plugin-orderstatus-container .message {
        font-size: 12px;
    }

    .result {
        justify-content: space-between;
    }

    .modal-check__status .s-plugin-orderstatus-container .order_status {
        height: 25px;
        padding: 0 8px;
        font-size: 11px;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="submit"],
    .modal-check__status .s-plugin-orderstatus-container .reset,
    .modal-check__status .s-plugin-orderstatus-container form input[type="text"] {
        height: 45px;
    }

    .check-status__section-form .s-plugin-orderstatus-container h5 {
        font-size: 24px;
    }

    .check-status__section-form .s-plugin-orderstatus-container .label-order-prefix {
        margin-right: 8px;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="text"],
    .check-status__section-form .s-plugin-orderstatus-container input[type="text"] {
        margin-right: 0;
    }

    .check-status__section-form .s-plugin-orderstatus-container .field-label,
    .check-status__section-form .s-plugin-orderstatus-container .label-order-prefix {
        font-size: 16px;
    }

    .check-status__section-form .s-plugin-orderstatus-container input[type="text"],
    .check-status__section-form .s-plugin-orderstatus-container input[type="text"]::placeholder {
        width: 140px;
        font-size: 14px;
    }

    .check-status__section-form .s-plugin-orderstatus-container form input[type="submit"],
    .check-status__section-form .s-plugin-orderstatus-container .reset {
        margin-top: 15px;
        height: 45px;
    }

    .check-status__section-form .s-plugin-orderstatus-container .order_status {
        margin-right: 0;
        width: 100%;
        height: 35px;
        margin-top: 10px;
    }

    .check-status__section-form .s-plugin-orderstatus-container {
        height: 167px;
    }

    .check-status__section {
        margin-bottom: 40px;
    }

    .features {
        margin-bottom: 40px;
    }

    .header__main-mobile-icon {
        padding: 16px 15px;
    }

    .header__main-mobile-icon,
    .header__main-phone-icon,
    .header__main-check-status {
        width: 53px;
        border-radius: 10px;
    }

    .header__main-phone-icon,
    .header__main-check-status {
        height: 53px;
    }

    .header__main-phone {
        margin-right: 5px;
    }

    .header__main-phone-icon {
        margin-right: 0;
    }

    .header__main-check-status {
        margin-right: 11px;
    }

    .header__main-logo {
        width: 145px;
    }

    .order-marketplace-city__select+.order-form__block {
        margin-right: 0;
    }

    .order-form__contact,
    .order-form__block {
        width: 100%;
    }

    .main-item .purple-btn {
        font-size: 20px;
    }

    .form-warning-message {
        font-size: 15px;
    }

    .orders-wrapper__modal-item .form-warning-message {
        margin-bottom: 13px;
    }

    .step-block {
        width: 100%;
    }

    .step-block__title h4{
        font-size: 21px;
    }

    .step-block__title h3{
        margin-right: 10px;
        font-size: 70px;
        line-height: 50px;
    }

    .step-block p, .step-block p a, .step-block p strong {
        font-size: 18px;
    }

    .step-block__circle{
        background: url("../../img/step-arrow-bottom-mob.svg") center no-repeat;
        background-size: contain;
        height: 20px;
        width: 35px;
    }

    .step-block__wrapper{
        margin-bottom: 25px;
    }

    .step-block{
        margin-bottom: 25px;
    }

    .time-working__warning h4, .time-working__warning p {
        width: 100%;
    }

    .time-working__warning img {
        width: 100px;
    }

    .time-working__warning h4{
        font-size: 26px;
    }

    .time-working__warning p, .time-working__warning p span {
        margin: 0;
        font-size: 22px;
      }

      .time-working__warning p {
        line-height: 26px;
      }
}


@media (max-width: 340px) {
    .modal-check__status .s-plugin-orderstatus-container h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .modal-check__status .s-plugin-orderstatus-container .message {
        font-size: 10px;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="submit"],
    .modal-check__status .s-plugin-orderstatus-container .reset,
    .modal-check__status .s-plugin-orderstatus-container form input[type="text"] {
        height: 40px;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="text"],
    .modal-check__status .s-plugin-orderstatus-container form input[type="text"]::placeholder {
        font-size: 12px;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="text"] {
        width: 120px;
    }

    .modal-check__status .s-plugin-orderstatus-container form input[type="submit"],
    .modal-check__status .s-plugin-orderstatus-container .reset {
        font-size: 14px;
    }

    .check-status__section-form .s-plugin-orderstatus-container .field-label,
    .check-status__section-form .s-plugin-orderstatus-container .label-order-prefix {
        font-size: 14px;
    }

    .header__main-mobile-icon,
    .header__main-phone-icon,
    .header__main-check-status,
    .header__main-phone {
        width: 45px;
    }

    .header__main-phone {
        margin-right: 10px;
    }

    .header__main-phone-icon,
    .header__main-check-status {
        height: 50px;
    }

    .header__main-mobile-icon {
        padding: 14px 13px;
    }

    .header__main-check-status img {
        height: 20px;
    }

}


html {
    -webkit-font-smoothing: antialiased;
}

.wow {
    visibility: hidden;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}