html {
  width: 100%;

}

body {
  overflow-x: hidden !important;
}

main.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
main.show-spinner>* {
  opacity: 0;
}

/* Spinner */
main.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

.theme-button{
  display: none !important;
}

.table {
   font-size: 12px !important;
}

h1,h2,h3{
  color:#6fb327 !important;
}

.odd{
  font-size: 10px !important;
}

td{
  font-size: 10px !important;
}
.modal .close{
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  background-color: #6fb327 !important;
  color:#fff !important;
  opacity: 1 !important;
  font-size: 14px;
  font-family: 'Nunito';
}

.modal{
  font-family: 'Nunito' !important;
}
.modal-title{
  font-family: 'Nunito' !important;
}
.modal-body{
  font-family: 'Nunito' !important;
}
.export{
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  background-color: #6fb327 !important;
  color:#fff !important;
  opacity: 1 !important;
  font-size: 14px;
  font-family: 'Nunito';
  border: #6fb327;
  border-radius: 23px;
}
.negritas{
  font-weight: bold !important;
}
.ocultar{
 display: none;
}

.mostrar{
  display: block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
