.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;
    background: linear-gradient(45deg, rgba(254, 255, 255, 1) 0%, rgba(255, 239, 239, 1) 51%, rgba(244, 248, 255, 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: 250px;
    right: 5px;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 50;
}

.font-pink {
    color: #ef5066;
}

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

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