.event_container{
    position: absolute;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    /* font-family: 'Muli', sans-serif; */
}
.single_event{
    width: 100%;
    height: auto;
    max-height: 80vh;
    height: 70vh;
    position: relative;
}

.event_image{
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    /* float: left; */
    background-size: 80% auto;
    /* background-size: cover; */
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.0;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;                               
    -o-transition: all 2s ease-in-out;    
    transition: all 2s ease-in-out;
}

.event_image_left{
    left: -10%;
}

.event_image_right{
    left: 60%;
}

.event_description{
    position: absolute;
    width: 40%;
    height: auto;
    top: 30%;
    /* transform: translateY(-30%); */
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 20px;
    
    border-bottom: 1px solid black;
    
    opacity: 0.0;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;                               
    -o-transition: all 2s ease-in-out;    
    transition: all 2s ease-in-out;
}
.event_description_left{
    left: 60%;
    border-right: 1px solid black;
    border-radius: 0 0 7px 0;
}
.event_description_right{
    left: -10%;
    border-left: 1px solid black;
    border-radius: 0 0 0 7px;
}

.event_line{
    position: absolute;
    width: 0.5%;
    top: 50%;
    height: 0;
    left: 50%;
    margin-left: -1px;
    background: black;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;                               
    -o-transition: all 2s ease-in-out;    
    transition: all 2s ease-in-out;
}

.event_date{
    position: absolute;
    height: auto;
    width: 180px;
    text-align: center;
    font-weight: bold;
    top: 45%;
    transform: translateY(-40%);
    left: 50%;
    margin-left: -90px;
    -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Safari */
    transform: rotate(-90deg);
    font-size: 30px;
    background: white;
    opacity: 0;
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;    
    transition: all 500ms ease-in-out;
    font-family: 'Muli', sans-serif;
}

.event_title{
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 3vw;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Muli', sans-serif;
}

.event_subdescription{
    width: 100%;
    position: relative;
    text-align: center;
    font-size: 2vw;
    font-family: 'Muli', sans-serif;
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    
  }