.popup-calendar{
    background: white;
    padding: 25px 30px;
    border-radius: 5px;
    width: 920px;
    font-size: 14px;
}

.popup-calendar .header{
    font-size: 14px;
    margin-bottom: 30px;
}

.popup-calendar .header h2{
    font-size: 24px;
    margin: 0 20px 5px 0;
}

.popup-calendar .options-wrap .option-row{
    border: 1px solid #d8d8d8;
    margin-top: -1px;
    padding: 19px 40px 19px 50px;
    position: relative;
}

.popup-calendar .options-wrap .option-row:first-child{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.popup-calendar .options-wrap .option-row:last-child{
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.popup-calendar .options-wrap .option-row input{
    position: absolute;
    left: 19px; top: 20px;
}

.popup-calendar .options-wrap .option-row:hover,
.popup-calendar .options-wrap .option-row.active{
    border: 1px solid #00c2df;
    background-color: #aff5ff;
}

.popup-calendar .options-wrap .option-row.loading{
    background-image: url('/resources/images/ajax-loader-grey.gif');
    background-repeat: no-repeat;
    background-position: 95% 50%;
}

.popup-calendar .options-wrap .option-row:hover.noactive{
    border: 1px solid #d8d8d8;
    background-color: transparent;
}

.popup-calendar .options-wrap .option-row label{
    color: #25282a;
    font-weight: bold;
}

.popup-calendar .options-wrap .option-row label .additional{
    color: #4d4e56;
    font-weight: normal;
}

.popup-calendar .bu1{
    width: 100%;
    margin-top: 20px;
    border-radius: 2px;
    font-weight: bold;
}

@media (max-width: 991px) {
    .popup-calendar{
        width: 740px;
    }
}

@media (max-width: 767px){

    .popup-calendar{
        position: fixed; left: 0; top: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow-y: scroll;
    }

    .popup-calendar .options-wrap{
        margin-top: 20px;
    }

    .cal-wrap{
        max-width: 277px;
        margin:auto;
    }
}