
.ui-datepicker {
    margin: 15px 20px;
    font-size: 22px;
    background-color: #fff;
}

    .ui-datepicker:before {
        content: "";
        width: 0;
        height: 0;
        left: 47%;
        bottom: 100%;
        position: absolute;
        pointer-events: none;
        border: 10px solid rgba(0, 0, 0, 0);
        border-bottom-color: #fff;
    }

    .ui-datepicker a {
        text-decoration: none;
        color: #333;
    }

    .ui-datepicker table {
        width: 100%;
    }


/*Styling the Header Section*/

.ui-datepicker-header {
    padding-top: 20px;
    height: 60px;
    border-bottom: 1px solid #c6cdd2;
}

.ui-datepicker-title {
    font-size: 32px;
    color: #000;
    text-align: center;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    width: 12px;
    height: 12px;
    text-indent: 9999px;
    border-radius: 100%;
    cursor: pointer;
    overflow: hidden;
    margin-top: -12px;
}

.ui-datepicker-prev {
    float: left;
    margin-left: 12px;
}

    .ui-datepicker-prev:after {
        transform: rotate(45deg);
    }

.ui-datepicker-next {
    float: right;
    margin-right: 12px;
}

    .ui-datepicker-next:after {
        transform: rotate(-135deg);
    }

    .ui-datepicker-prev:after,
    .ui-datepicker-next:after {
        content: '';
        position: absolute;
        display: block;
        width: 12px;
        height: 12px;
        border-left: 3px solid #b8222d;
        border-bottom: 3px solid #b8222d;
    }

.ui-datepicker-calendar thead tr th span {
    display: block;
    width: 40px;
    color: #bdc5cb;
    font-size: 16px;
    font-weight: 400;
    line-height: 50px;
}


/*Styling the Dates*/

.ui-state-default {
    display: block;
    color: #6a7883;
    line-height: 40px;
    text-align: center;
    font-size: 16px;
    width: 40px;
}

.ui-datepicker-other-month .ui-state-default {
    color: #bdc5cb;
}


/*active day*/
a.ui-state-default:hover {
    background: #b8222d;
    color: #ffffff;
    border: 1px solid #b8222d;
    border-radius: 99px;
    position: relative;
    margin: -1px;
}


.ui-datepicker-unselectable > *, .ui-datepicker-week-end.ui-datepicker-unselectable.ui-state-disabled > * {
    background-color: red;
    color: #fff;
    opacity: 0.5;
    border-radius: 6px;
}

.ui-datepicker-unselectable.ui-state-disabled:hover {
    /*background-color: blue;*/
}

.ui-datepicker-calendar .ui-state-highlight {
    color: #f26a63;
    font-weight: bold;
}

.ui-datepicker-calendar .ui-state-active {
    background: #b8222d;
    color: #ffffff;
    border: 1px solid #b8222d;
    border-radius: 99px;
    position: relative;
    margin: -1px;
}


/*weather*/

#weather {
    width: 320px;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    float: right;
    padding: 20px;
}

#today {
    margin: 0 auto;
    width: 120px;
}

#temp {
    font-size: 42px;
    font-weight: 400;
    color: #6a7883;
    display: inline-block;
}

#icon {
    font-size: 42px;
    font-weight: 400;
    color: #6a7883;
    display: inline-block;
    margin: 0 5px;
    ;
}

#city {
    font-size: 22px;
    color: #bdc5cb;
    text-align: center;
    margin: 0;
    line-height: 40px;
    padding-bottom: 10px;
}

#week {
    border-top: 1px solid #c6cdd2;
    padding-top: 10px;
}

#weekdays {
    font-size: 22px;
    color: #bdc5cb;
    margin: 0;
    line-height: 40px;
}

.icons {
    text-align: center;
    font-size: 38px;
    color: #6c7a85;
}

#forecast {
    font-size: 22px;
    color: #6c7a85;
    margin: 0;
    margin-top: 15px;
}

.gap {
    display: inline-block;
    width: 80px;
    text-align: center;
}


/*music*/

#music {
    width: 360px;
    background: #ffffff;
    border-radius: 5px;
    overflow: hidden;
    float: right;
    margin-top: 50px;
}

    #music img {
        width: 100%;
    }

.title {
    text-align: center;
    line-height: 26px;
    font-size: 14px;
}

#pause {
    display: none;
}

progress[value] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
}

    progress[value]::-webkit-progress-bar {
        background-color: #f1faff;
    }

    progress[value]::-webkit-progress-value {
        background-color: #9ad9fd;
    }

.actions {
    padding: 15px 20px;
    overflow: hidden;
}

    .actions i {
        font-size: 18px;
        color: #6a7883;
        float: left;
        cursor: pointer;
    }

.prev {
    margin-left: 97px;
    float: left;
}

.play {
    margin: 0 20px 0 20px;
    float: left;
}

.next {
    margin-right: 97px;
    float: left;
}

#mute {
    display: none;
}

.ui-datepicker-buttonpane.ui-widget-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 12px;
}

button.ui-datepicker-current.ui-state-default.ui-priority-secondary.ui-corner-all {
    border: none;
    background-color: #b8222d;
    width: 70px;
    border-radius: 4px;
    color: #fff;
    padding-right: 10px;
    width: 100%;
}

button.ui-datepicker-close.ui-state-default.ui-priority-primary.ui-corner-all {
    border: none;
    width: 70px;
    border-radius: 4px;
    display: none;
}


td.red span.ui-state-default {
    color: #f00;
}

td.green span.ui-state-default {
    color: #0f0;
}
