/* //common style */
*{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    /* color: #fff; */
    font-family: 'Muli', sans-serif;
}


/****************** //main css **************************/

.calenderPanel .toppart *{
    color: #fff;
}
.calenderPanel{
    width: 100%;
    float: left;
    position: relative;
}
.toppart{
    position: relative;
}
.leftAngleBtn{ 
    height: 52px;
    line-height: 52px;
    width: 52px;
    text-align: center;  
    float: left;  
    display: block;
    color: #fff;
}
.leftAngleBtn i{
    font-size:32px;
    height: 52px;
    line-height: 52px;
 }
.toppart{
     width: 100%;
     float: left;
     background:   #119fd1;
 }
.top_eliment{
     text-align: center;
     width: 100%;
     float: left;
     position: relative;
 }
.calendar_mh{
     position: absolute;
     top: 50%;
     left: 50%;
     -moz-transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     transform: translate(-50%, -50%);
}
.dFlex{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}
.mid_eliment_left, .mid_eliment_right{
    -ms-flex: 1;
    flex: 1;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */

}
.mid_eliment{
    width: 100%;
    float: left;
}
.mid_eliment_middle{
    width: auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    align-self: center;
}
.calendar_date_info{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}
.date_Number{
    padding-right: 6px;
    font-size: 41px;    
    line-height: 41px;
}
.calendar_date_day{
    font-size: 14px;

}
.check_in_title, .calendar_date_month{
    font-size: 14px;
    opacity: .6;
    text-transform: uppercase;
    line-height: 14px;
}
.btm_eliment{
    width: 100%;
    float: left;
    padding: 10px 0;
}
.calender_week_each_name{
     display: flex;    
     list-style: none;
     text-align: center;
}

.calender_week_each_name li{
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    opacity: .6;
    color: #fff;
    font-size: 14px;
}
.bottomPart{
    width: 100%;
    float: left;
    overflow-y: auto;
    /* height: calc(var(--vh, 1vh) * 100);  */
}
.each_month {
    background: #eee;
    font-size: 14px;
    margin-top: 0;
    padding: 7px 0;
    text-align: center;
    font-weight: 700;
}
.calendar_month_row{
    display: -ms-flex;
    display: -webkit-flex;
    display: flex;
    text-align: center;
}
.calendar_month_row>.calendar_each_day{
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: flex;
    -webkit-display: flex;
    -ms-display: flex;
    align-items: center;
    justify-content: center;
}
.calendar_month_row>.calendar_each_day>.button{
    font-size: 14px;
    color: #777;
    line-height: 34px;
    cursor: pointer;
}
.each_month>.month_heading{
    font-size: 14px;
    color: #777;

}
.calendar_bottom_btn{
    width: 100%;    
    padding: 12px;
    background: #fff;
    position: absolute;
    top: 100%;
}
.calendar_bottom_btn .cbBtn{
    background:   #119fd1;
    font-size: 16px;
    text-align: center;
    padding-top: 14px;
    padding-bottom: 16px;
    width: 100%;
    border: none;
    color: #fff; 
}
.startDay, .enday{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background:#119fd1;
    width: 34px;
    height: 34px;   
    color: #fff !important;
}
.selected_day{
    background: #dde9fd;
}
.startday_selected{
    background: -webkit-gradient(linear,left top,right top,from(transparent),color-stop(50%,transparent),color-stop(50%,#dde9fd));
    background: -webkit-linear-gradient(left,transparent,transparent 50%,#dde9fd 0);
    background: -moz-linear-gradient(left,transparent,transparent 50%,#dde9fd 50%);
    background: -o-linear-gradient(left,transparent,transparent 50%,#dde9fd 50%);
    background: linear-gradient(90deg,transparent,transparent 50%,#dde9fd 0);
}
.enday_selected{
    background: -webkit-gradient(linear,right top,left top,from(transparent),color-stop(50%,transparent),color-stop(50%,#dde9fd));
    background: -webkit-linear-gradient(right,transparent,transparent 50%,#dde9fd 0);
    background: -moz-linear-gradient(right,transparent,transparent 50%,#dde9fd 50%);
    background: -o-linear-gradient(right,transparent,transparent 50%,#dde9fd 50%);
    background: linear-gradient(270deg,transparent,transparent 50%,#dde9fd 0);
}
.non_selectable_month{
    opacity: .6;    
}
.current_date{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border: 1px solid #119fd1;
    width: 34px;
    height: 34px;   
}
.startday_selected.enday_selected {
    background: transparent !important;
}