:root {
  --main-bg-color: coral;
  --main-bg-color-dark: #101010;
  --active-text-color: #0027ff;
  --main-text-color: rgb(39, 39, 39);
  --main-text-color-hover: rgb(131, 131, 131);
  --main-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NAVIGATIONS */

ul {
  margin: 0px;
  padding: 0px;
}
ul li {
  text-decoration: none;
}
li a {
  color: black;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--main-text-color);
}
.cursor-pointer {
  cursor: pointer;
}
.active {
  font-weight: 500;
}
.m-0 {
  margin: 0px;
}
.mt-0 {
  margin-top: 0px;
}
.w-15 {
  width: 150% !important;
}
.p-1 {
  padding: 1rem;
}
.title-1 {
  font-size: 1.5rem;
  font-weight: 400;
}
.border-b {
  border-bottom: 1px solid blue;
}
.login {
  margin-right: 25px;
}
.wahio-container {
  margin: 0 auto;
  width: 100%;
}
.sub-container {
  max-width: 440px;
  margin: 0px auto;
  padding: 54px 5px;
  border: 1px solid rgba(117, 117, 117, 0.44);
  border-radius: 5px;
}
/* FOOTER */
footer {
  clear: both;
}
ul.h-list {
  display: inline-grid;
  text-align: left;
  width: 17%;
}
.h-list li {
  display: inline;
  text-decoration: none;
}
.wahio-signature {
  padding: 20px 5px;
}
/* BORDER */
.border-b {
  border-bottom: 1px solid rgb(155, 155, 155, 0.2);
}
.title-company {
  font-weight: 500;
}
/* POSITIONS */
.p-fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.content-12 {
  width: 100%;
}
.content-3 {
  width: 25%;
}
.content-4 {
  width: 33%;
}
.content-division {
  float: left;
  width: 100%;
}
.content-left {
  float: left;
  width: 50%;
}
.content-right {
  float: right;
  width: 50%;
}
.sub-content {
  font-size: 1.3rem;
  padding: 15px;
  max-width: 500px;
  margin: 10px auto;
  text-align: left;
}
.center {
  text-align: center;
}
.padding-header {
  padding-top: 65px;
}
/* MODAL POPUP */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background: #ffffffc9;
}
.modal-small {
  max-width: 500px;
}
.modal-content {
  text-align: left;
  background-color: #fff;
  margin: 80px auto;
  padding: 20px;
  font-size: 1rem;
  border: 1px;
  width: 80%;
  box-shadow: 1px 2px 12px #92929257;
  border-radius: 5px;
  animation-name: modalopen;
  animation-duration: 0.5s;
}
.modal-header {
  padding: 10px;
}
.modal-header .btn-close {
  position: relative;
  top: -42px;
  font-size: 2rem;
  right: -6px;
}
.modal-title {
  font-size: 1.2rem;
  font-weight: 500;
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.btn-close {
  color: var(--text-primary-2);
  float: right;
  font-size: 1.5rem;
  right: 14px;
  position: absolute;
  font-size: 2rem;
  top: 0px;
}
.btn-close:hover,
.btn-close:focus {
  color: var(--text-primary);
  text-decoration: none;
  cursor: pointer;
}

.checkbox-container {
  display: block;
  text-align: left;
  position: relative;
  padding-left: 25px;
  margin: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  border-radius: 4px;
  box-shadow: inset 0 0 2px #61616169;
  width: 20px;
  background-color: #dedede;
}

/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkbox {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkbox {
  background-color: blue;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkbox:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkbox:after {
  left: 7px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* MAIN PAGE */
.home-title {
  max-width: 650px;
  display: inline-block;
  font-size: 1.2rem;
}
.home-title h1 {
  font-size: 4rem;
  margin-bottom: 0px;
  line-height: 1;
}
.wahio-image {
  width: 100%;
  position: relative;
  max-width: 1000px;
  overflow: hidden;
  box-shadow: 3px 3px 20px 0px #ababab54;
  border-radius: 20px;
  margin: 35px auto;
}
.hover-background {
  position: absolute;
  width: 100%;
  height: 100%;
  background: blue;
}
.custom-height {
  height: 450px;
}
.wahio-container img {
  width: 100%;
}
/* LINKS */
.go-link {
  font-size: 1.4rem;
  font-weight: 400;
  color: #0035ff;
}
.go-link {
  transition: 0.3s all;
  display: inline-block;
  border: 0px solid rgba(105, 105, 105, 0.258);
  border-radius: 5px;
  padding: 0.31rem 1rem;
  color: #ffffff;
  background: #000000;
  font-weight: 500;
  font-size: 1rem;
}
.go-link :hover {
  background: #0035ff;
}

/* FORMS */
input {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"] {
  padding: 9px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid rgba(134, 134, 134, 0.4);
  width: 100%;
  font-weight: 500;
  background: transparent;
  margin: 5px 3px;
}
.logo-wahio {
  margin: 12px auto;
  text-align: center;
}
.logo-wahio img {
  width: 50px;
  margin: 0 auto;
}
.icon-button {
  position: relative;
  right: 40px;
  top: 3px;
}
.btn-with-icon {
  padding-right: 40px !important;
}
.btn {
  cursor: pointer;
  text-align: center;
  background: rgba(0, 39, 255, 0.11);
  padding: 6px 20px;
  font-size: 1rem;
  border: 0px;
  font-weight: 500;
  /* box-shadow: 0px 0px 0px #e6e6e6; */
  transition: all 0.3s;
  border-radius: 4px;
  margin: 15px;
  color: blue;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
}
/* COLORS */
.style-black {
  background: #101010 !important;
  border-bottom: 1px solid #8484844a !important;
  /* color: blue; */
}
.style-black a {
  color: #fff !important;
}
.style-black .active {
  background: var(--main-bg-color-dark);
}
.bg-blue {
  background: blue;
  color: #fff;
}
.bg-black {
  background: #000;
  color: #fff;
}
.bg-white {
  background: #fff;
  color: #000;
}
.text-white {
  color: #fff !important;
}
.text-black {
  color: #000 !important;
}
.text-red {
  color: rgb(226, 52, 52);
}
.text-grey {
  color: #c1c1c1 !important;
}
.icon-btn {
  position: relative;
  left: -37px;
  color: #fff;
  top: 2px;
}
/* TITLES */
h1 {
  font-size: 4rem;
  line-height: 3.6rem;
}

/* alerts */
.hide {
  display: none;
}
.invalid {
  display: inline;
  color: rgb(226, 52, 52);
}

.App-logo {
  animation: App-logo-spin infinite 20s linear;
  height: 40vmin;
  pointer-events: none;
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.App {
  background: #ffffff;
  color: #232323;
}
/* NAVIGATIONS */
.App .p-fixed {
  background: #101010;
}
.App h1 {
  color: rgb(17, 17, 17);
}
.App h2 {
  color: rgb(17, 17, 17);
}
.App h3 {
  color: rgb(17, 17, 17);
}
.App li a {
  color: #2c2c2c;
}
.wahio-title {
  font-weight: 500;
}
.App .nav-title {
  color: #fff;
}

.App .wahio-container {
  max-width: 2000px;
}
/* STATIC DESIGN FOR CONTAINER */
/* TITULOS */
.wahioMainTitle h1 {
  float: left;
  margin-right: 15px;
}
.wahioMainTitle .btn {
  margin: 5px;
}
/* BOTONES */
.btn-table {
  padding: 3px 15px;
  font-size: 0.9rem;
  border-radius: 39px;
  background-color: #ffffff;
  color: #b1b1b1;
  border: 1px solid;
}
.wahioBtnRounded {
  background: #ffffff;
  color: var(--active-text-color);
  border-radius: 9px;
  border: 1px solid;
  transition: all 0.3s;
}
.wahioBtnRounded:hover {
  border: 1px solid #ffffff;
  box-shadow: 3px 2px 14px #7b7b7b12;
}
.btn-borde {
  border: 1px solid;
  border-radius: 50px;
  margin: 4px;
}

/* LOGIN DESIGN */
.wahioLogin {
  padding: 20px;
  width: 100%;
  max-width: 300px;
  margin: 39px auto;
  background: white;
  border-radius: 9px;
  box-shadow: 3px 1px 34px 0px #0000001a;
}
.wahioLogin input[type="text"] {
  width: 268px;
}
.wahioLogin .btn {
  margin: 0 auto;
  display: table;
}
/* CONFIGURACION DE INPUTS */
content-center input {
  margin-bottom: 8px;
}

form.formSearch {
  display: inline-block;
  border-radius: 10px;
  border: 1px solid #dadada;
  overflow: hidden;
}
form.formSearch input[type="text"] {
  border: 0px;
}
form.formSearch span {
  padding: 15px;
}
/* SISTEMA DE POSICIONAMIENTO Y TAMAÑOS*/
.font-07 {
  font-size: 0.7rem;
}
.font-08 {
  font-size: 0.8rem;
}
.font-09 {
  font-size: 0.9rem;
}
.padding-20 {
  padding: 20px;
}
.rounded {
  border-radius: 8px;
}
.content {
  background: white;
  padding: 20px;
  border-radius: 10px;
}
.content-center {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
}
.position-abosolute {
  position: absolute;
}
.position-relative {
  position: relative;
}
.float-left {
  float: left;
}
.float-left
/* SISTEMA DE COLORES */
hr {
  border: 1px solid #efefef !important;
}
.bg-primary {
  background: #2962ff;
}
.bg-secondary {
}
.bg-success {
  background: #00c853;
}
.bg-danger {
}
.bg-warning {
}
.bg-info {
}
.bg-light {
  background: #f8f9fa !important;
}
.bg-dark {
}
.bg-white {
}
.text-primary {
  color: #2962ff;
}

.text-secondary {
  color: rgb(116, 116, 116);
}

.text-success {
  color: #00c853;
}

.text-danger {
  color: #c62828;
}

.text-warning {
  color: #ff3d00;
}

.text-info {
}

.text-light {
}

.text-dark {
  color: black;
}

.text-muted {
}

.text-white {
  color: white;
}
/* GRILLAS SISTEMA */
.col-icon {
  width: 50px;
  text-align: center;
}
.col-1 {
  width: 8.3333333333333333%;
}
.col-2 {
  width: 16.66666666666667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.33333333333333%;
}
.col-5 {
  width: 41.66666666666667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 5833333333333333%;
}
.col-8 {
  width: 66, 66666666666667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.33333333333333%;
}
.col-11 {
  width: 91.66666666666667%;
}
.col-12 {
  width: 100%;
}

/* CONFIGURACION DE TABLAS */
th,
td {
  border-bottom: 1px solid rgb(239, 239, 239);
  border-collapse: collapse;
  padding: 10px;
}
th {
  text-align: left;
  /* background: black; */
  font-size: 0.9rem;
  font-weight: 400;
  color: #a0a0a0;
}
#visible {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-property: opacity;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
}
#nav-lateral {
  background: white;
  /* width: 210px; */
  /* display: inline-block; */
  float: left;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  height: 100%;
  border-right: 1px solid rgba(136, 136, 136, 0.25);
  /* box-shadow: -2px -1px 20px #afafaf47; */
  transition: all 0.4s;
  z-index: 10;
}
#nav-lateral header {
  margin-right: 15px;
  padding-top: 51px;
  width: 250px;
}
#nav-lateral ul li {
  width: 100%;
  display: flex;
}
#nav-lateral ul li a {
  width: 100%;
  padding: 10px 10px 10px 30px;
  margin: 0px;
  transition: all 0.3s;
}
#nav-lateral ul li a span {
  font-size: 1.1rem;
  margin-right: 20px;
}
.wahioMenuLarge {
  width: 250px;
  min-width: 250px;
  transition: all 0.2s;
}
.wahioMenuSmall {
  width: 76px;
  min-width: 76px;
  transition: all 0.2s;
}
/* NAVEGACION SUPERIOR */
#nav-superior ul li {
  display: inline-flex;
  margin: 0px;
  transition: all 0.3s;
}
#nav-superior ul li a {
  padding: 15px;
  margin: 0px;
  transition: all 0.3s;
}
#nav-superior .wahioMenuIcon {
  padding-left: 15px;
}
#nav-superior span.wahio-heartbeat {
  font-size: 30px;
  position: absolute;
  top: 11px;
  margin-left: 4px;
}
#nav-superior {
  width: 100%;
  background: white;
  position: fixed;
  float: left;
  border-bottom: 1px solid #f1f1f1;
  z-index: 11;
}
ul#ul-left {
  float: left;
  margin-left: 18px;
}
ul#ul-right {
  float: right;
  margin-right: 18px;
}
.nav-horizontal ul li {
  display: inline-flex;
}
nav ul li a {
  padding: 12px 20px 12px 20px;
  color: #636363;
  text-decoration: none;
}
.nav-horizontal {
  padding-left: 20px;
  border-bottom: 1px solid whitesmoke;
}
.wahioBody {
  clear: both;
  display: flex;
  top: 52px;
  position: relative;
  width: 100%;
}
#wahioLeftNo {
  height: 200px;
}

footer {
  /* width: 250px; */
  margin-top: 20px;
  padding: 20px;
  color: #636363;
  text-align: center;
  font-size: small;
  /* display: inline; */
}
.active {
  background: white;
  font-weight: 500;
  color: var(--active-text-color);
  margin: 11px;

  /* box-shadow: inset 3px 0px 0px var(--active-text-color); */
  transition: all 0.3s;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: white;
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(202, 202, 202);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #bbbbbb;
}

/* DISEÑO DEL MENU DE NEVEGACION */
/* Dropdown btn */
.dropbtn {
  margin-left: 7px;
  padding: 6px;
  background-color: #ffffff;
  color: #777777;
  font-size: 1.2rem;
  font-family: Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  font-weight: 400;
  border-radius: 10px;
  border: 1px solid #dadada;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  border-radius: 8px;
  overflow: hidden;
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
  background-color: rgb(240, 240, 240);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown btn when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #ffffff;
}
