#calender_widget_cnt {
    background-color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.cw_event_date {
    position: relative;
    max-width: 450px;
    height: 100px;
    z-index: 20;
    padding: 0 50px 0 10px;
    border-top-right-radius: 60px;
    border-bottom-right-radius: 60px;
    display: flex;
    justify-content: flex-end;
}

.cw_event_date div {
    width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.cw_num {
    color: #FFF;
    text-align: center;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 53px;
    font-style: normal;
    font-weight: 400;
    line-height: 45px;
}


.cv_month {
    color: #FFF;
    text-align: center;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}


.cw_event_title {
    display: flex;
    align-items: center;
}

.cw_event_title span {
    color: #0F0F0F;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    padding-left: 20px;
    position: relative;
}

.cw_event_title span::before {
    content: '';
    color: #0F0F0F;
    opacity: .5;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    text-transform: none;
    position: absolute;
    top: -24px;
}

#calendar_link_cnt {
    background-color: #F2F2F2;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 0;
}

.cl_space {
    max-width: 450px;
}

.cl_link {
    display: flex;
    align-items: center;
    font-family: "SoleSans", Arial, Helvetica, sans-serif;
    color: #0F0F0F;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding-left: 20px;
    position: relative;
}

.cl_link a:link {
    color: #0F0F0F;
    text-decoration: none;
}

.cl_link a:hover {
    color: #0F0F0F;
    text-decoration: underline;
}


.cl_link a:active {
    color: #0F0F0F;
    text-decoration: underline;
}

.cl_link a:visited {
    color: #0F0F0F;
    text-decoration: none;
}

.cl_link a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 215px;
    width: 24px;
    height: 24px;
    background-image: url(../img/greater_icon.svg);
}





@media only screen and (max-width: 480px) {
    .cw_event_date {
        max-width: 135px;
        height: 95px;
    }

    .cw_event_title span {
        /* font-size: 20px;
			line-height: 25px; */
        font-size: 18px;
        line-height: 22px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .cw_event_title span::before {
        top: -18px;
    }


    .cl_space {
        max-width: 0;
    }

    .cl_link {
        padding-left: 10px;
    }
}