/*@import url("../../../../shared/fonts/Montserrat/index.css");*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("../../../../shared/fonts/uicons-thin-chubby/css/uicons-thin-chubby.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
  list-style: none;
  font-family: "Montserrat", sans-serif;
}
body {
  background: var(--background-color-300);
  color: var(--font-color);
}

body::-webkit-scrollbar {
  width: 8px;
  background: var(--background-color-300);
  cursor: pointer;
}
body::-webkit-scrollbar-track {
  width: 8px;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--input-border-400);
  border-radius: 6px;
}
body::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color);
}

header {
  width: 100%;
  height: 80px;
}
.logo-header {
  height: 36px;
}
.container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/*.sidebar {
  width: 300px;
  min-height: 100vh;
  height: 100%;
  background-color: var(--background-color-200);
  display: flex;
  position: fixed;
  box-shadow: var(--shadow-md-100);
}

.control-sidebar {
  position: absolute;
  z-index: 2;
  left: 48px;
  top: 72px;
  width: 24px;
  height: 24px;
  background: var(--background-color-300);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--theme-color);
  font-size: 0.7rem;
  display: none;
  cursor: pointer;
}

.sidebar-main {
  width: 60px;
  min-height: 100vh;
  height: 100%;
  background: var(--gradiente);
  padding: 20px 12px;
}
.sidebar-main img {
  width: 32px;
  margin: 0 2px;
}

.main-menu {
  margin-top: 54px;
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.main-menu li {
  width: 100%;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-menu li a {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--side-color);
  font-size: 1.1rem;
}

.main-menu li a.active {
  background: rgba(255, 255, 255, 0.2);
}

.main-menu li a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.main-menu li a:hover i {
  transform: scale(1.1);
}
.sidebar-content {
  width: 240px;
  min-width: 240px;
  min-height: 100vh;
  height: 100%;
  padding: 20px;
  background-color: var(--background-color-200);
}*/
/*.sidebar-header {
  display: flex;
  /*flex-direction: column;*/
/* align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--input-border-400);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 700;
}
.sidebar-title i {
  margin-right: 8px;
}

.sidebar-title + a {
  opacity: 0;
}

.brand {
  margin: 36px 0 64px 0;
  width: 100%;
  padding: 8px;
  display: flex;
  border-radius: 6px;
  gap: 16px;

  align-items: center;
  background: var(--background-color-300);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}
.brand p {
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
.brand p small {
  font-weight: 300;
}

.sidebar-content ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sidebar-content ul li {
}

.sidebar-content a {
  width: 100%;
  font-size: 0.8rem;
  display: flex;
  gap: 12px;
  color: var(--mute-color-300);
  font-weight: 400;
}
.sidebar-content ul a i {
  font-size: 1rem;
  width: 24px;
}

.sidebar-content a:hover i {
  transform: scale(1.2);
}*/

.back-link {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background-color-300);
  color: var(--font-color);
  font-size: 0.9rem;
  cursor: pointer;
}

.main-container {
  width: calc(100% - 300px);
  margin-left: 300px;
  display: flex;
  flex-direction: column;
  padding: 0 24px;
}
.main-container header {
  height: 65px;
  min-height: 65px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--input-border-400);
}
/*
.notify-container {
  display: flex;
  gap: 16px;
  align-items: center;
}
.notify-container li {
}
.notify-container li a {
  display: flex;
  color: initial;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--font-color);
}
.notify-container li a:hover i {
  transform: scale(1.2);
}

.notification-bar,
.news-bar,
.account-bar {
  width: 300px;
  height: 100vh;
  min-height: 100vh;
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5;
  background-color: var(--background-color-200);
  box-shadow: var(--shadow-lg-100);
  display: none;
}

.notification-bar .sidebar-header,
.news-bar .sidebar-header,
.account-bar .sidebar-header {
  overflow: hidden;
  justify-content: flex-start;
}
.notification-bar .sidebar-header .sidebar-title,
.news-bar .sidebar-header .sidebar-title,
.account-bar .sidebar-header .sidebar-title {
  animation: moving 0.5s ease;
}

.notifications,
.news {
  width: 100%;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.notifications li,
.news li,
.notifications li div,
.news li div,
.account-bar li {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
}
.notifications li {
  flex-direction: column;
}

.notifications li div {
  align-items: center;
}
.news li div {
  flex-direction: column;
  align-items: flex-start;
}

.news li img,
.profile-pic img {
  width: 100px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
  box-shadow: var(--shadow-sm-200);
}

.notifications li i,
.news li i {
  font-size: 1rem;
}

.account-bar li i {
  font-size: 0.8rem;
}

.profile-pic {
  padding: 24px 0;
  border-bottom: 1px solid var(--input-border-300);
}

.account-bar ul {
  margin-top: 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.account-bar ul li {
  width: 100%;
  display: flex;
  align-items: center;
}
.account-bar ul li a {
  font-size: 0.8rem;
  color: var(--font-color);
}

.account-bar ul li a i {
  font-size: 0.9rem;
  margin-right: 8px;
}*/

