/*
Theme Name: Retal Dashboard
*/

.custom-col {
    width: 20%; /* 100% / 5 = 20% */
    flex: 0 0 20%;
  }
  @media (max-width: 576px) { /* Bootstrap's sm breakpoint */
    .custom-col {
        flex: 0 0 33%;
        max-width: 33%;
    }
  }
  
  
  :root {
    --font-family-Lufga: 'Lufga', sans-serif;
    --font-text: 'Marcellus', serif;
    --font-headings: 'Lucky Beauty';
    --white: #fff;
    --black: #000;
    --primary-color: #C4AE75;
    --secondary-color: #181C1F;
    --secondary-color-light: #264457;
    --theme-dark: #212528;
    --light-gray: #F5F5F5 ;
    --light-gray-v1: #F3F4F6;
    --theme-green: 60, 173, 107;
    --theme-blue: 74, 126, 199;
    --theme-pink: 219, 84, 127;
    --secondary-rgb: 24, 28, 31;
    --theme-blue: #4E93EA;
    --theme-brown: #916A50;
    --pink1: #ac3c77;
    --pink2: #b5789a;
    --pink3: #baa0ad;
    --border-radius1: 10px;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
  }
  
  *, 
  *:active,
  *:focus,
  option:focus {
      outline: none !important;
      box-sizing:border-box;
  }
  ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: transparent;
  }
  ::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
    border: 2px solid transparent;
    background-clip: padding-box;
  }
  ::-webkit-scrollbar-track {
    background-color: var(--light-gray);
  }
  ::-webkit-scrollbar-thumb {
    background-color: var(--secondary-color);
    border: 0px solid transparent;
  }
  
  * {
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary-color) var(--light-gray);
  }
  
  button::-moz-focus-inner {
      border: 0;
  }
  
  img { 
      border:none; 
      max-width:100%; 
      display:block; 
      height:auto;
  }
  
  html,
  body {
      margin: 0; 
      padding: 0; 
      list-style-type: none;
    line-height: normal;
  }
  a:focus, a:active, a:hover, a { 
      text-decoration: none;
      outline: none;
      color: var(--primary-color);
  }
  a {
    display: inline-block;
    color: var(--secondary-color);
  }
  
  body {
    /* font-family: var(--font-family-Lufga); */
    font-family: var(--font-text);
      font-weight: 400;
      font-size: var(--fs-12); 
      margin: 0 auto;
      color: var(--secondary-color);
      position: relative;
  }
  
  h1,h2,h3,h4,h5,h6 {
      margin: 0 0 10px; 
      line-height: normal;
      /* font-weight: 700; */
    color: var(--secondary-color);
    font-family: var(--font-headings);
    font-weight: normal;
  }
  
  h1, h2{ 
    /* font-weight:700; */
    font-weight: normal;
  }
  
  
  p { margin:0 0 10px; }
  
  .theme-btn {
    text-decoration: none;
    display: inline-block;
    background: var(--primary-color);
    color: var(--white) !important;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    padding: 20px;
    border: none;
    cursor: pointer;
    text-align: center;
    min-width: 220px;
    box-shadow: 25px 25px 90px rgba(196, 174, 117, 0.5);
  }
  .theme-btn:hover,
  .theme-btn:active,
  .theme-btn:focus {
    opacity: 0.9;
  }
  
  .toggle-dropdown-btn {
    cursor: pointer;
  }
  .th-toggle-btn {
    cursor: pointer;
  }
  .th-toggle-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    z-index: 999;
  }
  /*====== Home ======*/
  .home-full-screen-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .home-full-screen-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
  }
  .home-full-screen-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .logo {
    width: 86px;
  }
  .logo-center {
    margin: 0 auto;
  }
  
  .welcome-text {
    margin: 20px auto;
    max-width: 300px;
    width: 100%;
    padding: 15px;
  }
  
  .welcome-text h2 {
    color: var(--white);
    font-weight: 600;
    font-size: 40px;
  }
  
  .welcome-text p {
    font-size: 18px;
    font-weight: 300;
    color: var(--primary-color);
    margin: 25px 15px;
  }
  
  .copyright-text p {
    margin: 0;
    color: rgba(0, 0, 0, 0.35);
    font-size: 11px;
    font-weight: 300;
    text-align: center;
  }
  
  .text-white p {
    color: rgba(255, 255, 255, 0.35);
  }
  
  .login-form-wrapper {
    max-width: 400px;
    width: 100%;
    padding: 0 15px;
    margin: 40px auto 40px;
  }
  .login-form-top {
    padding: 0 30px 40px;
  }
  .login-form-wrapper h3 {
    font-size: 30px;
    font-weight: 500;
  }
  .login-form-wrapper h4 {
    font-size: 24px;
    font-weight: 300;
  }
  
  .th-textbox::placeholder {
    color: rgba(0, 0, 0, 0.3);
  }
  .th-textbox {
    display: block;
    width: 100%;
    background: var(--light-gray);
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    border: 1px solid rgba(24, 28, 31, 0.15);
    padding: 18px 25px 18px 50px;
    border-radius: 30px;
    margin-bottom: 15px;
  }
  .th-textbox:focus {
    border-color: var(--primary-color);
  }
  .form-group {
    position: relative;
  }
  .form-group::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 18px;
    height: 18px;
    z-index: 2;
  }
  .username-icon::before {
    background: url(images/user-icon.svg) no-repeat center center;
  }
  .password-icon::before {
    background: url(images/lock-icon.svg) no-repeat center center;
  }
  .forget-password a {
    font-size: var(--fs-12);
    color: rgba(0, 0, 0, 0.21);
  }
  
  #app-wrapper {
    display: flex;
    align-items: stretch;
  }
  .app-sidebar-top-sec {
    padding: 20px;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .app-sidebar-bottom-sec {
    padding: 20px 20px 10px;
  }
  #app-sidebar.active .app-sidebar-top-sec {
    overflow: hidden;
    padding: 10px 0;
  }
  
  #app-sidebar {
    /* position: relative;
    padding: 20px; */
    z-index: 99;
    max-width: 220px;
    min-width: 220px;
    background: var(--theme-dark);
    color: var(--white);
    transition: all 0.3s;
    position: sticky;
    top: 0;
    max-height: 100vh;
  }
  
  #app-sidebar.active {
    max-width: 85px;
    min-width: 85px;
    transition: all 0.3s;
    text-align: center;
    padding: 20px 8px;
  }
  
  #app-main-content {
    width: 100%;
    min-height: 100vh;
    transition: width 0.3s;
  }
  
  .app-logo {
    width: 70px;
    margin: 0 auto 20px;
  }
  .sidebar-cta-sec {
    padding: 0 0 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
  .sidebar-cta-sec .searchbar {
    width: 180px;
    background: rgba(255, 255, 255, 0.11);
    color: #fff;
    padding: 15px 40px 15px 15px;
  }
  .sidebar-cta-sec .searchbar::placeholder {
    color: rgba(255, 255, 255, 0.2);
  }
  .sidebar-cta-sec .searchbar-wrapper::after {
    display: none;
  }
  .sidebar-cta-sec .searchbar-wrapper::before {
    right: 14px;
    left: auto;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(259deg) brightness(107%) contrast(101%);
    opacity: 1;
  }
  .sidebar-cta-sec .searchbar-wrapper {
    margin: 0;
    width: 180px;
  }
  
  .pro-btn {
    background: var(--primary-color);
    padding: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: var(--fs-13);
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
  }
  .pro-btn::before,
  .pro-btn::after {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .pro-btn::after {
    background: url(images/arrow-icon.svg) no-repeat center center;
    filter: invert(110%) sepia(96%) saturate(14%) hue-rotate(255deg) brightness(94%) contrast(106%);
    transform: rotate(90deg);
    transition: 0.3s all;
  }
  .pro-btn.opened::after {
    transform: rotate(-90deg);
    transition: 0.3s all;
  }
  .pro-btn::before {
    background: var(--white);
    border-radius: 4px;
  }
  .menu-dropdown {
    top: 100%;
    width: 100%;
    background: #15191C;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  }
  .menu-dropdown ul li {
    padding: 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .menu-dropdown ul li:last-child {
    border-bottom: none;
  }
  .menu-dropdown ul li a {
    font-size: var(--fs-13);
    font-weight: 400;
    color: var(--white);
  }
  .menu-dropdown ul li a:hover {
    color: var(--primary-color);
  }
  .menu-items-wrapper li {
    margin: 0 0 8px;
  }
  .menu-items-wrapper li a {
    display: block;
    color: var(--white);
    position: relative;
    padding: 14px 10px 14px 45px;
    font-size: var(--fs-13);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
  }
  .menu-items-wrapper li a::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(images/arrow-icon.svg) no-repeat center center;
    width: 12px;
    height: 12px;
  }
  .menu-items-wrapper li.active-menu-item a,
  .menu-items-wrapper li a:hover {
    font-weight: 600;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }
  .menu-items-wrapper li.menu-icon a::before {
    content: "";
    position: absolute;
    left: 13px;
    top: 0;
    bottom: 0;
    width: 18px;
    height: 18px;
    margin: auto;
    background-size: contain !important;
  }
  .menu-items-wrapper li.menu-icon1 a::before {
    background: url(images/nav-icon1.svg) no-repeat center center;
  }
  .menu-items-wrapper li.menu-icon2 a::before {
    background: url(images/nav-icon2.svg) no-repeat center center;
  }
  .menu-items-wrapper li.menu-icon3 a::before {
    background: url(images/nav-icon3.svg) no-repeat center center;
  }
  .menu-items-wrapper li.menu-icon4 a::before {
    background: url(images/nav-icon4.svg) no-repeat center center;
  }
  .menu-items-wrapper li.menu-icon5 a::before {
    background: url(images/nav-icon5.svg) no-repeat center center;
  }
  .menu-items-wrapper li.menu-icon6 a::before {
    background: url(images/nav-icon6.svg) no-repeat center center;
  }
  .menu-items-wrapper li.active-menu-item a::before,
  .menu-items-wrapper li a:hover::before {
    filter: invert(19%) sepia(8%) saturate(1467%) hue-rotate(6deg) brightness(88%) contrast(90%);
  }
  
  .searchbar::placeholder {
    color: rgba(0, 0, 0, 0.2);
  }
  .searchbar-wrapper {
    position: relative;
    margin-right: 20px;
  }
  .searchbar-wrapper::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(images/search-icon.svg) no-repeat center center;
    width: 20px;
    height: 20px;
    opacity: 0.2;
  }
  .searchbar-wrapper::after {
    content: "";
    position: absolute;
    right: -20px;
    height: 25px;
    width: 1px;
    background: rgba(0, 0, 0, 0.07);
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .searchbar {
    width: 210px;
    border-radius: 10px;
    padding: 15px 15px 15px 40px;
    background: rgba(0, 0, 0, 0.07);
    border: none;
    font-size: var(--fs-15);
    font-weight: 400;
    color: var(--black);
  }
  
  .notify-icon {
    background: url(images/bell-icon.svg) no-repeat center center;
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin: 10px 20px;
    cursor: pointer;
  }
  .notify-icon-bubble {
    width: 9px;
    height: 9px;
    box-shadow: 0 0 6px var(--primary-color);
    background: var(--primary-color);
    border-radius: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
  }
  .user-img {
    margin-right: 12px;
  }
  .user-img img {
    min-width: 45px;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid var(--black);
  }
  .loggedin-user {
    position: relative;
    padding-right: 20px;
    cursor: pointer;
  }
  .loggedin-user::after {
    content: "";
    background: url(images/arrow-icon.svg) no-repeat center center;
    background-size: contain !important;
    filter: invert(110%) sepia(96%) saturate(14%) hue-rotate(255deg) brightness(94%) contrast(106%);
    transform: rotate(90deg);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 11px;
    height: 11px;
  }
  .loggedin-user span {
    font-size: 15px;
  }
  .page-title span {
    font-size: var(--fs-13);
    font-weight: 300;
  }
  .header-content-right {
    margin-left: auto;
    margin-bottom: 15px;
    width: auto;
  }
  .header-content-left {
    width: 100%;
  }
  .page-title h3 {
    font-size: 32px;
    font-weight: 600;
  }
  .project-image {
    position: relative;
    margin-bottom: 10px;
  }
  .project-image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 15px;
  }
  .project-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
  }
  .project-progress {
    position: relative;
  }
  .project-image-stats-wrapper {
    color: var(--white);
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 10px;
    bottom: 10px;
    left: 20px;
    right: 20px;
    margin: auto;
    z-index: 2;
  }
  .project-img-stats h5 {
    color: inherit;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 600;
  }
  .project-img-stats p {
    font-size: var(--fs-13);
    font-weight: 300;
  }
  
  .gray-radius-box {
    padding: 15px;
    border-radius: 10px;
    background: var(--light-gray);
  }
  
  .steps-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .steps-list li:last-child {
    border-bottom: none;
  }
  .steps-list li.stats-green .step-text small {
    color: rgb(var(--theme-green));
  }
  .steps-list li.stats-blue .step-text small {
    color: rgb(var(--theme-blue));
  }
  .steps-list li.stats-pink .step-text small {
    color: rgb(var(--theme-pink));
  }
  .steps-list li.stats-green .step-icon {
    background: rgba(var(--theme-green), 0.1);
  }
  .steps-list li.stats-blue .step-icon {
    background: rgba(var(--theme-blue), 0.1);
  }
  .steps-list li.stats-pink .step-icon {
    background: rgba(var(--theme-pink), 0.1);
  }
  .step-icon {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 100%;
    background: rgba(0, 0, 0, 0.07);
  }
  .step-icon::before {
    content: "";
    width: 16px;
    height: 16px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .step-icon1::before {
    background: url(images/stats-icon1.svg) no-repeat center center;
  }
  .step-icon2::before {
    background: url(images/stats-icon2.svg) no-repeat center center;
  }
  .step-icon3::before {
    background: url(images/stats-icon3.svg) no-repeat center center;
  }
  .step-icon4::before {
    background: url(images/stats-icon4.svg) no-repeat center center;
  }
  .step-icon5::before {
    background: url(images/stats-icon5.svg) no-repeat center center;
  }
  
  .step-text {
    padding-left: 40px;
    position: relative;
    display: block;
    margin: 5px 0;
    font-size: var(--fs-13);
    font-weight: 500;
  }
  .step-text small {
    display: block;
    font-size: 10px;
  }
  .step-progress {
    font-size: 10px;
    min-width: 70px;
    text-align: right;
  }
  
  .align-boxes {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
    margin-bottom: 10px;
    position: relative;
  }
  .stats-boxes .align-boxes .down-arrow::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 30px;
    background: url(images/progress-arrow-icon.svg) no-repeat center center;
  }
  .stats-boxes .align-boxes h4 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 0;
    position: relative;
  }
  .stats-boxes .align-boxes p {
    font-size: 15px;
    font-weight: 300;
  }
  .green-radius-box {
    background: rgba(var(--theme-green), 0.1);
    color: rgb(var(--theme-green));
  }
  .blue-radius-box {
    background: rgba(var(--theme-blue), 0.1);
    color: rgb(var(--theme-blue));
  }
  .pink-radius-box {
    background: rgba(var(--theme-pink), 0.1);
    color: rgb(var(--theme-pink));
  }
  .progress-boxes h4 {
    font-size: 36px;
    color: inherit;
  }
  .progress-boxes .align-boxes .progress-arrow {
    position: absolute;
    right: 15px;
    top: 10px;
    z-index: 2;
    width: 30px;
    height: 30px;
    background: url(images/progress-arrow-icon.svg) no-repeat center center;
  }
  .progress-boxes .align-boxes .more-arrow-big {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;
  }
  .more-arrow-big {
    display: inline-block;
    width: 40px;
    height: 15px;
    margin-top: auto;
    background: url(images/big-arrow-icon.svg) no-repeat center center;
  }
  
  .info-message::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(images/info-icon.svg) no-repeat center center;
    width: 24px;
    height: 24px;
  }
  .info-message {
    position: relative;
    font-size: var(--fs-13);
    font-weight: 300;
    background: rgba(var(--theme-pink), 0.15);
    padding: 15px 25px 15px 50px;
    color: rgb(var(--theme-pink));
    border-radius: 10px;
  }
  .info-message p {
    margin: 0;
  }
  .info-message strong {
    font-weight: 600;
  }
  .close-info-message {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url(images/cross-sm-icon.svg) no-repeat center center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    cursor: pointer;
  }
  
  body.fixed {
    overflow: hidden;
  }
  .popup-modal-btn {
    cursor: pointer;
  }
  .popup-modal {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
  }
  .popup-modal-inner {
    background: var(--white);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 40px 30px;
    left: 0;
    transition: all 0.3s;
    margin: auto;
    overflow: auto;
  }
  .bg-lightgrey {
    background: var(--lightGray) !important;
  }
  .close-popup {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .close-popup::before {
    transform: rotate(45deg);
  }
  .close-popup::after {
    transform: rotate(135deg);
  }
  .close-popup::before, .close-popup::after {
    position: absolute;
    content: "";
    border-radius: 4px;
    width: 2px;
    height: 22px;
    top: 0px;
    bottom: 0;
    right: 0;
    left: 0px;
    margin: auto;
    background: var(--theme-dark);
  }
  .popup-modal h2 {
    font-weight: 600;
    font-size: 40px;
    margin-bottom: 20px;
  }
  .mw-750px {
    max-width: 750px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
  }
  .mw-900px {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
  }
  .green-text-box {
    color: rgb(var(--theme-green));
  }
  .pink-text-box {
    color: rgb(var(--theme-pink));
  }
  .brown-text-box {
    color: var(--primary-color)
  }
  .popup-modal .gray-radius-box h2 {
    color: inherit;
    margin-bottom: 10px;
    margin-top: 30px;
  }
  .box-icon-bottom {
    margin: 10px auto;
    display: inline-block;
  }
  
  
  .step-progress-circle {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: 5px;
  
  }
  .step-progress-circle svg {
    width: 100%;
    height: 100%;
  }
  .step-progress-circle svg .circle-progress-value,
  .step-progress-circle svg .circle-progress-circle {
    stroke-width: 14px;
  }
  .stats-green .step-progress-circle {
    box-shadow: 0 3px 20px rgba(var(--theme-green), 0.4);
    border-radius: 100%;
    background: var(--light-gray);
  }
  .stats-blue .step-progress-circle {
    box-shadow: 0 3px 20px rgba(var(--theme-blue), 0.4);
    border-radius: 100%;
    background: var(--light-gray);
  }
  .stats-pink .step-progress-circle {
    /* box-shadow: 0 3px 20px rgba(var(--theme-pink), 0.4); */
    border-radius: 100%;
  }
  .stats-green .step-progress-circle svg .circle-progress-value {
    stroke: rgb(var(--theme-green));
  }
  .stats-blue .step-progress-circle svg .circle-progress-value {
    stroke: rgb(var(--theme-blue));
  }
  .stats-pink .step-progress-circle svg .circle-progress-value {
    stroke: rgb(var(--theme-pink));
  }
  
  .project-stats-top {
    max-width: 170px;
    width: 60%;
    margin: auto;
    text-align: center;
    position: relative;
  }
  .circle-progress {
    max-width: 170px;
    max-height: 170px;
    width: 100%;
  }
  .circle-progress svg {
    width: 100%;
    height: 100%;
  }
  .circle-progress svg .circle-progress-circle {
    stroke: rgba(255, 255, 255, 0.17);
  }
  .circle-text {
    position: absolute;
    width: 90%;
    top: 50%;
    margin: auto;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .circle-text strong {
    font-size: 30px;
    font-weight: 600;
  }
  .circle-text span {
    font-size: 11px;
    font-weight: 300;
    display: block;
  }
  
  .circle-progress svg .circle-progress-value {
    stroke: var(--primary-color);
  }
  
  .mh-220 {
    min-height: 220px;
  }
  #myChart {
    /* max-width: 750px; */
    width: 100% !important;
  }
  
  .hamburger-menu-btn {
    z-index: 999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hamburger-menu-btn span {
    background: var(--primary-color);
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    border-radius: 4px;
    transition: all 0.3s;
  }
  .hamburger-menu-btn span::before {
    top: -4px;
  }
  .hamburger-menu-btn span::after {
    bottom: -4px;
  }
  .hamburger-menu-btn span::before, .hamburger-menu-btn span::after {
    background: var(--primary-color);
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 4px;
    position: absolute;
    left: 0;
    transition: all 0.3s;
  }
  .sidebar-toggle-btn-mobile {
    position: absolute;
    top: 20px;
    left: 10px;
    z-index: 99999 !important;
  }
  
  .projects-list-toggle-btn {
    width: 36px;
    height: 60px;
    left: -36px;
    top: 36px;
    position: absolute;
    z-index: 9;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.15);
    background: var(--secondary-color);
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    display: flex;
  }
  .sidebar-projects-list .projects-list-toggle-btn.opened .arrow-icon {
    transform: rotate(0deg);
  }
  .sidebar-projects-list .arrow-icon {
    width: 18px;
    height: 18px;
    background: url(images/arrow-icon.svg) no-repeat center center;
    display: inline-block;
    margin: auto;
    transform: rotate(180deg);
  }
  .sidebar-projects-list.active {
    transition: all 0.4s;
    transform: translateX(0px);
  }
  .sidebar-projects-list {
    transform: translateX(405px);
    width: 400px;
    background: var(--secondary-color);
    color: var(--white);
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    z-index: 999;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.15);
    transition: all 0.4s;
  }
  .sidebar-project-content {
    padding: 20px;
    height: 100%;
    overflow-y: auto;
  }
  .sidebar-projects-list h4,
  .sidebar-projects-list h5,
  .sidebar-projects-list a {
    color: inherit;
  }
  .sidebar-projects-list h4 {
    font-size: 20px;
  }
  .sidebar-projects-list h5 {
    font-size: var(--fs-15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    padding-bottom: 12px;
    position: relative;
  }
  .project-location-tag {
    padding: 10px 0 30px;
  }
  .remove-tag {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 15px;
    height: 15px;
    margin: auto;
    background: url(images/cross-sm-icon.svg) no-repeat center center;
    z-index: 2;
    cursor: pointer;
    filter: invert(14%) sepia(45%) saturate(410%) hue-rotate(340deg) brightness(81%) contrast(86%);
  }
  .project-location-tag span {
    position: relative;
    display: inline-block;
    margin: 5px 10px 5px 0;
    padding: 14px 40px 14px 30px;
    font-size: var(--fs-15);
    font-weight: 500;
    border-radius: 30px;
    background: rgba(196, 174, 114, 0.16);
    color: var(--primary-color);
  }
  .location-title {
    position: relative;
  }
  .location-title.opened::after {
    transform: rotate(-90deg);
  }
  .location-title::after {
    content: "";
    width: 17px;
    height: 17px;
    background: url(images/arrow-icon.svg) no-repeat center center;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    z-index: 1;
    position: absolute;
    transform: rotate(90deg);
  }
  .location-title::before {
    content: "";
    width: 45px;
    height: 1px;
    background: var(--white);
    left: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
  }
  
  .location-project-list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .location-project-list ul li {
    width: 49%;
    margin: 10px 0;
  }
  .location-project-img,
  .location-project-img img {
    border-radius: 10px;
    position: relative;
  }
  .location-proj-progress {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
  }
  .location-proj-progress svg {
    width: 100%;
    height: 100%;
  }
  .location-proj-progress svg .circle-progress-circle {
    stroke: rgba(0, 0, 0, 0.7);
    stroke-width: 12px;
  }
  .location-proj-progress svg .circle-progress-value {
    stroke: var(--primary-color);
    stroke-width: 12px;
  }
  .location-proj-progress .circle-progress-text {
    fill: var(--white);
    font-size: 24px;
    /* font-family: var(--font-family-Lufga) !important; */
    font-family: var(--font-text) !important;
  }
  .location-project-list ul li .loc-project-name {
    font-weight: 400;
    font-size: var(--fs-13);
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 8px;
  }
  
  .section-title h2 {
    font-size: 36px;
    line-height: 38px;
  }
  .section-title h3 {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 10px;
  }
  
  .tags-wrapper .sm-tag {
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 18px 25px;
    min-width: 110px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    margin: 5px 10px 5px 0;
    position: relative;
    transition: all 0.3s;
  }
  .tags-wrapper .sm-tag::after {
    content: "";
    background: url(images/sm-arrow-icon.svg) no-repeat center center;
    width: 20px;
    height: 10px;
    margin: auto;
    display: inline-block;
    margin-left: 4px;
    transition: all 0.3s;
  }
  .tags-wrapper .sm-tag:hover::after{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(192deg) brightness(102%) contrast(105%);
    transition: all 0.3s;
  }
  .tags-wrapper .sm-tag:hover {
    background: var(--primary-color);
    color: var(--white);
    transition: all 0.3s;
  }
  .map-tooltip.active {
    display: block;
  }
  .map-tooltip {
    pointer-events: none;
    position: absolute;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    background: var(--white);
    padding: 15px 30px;
    z-index: 5;
    height: 60px;
    line-height: 35px;
    margin: 0 auto;
    transform: translateX(-50%);
    display: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: var(--primary-color);
  }
  
  .map-tooltip:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 100%;
    width: 0;
    height: 0;
    margin-left: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid white;
  }
  .map-wrapper {
    /* overflow: hidden; */
    margin: 0 auto;
    margin-top: -5%;
    /* max-width: 1600px; */
    width: 80%;
    margin-left: 10%;
    position: relative;
  }
  .map-wrapper svg {
    max-width: 900px;
    width: 90%;
    transform: rotate(-25deg);
  }
  .map-wrapper svg path {
    transition: 0.3s ease-in-out;
    cursor: pointer;
  }
  .map-wrapper path:hover {
    fill: rgb(221,205,164); /* Old browsers */
    fill: -moz-radial-gradient(center, ellipse cover, rgba(221,205,164,1) 0%, rgba(177,155,101,1) 100%); /* FF3.6-15 */
    fill: -webkit-radial-gradient(center, ellipse cover, rgba(221,205,164,1) 0%,rgba(177,155,101,1) 100%); /* Chrome10-25,Safari5.1-6 */
    fill: radial-gradient(ellipse at center, rgba(221,205,164,1) 0%,rgba(177,155,101,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
  .primary-color {
    color: var(--primary-color);
  }
  .secondary-color {
    color: var(--secondary-color);
  }
  .pink-color {
    color: rgb(var(--theme-pink));
  }
  .box-list-wrapper li {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 8px 20px;
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 36px;
    min-height: 65px;
    line-height: 50px;
  }
  .box-list-wrapper li:last-child {
    margin-bottom: 0;
  }
  .box-list-wrapper li.list-title {
    font-size: 18px;
    font-weight: bold;
  }
  
  /*====== Retal Rise ======*/
  :root {
    --lightGray: #F9F9F9;
    --green: #0BDB13;
    --red: #F80505;
  }
  
  .bg-lightGray {
    background: var(--lightGray);
  }
  .red-color {
    color: var(--red);
  }
  .green-color {
    color: var(--green);
  }
  .white-radius-box {
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.05);
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
  }
  .dashboard-boxes .white-radius-box {
    min-height: 185px;
  }
  .dashboard-boxes .white-radius-box h4 {
    margin-bottom: 5px;
  }
  .dashboard-boxes .white-radius-box p {
    font-size: var(--fs-13);
  }
  .white-radius-box h6 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: var(--fs-15);
  }
  .avail-labels li {
    margin: 5px 0 2px 20px;
    font-size: var(--fs-13)
  }
  .avail-labels li i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    margin-right: 7px;
  }
  .avail-icon {
    background: #D4C39A;
  }
  .booked-icon {
    background: var(--primary-color);
  }
  .sold-icon {
    background: #AF975A;
  }
  .sm-text {
    color: #888888;
    font-size: var(--fs-12);
  }
  .col-content {
    margin: 10px -15px 0;
    padding: 0 15px;
    /* height: 280px; */
    height: 480px;
    overflow: auto;
  }
  .col-content li {
    align-items: center;
    display: flex;
    font-size: var(--fs-13);
    padding: 11px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .col-content li:last-child {
    border-bottom: none;
  }
  .col-content .list-v2 li {
    padding: 17px 4px;
  }
  .col-content li strong {
    margin-left: auto;
    font-size: var(--fs-15);
    font-weight: 700;
  }
  .sm-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    background: #F0F0F1;
    border-radius: 100%;
  }
  .sm-logo img {
    max-width: 100%;
    margin: auto;
  }
  .dashboard-radius-box {
    background: rgba(196, 174, 117, 0.09);
    padding: 15px;
    border-radius: 15px;
  }
  .dashboard-stats-top {
    position: relative;
    width: 130px;
    height: 130px;
  }
  .dashboard-stats-top .circle-text {
    text-align: center;
    color: var(--secondary-color);
  }
  .dashboard-stats-top .circle-text strong {
    font-size: var(--fs-18);
  }
  .dashboard-stats-top .circle-text small {
    display: block;
    font-size: 10px;
  }
  .dashboard-stats-top .circle-progress circle,
  .dashboard-stats-top .circle-progress path {
    stroke-width: 4px;
  }
  .dashboard-stats-top svg .circle-progress-circle {
    stroke: rgba(196, 174, 117, 0.29)
  }
  .dashboard-radius-box small {
    font-size: 11px;
  }
  .time-slot {
    margin: 5px 8px;
  }
  .time-slot span {
    display: block;
    text-align: center;
    font-size: 36px;
  }
  .sold-out-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 0;
  }
  .sold-out-list li:last-child {
    border-bottom: none;
  }
  .d-bar {
    height: 45px;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
  }
  .d-bar span {
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-14);
    font-weight: 700;
    color: var(--white);
    width: 100%;
    min-width: 25px;
    transition: all 0.8s;
  }
  .available-bar {
    background: #D4C39A;
  }
  .booked-bar {
    background: var(--primary-color);
  }
  .sold-bar {
    background: #AF975A;
  }
  .b-bar-cont {
    max-width: calc(33.3% - 10px);
    width: 100%;
    margin: 14px 5px 0;
  }
  .b-bar-cont p {
    font-size: var(--fs-14);
    margin-bottom: 2px;
  }
  .time-box-area .dashboard-radius-box {
    min-height: 100%;
  }
  .date-filter-wrapper {
    padding: 10px 0;
  }
  .date-filter-wrapper h5 {
    margin: 10px 0;
    text-transform: uppercase;
    font-size: var(--fs-16);
    margin-right: 15px;
  }
  .date-filter {
    position: relative;
    min-width: 220px;
    display: inline-flex;
    padding: 10px 30px 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    font-size: var(--fs-13);
    cursor: pointer;
    color: var(--secondary-color);
  }
  .filters-sec .date-filter-holder::after,
  .date-filter::after {
    content: "";
    background: url(images/down-arrow-icon.svg) no-repeat center center;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    pointer-events: none;
  }
  
  .sidebar-toggle-btn {
      cursor: pointer;
      position: fixed;
      z-index: 999999;
      left: 194px;
      top: 200px;
      background: var(--primary-color);
      height: 40px;
      width: 40px;
      border-radius: 100%;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: all 0.3s;
      opacity: 0;
  }
  .sidebar-toggle-btn img {
    transform: rotate(90deg);
  }
  #app-sidebar:hover .sidebar-toggle-btn {
    opacity: 1;
    top: 170px;
    transition: all 0.3s;
  }
  .sidebar-toggle-btn.open {
    left: 59px;
  }
  .sidebar-toggle-btn.open img {
    transform: rotate(-90deg);
  }
  #app-sidebar.active ul.menu-items-wrapper li a span.menu-text, 
  #app-sidebar.active .sm-navbar-hide {
    width: 0;
    margin: 0;
    visibility:hidden;
    opacity: 0;
    transition-delay: 0s;
  }
  .sm-navbar-hide {
    transition-delay: 0.4s;
  }
  #app-sidebar.active .menu-text {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  #app-sidebar.active .menu-items-wrapper li a::after {
    visibility: hidden;
  }
  #app-sidebar.active .menu-items-wrapper li a::before {
    right: 13px;
  }
  #app-sidebar.active .pro-btn::before, 
  #app-sidebar.active .pro-btn::after {
    left: 10px;
  }
  #app-sidebar.active .menu-dropdown ul li {
    padding: 15px 5px;
  }
  .dropdown-content.right-align {
    right: 10px;
  }
  .dropdown-content {
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    padding: 10px 15px;
    min-width: 230px;
    font-size: var(--fs-14);
  }
  .dropdown-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .dropdown-content ul li:last-child {
    border-bottom: none;
  }
  .notify-dropdown {
    width: 300px;
  }
  
  .info-list li:last-child {
    border-bottom: none;
  }
  .info-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: var(--fs-13);
    font-weight: 300;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 14px 8px;
  }
  .info-list li strong {
    margin-left: auto;
    font-weight: 500;
  }
  #departmentChart {
    display: block;
    width: 100%;
    height: 200px;
  }
  .doughnut-chart::after {
    content: "";
    background: rgba(0, 0, 0, 0.1);
    width: 1px;
    height: 70%;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .project-progress-status {
    margin: 20px 0 0;
    text-align: center;
  }
  .doughnut-chart {
    margin: 20px 0 0;
    position: relative;
  }
  .doughnut-chart,
  .project-progress-status {
    width: 100%;
  }
  .doughnut-chart canvas {
    height: 250px;
    width: 250px;
    margin: 0px auto;
  }
  .charts-section p {
    text-transform: uppercase;
    text-align: center;
    font-size: var(--fs-16);
    margin: 0;
  }
  .project-status-info {
    display: block;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.09);
    width: 110px;
    min-height: 50px;
    font-size: 11px;
    margin: 0 auto 10px;
  }
  .project-status-info strong {
    font-size: 13px;
    margin-top: 2px;
    display: block;
  }
  .app-dark-header {
    background: var(--theme-dark);
    background: #23203f;
    color: var(--white);
  }
  .app-dark-header .loggedin-user::after {
    filter: none;
  }
  .pink-theme .white-radius-box h6 {
    color: var(--pink3);
  }
  .pink-theme .sold-bar,
  .pink-theme .sold-icon {
    background: var(--pink1);
  }
  .pink-theme .booked-bar,
  .pink-theme .booked-icon {
    background: var(--pink2);
  }
  .pink-theme .available-bar,
  .pink-theme .avail-icon {
    background: var(--pink3);
  }
  .pink-theme .circle-progress svg .circle-progress-value {
    stroke: var(--pink2);
  }
  .pink-theme .dashboard-stats-top svg .circle-progress-circle {
    stroke: rgba(239, 233, 235, 0.39);
  }
  .pink-theme a:active,
  .pink-theme a:focus,
  .pink-theme a:hover {
    color: var(--pink2);
  }
  .fs-18 {
    font-size: var(--fs-18);
  }
  .bg-white {
    background: #fff;
  }
  .border-radius-10 {
    border-radius: 10px !important;
  }
  .monthy-units-sales .b-bar-cont {
    max-width: inherit !important;
    text-align: left;
    margin: 25px 0 0;
  }
  .monthy-units-sales .b-bar-cont p {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
  }
  .monthy-units-sales .avail-icon,
  .monthy-units-sales .available-bar {
    background: #F5F5F5;
    color: #8B8D8F;
  }
  .monthy-units-sales .booked-icon,
  .monthy-units-sales .booked-bar {
    background: var(--theme-blue);
  }
  .monthy-units-sales .sold-icon,
  .monthy-units-sales .sold-bar {
    background: #75D2C6;
  }
  
  .accordion-item-body .menu-items-wrapper li a::after {
    display: none;
  }
  .accordion-item-body .menu-items-wrapper li a {
    padding: 14px 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 7px;
  }
  .accordion-item-body .menu-items-wrapper li.active-menu-item a,
  .accordion-item-body .menu-items-wrapper li a:hover {
    font-weight: 400;
    background: var(--theme-blue);
  }
  .accordion-item-body .menu-items-wrapper li.active-menu-item a::after,
  .accordion-item-body .menu-items-wrapper li a:hover::after {
    display: block;
  }
  .accordion-item-header {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
    cursor: pointer;
  }
  .accordion-item-body {
    display: none;
    margin-bottom: 20px;
  }
  .accordion-arrow {
      width: 0; 
      height: 0; 
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
      border-left: 8px solid white;
  
      display: inline-block;
      vertical-align: middle;
      margin: -2px 7px 0 0;
      transition: 0.3s all;
  }
  .accordion-item-header.opened .accordion-arrow {
    transform: rotate(90deg);
  }
  .filters-sec span {
    font-size: 13px;
    color: #8B8D8F;
  }
  .select-dropdown {
    display: inline-block;
    background: #fff;
    border-radius: 10px;
    margin: 0 5px;
    position: relative;
  }
  .filter-splitter::after {
    content: "";
    position: absolute;
    right: -16px;
    top: 6px;
    bottom: 6px;
    background: rgba(0, 0, 0, 0.09);
    width: 1px;
  }
  .select-dropdown select {
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    color: #181C1F;
  }
  .filters-sec .date-filter-holder {
    background: #fff;
    border-color: #fff;
    margin-left: 15px;
    border-radius: 10px;
    display: inline-block;
    position: relative;
  }
  .filters-sec .date-filter-holder .date-filter {
    border: none;
    width: 230px;
    padding: 10px 20px 10px 15px;
    font-size: var(--fs-12);
  }
  .filters-sec .date-filter-holder span {
    color: #181C1F;
  }
  .filters-sec select {
    min-width: 140px;
  }
  .grey-box {
    border-radius: 15px;
    background: var(--light-gray);
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    display: flex;
    margin-top: 10px;
    padding: 10px 5px;
  }
  .grey-box h4 {
    margin: 0;
  }
  .projects-boxes .white-radius-box {
    text-align: left;
    min-height: 140px;
    padding: 20px;
  }
  .projects-boxes .white-radius-box strong {
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
  }
  .projects-detail-wrapper h5 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
  }
  .satisfaction-chart {
    position: relative;
    max-width: 320px;
    margin: auto;
  }
  .stats-chart-text,
  .satisfaction-text {
    position: absolute;
    top: 15px;
    left: -50%;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
    text-align: center;
    width: 90px;
    height: 80px;
  }
  .satisfaction-text-right {
    right: -34%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .stats-chart-text strong,
  .satisfaction-text strong {
    font-weight: 600;
    font-size: 20px;
    display: block;
  }
  .stats-chart-text span,
  .satisfaction-text span {
    font-size: 12px;
  }
  .stats-chart-text {
    left: 0;
    top: -5px;
    line-height: 16px;
  }
  .units-sales-stats {
    padding: 15px 0;
  }
  .units-sales-progress {
    background: var(--light-gray);
    min-height: 50px;
    border-radius: 10px;
    padding: 4px;
    display: flex;
  }
  .units-sales-values {
    font-size: 12px;
    margin-top: 20px;
    font-weight: 500;
    color: #8B8D8F;
  }
  .units-sales-values span span,
  .units-sales-values a {
    color: var(--theme-blue);
  }
  .units-sales-progress span {
    border-radius: 1px;
    width: 9.5%;
    height: 45px;
    margin: 0 1px;
    display: block;
  }
  .units-sales-progress span:first-child {
    border-radius: 7px 1px 1px 7px;
  }
  .units-sales-progress span:nth-child(10) {
    border-radius: 1px 7px 7px 1px;
  }
  .progress-bar1 {
    background: #E05F6D;
  }
  .progress-bar2 {
    background: #E9A860;
  }
  .progress-bar3 {
    background: #75D2C6;
  }
  .view-details:focus,
  .view-details:active,
  .view-details:hover,
  .view-details {
    font-size: 13px;
    color: #8B8D8F;
    position: relative;
    padding-right: 20px;
  }
  .view-details::after {
    content: "";
    background: url(images/down-arrow-icon.svg) no-repeat center center;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto;
    transform: rotate(-90deg);
    filter: invert(58%) sepia(4%) saturate(196%) hue-rotate(169deg) brightness(95%) contrast(88%);
  }
  .project-completion {
    border: 1px solid #86B09A;
  }
  .project-completion h5 {
    color: #86B09A;
  }
  .units-sales {
    border: 1px solid #E4B77E;
  }
  .units-sales h5 {
    color: #E4B77E;
  }
  .funds-stats {
    border: 1px solid #E05F6D;
  }
  .funds-stats h5 {
    color: #E05F6D;
  }
  .red-text-box .grey-box h4,
  .red-text-box strong {
    color: #E05F6D;
  }
  .red-text-box .grey-box {
    color: #E05F6D;
    background: rgba(224, 95, 109, 0.08);
  }
  .brown-text-box .grey-box h4,
  .brown-text-box strong {
    color: #B89077;
  }
  .brown-text-box .grey-box {
    color: #B89077;
    background: rgba(184, 144, 119, 0.08);
  }
  .brown-text-box .cancel-icon {
    filter: invert(62%) sepia(15%) saturate(723%) hue-rotate(340deg) brightness(93%) contrast(94%);
  }
  .p-grey-box {
    padding: 25px 10px;
  }
  .white-radius-box canvas {
    max-width: 100%;
  }
  .sm-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    background-size: contain !important;
  } 
  .signed-icon {
    background: url(images/document-signed-icon.svg) no-repeat center center;
  }
  .pie-chart-icon {
    background: url(images/chart-pie-icon.svg) no-repeat center center;
  }
  .calendar-icon {
    background: url(images/calendar-icon.svg) no-repeat center center;
  }
  .calendar-icon2 {
    background: url(images/calendar-icon2.svg) no-repeat center center;
    min-width: 15px;
  }
  .cancel-icon {
    background: url(images/cancellations-icon.svg) no-repeat center center;
  }
  
  .cu-icon1 {
    background: url(images/Availableunits.svg) no-repeat center center;
  }
  .cu-icon2 {
    background: url(images/Booking.svg) no-repeat center center;
  }
  
  .cu-icon3 {
    background: url(images/Contractinprogress.svg) no-repeat center center;
  }
  .cu-icon4 {
    background: url(images/ExpectedRevenue.svg) no-repeat center center;
  }
  .cu-icon5 {
    background: url(images/Handedoverunit.svg) no-repeat center center;
  }
  .cu-icon6 {
    background: url(images/Leads.svg) no-repeat center center;
  
  }
  .cu-icon7 {
    background: url(images/Opportunity.svg) no-repeat center center;
  }
  
  .cu-icon8 {
    background: url(images/Opportunity.svg) no-repeat center center;
  }
  
  .cu-icon9 {
    background: url(images/SoldUnit.svg) no-repeat center center;
  }
  
  .cu-icon10 {
    background: url(images/TotalSales.svg) no-repeat center center;
  }
  
  .cu-icon11 {
    background: url(images/Totalunits.svg) no-repeat center center;
  }
  
  .red-text-box .cancel-icon {
    filter: invert(46%) sepia(69%) saturate(1758%) hue-rotate(321deg) brightness(98%) contrast(78%);
  }
  .cta-links a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 15px;
    border-radius: 7px;
    display: block;
    font-size: var(--fs-12);
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
  }
  .cta-links a:hover,
  .cta-links a.active {
    background: #916A50;
  }
  .switch-btn {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 15px;
    text-align: center;
    border-radius: 40px;
    margin-bottom: 30px;
    font-size: var(--fs-13);
    font-weight: 600;
    color: var(--white);
  }
  .switch-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);;
  }
  .md-arrow-icon {
    background: url(images/md-arrow-icon.svg) no-repeat center center;
    width: 11px;
    height: 9px;
  }
  .projects-boxes .sm-icon {
    min-width: 15px;
  }
  
  .separator-list li:first-child::after {
    content: "";
    top: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.1);
    right: 0;
    margin: auto;
    position: absolute;
    z-index: 1;
    width: 1px;
  }
  .separator-list li {
    position: relative;
    padding: 0 10px;
    width: 50%;
  }
  .separator-list li small {
    font-size: 11px;
    display: block;
  }
  .ar-text {
    color: rgba(var(--secondary-rgb), 0.4);
  }
  .fw-600 {
    font-weight: 600;
  }
  .goals-report-toggle label {
    cursor: pointer;
    font-size: var(--fs-13);
    font-weight: 500;
  }
  .goals-report-toggle label .not-selected {
    color: rgba(24, 28, 31, 0.4);
    font-weight: 400;
  }
  .filters-sec label {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    color: var(--secondary-color);
    background: var(--white);
    min-height: 35px;
    position: relative;
    font-size: var(--fs-12);
    min-width: 110px;
  }
  .filters-sec input[type="checkbox"]:checked + label::after {
    background: var(--black) url(images/sm-check-icon.svg) no-repeat center center;
    background-size: 10px 8px !important;
    border-color: var(--black);
  }
  .filters-sec label::after {
    content: "";
    margin-left: 10px;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(139, 141, 143, 0.5);
    background: var(--white);
  }
  .filters-sec ul li input[type="checkbox"] {
    position: absolute;
    left: 0;
    opacity: 0;
  }
  .filters-sec ul li {
    margin: 5px 8px 5px 0;
  }
  .daterangepicker-field {
    position: relative;
  }
  .icon-dark-gray {
    filter: invert(59%) sepia(6%) saturate(778%) hue-rotate(184deg) brightness(87%) contrast(87%);
    opacity: 0.3;
  }
  .grid-column-210 {
    /* grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); */
    grid-template-columns: repeat(auto-fit, minmax(min(100%, max(205px, 100%/7)), 1fr));
    gap: 10px;
  }
  .grid-column-150 {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, max(150px, 100%/9)), 1fr));
    gap: 10px;
  }
  .grid-column-150 .white-radius-box,
  .grid-column-210 .white-radius-box {
    border-radius: 10px;
    margin-bottom: 0;
  }
  .mh-105 {
    min-height: 105px;
  }
  strong.sub-title,
  .he-fs-14 strong {
    font-size: var(--fs-14);
    font-weight: 500;
  }
  .bg-grey-list li {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 5px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-12);
    margin-bottom: 5px;
  }
  .bg-grey-list li span:first-child {
    margin-right: 6px;
  }
  .bg-grey-list li span:last-child {
    margin-right: 5px;
    line-height: 15px;
    text-align: right;
  }
  .sale-amount {
    font-size: 11px;
    font-weight: 500;
    color: var(--theme-blue);
    margin-left: 8px;
    display: inline-block;
  }
  .serial-num {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 11px;
    background: #E9A860;
  }
  .bg-serial1 {
    background: #75D2C6;
  }
  .fixed-switch-btn:focus,
  .fixed-switch-btn:active,
  .fixed-switch-btn:hover,
  .fixed-switch-btn {
    position: fixed;
    bottom: 30px;
    left: 20px;
    z-index: 9999;
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: var(--white);
    margin: 0;
  }
  .fixed-switch-btn:focus,
  .fixed-switch-btn:active,
  .fixed-switch-btn:hover {
    opacity: 0.9;
  }
  .select-dropdown-grey {
    border-radius: 10px;
    background: var(--light-gray);
    padding: 0;
    border: none;
    min-width: auto;
    position: relative;
  }
  .select-dropdown-grey input,
  .select-dropdown-grey select {
    border: none;
    background: none;
    width: 100%;
    font-size: 11px;
    padding: 10px 15px;
    color: var(--secondary-color);
    appearance: none;
    -webkit-appearance: none;
  }
  .select-dropdown-grey::after {
    content: "";
    width: 10px;
    height: 7px;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(images/down-arrow-icon.svg) no-repeat center center;
    z-index: 1;
    pointer-events: none;
  }
  .select-dropdown-grey select {
    cursor: pointer;
    padding-right: 20px;
  }
  .select-dropdown-grey input {
    width: auto;
  }
  .stats-chart {
    width: 100%;
    position: relative;
  }
  
  .goal-sec-header {
    border-radius: 10px;
    padding: 7px;
    margin-bottom: 15px;
  }
  
  .goal-sec-blue .grey-box,
  .goal-sec-blue .goal-sec-header {
    background: rgba(78, 147, 234, 0.1);
  }
  .goal-sec-blue .goal-sec-header .select-dropdown select {
    background: rgba(78, 147, 234, 0.3);
  }
  .goal-sec-blue .goal-sec-header h5 {
    color: #4E93EA;
  }
  .goal-sec-blue .box-separator {
    border-right: 1px solid rgba(78, 147, 234, 0.2);;
  }
  .goal-sec-blue .stats-box span,
  .goal-sec-blue h3,
  .goal-sec-blue .grey-box {
    color: #4E93EA;
  }
  
  .goal-sec-purple .grey-box,
  .goal-sec-purple .goal-sec-header {
    background: rgba(143, 87, 238, 0.1);
  }
  .goal-sec-purple .goal-sec-header .select-dropdown select {
    background: rgba(143, 87, 238, 0.3);
  }
  .goal-sec-purple .goal-sec-header h5 {
    color: #8F57EE;
  }
  .goal-sec-purple .box-separator {
    border-right: 1px solid rgba(143, 87, 238, 0.2);;
  }
  .goal-sec-purple .stats-box span,
  .goal-sec-purple h3,
  .goal-sec-purple .grey-box {
    color: #8F57EE;
  }
  
  .goal-sec-yellow .grey-box,
  .goal-sec-yellow .goal-sec-header {
    background: rgba(233, 168, 96, 0.1);
  }
  .goal-sec-yellow .goal-sec-header .select-dropdown select {
    background: rgba(233, 168, 96, 0.3);
  }
  .goal-sec-yellow .goal-sec-header h5 {
    color: #E9A860;
  }
  .goal-sec-yellow .box-separator {
    border-right: 1px solid rgba(233, 168, 96, 0.2);;
  }
  .goal-sec-yellow .stats-box span,
  .goal-sec-yellow h3,
  .goal-sec-yellow .grey-box {
    color: #E9A860;
  }
  
  .goal-sec-frozi .grey-box,
  .goal-sec-frozi .goal-sec-header {
    background: rgba(84, 167, 159, 0.1);
  }
  .goal-sec-frozi .goal-sec-header .select-dropdown select {
    background: rgba(84, 167, 159, 0.3);
  }
  .goal-sec-frozi .goal-sec-header h5 {
    color: #54A79F;
  }
  .goal-sec-frozi .box-separator {
    border-right: 1px solid rgba(84, 167, 159, 0.2);
  }
  .goal-sec-frozi .stats-box span,
  .goal-sec-frozi h3,
  .goal-sec-frozi .grey-box {
    color: #54A79F;
  }
  
  .goal-sec-red .grey-box,
  .goal-sec-red .goal-sec-header {
    background: rgba(224, 95, 109, 0.1);
  }
  .goal-sec-red .goal-sec-header .select-dropdown select {
    background: rgba(224, 95, 109, 0.3);
  }
  .goal-sec-red .goal-sec-header h5 {
    color: #E05F6D;
  }
  .goal-sec-red .box-separator {
    border-right: 1px solid rgba(224, 95, 109, 0.2);
  }
  .goal-sec-red .stats-box span,
  .goal-sec-red h3,
  .goal-sec-red .grey-box {
    color: #E05F6D;
  }
  
  .goal-sec-brown .grey-box,
  .goal-sec-brown .goal-sec-header {
    background: rgba(196, 174, 117, 0.1);
  }
  .goal-sec-brown .goal-sec-header .select-dropdown select {
    background: rgba(196, 174, 117, 0.3);
  }
  .goal-sec-brown .goal-sec-header h5 {
    color: #C4AE75;
  }
  .goal-sec-brown .box-separator {
    border-right: 1px solid rgba(196, 174, 117, 0.2);
  }
  .goal-sec-brown .stats-box span,
  .goal-sec-brown h3,
  .goal-sec-brown .grey-box {
    color: #C4AE75;
  }
  
  
  .goal-icon-holder {
    min-width: 40px;
    text-align: right;
  }
  .goal-icon-holder img {
    display: inline-block;
  }
  .goal-sec-header h5 {
    font-size: var(--fs-16);
    font-weight: 500;
    margin: 0;
    margin-left: 8px;
    padding: 4px 0;
  }
  .goal-sec-header .select-dropdown select {
    height: 30px;
    padding: 0 10px;
    min-width: 170px;
  }
  .goal-box-titles .sub-title2 {
    display: block;
    font-size: 11px;
    font-weight: 400;
  }
  .goal-sec-body .white-radius-box {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
  }
  .goal-sec-body {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, max(310px, 100%/7)), 1fr));
    gap: 10px;
    margin-bottom: 30px;
  }
  .half-columns {
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr));
    gap: 10px;
    flex-grow: 1;
  }
  .goal-sec-body .grey-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  .goal-sec-body .grey-box.grey-box2 {
    padding: 10px;
  }
  .goal-sec-body .stats-box span,
  .goal-sec-body .grey-box span {
    font-size: 11px;
  }
  .goal-sec-body .grey-box.grey-box2 span {
    font-size: 10px;
  }
  .goal-sec-body .grey-box.grey-box2 h3 {
    font-size: 18px;
  }
  .goal-sec-body .grey-box h3 {
    font-weight: 400;
    font-size: 20px;
    margin: 0;
  }
  .goal-sec-body .stats-box {
    display: flex;
    flex-direction: column;
  }
  .box-separator {
    border-right: 1px solid rgba(0, 0, 0, 0.05);
  }
  .fs-10 {
    font-size: 10px !important;
  }
  .bg-transparent {
    background: transparent !important;
    box-shadow: none !important;
  }
  .fully-automation-chart {
    max-width: 290px;
    width: 100%;
    margin: 0 auto;
  }
  .total-progress {
    position: relative;
    padding: 10px 0 0;
  }
  .total-progress .progress-bar {
    background: var(--light-gray);
    height: 30px;
    border-radius: 10px;
    position: relative;
    overflow: visible;
  }
  .filled-progress-bar {
    background: var(--secondary-color-light);
    height: 30px;
    border-radius: 10px 0 0 10px;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    will-change: width;
    transition: width 0.6s;
    transition-delay: 0.4s;
  }
  .progress-indicator {
    position: absolute;
    left: calc(100% - 22px);
    top: -33px;
    background: var(--secondary-color-light);
    border-radius: 10px;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: var(--fs-12);
    font-weight: 600;
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    transition-delay: 0.8s;
  }
  .progress-indicator.visible {
    opacity: 1;
    visibility: visible;
  }
  .progress-indicator::before {
    content: "";
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid var(--secondary-color-light);
      position: absolute;
      bottom: -6px;
      left: 0;
      right: 0;
      margin: auto;
  }
  .th-red-color {
    color: #E05F6D;
  }
  .social-list-blue .social-link {
    color: #4E93EA;
  }
  .social-list-blue .social-icon {
    filter: invert(49%) sepia(85%) saturate(1235%) hue-rotate(192deg) brightness(97%) contrast(88%);
  }
  .social-list-purple .social-link {
    color: #8F57EE;
  }
  .social-list-purple .social-icon {
    filter: invert(39%) sepia(27%) saturate(4428%) hue-rotate(240deg) brightness(95%) contrast(97%);
  }
  .social-link {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    font-weight: 500;
    font-size: 11px;
  }
  .social-icon {
    border-radius: 30px;
    width: 26px;
    height: 26px;
    min-width: 26px;
    display: inline-flex;
    margin-right: 7px;
  }
  .linkedin-icon {
    background: url(images/linked-in-icon.svg) no-repeat center center;
  }
  .twitter-icon {
    background: url(images/twitter-icon.svg) no-repeat center center;
  }
  .instagram-icon {
    background: url(images/instagram-icon.svg) no-repeat center center;
  }
  .facebook-icon {
    background: url(images/facebook-icon.svg) no-repeat center center;
  }
  .youtube-icon {
    background: url(images/youtube-icon.svg) no-repeat center center;
  }
  .post-icon {
    background: url(images/post-link-icon.svg) no-repeat center center;
    height: 8px;
  }
  .post-link:hover,
  .post-link:active,
  .post-link:focus {
    color: var(--secondary-color);
  }
  .post-listing-content {
    display: flex;
    align-items: center;
  }
  .post-listing-content:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .post-img {
    max-width: 120px;
    min-width: 120px;
    margin-right: 15px;
  }
  .post-img img,
  .post-img {
    position: relative;
    border-radius: 5px;
  }
  .post-text {
    font-size: 11px;
  }
  .date-tag {
    display: inline-block;
    border-radius: 10px;
    background: #EDF4FD;
    color: #4E93EA;
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 8px 10px;
    font-weight: 500;
    font-size: 12px;
  }
  .agreements-list::before {
    content: "";
    left: 80px;
    top: 0;
    bottom: 0;
    width: 1px;
    position: absolute;
    background: rgba(0, 0, 0, 0.05);
  }
  .agreements-list {
    position: relative;
  }
  .agreement-item {
    position: relative;
    padding-left: 100px;
  }
  .agreement-item:not(:last-child) {
    margin-bottom: 5px;
  }
  .agreement-date::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
  }
  .agreement-date {
    position: absolute;
    left: 0px;
    text-align: right;
    width: 60px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: end;
    font-size: var(--fs-12);
    font-weight: 500;
  }
  .agreement-text {
    border-radius: 10px;
    padding: 10px;
    font-size: 11px;
    font-weight: 400;
  }
  .bg-yellow-10 {
    background: rgba(233, 168, 96, 0.1);
  }
  .color-yellow {
    color: #E9A860;
  }
  .agreement-date.color-yellow::after {
    background-color: #E9A860;
  }
  .bg-blue-10 {
    background: rgba(78, 147, 234, 0.1);
  }
  .color-blue {
    color: #4E93EA;
  }
  .agreement-date.color-blue::after {
    background-color: #4E93EA;
  }
  .bg-purple-10 {
    background: rgba(143, 47, 238, 0.1);
  }
  .color-purple {
    color: #8F57EE;
  }
  .color-brown {
    color: var(--theme-brown);
  }
  .agreement-date.color-purple::after {
    background-color: #8F57EE;
  }
  .bg-red-10 {
    background: rgba(224, 95, 109, 0.1);
  }
  .agreement-date.color-red::after {
    background-color: #E05F6D;
  }
  .bg-frozi-10 {
    background: rgba(84, 167, 159, 0.1);
  }
  .color-red h4,
  .color-red {
    color: #E05F6D;
  }
  .color-frozi h4,
  .color-frozi {
    color: #54A79F;
  }
  .color-frozi1 h4,
  .color-frozi1 {
    color: #75D2C6;
  }
  .agreement-date.color-frozi::after {
    background-color: #54A79F;
  }
  #switchMenu .popup-modal-inner {
    width: 200px;
    height: auto;
    position: fixed;
    bottom: 40px;
    top: auto;
    border-radius: 10px;
    left: 210px;
    padding: 15px 10px;
  }
  #switchMenu .popup-modal-inner ul li a {
    display: block;
    padding: 8px 14px;
    color: #8B8D8F;
    font-size: 12px;
    position: relative;
  }
  #switchMenu .popup-modal-inner ul li a:hover {
    color: var(--secondary-color);
    background: var(--light-gray);
    border-radius: 8px;
    font-weight: 500;
  }
  #switchMenu .popup-modal-inner ul li a::after {
    content: "";
    position: absolute;
    right: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url(images/down-arrow-icon.svg) no-repeat center center;
    width: 15px;
    height: 15px;
    transform: rotate(-90deg);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
  }
  #switchMenu .popup-modal-inner ul li a:hover::after {
    transition: 0.3s all;
    opacity: 1;
    visibility: visible;
  }
  .sm-select select {
    padding: 6px 25px 5px 15px;
    cursor: pointer;
  }
  .bg-th-yellow {
    background: #E9A860;
  }
  .bg-blue {
    background: #4E93EA;
  }
  .bg-frozi {
    background: #75D2C6;
  }
  .bg-purple {
    background: #BD98EC;
  }
  .sub-he-titles span {
    font-size: var(--fs-12);
    font-weight: 500;
    color: #8B8D8F;
  }
  .slider-nav {
    position: absolute;
    right: 15px;
  }
  .slider-nav a {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid var(--secondary-color);
    border-radius: 100%;
  }
  .slider-nav a.prev-icon {
    background: var(--white) url(images/back-arrow.svg) no-repeat center center;
  }
  .slider-nav a.next-icon {
    background: var(--secondary-color) url(images/next-arrow.svg) no-repeat center center;
  }
  .slider-nav-title {
    padding-right: 65px;
    display: inline-block;
  }
  .slick-dots li {
    margin: 0;
  }
  .slick-dotted.slick-slider {
    margin-bottom: 15px;
  }
  .ex-sm-text {
    display: inline-block;
    line-height: normal;
    font-size: 8px !important;
  }
  .sm-center-arrow {
    position: absolute;
    width: 8px;
    height: 9px;
    background-size: contain !important;
    background: url(images/arrow-icon.svg) no-repeat center center;
    top: 48%;
    right: -10px;
    z-index: 9;
    filter: invert(7%) sepia(166%) saturate(20%) hue-rotate(63deg) brightness(111%) contrast(15%);
  }
  .sm-center-arrow.prev-icon {
    transform: rotate(-180deg);
    left: -10px;
    right: inherit;
  }
  .flex-column-grow {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .table-wrapper {
    overflow-x: auto;
  }
  .list-table-wrapper table {
    width: 100%;
    font-size: var(--fs-12);
  }
  .list-table-wrapper table tr {
    border-bottom: 4px solid var(--white);
  }
  .list-table-wrapper table tr th:first-child {
    padding-left: 45px;
  }
  .list-table-wrapper table tr th {
    padding: 6px;
    color: #8B8D8F;
    font-weight: 500;
  }
  .list-table-wrapper table tr td {
    background: var(--light-gray);
    padding: 6px;
  }
  .list-table-wrapper table tr td:first-child {
    border-radius: 15px 0 0 15px;
  }
  .list-table-wrapper table tr td:last-child {
    border-radius: 0 15px 15px 0;
  }
  .star-icon2 {
    background: url(images/star-icon2.svg) no-repeat center center;
  }
  .user-avatar-30 {
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
  .user-avatar-30 img {
    max-width: 100%;
    display: block;
  }
  .stats-box-white {
    background: var(--white);
    min-height: 70px;
    margin-top: 0;
  }
  .stats-box-white .sm-text1 {
    font-size: 10px;
    font-weight: 500;
  }
  .stats-chart-290 {
    max-width: 290px;
  }
  .stats-chart-290 .stats-chart-text span {
    font-size: 10px;
  }
  .stats-chart-290 .stats-chart-text {
    left: -39%;
    top: 50px;
    line-height: 16px;
  }
  .stats-chart-290 .stats-chart-text-pos1 {
    left: -33%;
  }
  .tickets-graph {
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .fw-500 {
    font-weight: 500;
  }
  .switch-label {
    cursor: pointer;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
  }
  .warning-alert {
    background: rgb(208,55,71);
    background: -moz-linear-gradient(180deg, rgba(208,55,71,1) 0%, rgba(224,95,109,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(208,55,71,1) 0%, rgba(224,95,109,1) 100%);
    background: linear-gradient(180deg, rgba(208,55,71,1) 0%, rgba(224,95,109,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d03747",endColorstr="#e05f6d",GradientType=1);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 0 15px rgba(224, 95, 109, 0.55);
    border-radius: 10px;
    padding: 11px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: var(--fs-12);
  }
  .warning-icon {
    background: url(images/warning-sign.svg) no-repeat center center;
  }
  .speedometers-chart {
    max-width: 325px;
    margin: 0 auto;
    position: relative;
  }
  .speedometers-chart canvas {
    width: 100% !important;
  }
  .max-h-240 canvas {
    max-height: 240px;
  }
  
  .target-needle::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: 10px 20px 0;
    top: 15px;
    width: 3px;
    height: 75px;
    background: #8C8C8C;
    border-radius: 5px;
    display: inline-block;
    transform: rotate(10deg);
    transform-origin: center;
    
  }
  .target-needle {
    position: absolute;
    left: 50%;
    top: -10px;
    font-size: var(--fs-12);
    font-weight: 400;
  }
  .cumulative-target::before {
    background: #EBC1A6;
    transform: rotate(16deg);
    left: -17px;
    top: 27px;
    right: inherit;
    margin: 0;
  }
  .cumulative-target {
    color: #EBC1A6;
    left: 65%;
    margin-left: 30px;
    top: -5px;
  }
  .needle::before {
    content: "";
    width: 10px;
    height: 10px;
    bottom: -2px;
    left: -2px;
    margin: auto;
    background: #181C1F;
    position: absolute;
    border-radius: 50%;
  }
  .needle {
    width: 5px;
    height: 85%;
    background: #181C1F;
    border-radius: 5px;
    display: inline-block;
    left: 50%;
    bottom: 35px;
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: bottom;
    transition: all 0.7s;
  }
  
  .needle-sec::before {
    content: "";
    width: 5px;
    height: 5px;
    bottom: -2px;
    left: -2px;
    margin: auto;
    background: #ebc1a6;
    position: absolute;
    border-radius: 50%;
  }
  .needle-sec {
    width: 2.5px;
    height: 85%;
    background: #ebc1a6;
    border-radius: 5px;
    display: inline-block;
    left: 50%;
    bottom: 35px;
    position: absolute;
    transform: rotate(-90deg);
    transform-origin: bottom;
    transition: all 0.7s;
  }
  
  @-webkit-keyframes move {
    0% {
      transform: rotate(-90deg);
    }
    50% {
      transform: rotate(90deg);
    }
    100% {
      transform: rotate(-90deg);
    }
  }
  
  .poc-speedometers .target-needle {
    left: 70%;
  }
  .poc-speedometers .target-needle::before {
    right: inherit;
    margin: 0;
    transform: rotate(20deg);
    top: 40px;
    left: -3px;
  }
  .poc-speedometers .cumulative-target {
    left: 73%;
    top: 15px;
  }
  .poc-speedometers .cumulative-target::before {
    left: -20px;
    top: 24px;
    transform: rotate(25deg);
  }
  
  .warning-dropdown {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.12);
    max-width: 1000px;
  }
  .warning-dropdown h4 {
    font-size: var(--fs-18);
    margin-bottom: 10px;
  }
  .warning-dropdown table {
    width: 100%;
    font-size: var(--fs-14);
  }
  .warning-dropdown table tr {
    border-bottom: 7px solid var(--white);
  }
  .warning-dropdown table tr th {
    padding: 7px 14px;
    color: #8B8D8F;
    font-weight: 500;
  }
  .warning-dropdown table tr td {
    background: rgba(224, 95, 109, 0.07);
    padding: 14px;
    margin-bottom: 8px;
    width: 25%;
  }
  .warning-dropdown table tr td:first-child {
    border-radius: 20px 0 0 20px;
  }
  .warning-dropdown table tr td:last-child {
    border-radius: 0 20px 20px 0;
  }
  .close-dropdown::before, .close-dropdown::after {
    background: #8B8D8F;
  }
  
  .stats-mobile-view {
    margin-top: 10px;
  }
  .stats-mobile-view label {
    font-size: 11px;
  }
  .stats-mobile-view label:not(:last-child) {
    margin-right: 10px;
  }
  .monthly-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(24%, 1fr));
    gap: 5px;
    margin-top: 10px;
  }
  
  .monthly-stats .grey-box {
    flex-direction: column;
    margin: 0;
  }
  .monthly-stats .d-flex {
    width: 100%;
    justify-content: space-around;
    margin-top: 5px;
  }
  .monthly-stats .d-flex strong {
    margin: 5px;
    font-size: 15px;
  }
  
  /*====== RESPONSIVE ======*/
  @media (max-width: 379px) {
    .b-bar-cont {
      max-width: calc(100% - 10px) !important;
    }
    .post-img {
      max-width: 80px;
      min-width: 80px;
      margin-right: 10px;
    }
    .satisfaction-text-right {
      right: -43%;
    }
  }
  /* Small devices (landscape phones, 576px and up) */
  
  @media (min-width: 576px) {
    .doughnut-chart {
      width: 50%;
    }
    .project-progress-status {
      width: 50%;
    }
    .fixed-switch-btn {
      min-width: 170px;
    }
    .monthly-stats {
      grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
    }
  }
  @media (max-width: 575px) {
    .goals-report-toggle {
      width: 100%;
      display: block;
      order: 2;
    }
    .filters-sec ul li:first-child {
      width: 100%;
    }
    .filters-sec > span {
      display: block;
    }
    .filters-sec > .select-dropdown {
      margin: 5px;
    }
    
    #switchMenu .popup-modal-inner {
      left: 130px;
    }
    .doughnut-chart::after {
      display: none;
    }
    .sidebar-toggle-btn {
      display: none;
    }
    .sidebar-projects-list {
      transform: translateX(280px);
      width: 280px;
    }
    .map-tooltip {
      font-size: var(--fs-11);
      padding: 10px 20px;
      height: 40px;
      line-height: 28px;
    }
    .b-bar-cont {
      max-width: calc(100% - 10px);
    }
    .searchbar-wrapper,
    .searchbar-wrapper input[type="text"] {
      width: 100%;
    }
    .dropdown-content.right-align {
      right: inherit;
    }
  
    .popup-modal-inner {
      padding: 30px 15px;
    }
  
    .projects-boxes .white-radius-box {
      padding: 10px;
    }
  }
  
  /* Medium devices (tablets, 768px and up) */
  @media (min-width: 768px) {
    .separator-before::before {
      content: "";
      position: absolute;
      left: -15px;
      top: 0;
      bottom: 0;
      margin: auto;
      width: 1px;
      height: 20px;
      background: rgba(0, 0, 0, 0.1);
    }
  }
  @media (max-width: 767px) {
    .filters-sec .date-filter-holder .date-filter {
      font-size: var(--fs-16);
    }
    .filters-sec .date-filter-holder {
      margin-left: 0;
      min-width: 100%;
      max-width: 100%;
    }
    .filters-sec .date-filter-holder .date-filter {
      min-width: 235px !important;
      max-width: 235px;
      width:  235px;
    }
    .sidebar-cta-sec .searchbar {
      width: 100%;
    }
    .sidebar-toggle-btn {
      display: none;
    }
    html.sidebar-opend, html.sidebar-opend body {
      overflow: hidden;
    }
    .searchbar-wrapper::after {
      display: none;
    }
    .searchbar-wrapper{
      margin-bottom: 10px;
    }
    #app-sidebar.active {
      min-width: 0;
      max-width: 0;
      padding: 0;
      transform: translate(-220px);
    }
    #app-sidebar {
      width: 100%;
      min-width: 100%;
      height: 100%;
      position: fixed;
      left: 0;
      top: 0;
      overflow: auto;
      padding: 20px;
      transform: translate(0);
    }
    .hamburger-menu-btn.open {
      background: var(--theme-dark);
    }
    .hamburger-menu-btn.open span::after {
      opacity: 0;
    }
    .hamburger-menu-btn.open span::before {
      transform: rotate(90deg);
      top: 0px;
    }
    .hamburger-menu-btn.open span {
      transform: rotate(136deg);
    }
  
  }
  @media (min-width: 992px) and (max-width: 1400px) { 
    
  }
  @media (min-width: 576px) and (max-width: 1400px) {
    
  }
  @media (max-width: 991px) {
  .w-md-100 {
    width: 100%;
    margin-top: 10px;
  }
  .warning-dropdown {
    min-width: 100%;
  }
  .app-dark-header .header-content-right,
  .app-dark-header .header-content-left  {
    width: auto;
  }
  .app-dark-header .dropdown-content.right-align {
    right: 10px;
  }
  .app-dark-header .header-content-right {
    margin-right: inherit;
  }
  }
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    body { font-size: var(--fs-15) }
    .header-content-right,
    .header-content-left {
      width: auto;
    }
  
    .section-title h2 {
      font-size: 50px;
      line-height: 54px;
    }
    .doughnut-chart {
      width: 27%;
    }
    .project-progress-status {
      width: 19%;
    }
  }
  
  /* X-Large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    
  }
  
  /* XX-Large devices (larger desktops, 1400px and up) */
  @media (min-width: 1400px) {
    
  }
  
  @media (min-width: 1600px) {
    .map-wrapper {
      margin-top: -50px;
    }
  }
  
  
  .menu-el a.active {
    background-color: #916A50!important;
    color: white;
  }
  
  .menu-el a:hover {
    background-color: #916A50!important;
    color: white;
  }
  
  button.filter {
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    border: none;
    cursor: pointer;
    color: #181C1F;
    background-color: #e9e9ed;
  }
  
  .app-header-black {
    background-color: var(--theme-dark);
    color: white!important;
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .app-header-black h3 {
    color: white!important;
  }
  
  .app-header-black .not-selected {
    color: white!important;
  }
  
  /* Large devices (desktops, 992px and up) */
  @media (min-width: 992px) {
    body { font-size: var(--fs-15) }
    .header-content-right,
    .header-content-left {
      width: auto;
    }
  
    .section-title h2 {
      font-size: 50px;
      line-height: 54px;
    }
    .doughnut-chart {
      width: 27%;
    }
    .project-progress-status {
      width: 19%;
    }
  }
  
  /* X-Large devices (large desktops, 1200px and up) */
  @media (min-width: 1200px) {
    
  }
  
  /* XX-Large devices (larger desktops, 1400px and up) */
  @media (min-width: 1400px) {
    
  }
  
  @media (min-width: 1600px) {
    .map-wrapper {
      margin-top: -50px;
    }
  }