/* === Desk/Mobile ===*/
@media only screen and (max-width: 800px) {
    .mob_only {
        display: inherit;
    }
    .desk_only {
        display: none;
    }
}
@media only screen and (min-width: 800px) {
    .mob_only {
        display: none;
    }
    .desk_only {
        display: inherit;
    }
}

/* === General === */
.center{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    text-align:center;
}

.right{
    float:right !important;
}

.version{
    font-size:12px;
}

.deleteButton{
    border-radius:50%;
    background-color:red;
    color:#fff;
    float:right;
    height:12px;
    width:12px;
    padding:0px;
    font-size:6px;
}

/* === Login === */
.login_area{
    padding:20px 0;
    background-color:#ffffff;
    width:300px;
    border-radius: 10px;
    border-top: #e5e5e5 1px solid;
    border-left: #e5e5e5 1px solid;
    border-right: #e5e5e5 1px solid;
    border-bottom: #e5e5e5 2px solid;
}

/* === Calendar ===*/
.client_name{
    font-size:16px;
    font-weight:700;
    color:#DF0C05;
    margin-bottom: 15px;
}
.current_client{
}
.day_of_week{
    text-align:center;
}
.client_label i{
    font-size:10px;
    vertical-align:middle;
    margin-right: 3px;
    margin-left: 3px;
    margin-bottom: 7px;
}
.event_tag{
    
}
button.client_label{
    display:block;
    font-size:10px;
    max-width: 200px;
    overflow:hidden;
    text-overflow:ellipsis;
    vertical-align:middle;
    background-color:#f2f2f2;
    padding: 2px 10px 2px 5px;
    color: #828282;
    border: 1px solid #f2f2f2;
    border-radius:20px;
    margin-bottom:2px;
    height:30px;
    line-height: 30px;
    text-transform: uppercase;
}
button.client_label:hover{
    background-color:#DDDDDD;
    
}

.month{
    background-color: #8AA5C3;
    color: #FFF;
    font-size:26px;
}
.day_number{
    border-bottom: #e5e5e5 solid 1px;
    padding-right:10px;
    margin-bottom: 5px;
    font-weight: 700;
}
.calendar_table{
    width:100%;
    vertical-align: top !important;
    margin-bottom:20px;
    border-bottom: #e5e5e5 solid 2px;
}
.table_cell{  
    width:100px;
    overflow: hidden;
}
.calendar_table>tr>td{
    border: #e5e5e5 solid 1px;
    
}

#calendar_nav{
    margin-top:20px;
    padding: 10px;
    background-color: #fff;  
}
.load_container{
    padding:40px;
    position: fixed;
}
.loader {
    animation: spin 2s linear infinite;
    font-size:50px;
    color:#DF0C05;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.widget-inner{
    padding-top:10px;
    padding-left:10px;
    background-color:#fff;
    padding-right:40px;
    max-height:300px;
    overflow-y: scroll;
    
}

/* ==  List View == */
.list > .month{
    padding:5px;   
}
.list > .list-item > .day_number{
    padding-left: 5px;
}
.list-item{
    background-color:#fff;
    padding-bottom:15px;
    
}
.list > button.client_label{
    display:block;
    max-width: 100%;
    font-size:10px;
    vertical-align:middle;
    background-color:#f2f2f2;
    padding: 2px 10px 2px 5px;
    color: #828282;
    border: 1px solid #f2f2f2;
    border-radius:20px;
    margin-bottom:2px;
    height:30px;
    line-height: 30px;
    text-transform: uppercase;
}


/* === Statuses === */
.complete{
    color:green;
}
.live{
    color:orange;
}
.forecast{
    color:#828282;
}
.error{
    color:#red;
}

.warning{
    background-color: #df0c05;
    color: #fff !important;
}

/* === Order Request ===*/
.order_request{
    background-color:#fff;
    padding:20px;
    margin-top:20px;
    
}
.order_request input,.order_request select,.order_request textarea{
    width:100%;
}