* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}



.calendar {
    background-color: #222227;
    color: #666666;
    box-shadow: 0 5px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

.days > div {
    border: solid 1px rgba(0, 0, 0, 0.03);
}

.month {
    width: 100%;
    min-height: 60px;
    background-color: #E9573F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    text-align: center;
    /*text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);*/
}

.month i {
    font-size: 16px;
    cursor: pointer;
    font-weight: 600 !important;
}

.month h1 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}

.month p {
    font-size: 1.6rem;
}

.weekdays {
    font-weight: 800;
    width: 100%;
    height: 40px;
    padding: 0 0.4rem;
    display: flex;
    align-items: center;
    background: #E9573F !important;
    opacity: 0.8;
    color: white;
}

.weekdays div {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1rem;
    flex: 0 0 calc(100% / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;


    /*text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);*/
}

.days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.2rem;
}

.days > div {
    font-size: 1.4rem;
    flex: 0 0 calc(100% / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    /*text-shadow: 0 0.3rem 0.5rem rgba(0, 0, 0, 0.5);*/
    transition: background-color 0.2s;
    padding: 10px 0;
}

.days div.has-activity:hover {
    cursor: pointer;
}


.day-con span:before {
    content: "\f0c8";
    font-family: "Font Awesome 5 Free";
    color: #000000;
    z-index: 0;
    opacity: 1;
    font-size: 1px;
    position: absolute;
    width: 28px;
    height: 28px;
    top: 50%;
    left: 50%;
    text-align: center;
    line-height: 32px;
    background: black;
    border-radius: 5px;
    transform: translate(-50%,-50%);
}



.prev-date,
.next-date {
    opacity: 0.5;
}

.today,
.has-activity {
    background-color: black;
    color: white;
    border-radius: 5px;
}

.month h1,
.month i {
    color: white;
}
