html, body{
    background: #eceff1;
    color: #37474f;
}
body{
    height: 100%;
}
/* Button */
.button{
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 3px;
    border: solid 1px transparent;
}
button.button:disabled{
    opacity: 0.5;
    cursor: not-allowed;
    background: #eee;
    color: #999;
}
button.button:disabled:hover{
    opacity: 0.5;
    cursor: not-allowed;
    background: #eee;
    color: #999;
}
.button:hover{
    text-decoration: none;
    color: #fff;
}
.button.button-default{
    background: #fff;
    color: #5f7c8a;
    border-color: #ddd;
}
.button.button-default:not([disabled]):hover{
    background: #5bc0de !important;
    border-color: transparent;
    color: #fff;
}
.button.button-primary{
    background: #5f7c8a;
}
.button.button-primary:not([disabled]):hover{
    background: #5bc0de !important;
}
.button.button-info{
    background: #5bc0de;
}
.button.button-info:not([disabled]):hover{
    background: #00acc1 !important;
}
.button.button-danger{
    background: #f44336;
}
.button.button-danger:not([disabled]):hover{
    background: #5bc0de !important;
}
.button.button-warning{
    background: #ff7043;
}
.button.button-warning:not([disabled]):hover{
    background: #5bc0de !important;
}

/* Jquery ui */
.ui-datepicker.ui-widget.ui-widget-content{
    width: auto;
    max-width: 100%;
    overflow: hidden;
    border: none;
    padding: 0;
    background: #fcfcfc;

}
.ui-datepicker .ui-datepicker-header{
    border-radius: 0;
    background: #fff;
    color: #455a64;
    border: none;
    border-bottom: solid 1px #e7e7e7;
}
.ui-datepicker .ui-datepicker-title{
    padding: 10px;
}
.ui-datepicker .ui-datepicker-next{

}
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active{
    border-color: #eee;
    padding-top: 10px;
    padding-bottom: 10px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-next:hover{
    top: 12px;
    cursor: pointer;
}

.ui-state-highlight.ui-state-active, .ui-widget-content .ui-state-highlight.ui-state-active, .ui-widget-header .ui-state-highlight.ui-state-active{
    border: 1px solid #31b0d5;
    background: #5bc0de;
    font-weight: normal;
    color: #fff;
}
.date-range-selected > .ui-state-active,
.date-range-selected > .ui-state-default {
    border: 1px solid #31b0d5;
    background: #5bc0de;
    font-weight: normal;
    color: #fff;
}
/** Tools **/
.tool-button-toggle{
    position: relative;
    min-height: 30px;
    width: 100%;
    max-width: 400px;
    font-weight: normal;
    cursor: pointer;
}
.tool-button-toggle-text{
    padding-right: 60px;
    display: block;
    line-height: 26px;
}
.tool-button-toggle-button{
    width: 52px;
    height: 28px;
    overflow: hidden;
    display: block;
    border: solid 1px transparent;
    position: absolute;
    text-align: center;
    right: 0;
    top: 0;
}
.tool-button-toggle .tool-button-toggle-off,
.tool-button-toggle .tool-button-toggle-on{
    width: 25px;
    height: 26px;
    line-height: 26px;
    overflow: hidden;
    display: block;
    background: #5bc0de;
    float: left;
    color: #fff;
}
.tool-button-toggle .tool-button-toggle-off{
    background: #ef5350;
    color: #fff;
}
.tool-button-toggle .tool-button-toggle-indicator{
    position: absolute;
    left: 0;
    margin-left: -25px;
    width: 50px;
    height: 26px;
    background: #f7f7f7;
    border: solid 1px #eee;
    transition: all 0.3s;
}
.tool-button-toggle.active .tool-button-toggle-indicator{
    margin-left: 25px;
}