.bd-main {
    background-color: #1a272d !important;
    border: 1px solid #8f979d;
    border-radius: 6px;
}
.bd-table thead tr {
    height: 57px;
}
.bd-main select{
    background-color: #1a272d !important;
}


.bd-table thead {
    background-color: #1a272d !important;
}

.bd-title {
    width: 100%;
    display: flex;
}

.bd-next, .bd-prev{
    background-color: transparent !important;
    width: 13px;
    height: 13px;
    margin-top:10px;
    margin-bottom:10px;
}

.bd-next{
    margin-left:10px;
    margin-right:4px;
}
.bd-prev{
    margin-right:10px;
    margin-left:4px;
}

.bd-next path, .bd-prev path{
    transition: fill .3s ease-in;   
 
}
.bd-next:hover path, .bd-prev:hover path{
    fill: rgba(0, 143, 182, 0.53) !important;
}


.bd-dropdown {
    display: unset !important;
    float: none !important;
    width: unset !important;
    flex-grow: 1;
}

.bd-main * {
    color: #80888e;
}

.bd-calendar {
    width: auto !important;
}

.bd-table-days button {
    background-color: #1a272d;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bd-table-days button:hover {
    cursor: pointer;
    outline: 0;
    background: #e6e6e6;
    border-color: #e6e6e6;
    color: inherit !important;
}

.bd-table-days button.bd-holiday {
    background-color: inherit !important;
    border: 1px solid rgba(200, 107, 107, 0.64);
}

.bd-table-days button.bd-holiday:hover {
    cursor: pointer;
    outline: 0;
    background: rgba(200, 107, 107, 0.64) !important;
    border-color: rgba(200, 107, 107, 0.64) !important;
    color: #fff !important;
}


.bd-table-days button.bd-today {
    background-color: inherit !important;
    border: 1px solid #dff0d8 !important;
}

.bd-table-days button.bd-today.bd-selected-day {
    background-color: #dff0d8 !important;
    border: 1px solid #dff0d8 !important;
}

.bd-table-days button.bd-selected-day {
    background-color: #e6e6e6 !important;
    font-weight: 900 !important;
}

.bd-goto-today{
   position: relative;
    background: unset !important;
    border: 0.46px solid #008fb686;
    backdrop-filter: blur(18.357175827026367px);
    width: 100%;
    border-radius: 10px;
    color: #fff;
    transition:  all .4s ease;
    overflow: hidden;
}

.bd-goto-today::before{
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient( 164.95deg, rgba(0, 142, 182, 0.3) 0%, rgba(0, 142, 182, 0.05) 100% );
    transition:  all .4s ease;
}

.bd-goto-today:hover::before{
    transform: scale(3);
}

