body {
    font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background-color: #f3f3f4;
    font-size: 13px;
    color: #47535f;;
    overflow-x: hidden;
}

.login-box, .box {
    border-top: none !important;
    box-shadow: 1px 1px 7px 1px rgba(0,0,0,0.1);
    border: 1px solid #DDD;
}



.content-header {
    position: relative;
    padding: 20px 15px 5px 15px;
}

.main-header .logo{
    background: rgba(0,0,0,.1);
    height: 62px;
    line-height: 62px;
}

.main-header .navbar{
    min-height: 62px;
}

.main-header .sidebar-toggle{
    padding: 21px 15px;
}

.main-header .navbar .nav > li > a > .label{
    top: 12px;
}

.main-sidebar, .left-side{
    /*padding-top: 64px;*/
    padding-top: 20px;
}

.navbar-nav > li > a{
    padding-top: 21px;
    line-height: 26px;
}


.sidebar-menu > li > a {
    font-weight: 600;
    font-size: 15px;
}

h3, h4, h5 {
    margin-top: 5px;
    font-weight: 600;
}

body .pace .pace-activity{
    display: none;
}


div.dataTables_processing{
    top: -27% !important;
    background: none !important;
    z-index: 1000;
}
.dataTables_processing .progress{
    margin: 0 auto;
    width: 46%;
}

div.dataTables_paginate{
    padding-top: 14px !important;
}
div.dataTables_info{
    padding-top: 15px !important;
}

.table.dataTable thead .sorting_asc::after, .table.dataTable thead .sorting_desc::after{
    color:#e40000 !important;
}


#customer-table_wrapper{
    position: relative;
}

.table .open > .dropdown-menu{
    -webkit-box-shadow: 0 0 20px 0px rgba(0, 0, 0, .5);
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, .5);
}

.table .input-group-addon{
    padding: 0px 4px;
    background-color: #e7e7e7;
}

.table .icheckbox_square-red{
    background-color: white;
}


.table tr.disabled, .modal .bed-row-disabled{
    text-decoration:line-through;
    opacity: 0.4;
    /*pointer-events: none;*/
}

.content-wrapper, .right-side {
    background-color: #f3f3f4;
}


/*Skin black*/
.skin-black .main-header .navbar .sidebar-toggle{ 
    border-right: none !important;
    padding: 4px 12px;
    margin: 14px 5px 5px 20px;
    font-size: 14px;
    float: left;
    background-color: #e40000 !important;
    border-color: #e40000 !important;
    background-image: none;
    color: #FFFFFF !important;
}
.skin-black .main-header .navbar .navbar-custom-menu .navbar-nav > li > a, .skin-black .main-header .navbar .navbar-custom-menu .navbar-nav > li > a:hover{
    border-left: none !important;
    color: #999c9e;

}

.skin-black .pace .pace-progress{
    background: #e40000 !important;
}

.skin-black .sidebar-menu > li.active > a, .skin-black .sidebar-menu > li > a:hover{
    border-left-color: #e40000;
}

.skin-black .main-header .navbar{
    background-color: #F3F3F4 !important;
    border-bottom: 1px solid #e7eaec !important;

}


/*Common*/

.content-header{
    background-color: #ffffff !important;
    border-top: 0;
    padding: 0px 10px 0px 30px;
    border-bottom: 1px solid #e7eaec !important;
}
.content-header h2{
    font-size: 24px;
    font-weight: 500;
}

.breadcrumb{
    background-color: inherit !important;
    padding: 23px 10px;
    margin-bottom: 0px;
}

.header-title{
    margin-bottom: 20px;
}

.breadcrumb > li a {
    color: inherit;
}

.box-body{
    padding: 10px 23px;
}

.navbar-form-custom {
    float: left;
    height: 50px;
    padding: 0;
    width: 200px;
    display: block;
}
.navbar-form-custom .form-control {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
    border: medium none;
    font-size: 14px;
    height: 60px;
    margin: 0;
    z-index: 2000;
}

.border-bottom{
    border-bottom: 1px solid #ccc !important;
}

/*modal*/
.modal-header-success {
    color:#fff;
    padding:9px 15px;
    border-bottom:1px solid #eee;
    background-color: #5cb85c;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


.modal .modal-header-blue-gray {
    background: #607d8b;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.31);
    /*border-radius: 3px;*/
    border: 0;
    color: #fff;
    font-weight: 800;
}

.modal .modal-header-blue-gray .close {
    color: #fff;
    opacity: 1;
}

#modal-form .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid transparent;
    background: rgba(0, 0, 0, 0.1);
}

.modal .modal-header-red{
    background: #f44336;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.31);
    /*border-radius: 3px;*/
    border: 0;
    color: #fff;
    font-weight: 800;
}

#modal-form .radio{
    display: inline-block;
    margin-left: 15px;
}



/*** custom checkboxes ***/

input[type=checkbox] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] + span:before {
    font-family: FontAwesome;
    display: inline-block;
}

input[type=checkbox] + span:before { content: "\f096"; } /* unchecked icon */
input[type=checkbox] + span:before { letter-spacing: 7px; } /* space between checkbox and label */

