.calendar-popup {
    background: #FFFFFF;
    box-shadow: 7px 7px 24px 0 rgba(0,0,0,0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: absolute;
    z-index: 10;
    user-select: none;
}

.calendar-wrapper .closable {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
}

.calendar-popup .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calendar-popup .header .title {
    margin-top: 20px;
    font-weight: 500;
    font-size: 25px;
    color: #000013;
    letter-spacing: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer
}

.calendar-popup .header .title img {
    margin-left: 10px;
    margin-bottom: 2px;
}

.calendar-popup .header .today {
    font-weight: 700;
    font-size: 16px;
    color: #00A8CD;
    cursor: pointer;
    text-transform: uppercase;
    margin: 6px 0px 4px 0px;
    letter-spacing: 0;
}

.calendar-popup .body {
    display: flex;
    flex-direction: row;
    font-family: "Mark";
}

.calendar-popup .body .arrow {
    width: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendar-popup .body .arrow img {
    cursor: pointer;
}

.calendar-popup .body .dates {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.calendar-popup .body .dates .row {
    display: flex;
}

.calendar-popup .body .dates .row div {
    width: 44px;
    height: 44px;
    margin: 4px;
    display: flex;
    border-radius: 6px;
    justify-content: center;
    align-items: center;
}

.calendar-popup .body .dates .row.day-names .item {
    font-weight: 400;
    font-size: 14px;
    color: #C1C1C1;
    letter-spacing: -0.22px;
    text-transform: uppercase;
}

.calendar-popup .body .dates .row.days div {
    font-size: 18px;
    color: #000013;
    letter-spacing: -0.28px;
    text-align: center;
}

.calendar-popup .body .dates .row div.other-month {
    font-size: 18px;
    color: #C1C1C1;
    letter-spacing: -0.28px;
 }

 .calendar-popup .body .dates .row div.active {
    background: #FFD100;
 }

 .calendar-popup .body .dates .row.days div span {
    cursor: pointer;
 }

 .calendar-popup .body .dates .row.days div:not(.active):hover {
    background: #F3F3F3;
    
 }