
/* ---- Start Reset CSS ---- */

/* http://meyerweb.com/eric/tools/css/reset/ */
/* v1.0 | 20080212 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;        
}
body {
	line-height: 1;    
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

/* remember to define focus styles! */
:focus {
	outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ---- End Reset CSS ---- */
/*===== VARIABLES CSS =====*/
:root {
    --nav-width: 92px;
  
    /*===== Colores =====*/
    --first-color: #7e6000;
    --bg-color: #353434;
    --sub-color: #B6CEFC;
    --white-color: #FFF;
    
    /*===== Fuente y tipografia =====*/
    --body-font: 'Poppins', sans-serif;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    
    /*===== z index =====*/
    --z-fixed: 100;    
  }

  h1{
    margin: 0;
  }
  ul{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  a {
    text-decoration: none;
    color: white;
  }

.header-nav-area1 {   
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;    
    height: 70px;
    z-index: 999;
    /* background: #b8aeae;   */
    transition: .5s;  
}

.header-nav-menu1 {
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    padding-left: 110px;
       
}

.header-nav-menu1 > a {
    float: left;
    color: #c0b9a1;
    text-align: center;
    padding: 16px;   
    font-size: 17px;
        
}
  
.header-nav-menu1 a:hover {
    background-color: #ddd;
    color: black;
}
  
.header-nav-menu1 a.active1 {
    background-color: #04AA6D;
    color: white;
    
}
  
.header-nav-menu-right1 {
    float: right;    
    padding-right: 10px;
}
  
.dropbtn1 {
    background-color: #fff;
    color: rgb(0, 0, 0);
    padding: 10px;    
    font-size: 17px;    
    border: none;
    cursor: pointer;
}

.dropbtn1-area{
  display: flex;
}

.dropdown1 {
    display: inline-block;
}

.dropdown-content1 {  
    display: none;
    position: absolute;
    right: 0;
    background-color: #444444;
    margin-right: 10px;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 6;
}

.dropdown-content1 > a {     
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    display: block;
    text-align: center;
}

.dropdown1 > button:hover {
    background-color: rgb(48, 109, 124);
    color: rgb(255, 251, 251);
}

/*===== l NAV =====*/
.l-navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--white-color);
    padding: 1.5rem 1.5rem 2rem;
    transition: .5s;
    z-index: 99999;
    
  }
  
  /*===== NAV =====*/
  .nav{    
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;    
  }
  .nav__brand{
    display: grid;
    grid-template-columns: max-content max-content max-content;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  .nav__toggle{
    font-size: 1.25rem;
    padding: .75rem;
    cursor: pointer;
  }
  .nav__logo{
    color: var(--white-color);
    font-weight: 100;
    padding-left: 10px;
  }
  
  .nav__link{
    display: grid;
    grid-template-columns: max-content max-content max-content;
    align-items: center;
    column-gap: .75rem;
    padding: .75rem;
    color: var(--white-color);
    border-radius: .5rem;
    margin-bottom: 1rem;
    transition: .3s;
    cursor: pointer;
  }
  .nav__link:hover{
    background-color: var(--first-color);
    color: var(--white-color);
  }
  .nav__icon{
    font-size: 1.25rem;
  }
  .nav__name{
    font-size: var(--small-font-size);    
  }
  
  /*Expander menu*/
  .expander {
      width: calc(var(--nav-width) + 9.25rem);
  }
  
  
  /*Active links menu*/
  .active{
    background-color: var(--first-color);
  }
  
  /*===== COLLAPSE =====*/
  .collapse{
    grid-template-columns: 20px max-content 1fr;
  }
  .collapse__link{
    justify-self: flex-end;
    transition: .5s;
  }
  .collapse__menu{
    display: none;
    padding: .75rem 2.25rem;
  }
  .collapse__sublink{
    color: var(--sub-color);
    font-size: var(--small-font-size);
  }
  .collapse__sublink:hover{
    color: var(--white-color);
  }
  
  /*Show collapse*/
  .showCollapse{
    display: block;    
  }
  
  /*Rotate icon*/
  .rotate{
    transform: rotate(180deg);
  }
  

  .content-body {
    position: relative;
    margin: 0;
    padding: 2rem 0 0 6.75rem; 
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
    background-color: #f1f1f1;
  }
  
  .content {
      margin-top: 35px;
      margin-right: 20px;
      margin-left: 10px;
  }
  
.content-pd {
    margin-left: 150px;
    margin-right: 0.2px;
}

.headerclick {
    margin-left: 150px;    
    padding-right: 150px; 
    transition: .5s;    
}

.contentshowclick {    
    margin-right: 160px;
}

.show {display: block;}

.pull-left{
  float: left !important;
}

.tableclick {  
  padding-right: 1px;
  transition: .5s;  
}

.pull-left {
  float: left !important;
}

.dataTables_wrapper .dataTables_filter{
  float: left
}

#flip1, #flip2,#flip3, #flip4, #flip5, #flip8 {  
  height: 50px;
  text-align: left;
  padding-left: 10px;
  padding-top: 6px;
  color: #fff;  
  background-color: #ba9745;    
}

#panel1, #panel2, #panel3, #panel4, #panel5, #panel8 {
  color: #000; 
  display: none; 
  padding-left: 10px;
  padding-right: 10px; 
}

.content-insert-area {   
  min-height: 500px !important;
}

.content-insert-main-area {   
  min-height: 535px !important;
}

.content-insert {    
  height: 40px;
  padding-left: 10px;
  padding-top: 8px;
  background-color: rgb(238, 236, 236);
  /* border-bottom:1px solid rgb(0, 0, 0);  
  border-right:1px solid rgb(0, 0, 0);  
  border-left:1px solid rgb(0, 0, 0);    */
}

