.testimonial_style3 .testi_desc::before {
    content: "\e67f";
    position: absolute;
    left: 40px;
    top: -40px;
    font-family: themify;
    font-size: 100px;
    line-height: normal;
    font-weight: 900;
    color: #f2f2f2;
    z-index: -1;
}
.calendar-outer button.btn{
    border: 1px solid #ca0763;
    color: #ca0763;
    background-color: transparent;
    min-width: 40px;
    min-height: 40px;
    border-radius: 8px;
    padding: 5px 10px;
}
.calendar-outer button.btn:not(.days-count):hover{
    background-color: #ca0763;
    color: white;
}

 .calendar-outer button svg{
    width: 26px;
    height: 26px;
}
.calendar-outer .days-count{
    display: inline-block;
}
.calendar{
    text-align: center;
    width: 100%;
    max-width: 430px;
}
.calendar .calendar-wrapper{
    border: 1px solid rgb(225, 225, 225);
    border-radius: 8px;
    display: inline-block;
    padding: 10px;
    width: 100%;
    height: 100%;
}
.calendar .day-name{
    cursor: pointer;
}
.calendar .week-num{
    min-width: 25px;
    cursor: pointer;
}
.calendar .week-num:hover,
.calendar .day-name:hover{
    color: #ca0763;
}
.calendar table{
    margin: auto;
}
.calendar .cell input{
    opacity: 0;
    position: absolute;
}
.calendar .cell{
    margin: 1px 3px;
}
.calendar .cell button{
    border: none;
    background-color: transparent;
    margin: 0;
    padding: 0;
}
.calendar .cell,
.calendar .cell button,
.calendar .cell .day
{
    width: 100%;
    margin-bottom: 0;
}
.calendar .cell .day{
    cursor: pointer;
    border-radius: 8px;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(225, 225, 225);
    margin: 2px;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.calendar .cell .day.disabled{
    cursor: not-allowed;
    color: rgb(225, 225, 225);
}
.calendar .cell .day.today:before{
    content: '';
    width: 9px;
    height: 9px;
    background-color: #ca0763;
    border-radius: 50px;
    margin-right: 3px;
}
.calendar .cell:not(.disabled):hover .day{
    border-color: #ca0763;
    color: #ca0763;
}
.calendar .cell .day.selected{
    background-color: #ca0763;
    color: white;
    border-color: #ca0763;
}
.calendar .cell:not(.disabled):hover .day.selected{
    color: white;
    background-color: #cd4786;
}