.calendarContainer{
    width: 100%;
    height: 42px;
    font-size: 12px;
    font-family: arial;
    display: inline-block;
    outline: 0px solid blue;
    z-index:15;
}

.hide{

}

.hide .bottom{
    display:none;
}

.calendarContainer .top{
    width: 100%;
    height: 42px;
}

.calendarContainer .bottom{
    position: absolute;
    width: 100%;
    max-width:370px;
    height: 200px;
    border: 1px solid rgba(200, 200, 200, 1);
    border-radius: 5px;
    padding: 10px;
    /*background-color: rgba(0,0,0,0.9);*/
    background-color: rgba(34, 44, 54, 0.96);
    background-color: rgb(33,37,41);
    z-index:15;
    box-shadow: 2px 2px 5px #AAA;
}

.calendarContainer .readonly{

}

.calendarContainer input[type=text]{
    border-radius: 5px;
    display:inline-block;
    max-width:100%;
    width:100%;
    background-color: #FFF !important;
    cursor:pointer;
}

.calendarContainer .button{
    /*width: 30px;
    height: 30px;
    border: 0px solid rgba(200, 200, 200, 1);
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    color: rgba(0, 0, 0, 1);
    font-size: 14px;*/
    float:right;
    display: inline-block;
    max-width:30px;
}

.calendarContainer .button:hover{
    color:#0a9ebb;
}

.calendarContainer .displaybutton{
    width: 30px;
    height: 30px;
    border: 0px solid rgba(200, 200, 200, 1);
    border-radius: 0px;
    text-align: center;
    cursor: pointer;
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    margin-left:-32px;
    display: inline-block;

}


.calendarContainer select{
    display: inline-block;
    max-width:30%;
    font-size:1.1em !important;
    /*width: 100px;
    height: 24px;
    border-radius: 5px;

    float: left;
    font-size: 1em;*/
}

.calendarContainer select:first-of-type{
    max-width:25%;
}

.calendarContainer .lblYear{
    width: 80px;
    height: 24px;
    text-align: center;
    float: left;
    font-size: 1.6em;
}

.daysContainer{
    width: 100%;
    height: 160px;
    margin-top: 10px;
    text-align: center;
    float: left;
}

.daysContainer .day, .daysContainer .date{
    border-radius: 5px;
    /*width: 47px;*/
    max-width:50px;
    width:14%;
    height: 20px;
    text-align: center;
    float: left;
    box-sizing: border-box;
}

.daysContainer .header{
    font-weight:bold;
    color:#FFF;
}

.daysContainer .headerweekend{
    font-weight:bold;
    color: rgba(255, 0, 0, 1);
}

.daysContainer .date{
    padding-top: 3px;
    color: rgb(138, 138, 138);
    font-weight: bold;
    cursor: pointer;
}

.daysContainer .notCurrentMonth{
    font-weight: normal;
    opacity: 0.4;
}

.daysContainer .weekend{
    color: #f8aaaa;
}

.daysContainer .date:hover{
    background-color: #0a9ebb;
    color: #FFF;
}

.daysContainer .weekend:hover{
    background-color: rgba(255, 0, 0, 1) !important;
    color: #FFF;
}

.daysContainer .selected{
    background-color: #f6e695;
    color: #816c10;
    outline: 1px solid  rgba(0, 0, 0, 1);
}

.spaceleft{
    margin-left: 2px;
}

.spaceleft_large{
    margin-left: 5px;
}

@media screen and (max-width: 992px){
    .calendarContainer .bottom{
        position: absolute;
        left:1%;
        width: 98%;
        max-width:370px;
        padding: 10px;
    }

    .calendarContainer .button{
        display:none;
    }

    .calendarContainer .btn-own-danger{
        display:inline-block !important;
    }

    .calendarContainer select{
        display: inline-block;
        max-width:40%;
        font-size:1.1em !important;
        /*width: 100px;
        height: 24px;
        border-radius: 5px;

        float: left;
        font-size: 1em;*/
    }

    .calendarContainer select:first-of-type{
        max-width:40%;
    }
}