:root {

  --ubold: #36404a;
  --green: #5fbeaa;

  --silver: #A2AAAD;
  --blue: #4C8BF5;
  --loading: rgba(255,255,255, 0.6);

  --primary: #4F46E5;   /* main buttons, active menu */
  --primary-light:  #EEF2FF;   /* soft background highlight */
  --primary-border: #C7D2FE;

  --main-bg: #F8FAFC;   /* page background */
  --card-bg: #F1F5F9;
  --sidebar-bg: #FFFFFF;
  --hover-bg: #F3F4F6;

  --border-light: #E5E7EB;
  --border-soft: #E2E8F0;

  --green-bg: #ECFDF5;
  --green-text: #16A34A;

  --yellow-soft: #FEF3C7;
  --purple-soft: #F3E8FF;
  --blue-soft: #DBEAFE;

  --text-primary: #111827;   /* titles */
  --text-secondary: #6B7280;   /* descriptions */
  --text-light: #9CA3AF;   /* subtle text */

  --red-orange: #fa602f;
  --red-orange-light: #fce9e3;

  --grey-light-bg: #faf8f7;

}

/*ul { margin-left:-25px }*/

b { color: black; }

body {
  position: relative;
  background-color: var(--main-bg);
}

.main-bg {
  background-color: var(--main-bg) !important;
}

.bg-orange {
  background:#fff9f4;  
}

.bg-yellow {
  background-color: var(--yellow-soft);
  border: 1px solid orange;
}

.bg-primary-app {
  background-color: var(--blue);
}
.bg-primary-light {
  background-color: var(--primary-light);
}
.border-primary {
  border: 1px solid var(--primary-border);
}
.bg-green-light {
  background-color: var(--green-bg);
}
.bg-green {
  background-color: var(--green);
}
.card-bg {
  background-color: var(--card-bg);
}

.box-icon {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}
.box-icon i{
  font-size: 30px;
}

