/******************/
/*** HOME ***/
/******************/

#home{
    margin-top: 100px;
}

.content_container{
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.news_header{
    font-size: 18px;
}

#createNewButton{
    cursor: pointer;
    padding: 20px;
    padding-bottom: 25px;
    text-align: left;
    font-size: 15pt;
}

#eventNameContainer{
    padding: 0 0 20vh 0;
    margin: 0;
}

.event_container{
    min-height: 30vh;
    margin-top: 5vh;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
}

.event_img{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border: 1px solid #333;
    border-radius: 10px 0 0 10px;
}

.event_info{
    padding: 20px;
    border: 1px solid #333;
    border-radius: 0 10px 10px 0;
    text-align: left;
    background: #fff;
}

.event_title{
    font-size: 24px;
    font-weight: 600;
}

.event_location{
    font-size: 18px;
}

.event_location a{
    text-decoration: none;
    color: #333;
}

.event_title .fal, .event_date .fal, .event_time .fal, .event_description .fal, .event_location .fal{
    font-size: 18px;
    cursor: pointer;
}

.save_event .fal, .delete_event .fal{
    font-size: 32px;
    cursor: pointer;
}

.edit_event_title, .edit_event_date, .edit_event_time, .edit_event_description, .edit_event_location{
    display: none;
}

.edit_event_title input, .edit_event_date input, .edit_event_location input{
    height: 32px;
    width: 50%;
    font-size: 18px;
}

.edit_event_time input{
    height: 32px;
    width: 20%;
    font-size: 18px;
}

.edit_event_title .fal, .edit_event_date .fal, .edit_event_time .fal, .edit_event_location .fal{
    font-size: 24px;
    margin: 0 10px;
    vertical-align: middle;
    cursor: pointer;
}

.edit_event_description .fal{
    font-size: 24px;
    margin: 0 10px;
    vertical-align: top;
    cursor: pointer;
}

.event_overlay{
    opacity: 0;
    background: rgba(0,0,0,.6); 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 100%;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 10px;
}

.cat_inner_container{
    background: white;
    height: 100%;
    cursor: pointer;
    transition: .2s;
    border:1px solid grey;
    background-size: cover;
    background-position: center;
    border-radius: 7px;
}
.cat_inner_container:hover{
    box-shadow: 0px 0px 10px #999999;
    transform: scale(1.1);
    transition: .2s;
}

.title_text{
    text-align: center;
    font-size: 18pt;
    padding: 20px;
    padding-right: 5px;
}

.home_cat_container{
    text-align: center;
    height: 30vh;
    margin-bottom: 20px;
}
.home_cat_name{
    justify-content: center;
    display: flex;
    align-items: center;
    height: 100%;
    background: #00000059;
    color: white;
    font-size: 18pt;
    border-radius: 7px;
}

@media only screen and (max-width: 813px) {

    .event_img{
        display: none;
    }

    .event_info{
        border-radius: 10px;
    }
}