html, body {
  margin: 0;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
}

.bg-background-primary {
  background-color: #F5426c;
}

#login-page-body {
  background-image: url("/img/bg_login.jpg");
  background-size: cover;
  overflow-x: hidden; 
}

.progress-bar-color {
  background-color: #48bb78;
}

.nav-header-bg {
  background-color: #f0f2f3;
}

.footer-bg {
  background-color: #718096;
}

#lesson-drawer {
  background-color: #efefef;
}

.login-form {
  width: 100%;
  padding: 30px;
  text-align: center;
}

#login-form-container {
  margin: auto;
  background-color: rgba(255, 255, 255, 0.80);
}

#login-description {
  width: 90%;
  margin: auto;
  margin-top: 20%;
  padding: 10px;
  text-align: left;
}

#login-description-container {
  background-color: rgba(255,255,255,0.6);

}

.life-button-yellow {
  background-color: #f8c357;
  text-align: center;
  color: black;
  font-weight: 600;
  padding: 10px 30px 10px 30px;
  border-radius: 20px;
  font-size: medium;
  margin: 10px 0px 10px 0px;
}

.life-button-black {
  background-color: #535353;
  text-align: center;
  color: white;
  font-weight: 600;
  padding: 10px 30px 10px 30px;
  border-radius: 20px;
  font-size: medium;
  margin: 10px 0px 10px 0px;
}

#login-benefits-container {
  background-color: #333;
  color: white;
}

#login-benefits {
  color: white;
  width: 90%;
  margin: auto;
  margin-top: 40%;
  padding: 10px;
}


#lesson-drawer {
  background-color: #fee3e9;
}

.glide__bullet--active {
  background-color: #f5426C !important;
}

ul, #lessons_list {
  padding-left: 10px;
}

#lesson-drawer-btn {
  display: none;
}

.scroll-lock{ position:fixed !important; width: 100%; height: 100%}

.sidenav {
  min-width: 350px;
  z-index: 1;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

@media screen and (max-width: 1000px) {
  .sidenav {
    width: 0px;
    min-width: 0px;
    height: 100%;
    position: absolute;
    z-index: 1;

    transition: 0.5s;
  }

  #lesson-drawer-btn {
    display: inline;

  }

  .sidenav--collapse {
    width: 250px;
  }

  .sidenav--collapse-body {
    background-color: rgba(0,0,0,0.4);
  }
}

.sidenav::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  #login-description {
    width: 80%;
    margin: auto;
    margin-top: 5%;
    padding: 10px;
    text-align: left;
  }

  #login-benefits {
    color: white;
    width: 90%;
    margin: auto;
    margin-top: 5%;
    padding: 10px;
  }

  .login-form {
    width: 80%;
    margin: auto;
    margin-top: 5%;
    padding: 10px;
    text-align: center;
  }
}


#app {
  min-height: 100%;
}

.life-primary-color-bg {
  background-color: #F8C667 !important;
}

a {
  color: #F8C667;
}

.dropzone {
  width: 12rem;
  height: 4rem;
}

.remove-right-margin {
  margin-right: 0px !important;
}

.life-primary-color {
  color: #F8C667 !important;
}

.light-text-color {
  color: #4a5568;
}

.avatar {
  border-radius: 50%;
  max-width: 100px;
  min-width: 100px;
  margin: 25px;
}

.teammate-avatar {
  border-radius: 50%;
  max-width: 60px;
  min-width: 60px;
  margin: 18px;
}

#toast-message {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

#toast-message.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

/* navbar */
nav .logo {
  width: 70px;
}

body {
  background-color: #FFFFFF
}

.my-profile .info {
  margin-left: 40px;
}


/* Home view */

.box-info {
  background-color: #F7f7f7;
  width: 100%;
  margin: 20px;
  margin-left: 10px;
  /*border-radius: 25px;*/
}

.box-info .title {
  width: 100%;
  border-bottom: 1px solid rgb(197, 197, 197);
  padding-left: 15px;
  padding-top: 15px;
  margin-bottom: 15px;
}

.employee-boxes {
  width: 100%;
}

#courses-cards .card {
  margin: 10px;
}

#courses-cards .card-body {
  /*background-color: #F7f7f7;*/
  /*height: 150px;*/
}

.triple-dot:after {
  content: '\2807' !important;
}

#courses-cards {
  margin-top: 20px;
}



/* Login View */
.login-box {
  text-align: center;
  border-radius: 25px;
  border: 1px solid #e2e8f0;
  padding: 20px;

  width: 360px;
}

.login-box form {
  padding: 20px;
}

.login-box .logo {
  max-width: 150px;
}

.login-btn {
  background-color: #4A5568 !important;
  color: #FFFFFF !important;
  border-color: #4A5568 !important;
}

/* welcome view */
#welcome img {
  max-width: 400px;
  min-width: 250px;
}

@media (max-width: 768px) {
  #welcome {
    flex-wrap: wrap-reverse; 
  }

  #employee-cards {
    flex-wrap: wrap;
  }

  #courses-cards {
    flex-wrap: wrap;
  }

  #employee-cards .box-info {
    margin-right: 0px;
  }
}

.draggable {
  touch-action: none;
  user-select: none;

  max-width: 120px;
  min-width: 120px;

  height: 50px;

  display: flex;

  justify-content: center;
  align-content: center;
  align-items: center;

  border-width: 3px;
  border-color: rgb(177, 177, 177);
  border-radius: 5px;

  margin-left: 10px;
}

.dropzone {
  max-width: 120px;
  min-width: 120px;

  height: 50px;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

.custom-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.tippy-box {
  background-color: white !important;
  color: black;
  box-shadow: 0 8px 16px 0px rgba(0, 0, 0, 0.32);
  border-radius: 4px;
  border: 1px solid #C4C4C4;
}

.tippy-box > .tippy-arrow::before {
  color: white;
}

.not_started {
  background-color: #F7FAFC;
  color: #A0AEC0 !important;
}
.in_progress {
  background-color: #ECC94B;
  color: #fff !important;
}
.hold {
  background-color: #ED8936;
  color: #fff !important;
}
.finished {
  background-color: #68D391;
  color: #fff !important;
}
.low {
  background-color: #F7FAFC;
  color: #A0AEC0 !important;
}
.medium {
  background-color: #ECC94B;
  color: #fff !important;
}
.critical {
  background-color: #E53E3E;
  color: #fff !important;
}
.urgent {
  background-color: #ED8936;
  color: #fff !important;
}

.popover-container {
  display: flex !important;
  flex-direction: column !important;
}
.checkup-trabajo{
  background-color: #FAC269;
  /*color: #333333;*/
}
.checkup-salud{
  background-color: #1188DC;
  /*color: #333333;*/
}
.checkup-entorno-fisico{
  background-color: #FA5C7F;
  /*color: #333333;*/
}
.checkup-desarrollo-personal{
  background-color: #69C9B9;
  /*color: #333333;*/
}
.checkup-finanzas{
  background-color: #999999;
  /*color: #333333;*/
}
.checkup-diversion-recreacion{
  background-color: #F49668;
  /*color: #333333;*/

}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@font-face {
  font-family: "Chronicle";
  src: url('/fonts/ChronicleDisp-SemiboldItal.otf');
}

.node-selected{
  background-color: #fab4c5 !important;
}

.btn-open-presentation{
  background-color: #f5426c;
}
