.add-object-popup-container {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    overflow: auto;
    align-items: center;
}

.add-object-popup {
    max-width: 791px;
    border-radius: 20px;
    padding: 40px;
    background-color: #fff;
    margin: auto;
    position: relative;
}

.close-add-object-form-btn {
    position: absolute;
    top: 35px;
    right: 35px;
    border: none;
    background-color: transparent;
}

.add-object-popup-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    color: #000000;
    margin-bottom: 25px;
}

.add-object-popup-description {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: #8A8A8A;
    max-width: 629px;
    margin-bottom: 45px;
}

.add-object-form {
    display: flex;
    justify-content: space-between;
}

.add-object-form-inp-wrapper {
    display: flex;
    flex-direction: column;
}

.add-object-form-inp-wrapper:first-of-type {
    margin-right: 45px;
}

.object-title::placeholder,
.object-address::placeholder,
.object-tel::placeholder,
.object-description::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 27px;
    color: #8A8A8A;
}

.object-title-input-label,
.object-address-input-label,
.object-tel-input-label,
.object-description-input-label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #8A8A8A;
    margin-bottom: 10px;
}

.object-title,
.object-address,
.object-tel,
.object-description {
    max-width: 350px;
    background: #F8F9FA;
    border-radius: 6px;
    border: none;
    padding: 24px;
    margin-bottom: 26px;

    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #343434;
}

.object-title:focus,
.object-address:focus,
.object-tel:focus,
.object-description:focus {
    outline: 1px solid #5AC419;
}

.object-tel {
    margin-bottom: 0;
}

.object-description {
    width: 565px;
    height: 231px;
    margin-bottom: 23px;
    resize: none;
}

.add-object-form-btn-wrapper {
    display: flex;
}

.object-form-submit-btn,
.object-form-support-btn {
    width: 50%;
    max-width: 166px;
    height: 75px;
    background: #5AC419;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    color: #FFFFFF;
    border: none;
}

.object-form-support-btn {
    background: #FFECE1;
    color: #FD7344;
    margin-left: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.object-form-support-btn img {
    margin-right: 12px;
}

@media screen and (max-width: 1200px) {
    .add-object-popup {
        padding: 30px;
    }

    .add-object-form,
    .add-object-form-btn-wrapper {
        flex-direction: column;
    }

    .object-title,
    .object-address,
    .object-tel,
    .object-description {
        width: 100%;
        box-sizing: border-box;
    }

    .object-tel {
        margin-bottom: 26px;
    }

    .object-form-support-btn {
        margin-left: 0;
        margin-top: 18px;
    }
}