

.popup-inner {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    position: relative;
    border-radius: 11px;
}

.popup-close {
    position: absolute;
    right: 15px;
    top: 15px;
}

.popup-inner__container {
    padding-top: 10px;
    padding-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.popup-title {
    font-size: 34px;
    color: #646464;
}

.popup-subtitle {
    font-size: 18px;
    color: #646464;
}

.popup-subtitle span {
    font-size: 22px;
    font-weight: 700;
    color: #fe4337;
}

.popup-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 20px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #c1c1c1;
}

.popup-form .section__owner_form__form__btn {
    margin-top: 10px;
    cursor: pointer;
}

.popup-textarea {
    height: 130px;
    max-height: none;
    resize: none;
}