pre {
  white-space: pre-wrap;       /* Since CSS 2.1 */
  white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
  white-space: -pre-wrap;      /* Opera 4-6 */
  white-space: -o-pre-wrap;    /* Opera 7 */
  word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

.login-box {
  height: 100vh;
  width: 100vw;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-form {
  width: 100vw;
  height: 100vh;
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: black;
}

.login-form.login-2 {
  /*background: rgba(255,255,255, 0.6);*/
  background: rgba(0,0,0, 0.4);
  width: 70vw;
  height: 80vh;
  border-radius: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  position: relative;
} 

.login-2 .left-login{
  padding: 10%;
  width: calc(80vw - 35vw);
}

.login-2 .left-login h2 {
  color: white !important;
}

.login-quotes .quote-item {
  background-color: rgba(0,0,0,0.8);
  padding: 15px 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  height: 100px;
/*  width: 100%;  */
  position: relative;
  display: none;
}

.login-quotes .quote-author {
  width: 100%;
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.page-loading {
  position: absolute;
  top: 0;
  z-index: 9999;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-loading .loading-base {
  padding: 15px 50px;
  min-width: 250px;
  background-color: white;
  border-radius: 5px;
  justify-content: center;
  justify-items: center;
  display: flex;
}

#loading-login {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  /*background-color: red;*/
  background-color: var(--loading);
  border-radius: 15px;
  z-index: 1;
}

.loading-content {
  display: flex;
  gap:10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #36404a;
}

.login-content {
  width: 370px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 35px;
  border-radius: 15px;
  position: relative;
}

.login-content-2 {
  position: absolute;
  right: 0;
/*  width: 300px;*/
  width: 25vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10% 35px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.login-content-2 .login-header h2 {
  color: white !important;
}

.login-logo {
  height: 120px;
  width: 120px;
  border-radius: 100%;
  position: absolute;
  top: -10px;
  left: 50%;
  -moz-transform: translate(-50%, -50%); /* Firefox */
  -ms-transform: translate(-50%, -50%);  /* IE 9 */
  -webkit-transform: translate(-50%, -50%); /* Safari and Chrome*/
  -o-transform: translate(-50%, -50%); /* Opera */
  transform: translate(-50%, -50%);
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 9;
}

.login-logo-2 {
  height: 120px;
  width: 120px;
  border-radius: 100%;
  border: 1px solid lightgrey;
}

.login-logo img,
.login-logo-2 img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  object-fit: cover;
}

.font-10 { font-size: 10px !important; }
.font-12 { font-size: 12px !important; }
.font-14 { font-size: 14px !important; }
.font-16 { font-size: 16px !important; }
.font-18 { font-size: 18px !important; }
.font-20 { font-size: 20px !important; }
.font-28 { font-size: 28px !important; }
.font-36 { font-size: 36px !important; }
.font-italic { font-style: italic; }

.lh-0 { line-height:0px !important; }
.lh-5 { line-height:5px !important; }
.lh-10 { line-height:10px !important; }

.w-50 { width:50% !important; }
.wpx-100 { width:100% !important; }

.relative { position: relative !important; }

.has-icon {
  position: relative;
}

.has-icon input {
  padding-right: 30px !important;
}

.has-icon.icon-left input {
  padding-left: 30px !important;
  padding-right: 20px !important;
}

.has-icon i {
  position: absolute;
  right: 10px;
  top: 30%;
  cursor: pointer;
}

.has-icon-select i {
  position: absolute;
  right: 45px;
  top: 35%;
  cursor: pointer;
}

.has-icon.icon-left i {
  position: absolute;
  width: 30px;
  left: 8px;
  top: 12px;
  cursor: pointer;
  font-size: 14px;
}

.text-bold {
  font-weight: bold !important;
}

.text-structured { color: #7C5CFA; }
.text-guided { color: #3B82F6; }
.text-open { color:#7CCF4E; }
.text-poe { color:#FF9A3D; }

.text-black { color: black !important; }
.text-green { color: var(--green) !important; }
.text-blue { color: var(--primary) !important; }
.text-blue-light { color: var(--primary-light) !important; }
.text-primary-app { color: var(--primary) !important; }
.text-red-orange { color: var(--red-orange) !important; }

.image-list { position: relative; height:50px; width:50px;  }

.image-list img:nth-child(1) {
  border: 2px solid white;
  position: absolute;
  left: -20px;
  top: 0;
  background-color: lightgrey;
  padding: 1px;
}
.image-list img:not(:first-child) {
  right: -10px;
  top: 0;
  border: 2px solid white;
  position: absolute;
  background-color: lightgrey;
  padding: 1px;
}

.img-100 {
  width: 150px !important;
  object-fit: cover;
}

.img-512 {
  height: 512px;
}

.img-350 {
  height: 350px;
}

.img-full-width {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border: 0.1px solid lightgrey;
  border-radius: 5px;
}

.img-fit {
  width: 100% !important;
}

.img-thumb {
  width: 150px;
  height: 100px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid lightgrey;
}

.img-thumb-small {
  width: 100px !important;
  height: 60px;
  border-radius: 5px;
  object-fit: cover;
  border: 1px solid var(--ubold);
}

.img-square-small {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  border: 1px solid var(--ubold);
}

.img-ly-login {
  padding: 0px !important;
  cursor: pointer;
}

.img-ly-login-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  padding:.25rem;
  color: green;
  display:none;
  border-radius: 5px;
  z-index: 99;
}

.option-img {
  position: relative;
  width: 100%;
  height: 80px;
}

.option-img.active .img-ly-login-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}

.option-img img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.radio-options {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
}

.img-active {
  border: 2px solid red;
}

.cover {
  object-fit: cover !important;
}

.img-rounded {
  height: 50px;
  width: 50px;
  border-radius: 100% !important;
  border:1px solid lightgrey;
  object-fit: cover;
}

.img-rounded-md {
  height: 80px;
  width: 80px;
  border-radius: 100% !important;
  border:1px solid lightgrey;
  object-fit: cover;
}

#bg-image {
  position: absolute; 
  width: 100vw; 
  height: 100vh;
}

#bg-image #overlay {
  position: absolute; 
  width: 100vw; 
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3);
}

.no-link,
.no-link:hover,
.no-link:visited {
  text-decoration: none;
  color: rgba(0,0,0,0.6);
}

.flex-column {
  display: flex;
  flex-direction: column;  
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}

.flex-space-between { display:flex; justify-content:space-between; align-items: space-between; }

.flex-row { display: flex;}
.flex-row-center { display: flex; justify-content: center; align-items: center; }
.flex-item-center { display: flex; align-items: center; gap:5px;  }
.flex-justify { justify-content: space-between; align-items: center; }
.flex-start { justify-content: flex-start; align-items: flex-start; }
.flex-align-start { align-items: flex-start;  }
.flex-justify-start { justify-content: flex-start;  }
.flex-end { justify-content: flex-end; }
.flex-2 { flex:2; }
.gap-5 { gap:5px !important; }
.gap-10 { gap:10px !important; }
.gap-15 { gap:15px !important; }

.base-50 { flex-basis:50px; }
.base-100 { flex-basis:100px; }

.pointer { cursor: pointer; }

.avatar {
  height: 50px;
  width: 50px;
  border-radius: 100%;
  border:1px solid lightgrey;
  font-size: 1.5em;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar-small {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  border:1px solid lightgrey;
  font-size: 1.5em;
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.avatar.ava-md {
  height: 100px;
  width: 100px;
}

button, button:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.btn-small {
  height: 25px !important;
  font-size: 12px !important;
  padding: 2px 10px !important;
}

.btn.btn-danger {
  height: 35px !important;
  padding: 2px 2em !important; 
  font-size: 14px !important;
}

.btn.btn-cancel,
.btn.btn-ubold { 
  height: 35px !important;
  padding: 2px 2em !important; 
  font-size: 14px !important;
  font-weight: normal !important;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border:none !important;
}
.btn.btn-ubold,.btn.btn-icon-ubold { background-color: #5fbeaa !important; }
.btn.btn-cancel { background-color: #36404a !important; }

.btn.btn-icon-ubold { 
  height: 35px !important;
  width: 35px !important;
  padding: 2px !important; 
  font-size: 14px !important;
  font-weight: normal !important;
  color: white !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-icon {
  width: 40px;
  height: 40px;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.btn-icon.google {
  color: white;
  background-color: var(--blue) !important;
}
.btn-icon.apple {
  color: white;
  background-color: var(--silver) !important;
}


.btn.bg-ubold,
.btn.bg-ubold:hover,
.btn.bg-ubold:focus {
  background-color: #5fbeaa !important; 
  color: white !important;
}
.btn.btn.bg-cancel, 
.btn.bg-cancel:hover, 
.btn.bg-cancel:focus { 
  background-color: #36404a !important; 
  color: white !important; 
}
.btn.bg-disabled,
.btn.bg-disabled:hover,
.btn.bg-disabled:focus {
  background-color: lightgrey !important; 
  color: white !important;
  cursor: not-allowed;
  outline: none;
  box-shadow: none;
}


.swal-error-background {
  background-color: rgba(225, 0, 0, 0.5);
}
/*.swal2-title { 
  font-weight: normal !important; 
  font-size: 1.5rem !important; 
}
*/
.right-side {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 20%;
  height: 100vh;
  background-color: white;
  z-index: 999;
  border-top-left-radius: 10px;
  border:1px solid lightgrey;
}

.right-side.active {
  display: block;
}

.log-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.log-item {
  border:1px solid lightgrey;
  padding: 5px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 5px;
}
.log-item p {
  padding: 0px !important;
  margin: 0px !important;
  text-transform: capitalize;
  font-size: 12px;
  font-style: italic;
}

.login-error-box {
  background-color: rgba(255,0,0,0.7); 
  margin-top: 10px; 
  padding: 10px; 
  border-radius: 5px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
}

.login-error-box ul {
  list-style: none;
  margin: 0px !important;
  margin-left: -35px !important;
}

.login-error-box.top-right {
  position: absolute;
}

.icon-header-page {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.icon-header-page i {
  font-size: 65px;
  color: #36404a;
  opacity: 0.1;
}

hr.divider { border-color: lightgrey; padding-bottom: 0px; margin-bottom: 0px; margin-top: 0px;  }
div.divider { border-bottom:0.1px solid lightgrey; }

.title-case { text-transform: capitalize; }
.upper-case { text-transform: uppercase; }

.bg-grey { background-color: lightgrey; }

.table-dark-child {
  background-color: rgba(0, 0, 0, 0.6) !important;
  color: white !important;
  border-radius: 5px !important;
  border:none;
}

.table-dark-child .no-link {
  color: white !important;
}
.table-dark-child tr,
.table-dark-child td {
  border:none !important;
}

.dotted-border .dropify-wrapper {
  border: 1px dashed lightgrey !important;
  border-radius: 5px;
}

.dotted-border-primary {
  border: 1px dashed var(--primary) !important;
  border-radius: 5px;  
}

.dropify-wrapper {
  padding: 5px !important;
  border-radius: 5px;
  border: 1px solid lightgrey;
}

.dropify-preview { margin:0px !important; padding: 0px !important; }
.dropify-preview .dropify-render img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.drop-round .dropify-wrapper,
.drop-round .dropify-wrapper .dropify-preview .dropify-render img {
  width: 150px !important;
  height: 150px !important;
  border-radius: 150%;
}
.drop-round .dropify-wrapper .dropify-preview .dropify-render img {
  object-fit: cover;
}

.icon-wrapper {
  border: 1px solid lightgrey; 
  height: 40px;
  width: 40px;
  display: flex; 
  justify-content: center; 
  align-items: center;
  border-radius: 5px;
}

.icon-wrapper.icon-block {
  width: 100%;
}

.icon-wrapper i {
  font-size: 18px;
}

.icon-wrapper.icon-md {
  height: 40px;
}

.icon-content {
  transition: width 0.3s ease, padding 0.3s ease;
  color:white !important;
  margin-bottom: 5px;
  height: 35px;
  width: 35px;
}

.icon-content .icon-name {
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.2s ease;
  background-color: var(--card-bg);
  padding: 2px 5px;
  color: black;
  z-index: 99;
  border-radius: 2px;
}

.icon-content:hover .icon-name {
  opacity: 1;
}

.no-border { border: none !important; }

#link-params {
  width: 45px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

#submenu-wrapper {
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding: 10px 5px;
}

.login-settings {
  position: absolute;
  top: 20px;
  right: 10px;
  padding: 10px;
  border: 1px solid lightgrey;
  border-radius: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  z-index: 999;
  transition: color 3s;
}

.login-settings.login2 {
  color: black !important;
}

.login-settings .icon.icon-settings:before {
  content: '\e09a' !important;
  transition: content 3s;
}

.login-settings.active .icon.icon-settings:before {
  font-family: "FontAwesome";
  content: 'ï€' !important;
}

.login-settings.active {
  color: black;
}

.login-settings-wrapper {
  background-color: rgba(0,0,0, 0);
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: height 1s, width 1s;
}
.login-settings-wrapper.active {
  height: 100vh;
  width: 100vw;
}

.login-settings-content {
  transition: width 1s, height 1s;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: white;
  padding: 0px;
  width: 0px;
  height: 0px;
  border-top-left-radius: 10px;
  /*border-bottom-left-radius: 10px;*/
}
.login-settings-content.active {
  right: 0;
  bottom: 0;
  width: 300px;
  height: 100vh;
  overflow: hidden;
  padding: 10px;
}

.draggable-table.bg-white {
  background: white !important;
  color: black;
  tbody {
    tr:nth-child(even) {
      /*background-color: #f7f7f7;*/
      background-color: #ffffff;
    }
    tr:nth-child(odd) {
      background-color: #ffffff;
    } 
    tr.is-dragging {
      background: #f1c40f;
      td {
        color: #f1c40f;
      }
    }
  }  

}

.icon-drag {
  background-image: url('../images/drag-handle.png');
  background-position: center;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.draggable-table tr .icon-drag,
.draggable-table tr .icon,
.draggable-table tr .ion {
  cursor: grabbing;
}

.draggable-table {
  /*position: absolute;*/
  /*top: 25%;*/
  /*left: 20%;*/
  position: relative;
  width: 100% !important;
  height: 50%;
  border-collapse: collapse;
  background: #36404a;
  color: white;
  border-radius: 10px;
/*  -webkit-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
*/

  .draggable-table__drag {
    font-size: .95em;
    font-weight: lighter;
    /*text-transform: capitalize;    */
    position: absolute;
    width: 100%;
    /*text-indent: 10px;    */
    border: 1px solid #f2f2f2;
    z-index: 10;
    cursor: grabbing;
    -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.05); 
    opacity: 1;
  }  

  thead {
    th {
      height: 25px;
      font-weight: bold;
      text-transform: capitalize;
      padding: 5px 0px;
      user-select: none;
    }
  }

  tbody {
    tr {
      /*cursor: grabbing;*/
      td {
        font-size: .95em;
        font-weight: lighter;
        /*text-transform: capitalize;*/
        /*text-indent: 10px;*/
        padding: 5px 0px;
        user-select: none;
        border-top: 1px solid whitesmoke;
      }
    }
    tr:nth-child(even) {
      /*background-color: #f7f7f7;*/
      background-color: #36404a;
    }
    tr:nth-child(odd) {
      /*background-color: #ffffff;*/
      background-color: #36404a;
    } 
    tr.is-dragging {
      background: #f1c40f;
      td {
        color: #ffe683;
      }
    }
  }
}

.page-item a { color: white !important; }
.page-item a,
.page-item a:visited,
.page-item a:active {
  outline: none !important;
  box-shadow: none !important;
}

.found-data {
  height: 35px; 
  display: flex; 
  gap:5px; 
  align-items: center; 
  margin-bottom: 16px;
}

.remove {
  position: absolute;
  right: 20px;
  top: 10px;
}

.remove i { cursor: pointer; }

.border-grey {
  width: 100%;
  border: 1px solid lightgrey;
  padding: 5px;
  border-radius: 5px;
}

.border-poe {
  border: 1px solid #FF9A3D;;
}

.border-green {
  width: 100%;
  border: 1px solid var(--green);
  padding: 5px;
  border-radius: 5px;  
  color: var(--green-text);
}
.border-green b {
  color: var(--green-text) !important;
}

.download-md {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 5px;  
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.download-md:hover {
  background-color: var(--primary);
  color: white;
}

.download-md.downloaded {
  border: 1px solid lightgrey;
  color: grey;  
}
.download-md.downloaded:hover {
  background-color: lightgrey;
  color: white;
}

.download-small {
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0px 5px;
  border-radius: 10px;  
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.upload-wrapper {
  height: 60px;
}

.upload-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}


.filter-wrappers {
  width: 100%;

  background-color: white;

  border: 1px solid lightgrey;
  padding: 5px;
  border-radius: 5px;

  margin: 5px 0px;

}

.filter-wrappers.active {
  margin-top: -40px;
  margin-bottom: 5px;
  height: 100%;
  width: 100%;

  z-index: 999;

  -webkit-transform:translateY(0px);
  -moz-transform:translateY(0px);
  transform:translateY(0px) -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.dot-notif {
  height: 8px;
  width: 8px;
  background-color: #5fbeaa;
  border-radius: 100%;
  position: absolute;
  left: 6px;
  top: 8px;
}

.icon-face-btn {
  height: 25px;
  filter: invert(100%) sepia(100%) hue-rotate(180deg) brightness(100%) contrast(100%);
}

#video {
  border: 1px solid lightgrey;
  border-radius: 5px;
}

.modal-300 { width: 400px !important; }

canvas {
  position: absolute;
}

.face-login {
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type=color]{
  opacity: 0;
  z-index: -9;
}
#color-picker {
  height: 30px;
  width: 30px;
  border-radius: 100%;
  background-color: var(--ubold);
}

#sidebar-menu,
#sidebar-menu ul li {
  background-color: white !important;
}

.my-overlay {
  width:100%;
  height:100%;
  background-color:rgba(255,255,255, 0.9);
  z-index: 999 !important;
}

.menu-header-wrapper {
  border-left: 1.5px solid lightgrey;
  margin-left: 6px;
}

.status {
  width: 80px;
  height: 20px;
  color: white;
  border-radius: 10px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opened {
  background-color: darkcyan;
}
.closed {
  background-color: darkgreen;
}

.status-wrapper {
  width: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  float: right;
}

.info-status {
  text-align: center;
  border-radius: 20px;
  background-color: lightgrey;
  padding: 4px ;
  width: 100px;
  color: white;
  font-size: 12px;
}

.user-status {
  border-radius: 20px;
  background-color: lightgrey;
  padding: 4px 15px 4px 2px;
  width: 100px;
  color: white;
  font-size: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.info-status.active,
.user-status.active {
  background-color: var(--green);
}

.user-status.active .status-icon {
  color: var(--green);
}

.user-status.active .status-icon i.fa:before {
  content: "ï€Œ";
}

.status-icon {
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: white;
  color: lightgrey;
  display: flex;
  justify-content: center;
  align-items: center; 
}

.status-icon i.fa:before {
  content: "ï€";
}

/*for chart container*/
#cperiode {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}


.alert-wrapper-anim {
  display: flex;
}

.broken-div {
  width: 100% !important;
}

.exploding,
.exploding:focus,
.exploding:hover {
  background-color: transparent;
  color: transparent;
  pointer-events: none;
  position: relative;
  will-change: transform;
}

.particle {
  position: absolute;
  top: 0;
  left: 0;
  background-color: darkblue;
}

.table-align-top tr td {
  vertical-align: top;
}

.nowrap {
  white-space: nowrap;
}

.reset-bg {
  color: white;
  background: url('../../images/bg-email.jpeg'); 
  height: 100vh; 
  background-position: center; 
  background-size: cover;
  padding: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reset-bg .content {
  width: 40%;
  background: rgba(0, 0, 0, 0.6);
  padding: 5%;
  border-radius: 10px;

}

.video-background {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1); /* semi-transparent black */
}


.custom-logo {
  background-color: transparent;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 10px;
  top: 10px;
  z-index: 99;
  height: 50px;
}
.custom-logo img {
  width: 100%;
  height: 100%;
  flex: 1;
}

.custom-logo .brand-name {
  color: var(--text-primary) !important;
  font-weight: bold;
  font-family: 'Poppins';
  margin-left: 10px;
  font-size: 24px;
}

.rotate-30 {
  transform: rotate(-20deg);
}

#wrapper.enlarged .topbar .custom-logo {
  display: none;
  opacity: 0;
}


@media (max-width: 419px) {
  .custom-logo {
    display: none !important;
  }

  .library-search.flex-row {
    flex-direction: column !important;
  }

  .lh-5 { line-height:20px !important; }

  .stage-step {
    display: flex;
    flex-direction: column !important;
  }

  .stage-step .flex-column {
    align-items: flex-start !important;
    width: 65px !important;
  }

  .stage-step .flex-column small {
    display: none !important;
  }

  .stage-step .flex-column b {
    font-size: 10px !important;
    text-align: center !important;
  }

  .circle-stage {
    height: 35px !important;
    width: 35px !important;
  }

  .h-line {
    margin: 0px 0px !important;
  }

  .step-card, .lock-card {
    min-height: 90px !important;
  }

  .lock-card .lock-desc {
    display: none !important;
  }

  .lock-card .lock-body {
    flex-direction: column !important;
  }

  .lock-card.active i {
    opacity: 0.1 !important;
  }

  .icon-type i {
    font-size: 50px !important;
    opacity: 0.3 !important;
  }

  .stage-7.v-line {
    height: 2px !important;
    border-left: 1px solid transparent !important;
    border-bottom: 1px solid lightgrey !important;

    width: 100% !important;
    padding-top: 10px !important;
  }

  .stage-7-input-wrapper {
    display: flex;
    flex-direction: column !important;
    gap: 15px;
  }

  .qs-item-wrapper {
    display: flex;
    flex-direction: column !important;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }

  .qs-item-wrapper .qs-right-panel {
    width: 100% !important;
    margin-top: -20px !important;
  }

  .save-actions small {
    display: none !important;
  }

}

.label-span,
.form-group span {
  font-size: 12px;
  color: black;
}


.card-title {
  font-weight: bold;
  border-left: 2px solid var(--green);
  padding-left: 5px;
}

.tbl-list:hover {
  background-color: var(--ubold);
}

.select2-results__group:before {
  content: " ";
  padding-left: 5px;
  border-left: 2px solid var(--ubold);
}
.select2-results__group {
  color: var(--ubold); /* Dark grey text color */
  font-weight: bold; /* Make the text bold */
  padding: 5px 10px; /* Add some padding */
}

.steps {
  border-bottom: 2px solid lightgrey;
}

.steps.active {
  border-bottom: 2px solid var(--green);
}

.card-mom {
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid lightgrey;
}
.card-mom:hover {
  background-color: rgba(0, 0, 0, 0.1);
  /*background-color: var(--ubold);*/
  color: var(--ubold);
}

ul.list, ol.list {
  margin-left: -20px !important;
}

/*.gj-timepicker-bootstrap input:focus,*/
.gj-timepicker-bootstrap input:focus .input-group-addon {
  background-color: #ffffff !important;
  border-left: none !important;
  border: 1px solid #AAAAAA !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: 0 !important;
  color: #333333;
}

.gj-timepicker-bootstrap .input-group-addon {
  width: 10px !important;
  background-color: transparent;
  height: 38px !important;
}

.gj-timepicker-bootstrap .input-group-addon i.gj-icon {
  display: none;
  margin-right: -130px !important;
}

.doc-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.doc-items {
  position: relative;
  height: 50px;
  width: 50px;
}

.doc-items img {
  width: 100%;
  height: 100%;
  border-radius: 10%;
  object-fit: cover;
}

.doc-remove {
  color: white;
  cursor: pointer;
  position: absolute;
  right: -5px;
  top: -5px;
  background-color: var(--ubold);
  height: 20px;
  width: 20px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.doc-add {
  height: 50px;
  width: 50px;
  border-radius: 10%;
  border: 1px dashed grey;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-doc-fit {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

ul.dash-list {
  margin-left: -25px;
}

ul.dash-list li::marker {
  content: "â€“ "; /* Using an en dash (â€“) for better presentation */
  color: #333;  /* Optional: change the color of the dash */
}

.rounded-circle.bordered {
  border: 1px solid var(--primary);
}

.right-icon-notif {
  height: 50px;
  color: white !important;
  filter: invert(1);
}

.select-group {
  position: relative;
  width: 100%;
}

.select-label {
  position: absolute;
  top: 3px;
  left: 8px;
  font-size: 12px;
  color: #6B7280;
  background: white;
  padding: 0 4px;
  z-index: 2;
}

.badge-type {
  padding: 2px 10px;
  border-radius: 5px;
  font-size: 10px;
}
.badge-type.purple {
  background-color: var(--purple-soft);
  color: purple;
}

.stage-step {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.stage-step.active {
  cursor: default !important;
}

.stage-step:hover  .circle-stage,
.stage-step.active .circle-stage {
  background-color: var(--primary);
  color: white;
}

.stage-step:hover  .text-black,
.stage-step.active .text-black {
  color: var(--primary) !important;
}

.circle-stage {
  height: 40px;
  width: 40px;
  background-color: white;
  border: 1px solid var(--primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: var(--primary);
}

.h-line {
  flex: 1;
  border-bottom: 1px solid grey;
  height: 2px;
  margin: 0px 15px;
}

.v-line {
  height: 120px;
  border-left: 1px solid lightgrey;
  width: 2px;
}

.left-v-line {
  border-left: 1px solid lightgrey;
  height: 100%;
  padding-left: 10px;
  margin-left: -10px;
}

.stage-7-input-wrapper {
  display: flex;
  gap: 15px;
}

.rd-wrapper {
  padding-top: 4px;
}

.rd-outer {
  height: 15px;
  width: 15px;
  border-radius: 100%;
  border: 1px solid grey;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rd-inner {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: var(--primary);
  display: none;
}


.step-card, .lock-card {
  position: relative;
  cursor: pointer;
  background-color: var(--primary-light);
  min-height: 120px;
}

.lock-card .lock-body {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
}


.step-card.active,
.lock-card.active {
  cursor: default;
  border: 1px solid var(--primary);
}

.step-card.active .rd-outer,
.lock-card.active .rd-outer {
  border: 1px solid var(--primary);
}

.step-card.active .rd-inner,
.lock-card.active .rd-inner {
  display: block;
}

.step-card.active i,.step-card.active span,
.lock-card.active i,.lock-card.active span {
  color: var(--primary);
}

.icon-type {
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.icon-type i {
  font-size: 85px;
  color: lightgrey;
  opacity: 0.2;
}

.z-index-1 { z-index:1 }

.dev-console {
  display: none;
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 99999;
  width: 300px;
}

.stage-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 5px;
  padding: 10px 15px;
  margin-top: 10px;
}
.stage-item.active {
  /*border: 1px solid var(--primary-border);*/
  background-color: var(--primary-light);
  color: var(--primary);
}

.stage-item.active .stage-number {
  border: 1px solid var(--primary);
}

.stage-item:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
}

.stage-item:not(.collapsed) .stage-number{
  border: 1px solid var(--primary);
}

.stage-number {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid lightgrey;
  font-weight: bold;
}

.stage-name {
  font-weight: bold;
}

.youtube-frame {
  border-radius: 10px;
}

.quill-editor {
  height: 80px !important;
}

.online-status {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.green-dot {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  background-color: var(--green);
}

#chart {
  height: 300px;
  width: 100%;
}

.analys-wrapper {
  display: flex;
  gap: 15px;
}

.analys-wrapper .analys-number {
  margin-top: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid var(--primary);
}
.analys-wrapper .analys-content {
  flex: 2;
}

.border-red {
  border: 1px solid red !important;
  color: red !important;
}

.qs-item-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
}

.qs-item-wrapper .qs-right-panel {
  width: 45%;
}

.q-option-item {
  border: 1px solid lightgrey;
  border-radius: 2px;
  padding: 3px 10px;
  width: 100% !important;
}

.btn-add-option {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 10px;
}

.point-input {
  width: 60px !important;
}
.btn-q-delete {
  height: 30px !important;
  font-size: 12px !important;
}

.question-type {
  position: relative;
  cursor: pointer;
}

.type-icon {
  position: absolute;
  right: 10px;
  color: var(--primary);
  opacity: 0;
}

.question-type.active{
  border: 1px solid var(--primary);
}

.question-type.active .type-icon {
  opacity: 1;
}

/*badges*/
.badge-learning { padding: 2px 10px; border-radius: 30px; font-size: 10px; font-weight: 600; position: relative; }
.badge-learning::before { content: ""; width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; }

/* Structured */
.badge-structured { background: #eef2ff; color: #4338ca; }
.badge-structured::before { background: #4338ca; }

/* Guided */
.badge-guided { background: #fff7ed; color: #c2410c; }
.badge-guided::before { background: #c2410c; }

/* Open */
.badge-open { background: #ecfeff; color: #0f766e;}
.badge-open::before { background: #0f766e; }

.badge-status { padding: 2px 10px; font-size: 10px; width: 70px; text-align: center; border-radius: 30px; font-weight:900; }
.badge-draft { background: #edf0ed; color: #727372;}
.badge-publish { background: #e4f7e6; color: #098515; }

.badge-open-border {
  border: 1px solid #0f766e;
}

.badge-locking { 
  padding: 2px 10px; 
  border-radius: 5px; 
  font-size: 12px; 
  font-weight: 600; 
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.badge-locking::before {
  font-family: 'simple-line-icons';
  content: "";
  font-size: 14px;
  display: inline-block; 
  margin-right: 8px;
}

.locking-open { background: #ecfeff; color: #0f766e; border: 0.1px solid #0f766e;}
.locking-open::before { color: #0f766e; content: "\e08f"; }

.locking-locked { background: var(--red-orange-light); color: var(--red-orange); border: 0.1px solid var(--red-orange);}
.locking-locked::before { color: var(--red-orange); content: "\e08e"; }

.locking-guided { background: #eef2ff; color: #4338ca; border: 0.1px solid #4338ca;}
.locking-guided::before { color: #4338ca; content: "\e019"; }


.badge-network { padding: 2px 10px; border-radius: 30px; font-size: 10px; font-weight: 400; position: relative; }
.badge-network::before { content: ""; width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 8px; }

.badge-offline { border: 0.1px solid #727372; color: #727372;}
.badge-offline::before { background: #727372; }

.badge-online { border: 0.1px solid #0f766e; color: #0f766e;}
.badge-online::before { background: #0f766e; }

.title-with-badge { padding: 0px; border-radius: 30px; font-size: 10px; font-weight: 400; position: relative; }
.title-with-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; display: inline-block;}

.title-offline { color: #727372;}
.title-offline::before { background: #727372; }

.title-online { color: #0f766e;}
.title-online::before { background: #0f766e; }

.inquiry-status {
  margin-top: 15px;
  padding: 5px 10px; 
  border-radius: 5px; 
  font-size: 12px; 
  font-weight: 600; 
  position: relative;
  /*text-transform: capitalize;*/
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.inquiry-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; margin-right: 8px; }

.inquiry-draft { color: #727372;}
.inquiry-draft::before { background:#727372; }

.inquiry-publish { color: var(--green);}
.inquiry-publish::before { background: var(--green); }

.sw-button-ok { 
  /*width: 200px !important;*/
  height: 30px !important;
  padding: 2px 2rem !important; 
  font-size: 12px !important;
  font-weight: normal !important;
  color: white !important;
  border:none !important;
  border-radius: 2px !important;
  background-color: #2563eb !important;
}

.sw-button-cancel { 
  /*width: 200px !important;*/
  height: 30px !important;
  padding: 2px 2rem !important; 
  font-size: 12px !important;
  font-weight: normal !important;
  color: white !important;
  border:none !important;
  border-radius: 2px !important;
  background-color: #EF4444 !important;
  margin-left: 5px;
}


.sw-popup { padding: 15px 0px !important; }
.sw-header { background-color:red !important; }
.sw-title { font-size:16px !important; }
.sw-html { font-size:14px !important; padding: 10px !important; }

.act-title-wrapper {
  /*height: 45px;*/
  display: -webkit-box;
  -webkit-line-clamp: 1;      /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.left-line {
  border-left: 1px solid lightgrey;
  padding-left: 10px;
}

.custom-checkbox {
  accent-color: #0d6efd !important;
}

.custom-checkbox:disabled {
  opacity: 1 !important;
  cursor: not-allowed !important;
}

.loading-wrapper {
  height: 100vh;
  width: 100vw;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity .5s ease;
}

.loading-content {
  display: flex;
  flex-direction: column;
  /*background-color: white;*/
  height: auto;
  padding: 10px 50px;
  width: auto;
  border-radius: 10px;
  /*-webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);*/
          /*box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.1);*/

}

#loader img {
  height: 120px;
  width: 120px;
  margin-right: 10px;
}

.setting-item-wrapper {
  cursor: pointer;
  display: flex;
  justify-content: space-between;  
  align-items: center;
  gap: 15px;
  padding: 10px;
  border-left: 2px solid transparent;
}

.ava-blue.setting-item-wrapper:hover,
.ava-blue.setting-item-wrapper.active {
  /*border-left: 2px solid var(--primary);*/
}
.ava-blue.setting-item-wrapper:hover .md,
.ava-blue.setting-item-wrapper.active .md {
  color: var(--primary);
}
.ava-green.setting-item-wrapper:hover,
.ava-green.setting-item-wrapper.active {
  /*border-left: 2px solid var(--green);*/
}
.ava-green.setting-item-wrapper:hover .md,
.ava-green.setting-item-wrapper.active .md {
  color: var(--green);
}
.ava-red.setting-item-wrapper:hover,
.ava-red.setting-item-wrapper.active {
  /*border-left: 2px solid var(--red-orange);*/
}
.ava-red.setting-item-wrapper:hover .md,
.ava-red.setting-item-wrapper.active .md {
  color: var(--red-orange);
}
.setting-item-left {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
}

.setting-item-avatar {
  height: 40px;
  width: 40px;
  background-color: var(--grey-light-bg);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.setting-item-content {
  display: flex;
  flex-direction: column;
}

.ava-blue.setting-item-wrapper .setting-item-avatar,
.ava-blue.setting-item-wrapper .setting-item-avatar {
  background-color: var(--primary-light);
  color: var(--primary);
}

.setting-item-content b {
  color: black;
  /*background-color: transparent;*/
}

.ava-green.setting-item-wrapper .setting-item-avatar,
.ava-green.setting-item-wrapper .setting-item-avatar {
  background-color: var(--green-bg);
  color: var(--green);
}
.ava-green.setting-item-wrapper .setting-item-content b,
.ava-green.setting-item-wrapper .setting-item-content b {
  color: var(--green);
}

.ava-red.setting-item-wrapper .setting-item-avatar,
.ava-red.setting-item-wrapper .setting-item-avatar {
  background-color: var(--red-orange-light);
  color: var(--red-orange);
}
.ava-red.setting-item-wrapper .setting-item-content b,
.ava-red.setting-item-wrapper .setting-item-content b {
  color: var(--red-orange);
}

.tab-content {
  padding: 20px;
}

.tab-header {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 10px;
}

.tab-header.tab-blue { background-color: var(--primary-light); color: var(--primary); }
.tab-header.tab-green { background-color: var(--green-bg); color: var(--green); }
.tab-header.tab-red { background-color: var(--red-orange-light); color: var(--red-orange); }

.setting-divider { 
  border-color: lightgrey;
  margin:0px 20px 0px 60px; 
  padding: 0;
}
/*hr.divider { border-color: lightgrey; padding-bottom: 0px; margin-bottom: 0px; margin-top: 0px;  }*/

.danger-border {
  border: 1px solid var(--red-orange);
  border-radius: 5px;
}

.avatar-primary-light {
  height: 45px;
  width: 45px;
  border-radius: 100%;
  background-color: var(--primary-light);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--primary);
}

.grid-wrapper {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px; /* Spacing between rows and columns */
}

.scroll-wrapper {
  padding: 0px;
  position: relative;
  display: flex;
  align-items: center;
}

.horizontal-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  scroll-behavior: smooth;
  width: 100%;
  height: auto;
  padding: 25px 0px;
  scroll-behavior: smooth;

  &::-webkit-scrollbar {
    display: none;
  }
  /* Hide scrollbar for Firefox */
  scrollbar-width: none;
  /* Hide scrollbar for IE and older Edge */
  -ms-overflow-style: none; 
}

.scroll-item {
  width: 220px;
  /*background: white;  */
  flex-shrink: 0;
  /*border: 1px solid lightgrey;*/
  border-radius: 5px;
  /*padding: 10px;*/
  /*box-shadow: 0 0.125rem 0.25rem 0 rgba(58, 59, 69, 0.2) !important;*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /*cursor: pointer;*/
  position: relative;
  overflow: hidden;
}

.scroll-arrow {
  height: 40px;
  width: 40px;
  border: 1px solid lightgrey;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: white;
  position: absolute;
  bottom: 40%;
  z-index: 9999;
}

.scroll-arrow.left {
  left: -20px;
}

.scroll-arrow.right {
  right: -20px;
}

.scroll-arrow.hidden {
  display: none;
}

.preview-block {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
}

.preview-block.active {
  /*block all elemensts*/
  z-index: 999;  
  height: 100%;
  width: 100%;

}

.activity-card {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(120, 120, 120, 0.08);

  box-shadow:
    0 4px 10px rgba(0,0,0,0.03),
    0 10px 20px rgba(0,0,0,0.05);
}

.activity-card img {
  width: 100%;
  height: 85%;
  position: absolute;
  left: 0;
  top: -20px;
  z-index: 1;
  opacity: 0.07;
  object-fit: cover;
}

.activity-card.guided {
  background: linear-gradient(
    /*135deg,*/
    #fff7ed 0%,
    /*#ffedd5 100%*/
    #ffffff 100%
  );
}

.activity-card.open {
  background: linear-gradient(
    /*135deg,*/
    /*#ecfeff 0%,*/
    #cffafe 0%,
    #ffffff 100%
  );
}

.activity-card.structured {
  background: linear-gradient(
    /*15deg,*/
    #eef2ff 0%,
    /*#e0e7ff 100%*/
    #ffffff 100%
  );
}

.activity-card .badge-open {
  border: 1px solid #0f766e;
}
.activity-card .badge-guided {
  border: 1px solid #c2410c;
}
.activity-card .badge-structured {
  border: 1px solid #4338ca;
}

.creator-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.rate-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
}

.v-divider {
  width: 1px;
  border-left: 1px solid lightgrey;
  height: 30px;
}

.img-explore {
  position: relative;
  display: inline-block;
  overflow: hidden; /* Keeps the blur effect contained */
}

.img-explore img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.img-explore::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%; /* Adjust this to change how much of the right side is affected */
  height: 100%;
  
  /* Apply the blur effect to everything underneath */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px); /* For Safari support */
  
  /* Smoothly fade out the blur from right (fully blurry) to left (sharp) */
  mask-image: linear-gradient(to left, black 30%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 30%, transparent);
}

.progress-bar-open {
  background-color: #cffafe;
}

.stage-student-item {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 10px;
  margin-bottom: 2px;
  position: relative;
}

.stage-student-item.active {
  background-color: var(--primary-light);
}
.stage-student-item.active .stage-student-number {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: white;
}
.stage-student-item.active .stage-student-desc {
  color: var(--primary);
}

.stage-student-item.pass .stage-student-number {
  background-color: var(--green);
  border: 1px solid var(--green);
  color: white;
}
.stage-student-item.pass .stage-student-desc {
  color: var(--green);
}

.timeline-line {
  height: 34px;
  width: 2px;
  border-left: 0.1px solid lightgrey;
  position: absolute;
  left: 22px;
  top: 33px;
  z-index: 1;
}

.stage-student-number {
  height: 25px;
  width: 25px;
  font-size: 12px;
  border-radius: 100%;
  border: 1px solid lightgrey;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  z-index: 2;
}
.stage-student-number.active {
  background-color: var(--primary);
  color: white;
  border: 0.1px solid var(--primary);
}


.student-content,
.student-left-stages {
  border: 0.1px solid lightgrey;
  border-radius: 5px;
  padding: 5px 0px;
}

.instruction-info {
  background-color: var(--primary-light);
  border: 0.1px solid var(--primary);
  border-radius: 5px;
  padding: 10px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.instruction-guide {
  background-color: var(--primary-light);
  border: 0.1px solid var(--primary);
  border-radius: 5px;
  padding: 10px;
  color: black;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 10px;  
}

.info-card {
  border-radius: 5px;
  padding: 10px 14px;
  margin-bottom: 16px;
  backdrop-filter: blur(10px);
  transition: all .2s ease;
}

.info-card:hover {
  /*transform: translateY(-2px);*/
}

.zoom-card:hover {
  transform: translateY(-5px);
}

.info-card-primary {
  background: linear-gradient(
    135deg,
    #f7f9ff,
    #eef3ff
  );
  border: 1px solid #dbe4ff;
  color: #3f5bd8;
}

.info-card-warning {
  background: linear-gradient(
    135deg,
    #fffef8,
    #fffaf0
  );
  border: 1px solid #f3e7b3;
  color: #92400e;
}

.table-loading {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-loading-content {
  background-color: white;
  border-radius: 5px;
  padding: 15px 25px;
  -webkit-box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 8px rgba(0, 0, 0, 0.1);

}

.ai-content {
  white-space: pre-line;
}

#installBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.hero-card{
    border-radius:24px;
    padding:32px;
    background:white;
}

.hero-card h1{
    font-weight:700;
}

.tip-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:20px;
}


/* INQUIRY CARDS */

.inquiry-card{
  border-radius:10px;
  border:1px solid #ececec;
  height:100%;
}

.inquiry-card h4 {
  font-size: 16px;
}

.inquiry-card p {
  line-height: 1.2rem;
}

.inquiry-card.purple {
  background:#faf7ff;
}
.inquiry-card.purple h4 {
  color: #7C5CFA;
}

.left-icon-purple {
  background-color: #F7F3FF;
  padding: 10px;
  border-radius: 10px;
  color: #7C5CFA;
  border: 0.1px solid #7C5CFA ;
}

.inquiry-card.blue {
  background:#f5f9ff;
}
.inquiry-card.blue h4{
  color: #3B82F6;
}

.left-icon-blue {
  background-color: #F3F8FF;
  padding: 10px;
  border-radius: 10px;
  color: #3B82F6;
  border: 0.1px solid #3B82F6 ;
}

.inquiry-card.green{
  background:#f7fff7;
}

.inquiry-card.green h4{
  color: #7CCF4E;
}

.left-icon-green {
  background-color: #F6FFF1;
  padding: 10px;
  border-radius: 10px;
  color: #7CCF4E;
  border: 0.1px solid #7CCF4E;
}

.inquiry-card.orange{
  background:#fff9f4;
}

.inquiry-card.orange h4{
  color: #FF9A3D;
}

.left-icon-orange {
  background-color: #FFF8F1;
  padding: 10px;
  border-radius: 10px;
  color: #FF9A3D;
  border: 0.1px solid #FF9A3D;
}

/* TIPS */

.tips-card{
  border-radius:10px;
  border:1px solid #ececec;
}

.tips-item {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
}
.tips-item i {
  margin-top: 2px;
}
.tips-item span {
  line-height: 1rem;
}

/* STAGE TIMELINE */

.stg-wrapper{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:30px;
  margin-top:20px;
}

.stg-item {
  width: 31%;
  text-align:center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border-radius: 5px;
  padding: 10px;
}

.stg-points {
  font-size: 12px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  border-radius: 5px;
  color: black;
  text-align: justify;
}

.stg-points-item {
  display: flex;
  gap: 10px;
}

.stg-points-item i {
  padding-top: 2px;
}

.stg-image {
  width: 70px;
  height: 70px;  
  display: flex;
  justify-content: center;
  align-items: center;
  /*border: 0.1px solid lightgrey;*/
  border-radius: 10px;
}
.stg-image img {
  width: 80%;
  height: 80%;
  object-fit: cover;
}

.stg-number {
  width:35px;
  height:35px;

  background:white;
  border-radius:100%;

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

  font-size:14px;
  font-weight: bold;
  color: white;

  position: absolute;
  left: -5px;
  top: -8px;
}


.stg-item.stage1,
.stg-item.stage1 .stg-number {
  background-color: #F5F1FF;
  border: 0.1px solid #8B5CF6;
  color: #8B5CF6;
}
.stg-item.stage1 .stg-points-item i {color: #8B5CF6;}

.stg-item.stage2,
.stg-item.stage2 .stg-number {
  background-color: #F3F6FF;
  border: 0.1px solid #2563EB;
  color: #2563EB;
}
.stg-item.stage2 .stg-points-item i {color: #2563EB;}

.stg-item.stage3,
.stg-item.stage3 .stg-number {
  background-color: #F2FBF5;
  border: 0.1px solid #52C41A;
  color: #52C41A;
}
.stg-item.stage3 .stg-points-item i {color: #52C41A;}

.stg-item.stage4,
.stg-item.stage4 .stg-number {
  background-color: #FFF7ED;
  border: 0.1px solid #F97316;
  color: #F97316;
}
.stg-item.stage4 .stg-points-item i {color: #F97316;}

.stg-item.stage5,
.stg-item.stage5 .stg-number {
  background-color: #FFF1F7;
  border: 0.1px solid #EC4899;
  color: #EC4899;
}
.stg-item.stage5 .stg-points-item i {color: #EC4899;}

.stg-item.stage6,
.stg-item.stage6 .stg-number {
  background-color: #ECFEFF;
  border: 0.1px solid #14B8A6;
  color: #14B8A6;
}
.stg-item.stage6 .stg-points-item i {color: #14B8A6;}

.stg-item.stage7,
.stg-item.stage7 .stg-number {
  background-color: #FFF7ED;
  border: 0.1px solid #EAB308;
  color: #EAB308;
}
.stg-item.stage7 .stg-points-item i {color: #EAB308;}

.stg-item.stage8,
.stg-item.stage8 .stg-number {
  background-color: #F5F1FF;
  border: 0.1px solid #A855F7;
  color: #A855F7;
}
.stg-item.stage8 .stg-points-item i {color: #A855F7;}

.stg-item.stage9,
.stg-item.stage9 .stg-number {
  background-color: #F3F6FF;
  border: 0.1px solid #3B82F6;
  color: #3B82F6;
}
.stg-item.stage9 .stg-points-item i {color: #3B82F6;}


.my-dropup {
  position: relative;
}

.my-dropup-menu {
  z-index: 99;
  border: 0.2px solid lightgrey;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  min-width: 120px;
  position: absolute;
  bottom: 30px;
  right: 0;
  background-color: white;
}

.my-dropup-menu.show {
  display: flex;
}

.my-dropup-item {
  height: 35px;
  font-size: 14px;
  padding: 2px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  gap: 10px;
  color: black !important;
}

.my-dropup-item a {
  text-decoration: none !important;
}

.my-dropup-item i {
  font-size: 12px;
}

.my-dropup-item:hover {
  background-color: #F3F4F6;
}

.btn-align-start {
  text-align: left !important;
}

.prev-q-item {
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 0.1px solid lightgrey;
  border-radius: 5px;
  margin-bottom: 15px;
}



























