.cal-view {
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.cal-hd {
    display: flex;
    align-items: center;
}
.cal-hd button {
    margin: 0;
    padding: 8px 10px 6px 10px;
    width: 100%;
    background: #b6a47b;
}
.cal-hd button svg {
    fill: #FFF;
}
.cal-hd-left, .cal-hd-right {
    width: 14.28571%;
}
.cal-hd-middle {
    width: 71.48257%;
    text-align: center;
    font-weight: bold;
}
.cal-month {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.cal-month th, .col-month td {
    width: 14.28571%;
}
.cal-month th {
    padding: 12px 0 10px 0;
    text-align: center;
}

.cal-month thead {
    background-color: #f1e8d4;
    font-family: 'Rambla', sans-serif;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
}

.cal-day {
    display: block;
    padding: 12px 0 10px 0;
    line-height: 1;
    text-align: center;
}
.cal-day:not(.cal-day-plh) {
    cursor: pointer;
    transition: background-color .2s;
}
.cal-day-plh {
    cursor: default;
}
.cal-day:not(.cal-day-plh):hover {
    background-color: #f1e8d4 !important;
}
.cal-day-sel {
    background-color: #f1e8d4;
}
.cal-day-today,
.cal-day-today:not(.cal-day-plh):hover {
    background-color: #000 !important;
    color: #dfe3e9;
}