.separator {
  padding-top: 12px;
  border-bottom: 1px solid var(--input-border-300);
  margin-bottom: 12px;
}

/*.alerts {
  width: 300px;
  height: 300px;
  min-height: 300px;
  padding: 24px;
  position: fixed;
  bottom: 24px;
  right: 18px;
  z-index: 5;
  background-color: var(--background-color-100);
  /* box-shadow: 0 0 15px 2px rgba(0,0,0,0.06);*/
/*box-shadow: var(--shadow-lg-100);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.alerts {
  display: none;
}

.alerts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.alerts h2 {
  animation: blink 1.5s infinite;
}
.alerts i {
  font-size: 3rem;
  animation: blink 1.5s infinite;
}
.alerts p {
  line-height: 1.4rem;
}*/

@keyframes showing {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 300px;
    opacity: 1;
  }
}

@keyframes accountshow {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 200px;
    opacity: 1;
  }
}

@keyframes showalert {
  /* from{bottom: -300px; opacity: 0;}
    to{bottom:24px; opacity: 1;}  */
  0% {
    bottom: -300px;
    opacity: 0;
  }
  50% {
    bottom: 70px;
    opacity: 0.8;
  }
  100% {
    bottom: 24px;
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.hide {
  display: none;
}
.show {
  display: block;
  animation: showing 0.5s ease;
}
.show-account {
  display: block;
  animation: accountshow 0.5s ease;
}
.show-alert {
  display: flex;
  animation: showalert 1s ease-in-out;
}
/*
.notify::after {
  position: relative;
  content: "";
  width: 8px;
  height: 8px;
  left: -4px;
  background: var(--danger-color);
  border-radius: 50%;
}*/

.content {
  width: 100%;
  height: 100%;
  min-height: calc(100% - 120px);
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  width: 100%;
  background: var(--background-color-200);
  min-height: 400px;
  border-radius: 12px;
  padding: 20px;
}
.panel-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.split-panel {
  display: flex;
  gap: 32px;
}

.split-col,
.split-col-4 {
  width: 100%;
}

.split-col-1 {
  width: 25%;
}
.split-col-2 {
  width: 50%;
}
.split-col-3 {
  width: 75%;
}
/*
.card-photo {
  width: 100%;
  max-width: 180px;
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-photo label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--font-color);
}

.card-photo img {
  border-radius: 8px;
  box-shadow: var(--shadow-sm-200);
  margin-bottom: 8px;
}*/

.control-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.control-row .checkbox-h-label,
.control-row .radio-h-label {
  margin: 18px 24px 0 0;
}

.control-row .checkbox-v-label,
.control-row .radio-v-label {
  margin: 0 24px 0 0;
}
/*
.checklist {
  width: 100%;
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.checklist li,
.checklist li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--mute-color-300);
}
.checklist li a {
  color: var(--font-color);
}
.checklist li i {
  font-size: 1.1rem;
}
*/
.form-control label a {
  color: #0000ff;
}
.form-pass {
  height: 54px;
}
.pass {
  position: relative;
  top: -23px;
  left: calc(100% - 24px);
  cursor: pointer;
  font-size: 0.9rem;
}

footer {
}
/*
.table-default tr {
  display: flex;
}

/* TABS */
/*
.tabs {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.tab-buttons,
.tab-account {
  width: 100%;
  display: flex;
  /*gap: 8px;*/
/* position: relative;
  /*border-bottom: 3px solid var(--background-color-300);*/
/* overflow-x: scroll;
}
.tab-account {
  margin-top: 24px;
  gap: 12px;
}
.tab-buttons::-webkit-scrollbar,
.tab-account::-webkit-scrollbar {
  display: none;
}
*/
/*.tab,
.tab-account-btn {
  min-width: 120px;

  border: none;
  
  background: var(--background-color-200);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--font-color);
  cursor: pointer;
}
.tab {
  padding: 12px 16px 16px 16px;
}
.tab-account-btn {
  padding: 8px;
}*/
/*.tab.active {
  
  font-weight: 700;
}
.tab-account-btn i {
  margin-right: 8px;
}
.tab-account-btn.active {
  font-weight: 600;
  border-bottom: 3px solid var(--success-color);
}

.tabs-container,
.tab-acconunt-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tab-content,
.tab-account-content {
  width: 100%;

  display: none;
}

.tab-account-content {
  padding: 16px 0;
}

.tab-content {
  padding: 32px 0 16px 0;
  animation: moving 0.2s ease;
}
*/
@keyframes moving {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*
.tab-content.active,
.tab-account-content.active {
  display: block;
}
.line {
  position: absolute;
 
  width: 36px;
  height: 6px;
  top: 36px;
  left: 42px;
  background: var(--primary-color);
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.border-line {
  width: 100%;
  position: absolute;
  height: 3px;
  top: 38px;
  left: 0;
  background: var(--background-color-300);
  border-radius: 3px;
}
*/
/*.progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
}
.progress-container li {
  font-size: 0.7rem;
}

.progress-bar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 2px;
  border-radius: 2px;
  border: 1px solid var(--input-border-300);
}
.progress {
  height: 4px;
  border-radius: 3px;
}
*/
.login-container {
  width: 100%;
  max-width: 768px;
  height: 600px;
  border-radius: 16px;
  background: var(--white-color);
  box-shadow: var(--shadow-sm-200);
  margin: calc((100vh - 600px) / 2) auto;
  overflow: hidden;
  display: flex;
}

.splash {
  position: relative;
  width: 50%;
  height: 600px;

  /*  background: var(--gradiente);*/
  /*background: url("../img/splash.webp") no-repeat center center;
  background-size: cover;*/
  /* linear-gradient(rgba(0,0,0,0.1), rgba(255,0,0,0.1));*/
}

.splash-load {
  /* background: url("../img/splash.webp") no-repeat center center;*/
  background: url("../../../../shared/images/splash.webp") no-repeat;
  background-size: cover;
}
.overlay {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 32px;
  padding-top: 48px;
  background: linear-gradient(
    180deg,
    rgba(96, 196, 98, 0.9) 30%,
    rgba(44, 157, 96, 0.8) 60%,
    rgba(23, 99, 58, 0.9) 90%
  );
  /*  background: var(--theme-color);*/
  z-index: 1;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  /* gap: 48px;*/
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 400;
}
.splash-content {
  position: relative;
  width: 100%;
  height: 600px;
  padding-bottom: 32px;

  z-index: 1;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--white-color);
  font-size: 1rem;
  font-weight: 400;
}

.splash-image {
  width: 280px;
  height: 280px;
  /*width: 300px;*/
  /* margin: 64px 0 48px 0;*/
  margin: 48px 0;
  filter: opacity(20%);
  /* filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.8));*/
}

.splash-logo {
  width: 240px;
}
#splash-logo {
  display: none;
  width: 300px;
}

#splash-btn {
  display: flex;
  align-item: center;
  justify-content: center;
  width: 320px;
  padding: 10px 64px;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm-300);
  display: none;
  margin-top: 48px;
  background-color: transparent;
  border: 2px solid var(--white-color);
  min-height: 48px;
}

