.page-container {
    max-width: 1600px;
    margin: auto;
    padding: 0;
    margin-top: 94px;
}

.valuation-container {
    /* position: relative; */
    /*background-image: url('./images/background.png');*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

    .valuation-container .image-background {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    .valuation-container .form-container {
        /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
        width: 1080px;
        max-width: 100%;
        margin: 0 auto;
        padding-top: 93px;
        padding-bottom: 114px;
    }

        .valuation-container .form-container .form-title {
            font-weight: bold;
            font-size: 30px;
            line-height: 43px;
            color: #FFFFFF;
            margin-bottom: 41px;
        }

        .valuation-container .form-container .container-valuation {
            background: radial-gradient(98.19% 1727.19% at 0.97% 0%, rgba(52, 52, 52, 0.51) 0%, #272526 99.93%, rgba(52, 52, 52, 0.6) 99.94%);
            mix-blend-mode: normal;
            /* width: 1080px;
  max-width: 100%; */
            padding: 36px;
        }

.container-valuation .information-box {
}

.information-box .box-information-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.information-box .box-input-container {
    margin-left: -15px;
    margin-right: -15px;
}

.box-input-container .box-input-item {
    margin-bottom: 32px;
}

.box-input-item .form-select-group {
}

.form-select-group .filter-select {
    width: 100%;
    /* height: 42px; */
}

.form-select-group .select2-container .select2-selection--single {
    height: 42px;
    display: flex;
    align-items: center;
}

    .form-select-group .select2-container .select2-selection--single .select2-selection__arrow {
        top: 50%;
        transform: translate(0, -50%);
    }

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-control-wrap {
    position: relative;
}

.contact-form .form-control {
    transition: all 0.3s ease-in-out;
    outline: none !important;
    box-shadow: none;
    cursor: pointer;
}

.contact-form .form-control {
    /* font-weight: bold; */
    font-size: 14px;
    line-height: 16px;
    height: 42px;
    width: 100%;
    padding: 0 16px;
    border-radius: 0;
    color: #808080;
    border: none;
    background-color: #FFFFFF;
    border-radius: 4px;
}

    .contact-form .form-control.form-control--textarea {
        height: 110px;
        padding-top: 16px;
    }

    .contact-form .form-control:hover,
    .contact-form .form-control:focus,
    .contact-form .form-control:active {
        outline: none !important;
        box-shadow: none !important;
        border: none;
    }

.contact-form ::-webkit-input-placeholder {
    transition: text-indent 0.5s ease, color 0.5s ease;
    color: #969696;
}

.contact-form input::-moz-placeholder {
    transition: text-indent 0.5s ease, color 0.5s ease;
    color: #969696;
}

.contact-form input::ms-input-placeholder {
    transition: text-indent 0.5s ease, color 0.5s ease;
    color: #969696;
}

.contact-form [placeholder]:focus::-webkit-input-placeholder {
    text-indent: 10em;
    color: transparent;
}

.contact-form [placeholder]:focus::-moz-placeholder {
    text-indent: 10em;
    color: transparent;
}

.btn-container {
}

    .btn-container .btn-apply-sale {
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background-color: #F77E12;
        box-shadow: 0px 2.38942px 2.38942px rgba(0, 0, 0, 0.25);
        border: 1px solid transparent;
        font-weight: 600;
        font-size: 15px;
        line-height: 21px;
        color: #FFFFFF;
        width: 195px;
        margin: 0 auto;
    }

        .btn-container .btn-apply-sale:hover {
            transition: all 0.3s ease-in-out;
            color: #F77E12;
            background-color: #FFFFFF;
            border-color: #F77E12;
        }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-container .btn-apply-sale.active i {
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

.error-text {
    font-size: 12px;
    color: red;
    font-style: italic;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
/* .btn-container .btn-apply-sale:before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: calc(2px/ -1);
  left: calc(2px/ -1);
  background: linear-gradient(to right, #F77E12 0%, #F77E12 100%), linear-gradient(to top, #F77E12 50%, transparent 50%), linear-gradient(to top, #F77E12 50%, transparent 50%), linear-gradient(to right, #F77E12 0%, #F77E12 100%), linear-gradient(to left, #F77E12 0%, #F77E12 100%);
  background-size: 100% 2px, 2px 200%, 2px 200%, 0% 2px, 0% 2px;
  background-position: 50% 100%, 0% 0%, 100% 0%, 100% 0%, 0% 0%;
  background-repeat: no-repeat, no-repeat;
  transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out, background-size 0.3s ease-in-out;
  transform: scaleX(0) rotate(0deg);
  transition-delay: 0.6s, 0.3s, 0s;
}
.btn-container .btn-apply-sale:hover:before {
  background-size: 200% 2px, 2px 400%, 2px 400%, 55% 2px, 55% 2px;
  background-position: 50% 100%, 0% 100%, 100% 100%, 100% 0%, 0% 0%;
  transform: scaleX(1) rotate(0deg);
  transition-delay: 0s, 0.3s, 0.6s;
} */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    animation: pcaty 0.2s linear;
}

.popup__main {
    background-color: #fff;
    padding: 80px 184px;
    z-index: 2;
    max-width: 100%;
    position: relative;
    animation: growUp 0.2s linear;
}

.popup__close {
    position: absolute;
    top: 4px;
    right: 4px;
    border: none;
    outline: none;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #cccccc;
}

.popup__title {
    font-weight: bold;
    font-size: 38px;
    line-height: 120%;
    color: #1a1a1a;
    margin-bottom: 48px;
}

.popup__mess {
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
    text-align: center;
    color: #eb0a1e;
    margin-bottom: 30px;
}

.popup__home {
    display: block;
    margin: 0 auto;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.12em;
    color: #1a1a1a;
    border: 1px solid;
    padding: 10px;
    width: fit-content;
}

    .popup__home:hover {
        color: #1a1a1a;
    }

@keyframes pcaty {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes growUp {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

@media screen and (max-width: 992px) {
    .page-container {
        margin-top: 60px;
    }

    .valuation-container .form-container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .form-select-group .select2-container {
        width: 100% !important;
    }
}

@media screen and (max-width: 768px) {
    .popup__main {
        padding: 80px;
    }
}

@media screen and (max-width: 576px) {
    .valuation-container .form-container {
        width: 100%;
        padding: 52px 16px 60px 16px;
    }

    .valuation-container .image-background {
        height: 800px;
        object-fit: cover;
        object-position: center;
    }

    .popup__main {
        padding: 50px 16px;
    }

    .popup__title {
        text-align: center;
        font-size: 24px;
        margin-bottom: 20px;
    }
}
