/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@tailwind base;
@tailwind components;
@tailwind utilities;

body {
    font-family: "Open Sans", sans-serif;
  }

  @media (min-width: 1299px) {
    *{
        font-size:15px;
    }
  }

  :root {
    --gray: #e0dcdc;
    --purple: #923375;
    --cyan: #00a6a0;
    --blue: #29355e;
    --varyDarkBlue: hsl(234, 12%, 34%);
    --grayishBlue: hsl(229, 6%, 66%);
    --veryLightGray: hsl(0, 0%, 98%);
    --weight1: 200;
    --weight2: 400;
    --weight3: 600;
  }

  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
    background: #fff;
    transition: all 0.5s;
    z-index: 997;
    height: 86px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    line-height: 0.8;
    margin-bottom: 50px;
    margin-top: 100px;
  }

  /*--------------------------------------------------------------
  # Dashboard
  --------------------------------------------------------------*/

  /* Navigation Menu  */
.MENU li>ul {
    transform: translatex(100%) scale(0);
    z-index: 50;
}

.MENU li:hover>ul {
    transform: translatex(101%) scale(1);
    z-index: 50;
}

.MENU li>button svg {
    transform: rotate(-90deg);
    z-index: 50;
}

.MENU li:hover>button svg {
    transform: rotate(-270deg);
    z-index: 50;
}

.MENU .group:hover .group-hover\:scale-100 {
    transform: scale(1);
    z-index: 50;
}

.MENU .group:hover .group-hover\:-rotate-180 {
    transform: rotate(180deg);
    z-index: 50;
}

.MENU .scale-0 {
    transform: scale(0);
    z-index: 50;
}

.MENU .min-w-32 {
    min-width: 8rem;
    z-index: 50;
}

.MENU a:link {
    text-decoration: none;
    color: black;
    z-index: 50;
}

.MENU a:visited {
    text-decoration: none;
    color: black;
    z-index: 50;
}

.MENU a:hover {
    text-decoration: none;
    color: black;
    z-index: 50;
}

.MENU a:active {
    text-decoration: none;
    color: black;
    z-index: 50;
}

/* Data Tables todas las vistas */
#data-table {
    border-collapse: collapse;
    width: 100%;
}
#data-table th, #data-table td {
    padding: 2px;
    text-align: center;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}
#data-table tr td {
    border-bottom: 1px solid #000000;
}
