.popup-event-wrapper {
    --site: 1280px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1111;
    transition: var(--trans);
    opacity: 0;
    pointer-events: none;
}
.open-event-pop .popup-event-wrapper {
    opacity: 1;
    pointer-events: all;
}
.popup-event-wrapper .popup-event-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(11 11 11 / 44%);
}

.popup-event-wrapper .event-content-wrapper {
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 2;
}

.popup-event-wrapper .close-event-pop {
    width: 36px;
    height: 36px;
    position: absolute;
    top: -16px;
    right: -16px;
    border-radius: 36px;
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 5px 10px 0 rgb(0 0 0 / 14%), 0 1px 12px 0 rgb(0 0 0 / 10%);
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    cursor: pointer;
    user-select: none;
}

.event-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
}

.event-content img {
    height: auto;
    display: block;
    margin: 0;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 180px);
}

.popup-event-wrapper .event-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--pr-spacing-05);
    position: relative;
}

.popup-event-wrapper .event-actions .btn-event {
    background: var(--pr-color-secondary);
    color: var(--pr-color-white);
    font-weight: var(--pr-font-weight-heading);
    width: 80%;
    text-align: center;
    max-width: 300px;
    padding: 1rem 2.4rem;
    border-radius: var(--large-padding);
    position: relative;
}
.pumpkin {
    position: absolute;
    top: 50%;
    left: -3%;
    transform: translateY(-65%);
    width: 100px;
}

.open-event-pop {
    overflow: hidden;
}



@media (max-width: 760px) {
    .popup-event-wrapper .event-form-content {
        width: 100%;
    }
}