﻿
.wrapper1 {
    background: #fff;
    
    border-radius: 10px;
}

    .wrapper header {
        display: flex;
        align-items: center;
/*        padding: 25px 30px 10px;*/
        justify-content: space-between;
    }

header .current-date {
    font-size: 1rem;
    font-weight: 400;
    margin-top: 10px;
    padding: 10px;
    border-radius: 0px;
    font-weight: 800;
}

header .icons{
    margin-top: 10px;
}

#rightIcon {
    float: right;
}

header .icons span {
    padding: 10px;
    color: #878787;
    font-size: 1rem;
    margin: 0 1px;
    border-radius: 50px;
    font-weight: 800;
}

    header .icons span:hover {
        background: #f3f3f3;
    }

    header .icons span:last-child {
        margin-right: -10px;
    }

.calendar {
    padding: 20px;
}

    .calendar ul {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        text-align: center;
    }

    .calendar .weeks li {
        font-weight: bold;
    }

    .calendar .days {
        margin-bottom: 0px;
    }

        .calendar .days li {
            margin-top: 5px;
            z-index: 1;
            cursor: pointer;
        }

.days li.inactive {
    color: #aaa;
}

.days li.active {
    color: #fff;
}

.calendar ul li {
    position: relative;
    width: calc(100% / 7)
}

.calendar .days li::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    top: 50%;
    left: 50%;
    z-index: -1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.days li:hover::before {
    background: #f2f2f2;
    color: #000;
}

.days li.active::before {
    background: #0033c4;
    color: #000;
}