#copy {
  font-size: 0.7rem;
  font-weight: 400;
  text-align: center;
}

.login-form,
.login-content,
.forget-content,
.reset-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-form {
  width: 50%;
  height: 600px;
  background: var(--white-color);
  /*gap: 24px;*/
}
.login-content,
.forget-content,
.reset-content {
  width: 100%;
  height: 600px;
  padding: 48px 32px;
  /*background: var(--white-color);*/
  /*display: flex;
  flex-direction: column;
  align-items: center;*/
  gap: 24px;
}

/*.login-form form,*/
.login-content form,
.forget-content form,
.reset-content form {
  width: 100%;
  margin-top: 48px;
}

.forget-link {
  width: 100%;
  font-size: 0.8rem;
  color: var(--font-color);
}
.forget-link:hover {
  text-decoration: underline;
}

#login-btn:hover {
  transform: none;
}
.bg-body {
  background: url("../../../../shared/images/cover.webp") no-repeat;
  background-size: cover;
}

/**
  * error
  */

/*.bg-error,*/
.bg-login {
  background: url("../img/bgabs-transparent.webp") no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-color: var(--bg-color);
}

.bg-error {
  color: #193540;
  color: var(--white-color);
  /* background: url("../../../../shared/images/cover.webp") no-repeat;
  background-size: cover;*/
  background: #60ba62;
}

