.table-calendar {
    margin: 0 0 0 0;
    border-collapse: separate;
    border-spacing: 10px;
    width: 100%;
}

.table-calendar tbody tr:nth-child(2n + 1) {
   background-color: rgba(144, 144, 144, 0);
}

.table-calendar td {
    text-align: center;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
}





.day {
     color:  rgba(50, 50, 50, 0.8);
     background-color: transparent;
}

.disabled-date {
     color:  white;
     background-color: rgb(87 103 28 / 80%);
}

.past-day {
    color:  rgba(50, 50, 50, 0.2) !important;
    background-color: rgba(245, 245, 245, 0.5) !important;
   
}

.old {
    color:  rgba(50, 50, 50, 0.2) !important;
    background-color: rgba(245, 245, 245, 0.5) !important;
    cursor: pointer;
}

.new {
    color:  rgba(50, 50, 50, 0.2) !important;
    background-color: rgba(245, 245, 245, 0.5) !important;
    cursor: pointer;
}


.prev {
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    padding: 0 0.75em 1.5em 0.75em;
}

.next {
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
     padding: 0 0.75em 1.5em 0.75em;
}


.next:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.prev:before {
    content: "\f104";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.datepicker-switch {
    cursor: pointer;
    font-weight: 500;
    font-size: 18px;
     padding: 0 0.75em 1.5em 0.75em;
     text-align: center;
}

.dow {
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.table-calendar tbody tr {
    display: table-row;
}

.table-calendar tbody tr td {
    padding: 10px;
    margin: 10px;
}

.table-calendar tbody tr td span {
    display: block;
    width: 23%;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 1%;
    cursor: pointer;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
     
}

.month, .year, .century, .decade {
    background-color: rgba(245, 245, 245, 0.5);
    transition: 0.3s;
}

.month:hover, .year:hover, .century:hover, .decade:hover {
     background-color: rgba(79, 67, 3, 0.9) !important;
      color: white !important;
}


