@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0');

/*------------------------------------------------------------------
[ main elements]
*/
body {
  /*font-family: 'Open Sans', sans-serif; dee2e6 */
  font-size: 16px;
  font-weight: 400;
  color: #000000;
}

/*------------------------------------------------------------------
[ unificacion de colores y fuentes]
*/
.page-content {
  background: #e0dfcc;
}

.underline {
  text-decoration: underline;
}
.red {
  color: #7a0414;
}

.tiles.white,
.tiles.white label {
  color: #212529;
}

a {
  color: #4154f1;
}

.header-seperation {
  background-color: #fff;
}
.header .nav > li.dropdown .active {
  background-color: #7a0414;
}

.header .notifcation-center {
  background-color: #fff;;
}
@media (max-width: 979px) {
  .header .nav li.dropdown i {
    color: #7a7f8c!important;
  }
}

.page-sidebar,
.page-sidebar .page-sidebar-wrapper > ul > li.open > a {
  background: #7a0414!important;
}
.page-sidebar .page-sidebar-wrapper > ul > li > ul.sub-menu {
  background: #921425!important;
}
.page-sidebar.mini {
  background: #7a0414!important;
}
.page-sidebar.mini .page-sidebar-wrapper > ul > li > a:hover {
  background: #921425!important;
}

.menu-title,
.page-sidebar .page-sidebar-wrapper > ul > li a i,
.page-sidebar .page-sidebar-wrapper > ul > li > a,
.page-sidebar .page-sidebar-wrapper ul > li > a > .arrow:before, 
.page-sidebar .page-sidebar-wrapper > ul > li > a > .arrow.open:before {
  color: #fff!important;
}
.page-sidebar .page-sidebar-wrapper > ul > li a i {
  font-size: 22px!important;
}
.page-sidebar .page-sidebar-wrapper > ul > li.active > a {
  font-weight: 800;
}

.tip {
  cursor: pointer;
}
.tooltip.right .tooltip-arrow {
  border-right-color: #7a0414;
}
.tooltip-inner {
  text-align: left;
  background-color: #7a0414;
  color: #fff;
}

.label.label-red {
  background-color: #7a0414;
  color: #fff;
}

.btn.btn-red {
  background-color: #7a0414;
  border-color: #7a0414;
  color: #fff;
}

.grid.simple .grid-body {
  color: #333;
}

.table td {
  color: #333;
}

.checkbox label {
  color: #333;
}

.checkbox label:before {
  border-color: #555;
}

.radio label {
  color: #333;
}

.radio input[type=radio]:checked + label {
  color: #333;
}

.radio label:before {
  border-color: #555;
}

.radio input[type=radio]:checked + label:before {
  border-color: #555;
}

.radio input[type=radio]:checked + label:after {
  background-color: #555;
}


/*------------------------------------------------------------------
[ plain page]
*/
.plain-body {
  background: #f6f9ff;
  background: #e0dfcc;
}


/*------------------------------------------------------------------
[ login]
*/
.login-container {
  margin-top: 5%;
}

/*------------------------------------------------------------------
[ dynamic content]
*/

.steps-container {
  margin-bottom: 40px;
  width: 100%;
  /*position: absolute;*/
  position: relative;
  z-index: 1;
}
.steps-container ul.progressbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.steps-container .progressbar{
  counter-reset: step;
}
.steps-container .progressbar li{
  float: left;
  padding: 0px;
  margin: 0;
  width: 25%;
  position: relative;
  text-align: center;
}
.steps-container .progressbar li.active{
  color:#7a0414
}
.steps-container .progressbar li:before{
  content:counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  border: 2px solid #bebebe;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  line-height: 27px;
  background: white;
  color: #bebebe;
  text-align: center;
  font-weight: bold;
}
.steps-container .progressbar li:after{
  content: '';
  position: absolute;
  width:100%;
  height: 3px;
  background: #979797;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.steps-container .progressbar li:first-child:after{
  content: none;
}
.steps-container .progressbar li.active:after{
  background: #7a0414;
}
.steps-container .progressbar li.active:before{
  border-color: #7a0414;
  background: #7a0414;
  color: white;
}

@media (max-width: 767px) {
  .steps-container {
    display: none;
  }
}

.steps-container-mobile {
  display: none;
  margin-bottom: 40px;
  margin-left: 35%;
  width: 100%;
  /*position: absolute;*/
  position: relative;
  z-index: 1;
}
.steps-container-mobile ul.progressbar {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}
.steps-container-mobile .progressbar{
  counter-reset: step;
}
.steps-container-mobile .progressbar li{
  display: none;
  float: left;
  padding: 0px;
  margin: 0;
  width: 25%;
  position: relative;
  text-align: center;
}
.steps-container-mobile .progressbar li.active{
  color:#7a0414;
  display: block;
}
.steps-container-mobile .progressbar li:before{
  content: attr(data-new-content, counter(step));
  counter-increment: step;
  width: 30px;
  height: 30px;
  border: 2px solid #bebebe;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  line-height: 27px;
  background: white;
  color: #bebebe;
  text-align: center;
  font-weight: bold;
}
.steps-container-mobile .progressbar li.active:before{
  border-color: #7a0414;
  background: #7a0414;
  color: white;
}

@media (max-width: 767px) {
  .steps-container-mobile {
    display: block;
  }
}

/*------------------------------------------------------------------
[ options selectors]
*/
.options-selector .btn-expand {
  cursor: pointer;
  vertical-align: top;
  margin-top: 4px;;
  margin-right: 4px;
}
.suboptions-selector {
  display: none;
  margin-left: 40px;
}

.options-selector#categories-data-options-selector > div.has-suboptions {
  display: none;
}


/*------------------------------------------------------------------
[ data tables and graphs]
*/
.morris-hover.morris-default-style {
  position: absolute;
  top: 0!important;
  left: -150px!important;
  font-size: 14px;
  border: solid 1px #7a0414; 
  border-radius: 5px; padding: 10px; 
  background-color: #fff; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.3); 
  z-index: 100;
}

/*------------------------------------------------------------------
[ misc]
*/
.box-shadow {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.title-and-box {
  border: solid 1px #7a0414;
  border-radius: 5px;
  margin-bottom: 20px;
}
.title-and-box h4 {
  margin: 0;
  padding: 5px;
  font-size: 16px;
  font-weight: bold;
  color: #fff!important;
  background-color: #7a0414;
}
.title-and-box .box-content {
  padding: 10px 10px 4px 10px;
}
.title-and-box.box-selector .box-content {
  height: 480px;
  overflow-y: auto;
  overflow-x: hidden;
}

.pannel-custom {
  border: solid 1px #7a0414;
  border-radius: 5px;
  margin-bottom: 20px;
}
.pannel-custom .panel-heading {
  background-color: #7a0414;
  color: #fff!important;
  font-weight: bold;
  border-bottom: solid 1px #7a0414;
}
.pannel-custom .panel-heading .panel-title a,
.pannel-custom .panel-heading .panel-title a:after,
.pannel-custom .panel-heading .panel-title a:hover,
.pannel-custom .panel-heading .panel-title a:hover:after {
  color: #fff!important;
  font-weight: bold;
  font-size: 15px;
}
