@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

.calendar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}

.months {
    padding: 10px;
    width: 33%;
}

@media screen and (max-width: 756px) {
    .months {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .months {
        width: 100%;
    }
}

.months h3 {
    margin: 5px 0;
    text-align: center;
}

.days_container,
.week_days_container {
    display: flex;
    flex-wrap: wrap;
}

.days,
.week_days {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0px;
    height: calc(100% / 7);
    width: calc(100% / 7);
    text-align: center;
}

.days .circle {
    /* background-color: #cccccc; */
    border-radius: 50%;
    color: #222222;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    width: 20px;
    height: 20px;
}
.days.red .circle {
    cursor: pointer;
    background-color: #9a152d;
    color: #ffffff;
}

.days.red .circle:hover {
    transform: scale(1.1);
}
.days.today .circle {
    /* color: #ffffff;
    background-color: #15639a; */
    border:1px solid #15639a;
}



