@charset "UTF-8";

:root {
  --primary-color: #F5AE3F;
  --secondary-color: #F0C735;
  --button-color: #F0C735;
  --navbar-color: #383838;
  --light: #D8D8D8;
  --dark: #373737;

  --success: var(--secondary-color);
  --info: #63c2de;
  --warning: var(--light);
  --danger: #f86c6b;
  
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  position: relative;
  font-family: var(--user-def-font-family);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  min-height: 100%;
  height: auto;
}

body {
  /*margin: 0 0 50px 0;*/
  font-family: var(--user-def-font-family);
  font-size: var(--user-def-font-size);
  /*font-weight: 400;
  line-height: 1.5;
  text-align: left;*/
  background-color: #fff;
  background-image: url("../img/background.png");
  background-repeat: repeat;
  color:#000;
  /*height:auto;
  min-height:100%;
  padding-bottom:50px;*/
}

.row{
  margin-bottom: 7px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
  display:inline-block;
}

@media (min-width: 992px){
  .col-lg-3{
    max-width:24%;
  }
}

@media (min-width: 1200px){
  .col-xl-2 {
    max-width:16%;
  }
}


.app-body{
  margin-top:65px;
  position: relative;
}

.container{
  padding:15px 10px 65px 10px;
  max-width: none !important;
}

.container:after{
  clear:both;
}

/*.app-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-positive: 1;
  flex-grow: 1;
  overflow-x: hidden;
  margin-top: 65px;
}

.app-body .main {
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}*/

#toast-container > div {
    opacity:1;
}


.form-control{
  font-size: var(--user-def-font-size)
}

.form-control:focus{
	outline: none;
	border-color: var(--primary-color);
  border-color:#F5AE3F;
	box-shadow: 0 0 0 0.2rem rgba(240,199,53,.25)
}

.form-control > option:hover{
	background-color: #f0f3f5;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
	background-color: var(--secondary-color);
  background-color:#F0C735;
	border-color: var(--primary-color);
  border-color:#F5AE3F;
}

.btn-primary.disabled, .btn-primary:disabled{
	background-color: var(--secondary-color);
  background-color:#F0C735;
	border-color: var(--primary-color);
  border-color:#F5AE3F;
}

.btn-primary:active{
	background-color: var(--secondary-color);
  background-color:#F0C735;
	border-color: var(--primary-color);
  border-color:#F5AE3F;
}


.btn-primary.focus, .btn-primary:focus{
	box-shadow: 0 0 0 0.2rem rgba(240,199,53,.5);
}

.table .thead-dark th{
  background-color: var(--dark);
  background-color:#373737;
}

.table-bordered td, .table-bordered th{
  border: 1px solid #bbb;
}

.table td, .table th{
  padding:.25rem;
}

.dropdown-item:hover, .dropdown-item:focus{
	outline:none;
}

a{color:#000;}
a:hover{color: var(--primary-color); color:#F5AE3F;}
label{margin-bottom:0;}


.alert-danger{
	background-color:#e5858d;
	border-color: #7c3037;
	color:#fff;
	font-weight:bold;
}

.divider{
	width:100%;
	height:2px;
	background-color: var(--secondary-color);
  background-color: #F0C735;
}

.nav-user-min-settings, .nav-user-min-divider{
	display: none;
}

.footer{
	background-color: var(--light);
  background-color: #D8D8D8;
	height:50px;
	border-top:2px solid var(--primary-color);
  border-top:2px solid #F5AE3F;
	position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 50px;
  color:#000000;
  padding: 2px 10px;
}

.footer-img{
	height: 40px;
	float:right;
    width: auto;
    margin-top: 4px;
}

.footer a{
	color:#333;
	text-decoration: underline;
}
/** LOGIN PAGE **/

.login-img{
	width: 95%;
	height: auto;
	margin-bottom:15px;
}

.login-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
}

.login-error-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  margin-top:10%;
}

.login-error-form {
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  width: 100%;
  max-width: 400px;
  position: relative;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

.login-error-form > .alert {
	margin-bottom:0px;
}

.login-form {
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  background: #fff;
  padding: 30px;
  width: 100%;
  max-width: 400px;
  position: relative;
  padding: 10px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

.login-footer {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 2px;
  margin-top:5px;
  text-align: center;
  -webkit-border-radius: 0 0.25rem;
  border-radius: 0.25rem;
}

.index-img{
  max-width:90%;
  height:auto;
  margin:10% auto;
  position: absolute;
  opacity: 0.15;
  filter:alpha(opacity=15);
}

/** ANIMATION **/
.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}


/** MAIN NAVIGATION **/

.navbar{
  background-color: #383838;
	background-color:  var(--navbar-color);
	border-bottom: 2px solid var(--primary-color);
  border-bottom: 2px solid #F5AE3F;
  opacity: 1;
  position:inherit;
}

.nav-item{
	margin-left:5px;
	margin-right:5px;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  font-size: var(--user-def-font-size);
}

.nav-link {
  color: #F7F5E6;
  font-size: var(--user-def-font-size);
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-color);
  color: #F5AE3F;
}

.nav-user-settings{margin-left:3rem;}

.navbar-brand{padding:0;}

@media (min-width: 768px){
	.navbar-expand-md .navbar-collapse{
		margin-top: var(--user-def-nav-item-margin);
	}	
}

.navbar-toggler-icon {
  height: 23px;
  color:#fff;
}


.form-group{
  margin-bottom:.5rem;
}

