/******************/
/***** ARROWS *****/
/******************/

.left_arrow{
    position: absolute;
    top: 40%;
    left: 1vw;
    font-size: 80px;
    z-index: 100;
    padding: 20px;
}

.left_arrow:hover{
    cursor: pointer;
    text-shadow: 0px 0px 10px #666;
}

.right_arrow{
    position: absolute;
    top: 40%;
    right: 1vw;
    font-size: 80px;
    z-index: 100;
    padding: 20px;
}

.right_arrow:hover{
    cursor: pointer;
    text-shadow: 0px 0px 10px #666;
}


/**************************/
/*****  EVENTS  *****/
/**************************/

#carouselContainer{
    height: 46vh;
    position: relative;
    width: 800px;
    margin-bottom: 10vh;
}

#carouselEventContainer{
    white-space: nowrap;
    text-align: center;
}

.carousel_holder{
    display: flex;
    align-items: center;
    justify-content: center;
}

.event_holder{
    opacity: 0;
    transform: scale(.8);
    position: absolute;
    left: 6vw;
    top: 0px;
    z-index: 0;
    transition: .7s;
}

.leftEvent{
    display: block;
    position: absolute;
    left: 73px;
    top: 0px;
    opacity:.4;
    transform: scale(.8) !important;
}
.rightEvent{
    display: block;
    position: absolute;
    left: 430px;
    top: 0px;
    opacity:.4;
    transform: scale(.8) !important;
}

.centerEvent{
    display: block;
    position: absolute;
    left: 250px;
    z-index: 1;
    opacity: 1;
    transform: scale(1);
}

.flyer_image{
    max-height: 50vh;
    overflow: hidden;
    width: 300px;
    height: 400px;
    background: #FF9800;
    border-radius: 20px;
}

.event_icon_item{
    text-align: center;
    padding: 15px;
}

.event_icon_item i{
    font-size: 17vh;
}
.event_holder_info{
    font-size: 22pt;
    margin-top: 40px;
}
.event_holder_info_data{
    font-size: 40pt;
}
.carousel_link{
    margin-top: 20px;
    text-decoration: underline;
    font-weight: bold;
}

.img_loading img{
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    cursor: pointer;
    background: rgb(51, 51, 51);
}
.final_image_description_title{
    padding: 5px;
    font-size: 18pt;
    text-align: center;
    background: #ffffff33;
    border-radius: 30px;
    margin: 0 auto;
    margin-top: 10px;
    width: 80%;
}

.final_image_description{
    text-align: center;
    font-size: 14pt;
    padding: 20px;
    padding-top: 10px;
}

.final_image{
    height: 53%;
    cursor: pointer;
    opacity:0;
    transition: .8s;
}
.final_image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.final_image_loaded{
    opacity: 1;
}


.img_loading{
    height: 400px;
    width: 300px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    text-align: center;
}

/* DESKTOP ONLY */
@media only screen and (min-width: 800px) {



}

/* MOBILE ONLY */
@media only screen and (max-width: 800px) {

    .centerEvent{
        left: 20vw;
    }

    .leftEvent{
        left: 7vw;
    }

    .right_arrow, .left_arrow{
        font-size: 40px;
    }

    .rightEvent{
        left: 33vw;
    }
    .flyer_image{
        width: 230px;
        height: 300px;
    }
    .flyer_lower_section{
        width: 230px;
    }

    .img_loading{
        width: 350px;
        height: 350px;
    }
    .final_image_description_title{
        font-size: 14pt;
    }
    .final_image_description{
        font-size: 12pt;
    }
    .event_holder_info{
        font-size: 18pt;
    }
    
}