/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 /* Default modal styles */

#ecalendar {
    margin: 0 auto !important;
    font-size: 10px !important;
}

#ecalendar-modals{
	position: absolute;
}

.ecalendar-d-none{display: none;}
.ecalendar-d-flex{display: -webkit-box;display: -ms-flexbox;display: flex;}

.ecalendar-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.ecalendar-modal-content {    
	background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    margin-top: 100px;
    overflow: hidden;
    overflow-y: auto;
    width: 80%;
    max-height: 500px;
}

.ecalendar-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ecalendar-close:hover,
.ecalendar-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.ecalendar-event-item {    
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
}
.ecalendar-event-item-title {
    background-color: red;
    color: white;
}
.ecalendar-event-item-date {
    font-weight: bold;
}

.ecalendar-event-item-localization{
    color: grey;
}