.routeform__form {
    overflow: hidden
}

.routeform__body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px
}

@media (max-width:991px) {
    .routeform__body {
        grid-template-columns: repeat(1, 1fr);
        grid-auto-flow: row-reverse;
        gap: 10px
    }

    .routeform__form {
        order: 2
    }

    .routeform__content {
        order: 1
    }
}

.routeform {
    position: relative
}

.routeform__form-btn {
    height: 70px;
    width: 100%
}

.routeform::after {
    content: '';
    position: absolute;
    background: rgba(16, 16, 16, 0.85);
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .9;
    z-index: -1
}

.routeform__bg {
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover
}

.routeform__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.routeform__title {
    color: #fff;
    font-size: 50px;
    font-weight: 900
}

.routeform__text {
    margin-top: 40px;
    color: #fff;
    font-size: 20px
}

.routeform__title span {
    color: #228B22
}

.routeform__form {
    position: relative;
    border-radius: 20px;
    background: rgb(16 16 16 / 64%);
    color: #fff;
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.routeform__form-inner {
    padding: 30px
}

.routeform__form-input_from {
    padding-left: 50px;
    background-image: url(../images/delivery-from.svg);
    background-repeat: no-repeat;
    background-position: 25px center;
    background-size: 15px 20px
}

form .input-block__holder select {
  border-radius: 4.0625rem;
    height: 40px;
    border: 1px solid transparent;
        min-height: 3rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    width: 100%;
    outline: none;
    border: none;
    color: var(--color-light);
    background: var(--color-input-background);
    appearance: none;
    position: relative;
}

.routeform__form-input_to {
    padding-left: 50px;
    background-image: url(../images/delivery-to.svg);
    background-repeat: no-repeat;
    background-position: 25px center;
    background-size: 15px 20px
}

.routeform__form-input_weight,
.routeform__form-input_vol {
    position: relative
}

.routeform__input-group {
    display: flex;
    column-gap: 1rem;
    justify-content: space-between
}

.routeform__input-block {
    position: relative
}

.routeform__form-input_label {
    position: absolute;
    font-size: 18px;
    line-height: 1;
    right: 25px;
    color: #aeaeae;
    top: 50%;
    transform: translateY(-50%)
}

.routeform__container .background-lines {
    background: rgba(243, 243, 243, .25)
}

.routeform__input-group .routeform__input-block {
    width: 50%
}

@media (max-width:1350px) {
    .routeform__title {
        font-size: 45px
    }

    .routeform__text {
        font-size: 18px
    }

    .routeform__form-inner {
        padding: 30px
    }
}

@media (max-width:991px) {
    .routeform__row {
        flex-direction: column-reverse
    }

    .routeform__form-inner {
        padding: unset;
        margin-top: 30px
    }

    .routeform__title {
        font-size: 40px
    }

    .routeform__form {
        background: transparent !important
    }

    .routeform__form-title {
        color: #fff;
        text-align: center
    }
}

@media (max-width:767px) {
    .routeform__input-group .routeform__input-block {
        width: 100%
    }

    .routeform__form-btn {
        font-size: 14px;
        font-weight: 700
    }

    .routeform__form-input_label {
        font-size: 16px
    }

    .routeform__text {
        margin-top: 30px
    }

    .routeform__text {
        font-size: 14px
    }

    .routeform__form-input_from,
    .routeform__form-input_to {
        padding-left: 36px !important;
        background-position: 15px
    }

    .routeform__form-input {
        padding: 14px 15px;
        font-size: 14px
    }

    .routeform__input-group {
        flex-direction: column;
        row-gap: 1rem
    }

    .routeform__title {
        font-size: 28px
    }

    .routeform__form-btn,
    .routeform__form-input {
        height: 48px
    }
}

@media (max-width:575px) {
    .routeform__text {
        margin-top: 20px
    }
}

.error_message {
    display: none
}