*,html,body{
    font-family: "Roboto", serif;
}
body{
    background-color: var(--background-secondary);
    color: var(--text-color-light);
    transition: color 0.3s ease-in-out;
    transition-property: color, background-color;
}
body .circular .path {
    stroke: var(--text-color-dark);
}
body .nk-sidebar .brand-logo  .logo-light.desktop-view{
    display: none;
}
body.dark-mode .nk-sidebar .brand-logo  .logo-dark.desktop-view{
    display: inline-block;
}
body.dark-mode .nk-sidebar .brand-logo  .logo-light.desktop-view{
    display: inline-block;
}
body.dark-mode .nk-sidebar .brand-logo  .logo-dark.desktop-view{
    display: none;
}
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p{
    line-height: 1.2;
}
body #preloader {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999;
  background-color: var(--background-light);
  opacity: 0.8;
}

body #preloader .loader {
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: var(--theme-secondary);
}
body #preloader .loader:before,
body #preloader .loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s loadingSpinner linear infinite;
}
body #preloader .loader:after {
    color: var(--theme-primary);
    transform: rotateY(70deg);
    animation-delay: .4s;
}

@keyframes rotate {
    0% {
      transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes loadingSpinner {
    0%,
    100% {
      box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
      box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
      box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
      box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
      box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
      box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
      box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
      box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

body.authentication-page{
    margin: 0;
    padding: 0;
    background-color: #161616;
}
body.authentication-page .authentication-page-wrapper{
    display: flex;
    min-height: 100vh;
    align-items: center;
}
body.authentication-page .authentication-page-wrapper .section-left{
    display: flex;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
body.authentication-page .authentication-page-wrapper .section-left .section-form{
    max-width: 500px;
    width: 100%;
    background-image: url("../images/authectication-form-background.png");
    background-size: 100%;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 40px;
    padding: 30px;
    border-top: 0px solid #ddd;
    border-bottom: 0px solid #ddd;
    border-left: 1px solid #606060;
    border-right: 1px solid #606060;
}
body.authentication-page .authentication-page-wrapper .section-left .section-form .field-group{
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
}
body.authentication-page .authentication-page-wrapper .section-left .section-form .field-group i{
    color: #fff;
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 18px;
}
body.authentication-page .authentication-page-wrapper .section-left .section-form .field-group input{
    position: relative;
    border-top: 1px solid #606060;
    border-left: 1px solid #606060;
    border-bottom: 0px solid #212121;
    border-right: 0px solid #212121;
    background-color: #212121 !important;
    padding: 15px 15px 15px 45px;
    height: auto;
    color: #fff;
}
body.authentication-page .authentication-page-wrapper .section-left .section-form .field-group input:-webkit-autofill {
    background-color: #212121 !important;
    box-shadow: 0 0 0px 1000px #212121 inset !important;
    -webkit-box-shadow: 0 0 0px 1000px #212121 inset !important;
    -webkit-text-fill-color: #fff !important;
    color: #fff!important;
}
body.authentication-page .authentication-page-wrapper .section-left .section-form .field-group input:-moz-autofill {
    background-color: #212121 !important;
    color: #fff!important;
}
body.authentication-page .authentication-page-wrapper .section-left,
body.authentication-page .authentication-page-wrapper .section-right{
    width: 50%;
}
body.authentication-page .authentication-page-wrapper .section-right{
    min-height: 100vh;
    background-image: url("../images/login-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
body.authentication-page .authentication-page-wrapper .section-right img{
    display: block;
    max-width: 250px;
    margin: 100px auto;
}
@media (max-width: 1100px) {
    body.authentication-page .authentication-page-wrapper{
        padding: 40px;
    }
    body.authentication-page .authentication-page-wrapper .section-left{
        width: 100%;
        min-height: calc( 100vh - 80px );
    }
    
    body.authentication-page .authentication-page-wrapper .section-right{
        display: none;
    }
    
}
body.fix-header .content-body{
    padding: 0 0 0 0;
}
body .content-body header .container-fluid .header-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
body .content-body header .container-fluid .header-top .search-container{
    position: relative;
    width: 500px;
}
body .content-body header .container-fluid .header-top .search-container > div input{
    padding: 10px 35px 10px 20px;
    background-color: var(--background-light);
    border-radius: 50px;
    box-shadow: none;
    outline: none;
    border: 0px;
    width: 100%;
    color: var(--text-color-dark);
    transition: background-color 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .search-container > div input + i{
    margin-left: -30px;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList{
    position: absolute;
    top: 60px;
    background-color: var(--background-light);
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    z-index: 99;
    max-height: 250px;
    overflow: auto;
    transition: background-color 0.3s ease-in-out;
}

body .content-body header .container-fluid .header-top .search-container .searchSuggestionList::after {
    content: "";
    display: block;
    box-shadow: 0px 60px 60px 60px var(--color-white);
    z-index: 15;
    position: sticky;
    max-width: 80%;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    transition: box-shadow 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList::before {
    content: "";
    display: block;
    box-shadow: 0px -60px 60px 60px var(--color-white);
    z-index: 15;
    position: sticky;
    max-width: 80%;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    transition: box-shadow 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li{
    padding: 14px 20px;
    color: var(--text-color-dark);
    background-size: 300%;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-primary);
    margin-bottom: 8px;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li:last-of-type{
    margin-bottom: 0px;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li:active,
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li:hover{
    color: #fff;
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li > i{
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li:active  i,
body .content-body header .container-fluid .header-top .search-container .searchSuggestionList > li:hover  i{
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .user-profile-toggle{
    padding: 7px 10px;
    background-color: var(--background-light);
    border-radius: 50px;
    position: relative;
    transition: background-color 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .dark-toggle{
    margin-right: 10px;
    display: inline-block;
}
body .content-body header .container-fluid .header-top .dark-toggle a{
    text-decoration: none;
    font-size: 18px;
    color: var(--theme-primary);
    background-color: var(--background-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 40px;
}
body .content-body header .container-fluid .header-top .user-profile-container{
    margin: 0 0 0 0;
    display: flex;
    align-items: center;
}
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down{
    background-color: var(--background-primary);
    border-radius: 10px;
    padding: 10px;
}
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li{
    padding: 10px;
    color: var(--text-color-light);
    background-size: 300%;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li:active,
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li:hover{
    color: var(--color-white);
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li a{
    color: var(--text-color-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: none;
}

body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li:active a,
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li:hover a{
    color: #fff;
    transition: none;
}
body .content-body header .container-fluid .header-top .user-profile-container .user-profile-toggle div.drop-down ul li a i{
    margin-right: 5px;
    font-size: 18px;
    margin-bottom: 3px;
}
body .content-body header .container-fluid .header-top .user-profile-toggle a{
    text-decoration: none;
    color: var(--text-color-dark);
    transition: color 0.3s ease-in-out;
}
body .content-body header .container-fluid .header-top .user-profile-toggle a img{
    width: 26px;
    height: 26px;
    border-radius: 26px;
    margin-right: 5px;
}
body .mobile-view{
    display: none;
}
body .nk-sidebar {
    background-color: var(--background-light);
    border-radius: 20px;
    box-shadow: none;
    top: 30px;
    left: 30px;
    bottom: 30px;
    max-height: calc( 100vh - 60px );
    height: auto;
    padding: 0;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out;
}
body .nk-sidebar::after {
    content: "";
    display: block;
    box-shadow: 0px 60px 60px 60px var(--color-white);
    z-index: 15;
    position: absolute;
    max-width: 100%;
    margin: 0 auto;
    transition: box-shadow 0.3s ease-in-out;
    bottom: -20px;
    height: 20px;
    width: 100%;
}
body .nk-sidebar .brand-logo{
    text-align: center;
    padding: 30px 20px;
}
body .nk-sidebar .brand-logo .desktop-view{
    display: inline-block;
}
body .nk-sidebar .brand-logo .desktop-view img{
    display: inline-block;
    width: 100px;
}

body .nk-sidebar .metismenu{
    padding: 20px;
    max-height: calc( 100vh - 160px );
    overflow: auto;
}
body .nk-sidebar .metismenu::-webkit-scrollbar {
    display: none;
}
body .nk-sidebar .metismenu{
    -ms-overflow-style: none;
    scrollbar-width: none;
} 
body div.nk-sidebar .metismenu > li {
    margin-bottom: 10px;
}
body div.nk-sidebar .metismenu > li > a {
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    background-size: 300%;
    border-radius: 10px;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}
body div.nk-sidebar .metismenu > li > a > i{
    line-height: 1;
}
body div.nk-sidebar .metismenu > li > ul {
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}
body div.nk-sidebar .metismenu > li > ul > li{
    background-color: var(--background-primary);
    transition: background-color 0.3s ease-in-out;
}
body div.nk-sidebar .metismenu > li > ul  a {
    color: var(--text-color-light);
    padding: 12px 25px;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}
body div.nk-sidebar .metismenu > li > ul  a.active {
    color: var(--text-color-dark);
    transition: color 0.3s ease-in-out;
}
body div.nk-sidebar .metismenu > li > ul  a:hover {
    color: var(--text-color-dark);
    transition: color 0.3s ease-in-out;
}
body div.nk-sidebar .metismenu > li.active > a, 
body div.nk-sidebar .metismenu > li:hover > a, 
body div.nk-sidebar .metismenu > li:focus > a {
    color: #fff;
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;  
    -moz-transition: background 1s ease-out;  
    -o-transition: background 1s ease-out;  
    transition: background 1s ease-out;  
    background-size: 102%;
}
body .content-body {
    margin-left: 275px;
}
body .text-underline {
    border-bottom: 1px solid var(--text-color-dark);
}

.background-primary{  
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;  
    -moz-transition: background 1s ease-out;  
    -o-transition: background 1s ease-out;  
    transition: background 1s ease-out;  
    -webkit-transition-property: color, background;
    -moz-transition-property: color, background;
    -o-transition-property: color, background;
    transition-property: color, background;
    background-size:1px 200px;
}  
.background-primary.background-primary-hover:hover{  
    background-position:100px;  
}  

.btn.btn-primary{
    background-image: -webkit-linear-gradient(100.28deg, var(--theme-primary) 10%, var(--theme-secondary) 60%)!important;
    background-image: -moz-linear-gradient(100.28deg, var(--theme-primary) 10%, var(--theme-secondary) 60%)!important;
    background-image: -o-linear-gradient(100.28deg, var(--theme-primary) 10%, var(--theme-secondary) 60%)!important;
    background-image: linear-gradient(100.28deg, var(--theme-primary) 10%, var(--theme-secondary) 60%)!important;
    -webkit-transition: background 1s ease-out;  
    -moz-transition: background 1s ease-out;  
    -o-transition: background 1s ease-out;  
    transition: background 1s ease-out;  
    -webkit-transition-property: color, background;
    -moz-transition-property: color, background;
    -o-transition-property: color, background;
    transition-property: color, background;
    background-size: 110% 110% !important;
    background-position: center;
    background-repeat: no-repeat;
    outline: none;
    box-shadow: none;
    border-radius: 10px;
    padding: 11px 25px;
    font-size: 14px;
    border: 1px solid transparent!important;
}
.btn.btn-primary:active,
.btn.btn-primary:focus,
.btn.btn-primary:hover{
    border: 1px solid transparent!important;
    background-size: 180% 110% !important;
    -webkit-transition-property: color, background-size;
    -moz-transition-property: color, background-size;
    -o-transition-property: color, background-size;
    transition-property: color, background-size;
} 
.btn.btn-secondary{
    background-color: var(--button-secondary);
    color: var(--text-color-dark);
    outline: none;
    box-shadow: none;
    border-radius: 10px;
    padding: 11px 25px;
    font-size: 14px;
    border: 1px solid transparent;
    transition: all 0.3s ease-in-out;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:active,
.btn.btn-secondary:focus{
    background-color: var(--button-secondary-hover);
    transition: all 0.3s ease-in-out;
}
.btn.btn-outline-primary{
    color: var(--theme-primary)!important;
    outline: none!important;
    box-shadow: none!important;
    border-radius: 10px;
    padding: 11px 25px;
    font-size: 14px;
    border: 1px solid var(--theme-primary)!important;
    background-position: center;
    background-size: 0% 0% !important;
    background-image: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background-image: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background-image: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;  
    background-image: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important; 
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:active,
.btn.btn-outline-primary:focus{
    background-size: 180% 110% !important;
    color: #fff!important;
    border: 1px solid transparent!important;
}
.btn.btn-small{
    padding: 8px 15px;
    font-size: 12px;
    border-radius: 8px;
}
.table-search-box{
    display: flex;
    align-items: center;
    border-radius: 10px;
    border: 1px solid var(--input-border-color);
    overflow: hidden;
}
.table-search-box input{
    border: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--input-text-color);
    background-color: var(--input-background);
    transition: all 0.3s ease-in-out;
}
.table-search-box input:focus{
    color: var(--input-text-color);
    background-color: var(--input-background);
    transition: all 0.3s ease-in-out;
}
.table-search-box button{
    border: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    font-size: 18px;
    background: none;
    padding: 10px 15px 10px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-light);
    transition: color 0.3s ease-in-out;
}
.card{
    background-color: var(--background-light);
    transition: background-color 0.3s ease-in-out;
}
a.text-color-primary:hover,
a.text-color-primary:focus,
a.text-color-primary:active{
    color: var(--theme-secondary);
    transition: color 0.3s ease-in-out;
}
.text-color-primary{
    color: var(--theme-primary);
    transition: color 0.3s ease-in-out;
}
.text-color-light{
    color: var(--text-color-light);
    transition: color 0.3s ease-in-out;
}
.text-color-dark{
    color: var(--text-color-dark);
    transition: color 0.3s ease-in-out;
}
a.text-color-dark:hover,
a.text-color-dark:focus,
a.text-color-dark:active{
    color: var(--theme-secondary);
    transition: color 0.3s ease-in-out;
}
.text-color-black{
    color: var(--color-black);
    transition: color 0.3s ease-in-out;
}
.text-color-white{
    color: var(--color-white);
    transition: color 0.3s ease-in-out;
}
.text-color-error{
    color: var(--color-danger);
    transition: color 0.3s ease-in-out;
}
.text-color-error-light{
    color: var(--color-danger-light);
    transition: color 0.3s ease-in-out;
}
.text-color-success{
    color: var(--color-success);
    transition: color 0.3s ease-in-out;
}
.text-color-success-light{
    color: var(--color-success-light);
    transition: color 0.3s ease-in-out;
}
.text-color-warning{
    color: var(--color-warning);
    transition: color 0.3s ease-in-out;
}
.text-color-green{
    color: var(--color-green);
    transition: color 0.3s ease-in-out;
}
.text-color-red{
    color: var(--color-red);
    transition: color 0.3s ease-in-out;
}
.text-anchor:hover,
.text-anchor:active,
.text-anchor:focus{
    color: var(--theme-secondary);
    transition: color 0.3s ease-in-out;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.overflow-hidden {
    overflow: hidden !important;
}
.bg-secondary{
    background-color: var(--background-light);
}
.pill{
    display: inline-block;
    padding: 10px 20px;
    font-size: 12px;
    border-radius: 5px;
    line-height: 1;
}
.pill.pill-success{
    background-color: var(--color-success-light);
    color: var(--color-success);
}
.pill.pill-danger{
    background-color: var(--color-danger-light);
    color: var(--color-danger);
}
.pill.pill-danger{
    background-color: var(--color-danger-light);
    color: var(--color-danger);
}
.pill.pill-warning{
    background-color: var(--color-warning-light);
    color: var(--color-warning);
}
.pill.pill-primary{
    background-size:102%;
    position: relative;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important; 
    color: #fff;
}
body div.custom-file{
    height: auto;
}
body div.custom-file input.custom-file-input{
    height: 45px;
    width: 100%;
    cursor: pointer;
}
body div.custom-file input.custom-file-input + label.custom-file-label{
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow: none;
    outline: none;
    height: 45px;
    border: 1px solid var(--input-border-color);
    overflow: hidden;
    cursor: pointer;
    background: var(--input-background);
    color: var(--input-text-color);
    transition: all 0.3s ease-in-out;
}
body div.custom-file input.custom-file-input + label.custom-file-label::after{
    height: auto;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important; 
    color: #fff;
    border: 0;
}
body table.dataTable{
    border-collapse: separate!important;
    border-spacing: 0 10px;
    margin: 0 !important;
}
table.table thead{
    position: relative;
}
table.table thead::before,
table.table thead::after{
    content: "";
    display: inline-block;
    position: absolute;
    top: 10px;
    height: 61px;
    width: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
table.table thead::before{
    left: 0;
    background-image: var(--table-header-left);
    background-position: left;
}
table.table thead::after{
    right: 0;
    background-image: var(--table-header-right);
    background-position: right;
}
table.table thead tr{
    background-size:102%;
    position: relative;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important;  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%)!important; 
}
table.table thead tr th{
    border: 0;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
    vertical-align: middle;
    background-color: none!important;
    transition: all 0.3s ease-in-out;
}
table.table thead tr > th:first-of-type{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
table.table thead tr > th:last-of-type{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
table.table tbody tr td{
    border: 0;
    color: var(--text-color-dark);
    font-weight: 400;
    font-size: 13px;
    padding-top: 20px;
    padding-bottom: 20px;
    vertical-align: middle;
    line-height: 1;
    border: 1px solid transparent;
    background-color: var(--table-even)!important;
    transition: all 0.3s ease-in-out;
}
table.table tbody tr:nth-of-type(2n) td{
    background-color: var(--table-odd)!important;
}
table.table tbody tr > td:first-of-type{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
table.table tbody tr > td:last-of-type{
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
table.table tbody tr:nth-of-type(2n):hover td,
table.table tbody tr:hover td{
    border: 1px solid var(--table-hover);
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
}
table.table tbody tr:nth-of-type(2n):hover > td:first-of-type,
table.table tbody tr:hover > td:first-of-type{
    border-left: 1px solid var(--table-hover);
}
table.table tbody tr:nth-of-type(2n):hover > td:last-of-type,
table.table tbody tr:hover > td:last-of-type{
    border-right: 1px solid var(--table-hover);
}
table.dataTable thead tr th.sorting_disabled::before,
table.dataTable thead tr th.sorting_disabled::after{
    display: none!important;
} 
table.dataTable thead tr th.sorting_disabled{
    cursor: auto!important;
} 
table.dataTable thead .sorting::before, 
table.dataTable thead .sorting_asc::before, 
table.dataTable thead .sorting_desc::before, 
table.dataTable thead .sorting_asc_disabled::before, 
table.dataTable thead .sorting_desc_disabled::before {
    content: "\f5e0";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
table.dataTable thead .sorting::after, 
table.dataTable thead .sorting_asc::after, 
table.dataTable thead .sorting_desc::after, 
table.dataTable thead .sorting_asc_disabled::after, 
table.dataTable thead .sorting_desc_disabled::after {
    content: "\f5d2";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
table.dataTable thead .sorting::before,
table.dataTable thead .sorting::after,
table.dataTable thead .sorting_asc::before,
table.dataTable thead .sorting_asc::after,
table.dataTable thead .sorting_desc::before,
table.dataTable thead .sorting_desc::after,
table.dataTable thead .sorting_asc_disabled::before,
table.dataTable thead .sorting_asc_disabled::after,
table.dataTable thead .sorting_desc_disabled::before,
table.dataTable thead .sorting_desc_disabled::after {
    top: 50%;
    transform: translateY(-50%);
}
.dataTables_paginate ul.pagination li.paginate_button{
    border: 0;
}
.dataTables_paginate ul.pagination li.paginate_button a{
    text-decoration: none;
    background-color: var(--button-secondary);
    color: var(--text-color-dark);
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: none;
    border: 0;
    outline: none;
    font-size: 14px;
    margin: 0 5px;
}
.dataTables_paginate ul.pagination li.paginate_button.active a,
.dataTables_paginate ul.pagination li.paginate_button a:active,
.dataTables_paginate ul.pagination li.paginate_button a:focus,
.dataTables_paginate ul.pagination li.paginate_button a:hover{
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;  
    -moz-transition: background 1s ease-out;  
    -o-transition: background 1s ease-out;  
    transition: background 1s ease-out;  
    -webkit-transition-property: background;
    -moz-transition-property: background;
    -o-transition-property: background;
    transition-property: background;
    background-size:100%;
    color: #fff;
    display: inline-block;
    position: relative;
    z-index: 1;
}
div.dataTables_wrapper div.dataTables_info {
    padding-top: 0;
    color: var(--text-color-dark);
}

body .nav.nav-tabs .nav-link{
    color: var(--text-color-dark);
    background-size: 300%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    cursor: pointer;
    border: 0;
    outline: none;
    box-shadow: none;
    font-weight: 400;
    font-size: 14px;
}
body .nav.nav-tabs .nav-link.active,
body .nav.nav-tabs .nav-link:hover{
    color: #fff;
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}
body .progress {
    background-color: var(--table-odd);
}
body .progress .progress-bar{
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    color: #fff;
    overflow: hidden;
}

body .dropdown-menu.show{
    background-color: var(--background-primary);
    border-radius: 10px;
    padding: 10px;
}
body .dropdown-menu.show .dropdown-item {
    border: 0;
    padding: 15px 10px;
    color: var(--text-color-light);
    background-size: 300%;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}
body .dropdown-menu.show .dropdown-item:focus,
body .dropdown-menu.show .dropdown-item:active,
body .dropdown-menu.show .dropdown-item:hover {
    color: #fff;
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}

body .input-group .input-group-text{
    color: #fff;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
    border: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
body .input-group > select:first-child{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

body .modal .modal-content{
    background-color: var(--background-secondary);
}
body .modal .modal-content .modal-header{
    border-bottom: 1px solid var(--input-border-color);
}
body .modal .modal-content .close{
    text-shadow: none;
    color: var(--text-color-dark);
}

body input.inline-field{
    display: inline;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: var(--input-radio-background);
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    color: var(--text-color-dark);
    transition: all 0.3s ease-in-out;
}

body textarea.form-control{
    border-radius: 15px;
    box-shadow: none;
    outline: none;
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
    background-color: var(--input-background);
    resize: none;
    transition: all 0.3s ease-in-out;
}
body textarea.form-control:focus{
    color: var(--input-text-color);
    border: 1px solid var(--theme-primary);
    background-color: var(--input-background);
    transition: all 0.3s ease-in-out;
}
body select.form-select:not([size]):not([multiple]),
body select.form-control:not([size]):not([multiple]),
body input.form-control:not([type="search"]){
    border-radius: 15px;
    box-shadow: none;
    outline: none;
    height: 45px;
    color: var(--input-text-color);
    border: 1px solid var(--input-border-color);
    background-color: var(--input-background);
    transition: all 0.3s ease-in-out;
}
body select.form-select:not([size]):not([multiple]):focus,
body select.form-control:not([size]):not([multiple]):focus,
body input.form-control:not([type="search"]):focus{
    border: 1px solid var(--theme-primary);
    transition: all 0.3s ease-in-out;
}
body.dark-mode input[type="number"]::-webkit-inner-spin-button,
body.dark-mode input[type="number"]::-webkit-outer-spin-button {
    filter: invert(1);
}
body.dark-mode input[type="number"]::-moz-number-spin-up,
body.dark-mode input[type="number"]::-moz-number-spin-down {
    filter: invert(1);
}
select.form-control {
    background-image: url("../../images/arrow.png") !important;
}
body.dark-mode select.form-control {
    background-image: url("../../images/arrow-white.png") !important;
}
body .chosen-container > ul.chosen-choices {
    border-radius: 15px;
    box-shadow: none;
    outline: none;
    height: 45px!important;
    align-items: center;
    border: 1px solid var(--input-border-color);
    background-color: var(--input-background);
    transition: all 0.3s ease-in-out;
}
body .chosen-container-multi .chosen-choices .search-field input[type="text"]{
    color: var(--input-text-color);
}
body .chosen-container.chosen-container-active > ul.chosen-choices {
    border: 1px solid var(--theme-primary);
}
body .chosen-container-active.chosen-with-drop > ul.chosen-choices {
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
}
body .chosen-container > ul.chosen-choices > li.search-field {
    height: 45px!important;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
}
body .chosen-container > ul.chosen-choices > li.search-choice {
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
    border: 1px solid transparent;
    padding: 5px 25px 5px 5px;
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
}
body .chosen-container > .chosen-drop{
    border: 0px;
    background: none;
}
body .chosen-container > .chosen-drop > ul.chosen-results{
    background-color: var(--background-primary);
    border-radius: 10px;
    padding: 10px;
}
body .chosen-container > .chosen-drop > ul.chosen-results li.active-result{
    padding: 10px;
    color: var(--text-color-light);
    background-size: 300%;
    border-radius: 10px;
    font-size: 14px;
}
body .chosen-container > .chosen-drop > ul.chosen-results li.active-result.highlighted{
    color: #fff;
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}

body .app-radiobox > input,
body .app-checkbox > input{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -2;
    height: 0;
    width: 0;
}
body .app-radiobox input + label,
body .app-checkbox input + label{
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0 0 0;
    line-height: 1;
    cursor: pointer;
}
body .app-checkbox input + label::before{
    content: "\eb7b";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: var(--input-radio-background);
    border-radius: 5px;
    margin-right: 10px;
    color: var(--input-radio-background);;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid var(--table-hover);
    transition: all 0.3s ease-in-out;
}
body .app-checkbox input:checked + label::before{
    content: "\eb7b";
    color: #fff;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
    border: 1px solid var(--theme-primary);
}
body .app-radiobox input + label::before{
    content: "\eb7c";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    background-color: var(--input-radio-background);
    border-radius: 16px;
    margin-right: 10px;
    color: var(--input-radio-background);
    font-size: 6px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}
body .app-radiobox input:checked + label::before{
    content: "\eb7c";
    color: #fff;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}


body .custom-check-wrapper .custom-check-input label{
    border: 1px solid var(--text-color-light);
    color: var(--text-color-light);
    height: 45px;
    padding: 11px 15px;
    border-radius: 15px;
    background: transparent;
    transition: all 0.3s ease-in-out;
}
body .custom-check-wrapper .custom-check-input input:checked + label{
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
    border: 1px solid var(--theme-primary);
    color: #fff;
    background-position: center;
}
body .custom-check-wrapper .custom-check-input label:hover{
    border: 1px solid var(--theme-primary);
    color: var(--theme-primary);
    background: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}



.modal .modal-content .modal-header .modal-title{
    color: var(--text-color-dark);
    font-weight: 400;
    font-size: 16px;
}

body .card{
    border-radius: 20px;
}

body hr {
    border-top: 1px solid var(--button-secondary);
    transition: all 0.3s ease-in-out;
}

.fs-10{
    font-size: 10px;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-16{
    font-size: 16px;
}
.fs-18{
    font-size: 18px;
}
.fs-20{
    font-size: 20px;
}
.fs-22{
    font-size: 22px;
}
.fs-24{
    font-size: 24px;
}
.fs-26{
    font-size: 26px;
}
.fs-28{
    font-size: 28px;
}
.fs-30{
    font-size: 30px;
}
.fs-32{
    font-size: 32px;
}
.fs-34{
    font-size: 34px;
}
.fw-100{
    font-weight: 100;
}
.fw-200{
    font-weight: 200;
}
.fw-300{
    font-weight: 300;
}
.fw-400{
    font-weight: 400;
}
.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.fw-700{
    font-weight: 700;
}

.background-style-01{
    background-image: var(--background-style-01);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-style-02{
    background-image: var(--background-style-02);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.background-style-03{
    background-image: var(--background-style-03);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.dashboard-stats-container{
    padding: 10px 20px;
    border-radius: 30px;
    background-color: var(--background-primary);
    transition: background-color 0.3s ease-in-out;
}
.dashboard-stats-container .dashboard-stats{
    display: flex;
    align-items: center;
}
.dashboard-stats-container .dashboard-stats .stat-icon{
    position: relative;
    margin-right: 30px;
}
.dashboard-stats-container .dashboard-stats .stat-icon i{
    background-color: var(--background-primary);
    color: var(--text-color-dark);
    font-size: 20px;
    height: 50px;
    width: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.dashboard-stats-container .dashboard-stats .stat-icon::before{
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 70px;
    height: 70px;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    background-color: var(--background-secondary);
}
.dashboard-stats-container .dashboard-stats div span{
    font-size: 14px;
    font-weight: 400;
    color: var(--text-color-dark);
    transition: color 0.3s ease-in-out;
}
.dashboard-stats-container .dashboard-stats div h2{
    font-size: 32px;
    font-weight: 500;
    color: var(--text-color-dark);
    transition: color 0.3s ease-in-out;
}

.spin::before {
    display: inline-block;
    animation: spin 1s linear infinite;
}
  
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Loyalty Custom DropDown */


.app-dropdown {
    position: relative;
}

/* Displayed Selected Option */
.app-dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    border-radius: 15px;
    box-shadow: none;
    outline: none;
    height: 45px;
    border: 1px solid var(--input-border-color);
    background-image: url("../../images/arrow.png") !important;
    background-size: 12px !important;
    background-repeat: no-repeat !important;
    background-position: calc( 100% - 12px ) center !important;
    padding-right: 32px;
    padding-left: 12px;
    color: var(--field-text-color);
}
body.dark-mode .app-dropdown-toggle {
    background-image: url("../../images/arrow-white.png") !important;
}
.app-dropdown-toggle.active {
    border: 1px solid var(--theme-primary);
}

/* Dropdown List */
.app-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 1000;
    background-color: var(--background-light);
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    z-index: 99;
    max-height: 250px;
    overflow: auto;
    transition: background-color 0.3s ease-in-out;

}

.app-dropdown-menu.active {
    display: block;
}

/* Header for Child Menus */
.app-dropdown-header {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--text-color-light);
    cursor: pointer;
    color: var(--text-color-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.app-dropdown-header .app-dropdown-back-arrow {
    cursor: pointer;
    margin-right: 20px;
    font-size: 20px;
    color: var(--text-color-dark);
}

/* Dropdown Items */
.app-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 20px;
    color: var(--text-color-light);
    background-size: 300%;
    border-radius: 10px;
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background: var(--background-primary);
    margin-bottom: 8px;
}

.app-dropdown-list > div.app-dropdown-item:last-of-type{
    margin-bottom: 0;;
}

.app-dropdown-item:hover {
    color: var(--color-white);
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);  
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}

.app-dropdown-item .item-icon {
    margin-right: 20px;
    font-size: 20px;
    color: var(--text-color-dark);
}
.app-dropdown-item:hover .item-icon {
    margin-right: 20px;
    font-size: 20px;
    color: #ffffff;
}

.app-dropdown-item .app-dropdown-item-details {
    flex-grow: 1;
}

.app-dropdown-item .item-title {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-color-dark);
}
.app-dropdown-item:hover .item-title {
    color: #ffffff;
}

.app-dropdown-item .item-description {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-color-light);
}
.app-dropdown-item:hover .item-description {
    color: #ffffff;
}

.app-dropdown-item .app-dropdown-arrow {
    font-size: 20px;
    color: var(--text-color-dark);
}
.app-dropdown-item:hover .app-dropdown-arrow {
    color: #ffffff;
}

/* End Loyalty Custom DropDown */

/* Risk Churn vs Customer Life-time Value Matrix */

.value-matrix-chart{
    padding: 30px 60px 10px 100px;
    position: relative;
}
.value-matrix-chart .chart-labels .label-vertical{
    position: absolute;
    transform: rotate(-90deg) translateY(-50%);
    color: var(--text-color-dark);
    font-size: 14px;
    left: 0;
    top: 50%;
    transition: all 0.3s ease-in-out;
}
.value-matrix-chart .chart-labels .label-horizontal{
    display: block;
    text-align: center;
    color: var(--text-color-dark);
    font-size: 14px;
    transition: all 0.3s ease-in-out;
}
.value-matrix-chart .chart-container{
    display: flex;
    justify-content: space-between;
}
.value-matrix-chart .chart-container .chart-column{
    display: flex;
    flex-direction: column;
}
.value-matrix-chart .chart-container .chart-column span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 90px;
    margin-bottom: 10px;
    color: var(--text-color-light);
    font-weight: 400;
    font-size: 14px;
    border-radius: 5px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
.value-matrix-chart .chart-container .chart-column.column-labels span{
    justify-content: flex-start;
    width: auto;
    font-size: 12px;
}
.value-matrix-chart .chart-container .chart-column.column-options span.option-label{
    font-size: 12px;
}
.value-matrix-chart .chart-container .chart-column.column-options span:not(.option-label){
    background-color: var(--background-secondary);
    color: var(--text-color-dark);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.value-matrix-chart .chart-container .chart-column.column-options span:not(.option-label):hover{
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-7:not(.option-label){
    background-color: #B02418;
    color: #fff;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-6:not(.option-label){
    background: linear-gradient(180deg, #EA3223 0%, #B61508 100%);
    color: #fff;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-5:not(.option-label){
    background: linear-gradient(180deg, #F6C042 0%, #E39F00 100%);
    color: #fff;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-4:not(.option-label){
    background: linear-gradient(180deg, #E6FF00 0%, #EEEC00 100%);
    color: #212121;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-3:not(.option-label){
    background: linear-gradient(180deg, #a3c641 0%, #1dd26c 100%);
    color: #212121;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-2:not(.option-label){
    background: linear-gradient(180deg, #17ca76 0%, #15e84a 100%);
    color: #212121;
}
.value-matrix-chart .chart-container .chart-column.column-options span.level-1:not(.option-label){
    background: linear-gradient(180deg, #50c8ac 0%, #298fc1 100%);
    color: #ffffff;
}

/* End Risk Churn vs Customer Life-time Value Matrix */


.single-line{
    white-space: nowrap !important;
}



.chips-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.chips-wrapper .single-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 14px;
    border: 1px solid var(--theme-primary);
    color: var(--theme-primary);
    font-size: 12px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    margin: 5px 5px 5px 0px;
    border-radius: 50px;
    background: transparent;
    cursor: pointer

}

.chips-wrapper .single-chip:hover {
    border: 1px solid var(--theme-primary);
    color: #fff;
    background: var(--theme-primary);
    transition: all 0.3s ease-in-out;
}

.memberSearchResults #searchResults {
    display: none;
    position: absolute;
    top: 10px;
    background-color: var(--background-light);
    width: 100%;
    border-radius: 10px;
    padding: 10px;
    z-index: 99;
    max-height: 250px;
    overflow: auto;
    transition: background-color 0.3s ease-in-out;
}
.memberSearchResults #searchResults::before {
    content: "";
    display: block;
    box-shadow: 0px -60px 60px 60px var(--color-white);
    z-index: 15;
    position: sticky;
    max-width: 80%;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    transition: box-shadow 0.3s ease-in-out;
}
.memberSearchResults #searchResults > div {
    padding: 14px 20px;
    color: var(--text-color-dark);
    background-size: 300%;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-primary);
    margin-bottom: 8px;
}
.memberSearchResults #searchResults > div:hover {
    color: #fff;
    background-image: none;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}

#campaignRecommender #campaignRecommendations .card.dashboard-stats-container {
    padding: 10px;
    background-color: var(--background-secondary);
}

#campaignRecommender #campaignRecommendations .card .seperator {
    padding-top: 0px;
    padding-bottom: 0px;
    margin: 20px 0px 30px;
    display: block;
    height: 2px;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
}

#campaignRecommender #campaignRecommendations .card .promotion-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color-dark);
}
#campaignRecommender #campaignRecommendations .card .badge.badge-secondary {
    background-color: var(--theme-light);
    color: var(--theme-primary);
    margin-bottom: 5px;
    font-size: 12px;
    padding: 10px 15px;
    border-radius: 10px;
}
#campaignRecommender #campaignRecommendations .card.dashboard-stats-container .dashboard-stats .stat-icon::before {
    background-color: var(--background-primary);
}
#campaignRecommender #campaignRecommendations .card.dashboard-stats-container .dashboard-stats .stat-icon i {
    background-color: var(--background-light);
    color: var(--text-color-dark);
}
#campaignRecommender #campaignRecommendations .card.dashboard-stats-container .dashboard-stats div h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color-dark);
}

#campaignRecommender #campaignRecommendations .card .campaign-stats-container .campaign-stat {
    border: 1px solid #D8D6DE;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 15px;
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

#campaignRecommender #campaignRecommendations .card .campaign-data-container {
    align-items: flex-start;
}

#campaignRecommender #campaignRecommendations .card .campaign-data-container .campaign-data {
    margin-bottom: 20px;
}

#campaignRecommender #campaignRecommendations .card .campaign-stats-container .campaign-stat .campaign-icon,
#campaignRecommender #campaignRecommendations .card .campaign-data-container .campaign-data .campaign-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    min-width: 45px;
    border-radius: 10px;
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    -webkit-transition: background 1s ease-out;
    -moz-transition: background 1s ease-out;
    -o-transition: background 1s ease-out;
    transition: background 1s ease-out;
    background-size: 102%;
    margin-right: 10px;
}

#campaignRecommender #campaignRecommendations .card .campaign-stats-container .campaign-stat .campaign-icon i,
#campaignRecommender #campaignRecommendations .card .campaign-data-container .campaign-data .campaign-icon i {
    font-size: 18px;
    color: #ffffff;
}

#campaignRecommender #campaignRecommendations .card .campaign-stats-container .campaign-stat .campaign-label,
#campaignRecommender #campaignRecommendations .card .campaign-data-container .campaign-data .campaign-label {
    color: var(--text-color-dark);
    font-weight: 400;
    font-size: 14px;
    margin: 0 0 5px;
}

#campaignRecommender #campaignRecommendations .card .campaign-stats-container .campaign-stat .campaign-value,
#campaignRecommender #campaignRecommendations .card .campaign-data-container .campaign-data .campaign-value {
    color: var(--text-color-dark);
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    word-wrap: anywhere;
}
body.dark-mode #campaignRecommender #campaignRecommendations .card .light-icon,
#campaignRecommender #campaignRecommendations .card .dark-icon {
    display: none;
}
#campaignRecommender #campaignRecommendations .card .light-icon,
body.dark-mode #campaignRecommender #campaignRecommendations .card .dark-icon {
    display: block;
    margin-bottom: 10px;
}

/* Custom Popup */

/* Overlay */
.custom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99999999;
}

.custom-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup */
.custom-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--background-light);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999999991;
}

.custom-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.custom-popup-header {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--theme-primary);
}

.custom-popup-message {
    font-size: 14px;
    color: var(--text-color-light);
}

.custom-close-btn:hover {
    background: #0056b3;
}

/* End Custom Popup */

/* Custom Toast Message */

.toast-container > div.toast-success{
    background-color: var(--toast-success-background)!important;
    color: var(--toast-success-color)!important;
}
.toast-container > div.toast-danger{
    background-color: var(--toast-danger-background)!important;
    color: var(--toast-danger-color)!important;
}
.toast-container > div.toast-warning{
    background-color: var(--toast-warning-background)!important;
    color: var(--toast-warning-color)!important;
}

/* End Custom Toast Message */

/* Smart Loyalty */


/* SmartLoyaltyConversation */
#SmartLoyaltyConversation .conversation-box{
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
    padding-right: 50px;
    min-width: 200px;
}
#SmartLoyaltyConversation .conversation-box .timestamp{
    opacity: 0;
    color: var(--text-color-dark);
    font-size: 12px;
    margin-top: 10px;
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box:hover .timestamp{
    opacity: 1;
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box.query{
    text-align: right;
}
#SmartLoyaltyConversation .conversation-box.response{
    text-align: left;
}
#SmartLoyaltyConversation .conversation-box.response.has-error .card{
    background: var(--color-danger-light);
    border: 1px solid var(--color-danger-light);
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box .card .history-item ol{
    padding: 0;
}
#SmartLoyaltyConversation .conversation-box .card .history-item ul{
    padding-left: 40px;
}
#SmartLoyaltyConversation .conversation-box .card .history-item ol li{
    list-style-type: disclosure-closed;
    list-style-position: inside;
}
#SmartLoyaltyConversation .conversation-box .card .history-item ul li{
    list-style-type: square;
}
#SmartLoyaltyConversation .conversation-box .card .history-item > p:last-of-type{
    margin-bottom: 0;
}
#SmartLoyaltyConversation .conversation-box.response.has-error .card .history-item{
    color: var(--color-danger);
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box.response.has-error .card::after {
    background-color: var(--color-danger-light);
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box.response.has-error .card::before{
    color: var(--color-danger);
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box.query .card::before{
    content: "";
    background-image: url("../../images/avatar.jpg");
    display: inline-block;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 14px;
    right: -48px;
    z-index: 10;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 30px;
    background-color: transparent;
}
#SmartLoyaltyConversation .conversation-box.query .card::after{
    content: "";
    background-color: var(--background-light);;
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 4px;
    position: absolute;
    top: 24px;
    right: -6px;
    transform: rotate(45deg);
    z-index: 9;
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box.response .card::after{
    content: "";
    background-color: var(--background-light);
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 4px;
    position: absolute;
    top: 24px;
    left: -6px;
    transform: rotate(45deg);
    z-index: 9;
    transition: all 0.3s ease-in-out;
}
#SmartLoyaltyConversation .conversation-box.response .card::before{
    content: "\f093";
    font-family: remixicon !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--theme-primary);
    background-color: var(--background-light);;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 14px;
    left: -48px;
    z-index: 10;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
}

#SmartLoyaltyConversation .conversation-box.response .conversation-loader {
    padding: 5px 10px;
}
#SmartLoyaltyConversation .conversation-box.response .conversation-loader > div{
    width: 10px;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: conversationLoading 1s infinite linear alternate;
}
@keyframes conversationLoading {
    0%  {box-shadow: 20px 0 var(--theme-primary), -20px 0 var(--theme-primary-opacity);background: var(--theme-primary) }
    33% {box-shadow: 20px 0 var(--theme-primary), -20px 0 var(--theme-primary-opacity);background: var(--theme-primary-opacity)}
    66% {box-shadow: 20px 0 var(--theme-primary-opacity),-20px 0 var(--theme-primary); background: var(--theme-primary-opacity)}
    100%{box-shadow: 20px 0 var(--theme-primary-opacity),-20px 0 var(--theme-primary); background: var(--theme-primary) }
}

/* End Smart Loyalty */

/* Workflow Designer */
.workflow-wrapper{
    position: relative;
    display: flex;
}
.workflow-wrapper .workflow-grid-controls i{
    position: absolute;
    bottom: 20px;
    z-index: 10;
    font-size: 24px;
    color: var(--text-color-dark);
    display: inline-flex;
    height: 50px;
    width: 50px;
    align-items: center;
    justify-content: center;
    background-color: var(--background-primary);
    border-radius: 50px;
    cursor: pointer;
}
.workflow-wrapper .workflow-grid-controls .workflow-control-zoom-in{
    left: 20px;
}
.workflow-wrapper .workflow-grid-controls .workflow-control-zoom-out{
    left: 90px;
}
#workflowDesigner{
    flex: 1;
    background-color: var(--background-light);
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px), linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    position: relative;
    min-height: 721px;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
}
.workflow-items .workflow-item{
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 15px;
}
.workflow-items .workflow-item .workflow-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 40px;
    border: 2px solid #000;
}
.workflow-items .workflow-item.workflow-action .workflow-icon{
    border-color: var(--workflow-green);
    color: var(--workflow-green);
    border-radius: 5px;
}
.workflow-items .workflow-item.workflow-segment .workflow-icon{
    border-color: var(--workflow-red);
    color: var(--workflow-red);
}
.workflow-items .workflow-item.workflow-condition .workflow-icon{
    border-color: var(--workflow-yellow);
    color: var(--workflow-yellow);
    border-radius: 5px;
    transform: rotate(45deg);
    width: 37px;
    height: 37px;
    margin-right: 3px;
}
.workflow-items .workflow-item.workflow-condition .workflow-icon::before{
    transform: rotate(-45deg);
}
.workflow-items .workflow-item .workflow-item-content{
    margin-left: 10px;
}
.workflow-options-toggle:focus,
.workflow-options-toggle{
    background: none;
    border: 0;
    box-shadow: none;
    outline: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color-dark);
}
#workflowGridContainer{
    max-width: 100%;
}
#segmentOptions,
#workflowOptions{
    position: fixed;
    right: -400px;
    max-width: 400px;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-color: var(--background-light);
    overflow: auto;
    transition: right 0.3s ease-in-out;
}
#segmentOptions.active,
#workflowOptions.active{
    right: 0px;
    transition: right 0.3s ease-in-out;
}
#workflowDesigner .drawflow .drawflow-node{
    background: var(--color-white);
    border: 1px solid var(--text-color-light);
    color: var(--text-color-dark);
    box-shadow: none;
    padding: 15px;
    width: 200px;
    transition: color 0.3s ease-out;
}
#workflowDesigner .drawflow .drawflow-node.selected{
    background: -webkit-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -moz-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: -o-linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    background: linear-gradient(100.28deg, var(--theme-primary) 8.33%, var(--theme-secondary) 60.09%);
    transition: color 0.3s ease-out;
    background-size: 102%;
    color: #fff;
}
#workflowDesigner .drawflow .drawflow-node .workflow-chart-item{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}
#workflowDesigner .drawflow .drawflow-node.segment .workflow-icon{
    color: var(--workflow-red);
}
#workflowDesigner .drawflow .drawflow-node.coupon .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.points .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.reward .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.email .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.message .workflow-icon{
    color: var(--workflow-green);
}
#workflowDesigner .drawflow .drawflow-node.delay .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.condition .workflow-icon{
    color: var(--workflow-yellow);
}
#workflowDesigner .drawflow .drawflow-node.coupon.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.points.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.reward.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.email.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.message.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.delay.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.condition.selected .workflow-icon,
#workflowDesigner .drawflow .drawflow-node.segment.selected .workflow-icon{
    color: #ffffff;
}
#workflowDesigner .drawflow .drawflow-node .output {
    background: #000;
    border: 1px solid #fff;
    width: 15px;
    height: 15px;
    right: -8px;
}
#workflowDesigner .drawflow .drawflow-node .input {
    background: #fff;
    border: 1px solid #000;
    width: 15px;
    height: 15px;
    left: -22px;
}
#workflowDesigner .drawflow .drawflow-node .drawflow-delete {
    display: none!important;
}
/* #workflowDesigner .drawflow .drawflow-node.segment{
    height: 50px;
    width: 50px;
    background-color: var(--workflow-red);
    border: 0;
    border-radius: 50px;
}
#workflowDesigner .drawflow .drawflow-node.segment .workflow-chart-item{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#workflowDesigner .drawflow .drawflow-node.segment .outputs .output{
    margin: 0;
    height: 10px;
    width: 10px;
    background: var(--text-color-dark);
    border: 0;
}
#workflowDesigner .drawflow .drawflow-node.segment .outputs .output_1{
    right: -10px;
}
#workflowDesigner .drawflow .drawflow-node.segment .inputs .input{
    margin: 0;
    height: 14px;
    width: 14px;
    background: var(--background-light);
    border-color: var(--workflow-red);
}
#workflowDesigner .drawflow .drawflow-node.segment .inputs .input_1{
    left: -24px;
    top: 25px;
}
#workflowDesigner .drawflow .drawflow-node.coupon,
#workflowDesigner .drawflow .drawflow-node.point,
#workflowDesigner .drawflow .drawflow-node.reward,
#workflowDesigner .drawflow .drawflow-node.email,
#workflowDesigner .drawflow .drawflow-node.message{
    height: 50px;
    width: 50px;
    background-color: var(--workflow-green);
    border: 0;
    border-radius: 5px;
}
#workflowDesigner .drawflow .drawflow-node.coupon .workflow-chart-item,
#workflowDesigner .drawflow .drawflow-node.point .workflow-chart-item,
#workflowDesigner .drawflow .drawflow-node.reward .workflow-chart-item,
#workflowDesigner .drawflow .drawflow-node.email .workflow-chart-item,
#workflowDesigner .drawflow .drawflow-node.message .workflow-chart-item{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#workflowDesigner .drawflow .drawflow-node.coupon .outputs .output,
#workflowDesigner .drawflow .drawflow-node.point .outputs .output,
#workflowDesigner .drawflow .drawflow-node.reward .outputs .output,
#workflowDesigner .drawflow .drawflow-node.email .outputs .output,
#workflowDesigner .drawflow .drawflow-node.message .outputs .output{
    margin: 0;
    height: 10px;
    width: 10px;
    background: var(--text-color-dark);
    border: 0;
}
#workflowDesigner .drawflow .drawflow-node.coupon .outputs .output_1,
#workflowDesigner .drawflow .drawflow-node.point .outputs .output_1,
#workflowDesigner .drawflow .drawflow-node.reward .outputs .output_1,
#workflowDesigner .drawflow .drawflow-node.email .outputs .output_1,
#workflowDesigner .drawflow .drawflow-node.message .outputs .output_1{
    right: -10px;
}
#workflowDesigner .drawflow .drawflow-node.coupon .inputs .input,
#workflowDesigner .drawflow .drawflow-node.point .inputs .input,
#workflowDesigner .drawflow .drawflow-node.reward .inputs .input,
#workflowDesigner .drawflow .drawflow-node.email .inputs .input,
#workflowDesigner .drawflow .drawflow-node.message .inputs .input{
    margin: 0;
    height: 14px;
    width: 14px;
    background: var(--background-light);
    border-color: var(--workflow-green);
}
#workflowDesigner .drawflow .drawflow-node.coupon .inputs .input_1,
#workflowDesigner .drawflow .drawflow-node.point .inputs .input_1,
#workflowDesigner .drawflow .drawflow-node.reward .inputs .input_1,
#workflowDesigner .drawflow .drawflow-node.email .inputs .input_1,
#workflowDesigner .drawflow .drawflow-node.message .inputs .input_1{
    left: -24px;
    top: 2px;
}
#workflowDesigner .drawflow .drawflow-node.condition{
    transform: rotate(45deg);
    height: 50px;
    width: 50px;
    background-color: var(--workflow-yellow);
    border: 0;
}
#workflowDesigner .drawflow .drawflow-node.condition .workflow-chart-item{
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
#workflowDesigner .drawflow .drawflow-node.condition .workflow-icon{
    transform: rotate(-45deg);
}
#workflowDesigner .drawflow .drawflow-node.condition .outputs .output{
    margin: 0;
    height: 10px;
    width: 10px;
    background: var(--text-color-dark);
    border: 0;
}
#workflowDesigner .drawflow .drawflow-node.condition .outputs .output_1{
    right: -10px;
    top: -15px;
}
#workflowDesigner .drawflow .drawflow-node.condition .outputs .output_2{
    left: 10px;
    top: 23px;
}
#workflowDesigner .drawflow .drawflow-node.condition .outputs .output_3{
    top: -35px;
    left: -40px;
}
#workflowDesigner .drawflow .drawflow-node.condition .inputs .input{
    margin: 0;
    height: 14px;
    width: 14px;
    background: var(--background-light);
    border-color: var(--workflow-yellow);
}
#workflowDesigner .drawflow .drawflow-node.condition .inputs .input_1{
    left: -24px;
    top: 25px;
} */

