table {
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
    font-family: 'Ubuntu'; /*border-collapse: collapse;*/
    border-spacing: 0;
}

th, td {
    border: 1px solid rgba(255, 255, 255, 0.67);
    box-sizing: border-box;
}

th {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    padding: 10px 0;
    color: rgba(0, 0, 0, 0.5);
    background-color: #e4f035ed;
    letter-spacing: 1px;
}

td {
    width: 14.285%;
    transition: all 0.3s;
    color: black;
    font-weight: 400;
    font-size: 19px;
    vertical-align: initial;
    padding: 1.5% 0;
    text-align: center;
}

.header-back {
    background-color: rgb(117, 254, 75);
}


.active-day {
    background-color: rgb(117, 254, 75);
}



.empty {

}

.day:hover {
   background-color: rgba(63, 237, 52, 0.71);
}

.day-enable {
    cursor: pointer;
    height: 80px;
    background-color: #e0ec29;

}

.celeb {
    color: red;
}

.today {
    color: #000000;
    background-color: #e4f035ed !important;
    cursor: pointer;

}

.today:hover {
    background-color: rgb(117, 254, 75);
}

.header-month {
    font-weight: bold;
    font-size: 19px;
}

.header-right {
    text-align: right;
}

.header-left {
    text-align: left;
}

.month-name{
    font-size: 2em;
}

.arrow {
    cursor: pointer;
}

.arrow img {
    width: 30px;
    margin-left: 10px;
    margin-right: 10px;
}

span.number {

}

span.event {
    height: 4px;
    background-color: rgba(0, 0, 0, .3);
    display: block;
    margin: 5px 10%;
    border-radius: 2px;
    background-color: #91c33b;
}

span.event-multiday {
    margin: 5px -2px;
    border-radius: 0;
}

span.event-multiday-start {
    margin-right: -4px;
}

span.event-multiday-finish {
    margin-left: -4px;
}

span.event-ghost {
    background-color: transparent;
}

.day-name {
    font-size: 18px;
    text-align: center;
}

.disable-day {
    background-color: rgba(148, 222, 115, 0.65);
    color: #989898;
    height: 80px;
}

.cal-bottom {
    font-size: 7px;
}
.cal-bottom-red {
    color: red;
    font-size: 7px;
}


@media (min-width: 800px) {
    .cal-bottom {
        font-size: 14px;
    }
    .cal-bottom-red {
        font-size: 14px;
    }
}

