.calendar {
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    text-align: center;
    font: 15px/1em inherit;
    color: white; }
.calendar a {
    text-decoration: none;
    color: inherit; }
.calendar header .btn {
    display: inline-block;
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;}
.calendar header .btn-prev {
    top: -10px;
    left: 0;}
.calendar header .btn-next {
    top: -10px;
    right: 0; }
.calendar header .btn-next:before {
    margin: 0px !important;
    display: inline !important; }
.calendar header .btn-prev:before {
    margin: 0px !important;
    display: inline !important; }
.calendar header .month {
    padding: 0;
    margin: 0; }
.calendar header .month .year {
    font-size: 0.6em;
    font-weight: 100; }
.calendar table {
    width: 100%;
    margin: 20px 0;
    border-spacing: 0px; }
.calendar thead {
    font-size: 13px;
    font-weight: 600; }
.calendar td {
    padding: .1em .1em;
    width: 10px;}
.calendar .day {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 1.8em;
    line-height: 1.8em;
    cursor: pointer;
    border-radius: 2px}

.calendar .day.wrong-month {
    color: #CBD1D2; }
.calendar .day.disabled {
    cursor: default; }
.event-container {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 70px 70px 20px;
    background: #545A5C;
    box-sizing: border-box; }
.event-container .event-wrapper {
    overflow-y: auto;
    max-height: 100%;
    padding-left: 10px;
    padding-right: 10px;}
.event-container .close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    right: 20px;
    cursor: pointer; }
.event-container .close:before, .event-container .close:after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #CBD1D2; }
.event-container .close:before {
    transform: rotate(45deg); }
.event-container .close:after {
    transform: rotate(-45deg); }
.event-container .event {
    position: relative;
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    background: #6691CC;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
    text-align: left;
    color: white; }
.event-container .event-date {
    margin-bottom: 1em; }
.event-container .event-hour {
    float: right; }
.event-container .event-summary {
    font-weight: 600; }
.filler {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #545A5C;
    transform: translate(-50%, -50%); }
.event {
    position: relative;
    width: 100%;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.12);
    text-align: left;
    color: white; }
.event.NATIONAL_DEBUT {
    background: #1DB5CD; }
.event.OTHER {
    background: #EA3E3F; }
.event.PREMIERE_SCREENING {
    background: #E79B2F; }
.event-summary {
    font-weight: 600;
}

.has-event {
    color: #383838;
    font-weight: 800}
.has-event.NATIONAL_DEBUT {
    background: #1DB5CD; }
.has-event.OTHER {
    background: #EA3E3F; }
.has-event.PREMIERE_SCREENING {
    background: #E79B2F; }
.has-event.NATIONAL_DEBUT-PREMIERE_SCREENING {
    background: linear-gradient(140deg, #1DB5CD 50%, #E79B2F 50%);
}
.has-event.NATIONAL_DEBUT-OTHER {
    background: linear-gradient(140deg, #1DB5CD 49%, #EA3E3F 50%);
}
.has-event.OTHER-PREMIERE_SCREENING {
    background: linear-gradient(140deg, #E79B2F 50%, #EA3E3F 50%);

}
.has-event.NATIONAL_DEBUT-OTHER-PREMIERE_SCREENING {
    background:linear-gradient(to bottom right, #1DB5CD 0, #1DB5CD 33%, #E79B2F 35%, #E79B2F 67%, #EA3E3F 70%, #EA3E3F 100%);
}
