*{
    box-sizing: border-box;
}

.webfix-calendar{
    width: 100%;
    position: relative;
}

.webfix-calendar .cal-display{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 1;
}

.webfix-calendar .cal-control{
    width: 100%;
    height: 45px;
    padding: 1.5rem 1rem;
    border-radius: 6px;
    outline: none !important;
    border: 1px solid #d6dae8;
    font-size: 13px;
}

.webfix-calendar .cal-control:focus{
    outline: none !important;
    box-shadow: none !important;
}

.webfix-calendar .cal-icon{
    position: absolute;
    right: 1px;
    top: 1px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 96%;
    border-radius: 6px;
}

.webfix-calendar .cal-icon:hover{
    background-color: #F4F5F6;
}

.webfix-calendar .cal-wrapper{
    width: 342px;
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 10px 20px 1px rgba(0,0,0,0.055);
    border: 1px solid rgba(0,0,0,0.035);
    position: absolute;
    margin: 2px auto;
    z-index: 2;
    background-color: #fff;
}

.webfix-calendar .cal-wrapper.pos-default{
    margin: 2px auto;
}

.webfix-calendar .cal-wrapper.pos-top{
    top: -721%;
}

.webfix-calendar .cal-wrapper.pos-left{
    left: -90%;
    top: -300%;
}

.webfix-calendar .cal-wrapper.pos-right{
    left: 100%;
    top: -300%;
}

.webfix-calendar .cal-wrapper.pos-bottom{
    margin: 2px auto;
}

.webfix-calendar .cal-wrapper.hide{
    display: none;
}

.webfix-calendar .cal-wrapper.show{
    display: unset;
}

.webfix-calendar .cal-header{
    width: 100%;
    margin-bottom: 1rem;
}

.webfix-calendar .cal-header .cal-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.webfix-calendar .cal-nav [class*="cal-btn-"]{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0.3rem;
    width: 25px;
    border-radius: 4px;
}

.webfix-calendar .cal-nav [class*="cal-btn-"]:hover{
    background-color: #F4F5F6;
}

.webfix-calendar .cal-nav .cal-year{
    display: flex;
    align-items: center;
}

.webfix-calendar .cal-nav .cal-year-name{
    color: #0E0E0F;
    font-weight: 900;
    letter-spacing: .05rem;
}

.webfix-calendar .cal-nav .cal-year-arrow{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.1rem;
    position: relative;
    top: 2px;
}

.webfix-calendar .cal-nav .cal-year-arrow:hover{
    background-color: #F4F5F6;
}

.webfix-calendar .cal-body{
    width: 100%;
}

.webfix-calendar .cal-weekdays{
    width: 100%;
}

.webfix-calendar .cal-day-names{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    column-gap: 1.3%;
    margin-bottom: 0.5rem;
}

.webfix-calendar .cal-day-names .day{
    width: 13%;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: .05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #797B86;
}

.webfix-calendar .cal-days{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 1.3%;
    row-gap: 4px;
}

.webfix-calendar .cal-days .date{
    font-size: 0.85rem;
    width: 13%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    color: #45454A;
    border-radius: 6px;
    cursor: pointer;
}

.webfix-calendar .cal-days .date.today{
    color: #0E0E0F;
    font-weight: 800;
}

.webfix-calendar .cal-days .date:hover{
    background-color: #F4F5F6;
}

.webfix-calendar .cal-days .date.bland{
    cursor: auto;
}

.webfix-calendar .cal-days .date.bland:hover{
    background-color: transparent;
}

.webfix-calendar .cal-days .date.selected{
    background-color: #0E0E0F !important;
    color: #fff;
    font-weight: 800;
}

.webfix-calendar .cal-month-year{
    width: 100%;
}

.webfix-calendar .cal-months{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.33%;
    row-gap: 7px;
}

.webfix-calendar .cal-months .month{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31%;
    height: 52px;
    border-radius: 6px;
    cursor: pointer;
}

.webfix-calendar .cal-months .month:hover{
    background-color: #F4F5F6;
}

.webfix-calendar .cal-months .month.current{
    background-color: #0E0E0F !important;
    color: #fff;
    font-weight: 900;
}

.webfix-calendar .cal-footer{
    width: 100%;
}

.webfix-calendar .cal-divider{
    height: 1px;
    width: 100%;
    background-color: #e8eaf5;
    margin: 0.65rem 0;
}

.webfix-calendar .cal-footer-display{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
}

.webfix-calendar .cal-footer-display .year{
    font-size: 14px;
    color: #a8a8b3;
    margin: 0 !important;
}