.em_cal_container{
    margin-bottom: 20px;
}
.em_cal_filter_form{
    font-size: 0;
    letter-spacing: 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 20px;
}
.em_cal_filter_form > *{
    /* width: 20%;  In case of 5 columns */
    width: 33.33%;  /* In case of 3 columns */
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    padding: 10px 15px;
    box-sizing: border-box;
    min-width: 204px;
}
.em-filter label, .em-filter .em-filter-input{
    width: 100%;
    display: inline-block;
    box-sizing: border-box;
}
.em-filter .em-filter-input{
    height: 40px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid;
}
.em-filter-btn > button{
    width: calc(50% - 5px);
    margin-right: 10px;
    height: 40px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease-out;
    margin-bottom: 0 !important;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
}
.em-filter-btn > button:hover,
.em-filter-btn > button:active,
.em-filter-btn > button:focus{
    text-decoration: none;
    opacity: 0.6;
    transition: all 0.3s ease-out;
}
.em_cal_container .fc-button-primary:disabled{
    opacity: 0.6;
    pointer-events: none;
}
.em_cal_filter_form > .em-filter-btn{
    letter-spacing: 0;
    font-size: 0;
}
.em-filter-btn > *:last-child{
    margin-right: 0;
}

.em_error {
    color: red;
}

.fc-row table{
    margin: 0 !important;
}

/* Tooltip Style Start */

.qtip-default {
    border: 1px solid rgba(0,0,0,0.1);
    background-color: #f6f6f6;
    color: #333333;
    max-width: 320px !important;
}

.qtip-content{
    padding: 10px;
}

.em_cal_event_popup_content > div{
    font-size: 13px;
    line-height: 20px;
}

.em_cal_event_popup_content > .em_cal_event_popup_img > img{
    width: 100% !important;
    height: auto !important;
}

.em_cal_event_popup_content > .em_cal_event_popup_title{
    font-size: 16px;
    line-height: 20px;
    padding: 0 0 4px 0;
    font-weight: 700;
}

.em_cal_event_popup_content > .em_cal_event_popup_range{
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.4);
    padding-bottom: 6px;
    text-transform: uppercase;
}

.em_cal_event_popup_content > .em_cal_event_popup_desc{
    font-style: italic;
    line-height: 16px;
    margin-bottom: 11px;
    color: #7c7b7b;
}

.fc-widget-header thead > tr > th span{
    padding: 10px !important;
    display: inline-block !important;
}

/* Tooltip Style Start */

/* Responsive Style Start */

/* In case of 5 columns 
@media only screen and (max-width: 1023px) {
    .em_cal_filter_form > *{
        width: 33.33%;
    }
}
*/

@media only screen and (max-width: 767px) {
    .em_cal_filter_form{
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .em_cal_filter_form > *{
        width: 100%;
    }
}
/* Responsive Style End */

/* Colors Start */
.em-filter-btn > button{
    background: #DDDDDD; /* Default Button Color */
}

.em-filter .em-filter-input{ 
    border-color:  #151e27; /* Input Border Color */
}

.em_cal_container .fc-button-primary,
.em_cal_container .fc-button-primary:not(:disabled).fc-button-active, 
.em_cal_container .fc-button-primary:not(:disabled):active,
.em-filter-btn > button[type="submit"]{
    background: #151e27; /* Primary Color */
    border-color: #151e27; /* Primary Color */
    color: #ffffff;
}
/* Colors End */

.em_cal_wrap{
    position: relative;
}

/* loader start */
.em-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: rgba(255,255,255,0.8);
    z-index: 9999;
}

.em-loader-content {
    border: 6px solid #DDD;
    border-top: 6px solid #111;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: emspin 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

@keyframes emspin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* loader end */