.survey-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 95vh;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
}

.survey-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
}

.survey-modal.active {
    display: flex;
}

.survey-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);

    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.survey-modal iframe {
    display: block;
    width: 100%;
    height: 90vh;
    border: 0;
    overflow: auto;
}

.survey-close {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: var(--secondary);
    color: var(--white);

    cursor: pointer;

    font-size: 1.8rem;
    line-height: 1;

    z-index: 100;
    transition: .2s ease;
}

.survey-close:hover {
    transform: scale(1.05);
}