input[type=checkbox]:checked + span:before { content: "\f046"; } /* checked icon */
input[type=checkbox]:checked + span:before { letter-spacing: 5px; } /* allow space for check mark */



/*Button styles*/
.btn {
    /*border: 0 none;*/
    font-weight: 700;
    letter-spacing: 1px;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: 0 none;
}

.btn-primary {
    border: 0 none;
    background: #0099cc;
    color: #ffffff;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background: #33a6cc;
}

.btn-primary:active, .btn-primary.active {
    background: #007299;
    box-shadow: none;
}

.btn.outline {
    background: none;
    padding: 12px 22px;
}

.btn-primary.outline {
    border: 2px solid #0099cc;
    color: #0099cc;
}

.btn-primary.outline:hover, .btn-primary.outline:focus, .btn-primary.outline:active, .btn-primary.outline.active, .open > .dropdown-toggle.btn-primary {
    color: #33a6cc;
    border-color: #33a6cc;
}
.btn-primary.outline:active, .btn-primary.outline.active {
    border-color: #007299;
    color: #007299;
    box-shadow: none;
}
.btn-primary.gradient {
    background: -moz-linear-gradient(top,  #33a6cc 50%, #0099cc 50%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#33a6cc), color-stop(50%,#0099cc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #33a6cc 50%,#0099cc 50%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #33a6cc 50%,#0099cc 50%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #33a6cc 50%,#0099cc 50%); /* IE10+ */
    background: linear-gradient(to bottom,  #33a6cc 50%,#0099cc 50%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33a6cc', endColorstr='#0099cc',GradientType=0 ); /* IE6-9 */
}

.btn-primary.gradient:hover, .btn-primary.gradient:focus, .btn-primary.gradient:active, .btn-primary.gradient.active, .open > .dropdown-toggle.btn-primary {
    background: -moz-linear-gradient(top,  #66b2cc 50%, #33a6cc 50%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#66b2cc), color-stop(50%,#33a6cc)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #66b2cc 50%,#33a6cc 50%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #66b2cc 50%,#33a6cc 50%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #66b2cc 50%,#33a6cc 50%); /* IE10+ */
    background: linear-gradient(to bottom,  #66b2cc 50%,#33a6cc 50%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66b2cc', endColorstr='#33a6cc',GradientType=0 ); /* IE6-9 */
}

.btn-primary.gradient:active, .btn-primary.gradient.active {
    background: -moz-linear-gradient(top,  #267c99 50%, #007299 50%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#267c99), color-stop(50%,#007299)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #267c99 50%,#007299 50%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #267c99 50%,#007299 50%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #267c99 50%,#007299 50%); /* IE10+ */
    background: linear-gradient(to bottom,  #267c99 50%,#007299 50%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#267c99', endColorstr='#007299',GradientType=0 ); /* IE6-9 */
}


.selectbox-loader{
    position: absolute;
    top: 27px;
    z-index: 100;
    right: 6%;
}

.selectbox-loader i{
    opacity: 0.6;
}

#table-content .label{
    margin-right: 5px;
}


.dataTables_wrapper .dataTables_length {
    float: left !important;
}

.dataTables_wrapper .dataTables_length label {
    margin-bottom: 0px !important;
}

fieldset .fieldset-header{
    border-bottom: 2px solid #eee;
    margin-bottom: 15px;
    margin-top: 20px;
    width: 100%;
    min-height: 40px;
}


.no-padding-right{
    padding-right: 0 !important;
}

.btn-remove{
    cursor: pointer;
}

.modal .lead{
    font-size: 18px;
    margin-bottom: 5px;
}


.margin-bottom{
    margin-bottom: 15px;
}

.btn-group-status .btn{
    padding-left: 8px;
    padding-right: 8px
}

.btn.active[data-active-class="primary"] {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}
.btn.active[data-active-class="success"] {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}
.btn.active[data-active-class="info"] {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.btn.active[data-active-class="warning"] {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}
.btn.active[data-active-class="danger"] {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.padding-top{
    padding-top: 25px;
}

.show-modal-body .form-group{
    float: left;
    width: 100%;
}


.info-box-icon-transaction {
    width : 10%;
    height: 100%;
}

.info-box-transaction .info-box-content{
    margin-top: 16px;
    display: inline-block;

}
.info-box-transaction .info-box-number, .info-box-transaction .info-box-text{
    display: inline-block;
}

.info-box-transaction .info-box-text{
    overflow: inherit;
}

.info-box-transaction .info-box-content{
    margin-left: 0px;
}

/*modal-loading-bar*/
.loading-bar,
.canvas-loading-bar,
.modal-loading-bar {
    opacity: 0;
    position: absolute;
    bottom: -1px;
    z-index: 1;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #adb5d7;
    overflow: hidden;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease
}
.loading-bar:after,
.canvas-loading-bar:after,
.modal-loading-bar:after,
.loading-bar:before,
.canvas-loading-bar:before,
.modal-loading-bar:before {
    content: '';
    position: absolute;
    height: 3px;
    /*background-color: #4e5d9d*/
    background-color: #e40000
}
.loading-bar.active,
.canvas-loading-bar.active,
.modal-loading-bar.active {
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease
}
.loading-bar.active:after,
.canvas-loading-bar.active:after,
.modal-loading-bar.active:after {
    left: 50%;
    width: 10%;
    -webkit-animation: after-anim 2.5s infinite linear;
    -moz-animation: after-anim 2.5s infinite linear;
    -o-animation: after-anim 2.5s infinite linear;
    animation: after-anim 2.5s infinite linear
}
.loading-bar.active:before,
.canvas-loading-bar.active:before,
.modal-loading-bar.active:before {
    left: 0%;
    width: 0%;
    -webkit-animation: before-anim 2.5s infinite linear;
    -moz-animation: before-anim 2.5s infinite linear;
    -o-animation: before-anim 2.5s infinite linear;
    animation: before-anim 2.5s infinite linear
}
.modal-loading-bar {
    bottom: auto;
    top: 0
}

.filter_status{
    margin-top: 8px;
}

.box-body .label.empty{
    opacity: 0;
}

.a-btn{
    
}

@-webkit-keyframes after-anim {
    0% {
        width: 0%;
        left: 0%
    }
    10% {
        width: 30%;
        left: 100%
    }
    19.99% {
        width: 30%;
        left: 100%
    }
    20% {
        width: 0%;
        left: 0%
    }
    30% {
        width: 80%;
        left: 100%
    }
    30.01% {
        width: 0%;
        left: 0%
    }
    40% {
        width: 5%;
        left: 30%
    }
    50% {
        width: 50%;
        left: 100%
    }
    50.01% {
        width: 0%;
        left: 0%
    }
    60% {
        width: 60%;
        left: 20%
    }
    70% {
        width: 5%;
        left: 100%
    }
    70.01% {
        width: 0%;
        left: 0%
    }
    80% {
        width: 50%;
        left: 30%
    }
    90% {
        width: 10%;
        left: 80%
    }
    100% {
        width: 20%;
        left: 100%
    }
}
@-moz-keyframes after-anim {
    0% {
        width: 0%;
        left: 0%
    }
    10% {
        width: 30%;
        left: 100%
    }
    19.99% {
        width: 30%;
        left: 100%
    }
    20% {
        width: 0%;
        left: 0%
    }
    30% {
        width: 80%;
        left: 100%
    }
    30.01% {
        width: 0%;
        left: 0%
    }
    40% {
        width: 5%;
        left: 30%
    }
    50% {
        width: 50%;
        left: 100%
    }
    50.01% {
        width: 0%;
        left: 0%
    }
    60% {
        width: 60%;
        left: 20%
    }
    70% {
        width: 5%;
        left: 100%
    }
    70.01% {
        width: 0%;
        left: 0%
    }
    80% {
        width: 50%;
        left: 30%
    }
    90% {
        width: 10%;
        left: 80%
    }
    100% {
        width: 20%;
        left: 100%
    }
}
@-o-keyframes after-anim {
    0% {
        width: 0%;
        left: 0%
    }
    10% {
        width: 30%;
        left: 100%
    }
    19.99% {
        width: 30%;
        left: 100%
    }
    20% {
        width: 0%;
        left: 0%
    }
    30% {
        width: 80%;
        left: 100%
    }
    30.01% {
        width: 0%;
        left: 0%
    }
    40% {
        width: 5%;
        left: 30%
    }
    50% {
        width: 50%;
        left: 100%
    }
    50.01% {
        width: 0%;
        left: 0%
    }
    60% {
        width: 60%;
        left: 20%
    }
    70% {
        width: 5%;
        left: 100%
    }
    70.01% {
        width: 0%;
        left: 0%
    }
    80% {
        width: 50%;
        left: 30%
    }
    90% {
        width: 10%;
        left: 80%
    }
    100% {
        width: 20%;
        left: 100%
    }
}
@keyframes after-anim {
    0% {
        width: 0%;
        left: 0%
    }
    10% {
        width: 30%;
        left: 100%
    }
    19.99% {
        width: 30%;
        left: 100%
    }
    20% {
        width: 0%;
        left: 0%
    }
    30% {
        width: 80%;
        left: 100%
    }
    30.01% {
        width: 0%;
        left: 0%
    }
    40% {
        width: 5%;
        left: 30%
    }
    50% {
        width: 50%;
        left: 100%
    }
    50.01% {
        width: 0%;
        left: 0%
    }
    60% {
        width: 60%;
        left: 20%
    }
    70% {
        width: 5%;
        left: 100%
    }
    70.01% {
        width: 0%;
        left: 0%
    }
    80% {
        width: 50%;
        left: 30%
    }
    90% {
        width: 10%;
        left: 80%
    }
    100% {
        width: 20%;
        left: 100%
    }
}

/*end of modal loading bar*/


/* media queries */
@media (max-width: 767px) {
    section.content{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .dataTables_wrapper .dataTables_length{
        display: none !important;
    }

    section.content .view-status{
        margin-bottom: 10px;
    }
}