.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
    display: block;
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    height: 350px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.modal-content .card {
    border: none;
}
.close:hover {
    color: black;
}
.modal-content_text {
    padding-top: 40px;
    text-align: left;
    overflow-y: auto;
    /*max-height: 80vh;*/
    height: 100%;
}

.modal.page-advertising .modal-content {
    height: 230px;
}
