.pop-up-modal.show {
    opacity: 1;
    visibility: visible;
}
.pop-up-modal {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1095;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    margin: auto;
    transition: 0.2s;
}
.pop-up-content {
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 24px;
    position: relative;
    border-radius: 12px;
    padding: 60px 40px 40px;
}
.pop-up-modal-content {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 12px 24px rgb(0 0 0 / 20%);
    padding: 60px 40px 40px;
    position: relative;
    min-height: 420px;
}
.pop-up-modal-content-title {
    margin-bottom: 32px;
    color: var(--main_text_black);
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
}
@media (max-width: 768px) {
    .pop-up-modal-content-title {
        font-size: 26px;
        margin-bottom: 24px;
    }
}
