
/* ========================= Calendar ====================================== */


.fc-state-default {
    background:  white;
    border: 1px solid #d51f27;
    color:#d51f27;
    margin-left: 20px;
    outline:none;
}

.fc-state-active, .fc-state-disabled, .fc-state-down, .fc-state-hover {
    background:  #d51f27;
    color:white;
}

.fc-state-active, .fc-state-down {}

.fc .fc-button-group>* {
    margin-left: 10px;
}

.fc-event, .fc-event-dot {
    background:  #d51f27;
    padding:1px 10px;
    border: 1px solid white;
}

div#calendar {
    width:  100%;
}

.fc-unthemed .fc-divider, .fc-unthemed .fc-list-heading td, .fc-unthemed .fc-popover .fc-header {
    background: #d4d4d5;
    background:white;
    padding: 10px 14px;
}

.fc-ltr .fc-list-heading-main {
    color: #d51f27;
}

tbody tr:nth-child(even) {
    background: #ededed;
}

tbody tr {
    background: #faf8f8;
}

.cal-event-datime {
    display:  flex;
    justify-content:  space-between;
    margin-top: 40px;
    border-top: 1px solid #d51f26;
    padding-top: 5px;
}

.cal-event-location {
    margin-top: 10px;
}

.calendar-event-info-content [data-icon] {
    margin-right: 5px;
    color: #d51f26;
}

.calendar-loader {
    display: flex;
    justify-content: center;
}


@keyframes lds-eclipse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes lds-eclipse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.lds-eclipse {
    position: relative;
}

.lds-eclipse div {
    position: absolute;
    -webkit-animation: lds-eclipse 1s linear infinite;
    animation: lds-eclipse 1s linear infinite;
    width: 160px;
    height: 160px;
    top: 20px;
    left: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 0 0 #d51f27;
    -webkit-transform-origin: 80px 82px;
    transform-origin: 80px 82px;
}

.lds-eclipse {
    width: 200px !important;
    height: 200px !important;
    -webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
    transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
}


#calendar .fc-bg tbody tr {
    background: #ffffff;
}