#czcalendar-wrapper {
    width: 100%;
}

#czcalendar {
    width: 100%;
}

.cz-cal {
    user-select: none;
    font-family: 'Roboto', sans-serif;
    background: #22252e;
    color: #fff
}

#calTitle {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    font-size: 1.12em;
    text-align: center;
    padding: .3em 1em;
    padding-top: .3em;
    border-bottom: 2px solid #fff;
    font-weight: bold;
}

#calTitle button {
    outline: 0;
    display: block;
    border: .1em solid #ddd;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2)
}

#calTitle button svg {
    width: 30px;
    height: 30px
}

#calTitle button:hover {
    background: rgba(255, 255, 255, .1)
}

#calTbody, #calThead {
    display: flex;
    flex-wrap: wrap;
    padding: .1em;
    padding-top: 0em;
}

#calThead {
    color: #fff;
    margin-top: 0.5em;
    align-items: center;
    text-align: center;
    font-size: .88em;
}

#calTbody .a-date, #calThead>div {
    box-sizing: border-box;
    flex: 1;
    min-width: calc(100% / 7);
    max-width: calc(100% / 7);
    width: calc(100% / 7);
    text-align: center;
    padding: 0
}

#calThead>div {
    font-size: 1em;
    padding: .2em .2em
}

#calTbody {
    color: #ddd
}

#calTbody .a-date>span {
    display: block;
    font-size: 1em;
    font-weight: bold;
}

#calTbody .a-date {
    cursor: default;
    padding: 0;
    position: relative;
    background-color: transparent;
    color: inherit;
    padding: 0.7em 1em;
    border: .1em solid transparent;
    outline: 0;
    font-size: .9em
}

#calTbody .a-date.blurred {
    opacity: .5;
    pointer-events: none;
    font-weight: normal;
}

/* #calTbody .a-date.event:before {
    content: '';
    position: absolute;
    top: .2em;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fffc23;
    width: .3em;
    height: .3em;
    border-radius: 50%
} */

#calTbody .a-date.current {
    border-color: #fffc23;
    outline: 0;
    outline: 0
}

#calTbody .a-date.focused, 
#calTbody .a-date:active {
    background: #fffc23;
    color: #000;
}

#calTbody .a-date.current.event.focused {
    background-color: #fffc23;
    color: #000;
}

#calTFooter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;
    font-size: 1.1em;
}

#calTFooter #eventsToday{
    font-weight: bold;
}

#calTFooter #eventsList{
    font-size: 1em;
}

#calTFooter a.eventsListItem{
    display: block;
    background: #22252e;
    color: white;
    padding: 1em;
    padding-left: 1.5em;
    border-top: 2px solid white;
    box-shadow: #22252e 5px 5px 0px 0px inset,
    #22252e 0px -5px 0px 0px inset,
    #fffc23 10px 0px 0px 0px inset;
    transition: box-shadow 0.3s, padding-left 0.3s, padding-right 0.3s;
}

#calTFooter a.eventsListItem:hover{
    position: relative;
    color: #fffc23;
    padding-left: 1.8em;
    padding-right: 0.7em;
    box-shadow: #22252e 5px 5px 0px 0px inset,
    #22252e 0px -5px 0px 0px inset,
    #fffc23 15px 0px 0px 0px inset;
    text-decoration: none !important;
}

#calTFooter span.eventsListNone{
    display: block;
    background: #22252e;
    color: white;
    padding: 1em;
    padding-left: 1.5em;
    border-top: 2px solid white;
}

[id^=calendar],
[id^=calendar]+h3 {
    width: 100%;
}

[id^=calendar]+h3 {
    text-align: center;
}

/* Light Tema CSS ---- tema='light' */

.cz-cal-light {
    background: #eee;
    color: #22252e;
}

.cz-cal-light #calTitle {
    border-bottom: 2px solid #fff;
}

.cz-cal-light #calTitle button {
    border: none;
    background-color: #ededed;
}

.cz-cal-light #calTitle button svg {
    fill:rgba(0, 0, 0, 1);
}

.cz-cal-light #calTitle button:hover {
    background-color: #ddd;
}

.cz-cal-light #calThead {
    color: #22252e;
}

.cz-cal-light #calTbody {
    color: #111;
}

.cz-cal-light #calTbody .a-date {
    background-color: transparent;
    color: inherit;
    border: .1em solid transparent;
}

.cz-cal-light #calTbody .a-date.blurred {
    opacity: .2;
}

/* .cz-cal-light #calTbody .a-date.event:before {
    background-color: rgba(77,178,236,0.7);
} */

.cz-cal-light #calTbody .a-date.current {
    border-color: rgba(77,178,236,0.7);
}

.cz-cal-light #calTbody .a-date.focused, 
.cz-cal-light #calTbody .a-date:active {
    background: rgba(77,178,236,0.7);
}

.cz-cal-light #calTbody .a-date.current.event.focused {
    background-color: rgba(77,178,236,0.7);
    color: #000;
}

.cz-cal-light #calTFooter a.eventsListItem{
    background: #eee;
    color: #22252e;
    box-shadow: #eee 5px 5px 0px 0px inset,
    #eee 0px -5px 0px 0px inset,
    rgba(77,178,236,0.7) 10px 0px 0px 0px inset;
}

.cz-cal-light #calTFooter a.eventsListItem:hover{
    color: rgba(77,178,236,0.9);
    box-shadow: #eee 5px 5px 0px 0px inset,
    #eee 0px -5px 0px 0px inset,
    rgba(77,178,236,0.7) 15px 0px 0px 0px inset;
}

.cz-cal-light #calTFooter span.eventsListNone{
    background: #eee;
    color: #22252e;
}