#panel6, #panel7 {
  color: #000; 
  display: none; 
  padding-left: 10px;
  padding-right: 10px; 
}

.login-content {
  position: relative;
  margin-top: 100px;
  min-height: 740px;
  z-index: 1;
  background: #f1f1f1;
  font-size: 20px;
}

.login-content .login-header {
  min-height: 250px;
  background: #f1f1f1;
}

.login-content .login-header img {
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 18%;
}

.login-content .login-header h3 {
  text-align: center;
  margin-top: 15px;
  font-size: 25px;
  color: rgb(43, 41, 41);
}

.login-content .login-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  background: #f1f1f1;
}

.login-content .login-area .login-form {
  background-color: #f1f1f1;
  margin: 10px;
  padding: 20px;
  height: 350px;
  width: 450px;
}

.login-content .login-area .login-form h6 {
  margin-top: 5px;
}

input[type=text], select {
  width: 100%;
  /* height: 50px;
  margin-top: 4px ; */
  display: inline-block;
  border: 1px solid #f1f1f1;
  border-radius: 4px;
  box-sizing: border-box;
}

button[type=submit] {
  width: 100%;
  height: 50px;
  background-color: #1190c7;
  color: white;
  margin-top: 20px ;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.login-option div {
  display: inline-block;
}

.login-text-forgot {
  font-size: 14px;
  margin-top: 5px;
  float: left;
}

.login-text-forgot a {
  color: #1d94c7;
}

.login-text-regis {
  font-size: 14px;
  margin-top: 5px;
  float: right;
}

.login-text-regis a {
  color: #0e7dd8;
}


.register-content {
  position: relative;
  min-height: 640px;
  z-index: 1;
  background: #f1f1f1; 
}

.register-content .header {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
}

.img-logo-reg img {
  padding: 5px;
  margin: 20px;
  width: 130px;
}

h2 {
  font-size: 18px;
}

.reg-text {
  text-align: center;  
  font-size: 25px;
  color: #7c4139;
}

.flex-container-reg {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-container-reg .form {
  background-color: #7e6000;
  padding: 20px;  
  width: 850px;
  border-radius: 10px;
  color: white;
}

.flex-container-reg input[type="text"] {
    font-size: 16px;
    height: 45px;
    padding: 15px;
    margin-top: 15px;
}

.flex-container-reg h6 {
  margin-top: 10px;
}

.reg-sub {
  background-color: #7e6000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  float: right;
}

input[type=submit] {
  width: 100%;
  background-color: #6b2a21;
  color: white;
  padding: 14px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}

.bottom-insert a{
  color: black;
}

.setting-content {
  display: flex;
  background-color: #f1f1f1;
}

.setting-content .header-first-text {
  height: 90px;
  text-align: left;
}

.setting-content-header{
  display: flex;
  border-radius: 5px;
  font-size: 30px;
  color: white;
  background-color: rgb(199, 44, 44);
  height: 50px;
  width: 50px;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.setting-content-header-text{
  display: flex;
  height: 40px;
  color: rgb(199, 44, 44);
}
.setting-content-header-text .one {
  align-items: flex-start;
  padding-top: 10px;
}

.head-1{
  display: flex;
  padding-left: 10px;
  height: 90px;
  align-items: center;
  font-size: 20px;
}

.head-2{
  display: flex;
  height: 90px;
  align-items: center;
  font-size: 14px;
  color: rgb(27, 147, 163);
}

.setting-content-header2{
  display: flex;
  border-radius: 5px;
  font-size: 30px;
  color: white;
  background-color: rgb(35, 163, 125);
  height: 50px;
  width: 50px;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.setting-content-header-text2{
  display: flex;
  height: 40px;
  color: rgb(35, 163, 125);
}
.setting-content-header-text2 .two {
  align-items: flex-start;
  padding-top: 10px;
}

.dataTables_info {
  padding-left: 10px;
}

.btn-brown {
  color: #fff;
  background-color: #9f611a;
  border-color: #9f611a;
}

.border-brown {
  color: #000;
  border: 1px solid #9f611a!important;
}

@media only screen and (max-width: 1366px) { 
  table {
    font-size: 11px;
  }
  .tableclick {
    font-size: 11px;
    transition: .5s;  
  }    
}

.dataTables_filter{
  padding-right: 10px;
}

@media only screen and (min-width: 1366px) {
  .head-2{
      display: flex;
      height: 90px;
      padding-left: 10px;
      align-items: center;
      text-align: center;
      font-size: 13px;
      color: rgb(27, 147, 163);
  } 
}

.btn-red {
  color: #f7a93e;
  background-color: #5f0000;
  border-color: #5f0000;
}

.btn-red:hover {
  color: #ffffff;
  background-color: #5f0000;
  border-color: #5f0000;
}

.content-insert2 {
  margin: 10px;
  min-height: 500px !important;
  background-color: rgb(255, 255, 255);
}

.content-insert2-header {
  min-height: 20px !important;
  background-color: #ffcf00;
}

.content-number {
  color: white;
  padding-top: 20px;
  text-align: center;
  min-height: 60px !important;
  background-color: rgb(77, 77, 77);
}

.content-title {
  color: rgb(0, 0, 0);
  background-color: #f4f4f4;
  padding-top: 15px;  
  min-height: 60px !important;
}

.upload-header {
  color: #000; 
  padding-top: 2px;
  background-color: rgb(212, 212, 212);
}

.upload-content {
  padding: 10px;
  background-color: rgb(255, 255, 255);
}

.content-insert2-area {
  min-height: 60px !important;  
  background-color: rgb(199, 199, 199);
}

.content-insert2-main {
  background-color: #ffffff;
  min-height: 60px !important;  
}

.content-insert2-main img {
  float: right;
  padding-right: 5px;
}
