body {
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
  background: url("/images/background.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

html {
  position: relative;
  min-height: 100%;
}

.fade {
  transition: opacity 0.5s linear !important;
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

.navbar {
  padding: 15px 10px;
  border: none;
  border-radius: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  font-weight: bold;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}

/* ---------------------------------------------------
  SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  height: 100vh;
  z-index: 999;
  background: #444;
  color: #FFF;
  transition: all 0.3s;
  overflow-y: scroll;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#sidebar.active {
  left: 0;
}

#dismiss {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #666;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dismiss:hover {
  background: #FFF;
  color: var(--color1);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.overlay.active {
  display: block;
  opacity: 1;
}

#sidebar .sidebar-header {
  padding: 20px;
  background: #666;
}

#sidebar ul.components {
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

#sidebar ul p {
  color: #FFF;
  padding: 10px;
}

#sidebar ul li a {
  padding: 10px;
  font-size: 1.1em;
  display: block;
  color: rgb(110, 168, 254);
  text-decoration: none;
}

#sidebar ul li a:hover {
  color: #FFF;
  background: #212529;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
  color: #212529;
  background: #FFF;
}

a[data-bs-toggle="collapse"] {
  position: relative;
}

.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

ul ul a {
  font-size: 0.9em !important;
  padding-left: 30px !important;
  background: var(--color2);
  text-decoration: none;
}

ul.CTAs {
  padding: 20px;
}

ul.CTAs a {
  text-align: center;
  font-size: 0.9em !important;
  display: block;
  border-radius: 5px;
  margin-bottom: 5px;
}

a.download {
  background: #FFF;
  color: var(--color1);
}

a.article,
a.article:hover {
  background: var(--color2) !important;
  color: #FFF !important;
}

/* ---------------------------------------------------
  CONTENT STYLE
----------------------------------------------------- */

#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 0;
}

.valor {
  font-size: 16pt;
}

#notificaciones {
  position: relative;
  top: -15px;
  left: -10px;
  border: 1px solid #FFF;
}

/* ---------------------------------------------------
  SELECT2
----------------------------------------------------- */

.select2-selection__rendered {
  line-height: 38px !important;
}

.select2-container .select2-selection--single {
  height: 38px !important;
}

.select2-selection__arrow {
  height: 36px !important;
}

/* ---------------------------------------------------
  INNER
----------------------------------------------------- */

.inner {
  overflow: hidden;
}

.inner img {
  transition: all 1.5s ease;
}

.inner:hover img {
  transform: scale(1.5);
}

/* ---------------------------------------------------
  FUENTES
----------------------------------------------------- */

.oswald {
  font-family: 'Oswald', sans-serif;
}

.noto {
  font-family: 'Noto Sans', sans-serif;
}