.event_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.event_modal-content {
    background: white;
    padding-top: 0;
    height: 100vh;
    border-radius: 12px;
    text-align: center;
    position: relative;
    padding: 0 15px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#fcdeb5+1,ffeec4+51,f9ead4+100&1+0,0.88+41,1+100 */
    background: linear-gradient(135deg, rgba(252, 222, 181, 1) 0%, rgba(252, 222, 181, 1) 1%, rgba(254, 235, 193, 0.88) 41%, rgba(255, 238, 196, 0.9) 51%, rgba(249, 234, 212, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */


}

.event_close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 3rem;
    cursor: pointer;
}

.event_modal-icon {
    position: fixed;
    bottom: 320px;
    right: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.font-pink {
    color: #ef5066;
}

@media only screen and (max-width : 767px) {
    .event_modal-icon {
        right: 5px;
        bottom: 320px;
        padding: 0;
    }

    .event_modal-icon img {
        width: 90px;
    }
}