﻿@import url('https://fonts.googleapis.com/css?family=Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');


body {
    background-color: #f8f8f8;
      /*background-color: white;*/
}

.navbar-default > div.container {
    background-color: white;
     /*background-color: #f8f8f8;*/
}



.toolbar > ul > li {
    height :77px;
    /*border: 1px solid red;*/
}



.toolbar > ul > li:hover {
  
   border-bottom:2px solid #ffd800;
}


body *:not(.fas):not(.glyphicon) {
    font-family: 'Montserrat', sans-serif !important;
    /*font-weight: normal;*/
 
}




body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    font-weight: lighter;
    /*padding-top: 10px;*/
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    box-shadow: none !important;
    /*min-width: 98% !important;
    max-width: 98% !important;*/
    /*border: none !important;*/
}

table, div.pagination-footer {
    font-size: 0.85em;
}

table > thead > tr > th {
    font-weight: normal;
}

/*Bootstrap-override*/


.navbar-inverse .navbar-brand {
    color: white;
    font-weight: bold;
}

.navbar-inverse .navbar-nav > li > a {
    color: white;
}


.navbar-inverse {
    background-color: #A748FA;
    border-color: #A748FA;
    color: white;
}



/* Form-Label */
label.control-label,
.form-group label,
label.control-label > small{
    color:#444;
    font-weight :normal ;
    /*background-color: rgba(240,240,240,0.1);*/
    border-radius :5px;
}

label.control-label:hover {
   /*background-color: rgba(244, 194, 13,0.4);*/
}

 

.form-control:focus {
   background-color: rgba(244, 194, 13,0.3) !important ;
}







.badge:hover {
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
}

.badge-error {
    background-color: #b94a48;
}

    .badge-error:hover {
        background-color: #953b39;
    }

.badge-warning {
    background-color: #f89406;
}

    .badge-warning:hover {
        background-color: #c67605;
    }

.badge-success {
    background-color: #468847;
}

    .badge-success:hover {
        background-color: #356635;
    }

.badge-info {
    background-color: #3a87ad;
}

    .badge-info:hover {
        background-color: #2d6987;
    }

.badge-inverse {
    background-color: #333333;
}

    .badge-inverse:hover {
        background-color: #1a1a1a;
    }


    .adjust-padding{
       padding-top:5px;
      
    }




/*Browser Scroll */
body::-webkit-scrollbar {
    width: 0em;
}

body::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
}

body::-webkit-scrollbar-thumb {
    background-color: white;
    outline: 0px solid white;
}

 


/*IMG UPLOAD*/
#new-img-default {
    border:1px solid #ccc;
    min-height :200px;
    max-height :200px;

    min-width :200px;
    max-width :200px;
}



/*Custom scroll*/
::-webkit-scrollbar {
    width: 5px;
}
 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 1px;
}
 
::-webkit-scrollbar-thumb {
    border-radius: 1px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
}



/*toolbar-accept-reject*/

ul.toolbar-menu{
    /*background-color : #f89406;*/
}

ul.toolbar-menu li {
        padding:5px;
        border-bottom :2px solid transparent;
        text-align :center;
}

ul.toolbar-menu li a {
       text-decoration :none;
       color: black;
}

ul.toolbar-menu li a:hover,
ul.toolbar-menu li:hover {
     /*color :#ffd800;*/
      border-radius :5px;
     cursor:pointer;
}


ul.toolbar-menu li:hover {
   background-color: rgba(244, 194, 13,0.4);
}


/*datetimepicker*/
.date > input {
    /*background-color :#ffd800;*/
}

.input-group-addon {
    border:none;
    background-color :transparent ;
}

.input-group-addon:hover {
    color:royalblue;
    border-left:none;
   
}



/*Check box*/
.checkbox label:after, 
.radio label:after {
    content: '';
    display: table;
    clear: both;
}

.checkbox .cr,
.radio .cr {
    position: relative;
    display: inline-block;
    border: 1px solid #a9a9a9;
    border-radius: .25em;
    width: 1.3em;
    height: 1.3em;
    float: left;
    margin-right: .5em;
}

.radio .cr {
    border-radius: 50%;
}

.checkbox .cr .cr-icon,
.radio .cr .cr-icon {
    position: absolute;
    font-size: .8em;
    line-height: 0;
    top: 50%;
    left: 20%;
}

.radio .cr .cr-icon {
    margin-left: 0.04em;
}

.checkbox label input[type="checkbox"],
.radio label input[type="radio"] {
    display: none;
}

.checkbox label input[type="checkbox"] + .cr > .cr-icon,
.radio label input[type="radio"] + .cr > .cr-icon {
    /*transform: scale(3) rotateZ(-20deg);*/
    opacity: 0;
    transition: all .3s ease-in;
}

.checkbox label input[type="checkbox"]:checked + .cr > .cr-icon,
.radio label input[type="radio"]:checked + .cr > .cr-icon {
    /*transform: scale(1) rotateZ(0deg);*/
    opacity: 1;
}

.checkbox label input[type="checkbox"]:disabled + .cr,
.radio label input[type="radio"]:disabled + .cr {
    opacity: .5;
}