/* FORM TABS */
.form-tabs{background:transparent;border:none;}
.form-tabs>.ui-widget-header{background: transparent;}
.form-tabs li{border:none !important; background:transparent !important;}
.nav-tabs > li.active > a{border-right:1px solid #ddd;border-radius: 0; border-top:0;border-bottom: 0}
.nav-tabs > li.active > a:hover{border-right:1px solid #ddd;border-radius: 0; border-top:0;border-bottom: 0}
.nav-tabs > li > a{border:none; color:#999;font-weight: bold;}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{color:#74A038;}

.ui-widget{font-family: inherit;}
.ui-tabs .ui-tabs-nav {background: transparent; width: 100%; border-top: none; border-right: none; border-left: none; padding:0; margin-top:0px;}
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover{background:#fff; border-color:#C5C5C5}
.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{background:#fff;}
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited{color:#74A038;}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {color:var(--primary-color); color:#F5AE3F;}


/** BUTTONS **/
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: var(--user-def-font-size);
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.10s ease-in-out, background-color 0.10s ease-in-out, border-color 0.10s ease-in-out, box-shadow 0.10s ease-in-out;
}

.btn-primary {
  color: #fff;
  background-color:  var(--primary-color);
  background-color: #F5AE3F;
  font-weight:bold;
}

.btn-primary:hover {
  background-color:  var(--secondary-color);
  background-color: #F0C735;
  border: 1px solid transparent;

}

.btn-warning {
  color: #000;
  background-color:  var(--warning);
  background-color:#D8D8D8;
}

.btn-warning:hover {
  color: #000;
  background-color:  var(--warning);
  background-color:#D8D8D8;
  border: 1px solid var(--primary-color);
  border:1px solid #F5AE3F;
}


.btn-dark{
  background-color: var(--dark);
  background-color: #373737;
  border:1px solid var(--primary-color);
  border:1px solid #F5AE3F;
}


/** DROPDOWN NAV **/

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

/*.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}*/

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0 0;
  margin: 0.125rem 0 0;
  font-size: var(--user-def-font-size);
  color: #23282c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--secondary-color);
  border: 1px solid #F0C735;
  border-radius: 0.25rem;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e4e7ea;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #23282c;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #181b1e;
  text-decoration: none;
  background-color: #f0f3f5;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--secondary-color);
  background-color: #F0C735;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #73818f;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0 1.5rem;
  margin-bottom: 0;
  font-size: var(--user-def-font-size);
  white-space: nowrap;
  padding: 8px 20px;
  background: var(--primary-color);
  background: #F5AE3F;
  color:#FFFFFF;
  border-bottom: 1px solid #c8ced3;
  text-align: left;
  font-weight:bold;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #23282c;
}

.dropdown-item {
  position: relative;
  padding: 10px 20px;
  border-bottom: 1px solid #c8ced3;
}

.dropdown-item:last-child {
  border-bottom: 0;
}

.dropdown-item i {
  display: inline-block;
  width: 20px;
  margin-right: 10px;
  margin-left: -10px;
  color: #73818f;
  text-align: center;
}

.dropdown-item .badge {
  position: absolute;
  right: 10px;
  margin-top: 2px;
}

.dropdown-header .btn {
  margin-top: -7px;
  color: #73818f;
}

.dropdown-header .btn:hover {
  color: #23282c;
}

.dropdown-header .btn.pull-right {
  margin-right: -20px;
}

.dropdown-menu-lg {
  width: 250px;
}

.app-header .navbar-nav .dropdown-menu {
  position: absolute;
}

.app-header .navbar-nav .dropdown-menu-right {
  right: 0;
  left: auto;
}

.app-header .navbar-nav .dropdown-menu-left {
  right: auto;
  left: 0;
}

@media (max-width: 768px){
	.dropdown-menu{
		border: none;
		background-color: transparent;
	}	
	.dropdown-header{
		display:none;
	}
	.dropdown-item{
		color: #fff;
		border: none;
	}
	.dropdown-item:hover{
		color: var(--primary-color);
    color: #F5AE3F;
		background: transparent;
		border: none;
	}
	.divider{
		width:75%;
		margin: 10px;
	}
	.dropdown-menu > .divider{
		display:none;
	}
	.nav-user-settings{
		display: none;
	}
	.nav-user-min-settings, .nav-user-min-divider{
		display: block;
	}
}


.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 0;
  list-style: none;
  background-color: #fff;
  line-height: 26px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #73818f;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #73818f;
}

.breadcrumb-menu{
	margin-left:auto;
}

.card-header{
	border-bottom:2px solid var(--primary-color);
  border-bottom: 2px solid #F5AE3F;
	color:#000;
}

.card-header-icon{
    float: right;
    margin-top: 0px;
}

.form-col-form-label{
	color:#000;
}

.breadcrumb .btn {
	height:25px;
	padding: 0 .75rem;
	min-width: 100px;
}

.btn-record-scrolling:hover{
  color:var(--secondary-color);
}


.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 40px auto;
  /*
   * Spinner positions
   * 1 2 3
   * 4 5 6
   * 7 8 9
   */ }
  .sk-cube-grid .sk-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #333;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
            animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; }
  .sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s; }
  .sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
  .sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s; }
  .sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0.0s;
            animation-delay: 0.0s; }
  .sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s; }
  .sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s; }
@-webkit-keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); } }
@keyframes sk-cubeGridScaleDelay {
  0%, 70%, 100% {
    -webkit-transform: scale3D(1, 1, 1);
            transform: scale3D(1, 1, 1); }
  35% {
    -webkit-transform: scale3D(0, 0, 1);
            transform: scale3D(0, 0, 1); } }


@media (max-width: 768px){
  .card{
    margin-bottom:10px;
  }
}