#modal {
    display: none;
    position: fixed;
    z-index: 9999; /* Наибольшее значение z-index */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    cursor: pointer; /* Добавлено для указания, что элемент является кликабельным */
}

/* Остальные стили для модального окна */


#modal-content {
    margin: 10% auto;
    width: 80%;
    max-width: 1200px; /* Максимальная ширина модального окна */
    height: 80%;
    max-height: 800px; /* Максимальная высота модального окна */
    background-color: #fff;
    padding: 20px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}


#pdf-container {
    width: 100%;
    height: 100%;
}

.bonus-text {
    font-size: 12px;
    margin-top: auto;
    color: #606060;
}