.popup {
    z-index: 101;
}

.popup__wrapper {
    max-width: 1150px;
    align-items: start;
}

.popup__body {
    display: flex;
    padding: 0;
}

.popup__header {
    padding: 20px 20px 0;
}

.popup__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    min-width: 450px;
    padding: 20px;
}

.popup__contact-info {
    text-align: center;
    font-size: 14px;
    line-height: 140%;
}

.popup__contact-info .phone {
    font-weight: 700;
}

.popup__contact-info p {
    margin: 0;
}

.popup__contact-img {
    max-width: 239px;
    width: 100%;
}

.popup__contact-img img {
    width: 100%;
    height: auto;
}

.popup__contact-form {
    padding: 70px;
    width: 100%;
}

.popup__contact-heading {
    margin: 0;
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
}

.popup__contact-title {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 40px;
}

.popup__form {
    display: flex;
    gap: 40px;
    flex-direction: column;
}

.popup__form-input {
    display: block;
    padding-left: 30px;
    width: 100%;
    font-size: 14px;
    line-height: 14px;
    outline: 0;
    position: relative;
}

.popup__form-label {
    display: flex;
    position: relative;
}

.popup__form-label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain;
}

.popup__form-label {
    height: 30px;
    border-bottom: 1px solid #8f8f8f;
}

.popup__form-label--name::after {
    background-image: url("../icons/form_user.svg");
}

.popup__form-label--phone::after {
    background-image: url("../icons/form_phone.svg");
}

.popup__form-label--select-city::after {
    background-image: url("../icons/form_geo.svg");
}

.popup__form-input--select-city {
    border: 0;
    padding-left: 30px;
}

.popup__form-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fce500;
    padding: 0;
    border: 0;
    outline: 0;
    max-width: 180px;
    height: 40px;
    color: #121212;
    cursor: pointer;
    border-radius: 57px;
    font-weight: bold;
    transition: all 0.4s ease;
}

.popup__form-button:hover {
    color: #fce500;
    background-color: #121212;
}

@media screen and (max-width: 992px) {
    .popup__contact-form {
        padding: 32px;
    }
}
@media screen and (max-width: 902px) {
    .popup__contact {
        display: none;
    }
}