/* End Workflow Designer */


@media (min-width: 1920px) {
    .fs-10{
        font-size: 12px;
    }
    .fs-12{
        font-size: 14px;
    }
    .fs-14{
        font-size: 16px;
    }
    .fs-16{
        font-size: 18px;
    }
    .fs-18{
        font-size: 20px;
    }
    .fs-20{
        font-size: 22px;
    }
    .fs-22{
        font-size: 24px;
    }
    .fs-24{
        font-size: 26px;
    }
    .fs-26{
        font-size: 28px;
    }
    .fs-28{
        font-size: 30px;
    }
    .fs-30{
        font-size: 32px;
    }
    .fs-32{
        font-size: 34px;
    }
    .fs-34{
        font-size: 36px;
    }
    table.table thead tr th,
    table.table tbody tr td {
        font-size: 15px;
    }
    table.table thead::before, 
    table.table thead::after {
        height: 62.5px;
    }
    body .nk-sidebar {
        width: 300px;
    }
    body .content-body {
        margin-left: 320px;
    }
    body div.nk-sidebar .metismenu > li > a {
        font-size: 16px;
    }
}

@media (max-width: 1300px) {
    body .nk-sidebar .brand-logo .desktop-view,
    body .nk-sidebar .brand-logo .logo-light.desktop-view,
    body.dark-mode .nk-sidebar .brand-logo .logo-dark.desktop-view,
    body.dark-mode .nk-sidebar .brand-logo .logo-light.desktop-view{
        display: none!important;
    }
    body.dark-mode .nk-sidebar .brand-logo .mobile-view.logo-dark,
    body .nk-sidebar .brand-logo .mobile-view.logo-light{
        display: none!important;
    }
    body.dark-mode .nk-sidebar .brand-logo .mobile-view.logo-light,
    body .nk-sidebar .brand-logo .mobile-view.logo-dark{
        display: inline-block!important;
    }
    body.dark-mode .nk-sidebar .brand-logo .mobile-view.logo-light img,
    body .nk-sidebar .brand-logo .mobile-view.logo-dark img{
        width: 20px!important;
    }
    body div.nk-sidebar .metismenu > li > a > span,
    body div.nk-sidebar .metismenu .has-arrow::after {
        display: none;
        font-size: 0;
    }
    body div.nk-sidebar {
        width: 70px;
        left: 15px;
    }
    body .nk-sidebar .metismenu {
        padding: 20px 10px;
    }
    body div.nk-sidebar .metismenu > li > a {
        padding: 14px 0px;
        text-align: center;
        justify-content: center;
    }
    body .content-body {
        margin-left: 70px;
    }
    body div.nk-sidebar .metismenu > li > a.has-arrow + ul{
        display: none!important;
    }

    #floating-menu ul {
        height: auto!important;
        border-radius: 10px;
        overflow: hidden;
        margin: 0;
        z-index: 999;
        box-shadow: 5px 5px 10px 0 var(--background-light);
    }
    #floating-menu ul > li{
        background-color: var(--background-primary);
        transition: background-color 0.3s ease-in-out;
    }
    #floating-menu ul li a {
        display: block;
        color: var(--text-color-light);
        padding: 12px 20px;
        font-size: 14px;
        transition: color 0.3s ease-in-out;
    }
    #floating-menu ul li a:hover {
        color: var(--text-color-dark);
        transition: color 0.3s ease-in-out;
    }
}