.error-container {
  width: 100%;
  height: 800px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.error-container img {
  width: 120px;
}

.error {
  font-size: 10rem;
  font-weight: 900;
}

.error-container h3 {
  font-size: 2rem;
}

.error-container p {
  font-size: 1.2rem;
}

.error-container .btn-error {
  min-width: 150px;
  border-radius: 6px;
  padding: 15px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-color);
}

/**
  * MEDIA QUERIES
  */

@media screen and (max-width: 1180px) {
  .split-panel {
    flex-wrap: wrap;
  }

  .split-col-2,
  .split-col-3 {
    width: 100%;
  }
  .split-col-1 {
    width: calc((100% - 32px) / 2);
  }
}

@media screen and (max-width: 1080px) {
  .sidebar {
    width: 60px;
    z-index: 3;
  }

  .sidebar-content {
    display: none;
    box-shadow: var(--shadow-lg-100) !important;
  }

  .sidebar-title + a {
    opacity: 1;
  }

  .main-container {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
  .control-sidebar {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .splash {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }
  .login-container {
    box-shadow: none;
    border-radius: 0;
    height: 100vh;
    margin: 0 auto;
    justify-content: center;
    background: transparent;
  }
  .login-form {
    width: 70%;
    height: 100%;
    background: transparent;
  }
  .login-content {
    display: none;
  }
  .overlay {
    width: 100%;
    height: 100%;
  }
  .splash-content p {
    font-size: 1.1rem;
  }
  .splash-image {
    width: 320px;
    height: 320px;
  }
  #splash-forget,
  #splash-reset {
    display: none;
  }
  #splash-logo,
  #splash-btn {
    display: block;
  }
  #splash-btn {
    width: 320px;
  }

  .table-fixed thead th:first-child,
  .table-fixed tbody td:first-child {
    min-width: 200px;
    width: 200px;
  }
  .table-fixed thead th:first-child span + span {
    display: flex;
  }

  #form-login .form-control input {
    height: 48px;
    padding: 8px 12px;
    font-size: 0.9rem;
  }
  #form-login .form-control .btn {
    min-height: 48px;
    font-size: 1.2rem;
  }
  #form-login .form-control label {
    font-size: 0.8rem;
  }
  .forget-link {
    font-size: 0.9rem;
  }

  .pass {
    top: -30px;
    left: calc(100% - 30px);
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  .login-form {
    width: 90%;
  }

  .split-col-1 {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .splash-image {
    margin: 40px 0 36px 0;
  }
  #splash-btn {
    width: 210px;
  }
}

@media screen and (max-width: 450px) {
  .logo-header {
    height: 36px;
    object-fit: cover;
    object-position: -36px;
  }
}

@media screen and (max-width: 400px) {
  .splash-content {
    font-size: 1rem;
  }
  .splash-image {
    margin: 40px 0;
  }
  #splash-logo {
    width: 240px;
  }
  #copy {
    font-size: 0.6rem;
  }
  #splash-btn {
    padding: 10px 64px;
    font-size: 1rem;
  }
}
