/* VUE.JS */
[v-cloak] { display: none; }

:root {
    --colorprimary: #205EA3;
    --coloraccent: #17c1e8;
    --colorneutral: #0a181e;
    /* --colorplus1: #FFF2D4; */
    /* --colorplus2: #0a181e; */

    --colorbg: #f8f9fa;
    --colorbgtext: #000000;
    --color0: #36454F;
    --color0light: #0c7bb680;
    --color1: #ECEEF1;
    --color2: #53B700;
    --color2light: #52b70079;
    --color3: #FF8000;
    --color4: #0c7ab6;
    --color5: #D4D7DC;
    --color6: #BABEC5;
    --colorbar: #F4F5F8;
    --colornote: #fff7dd;
    /* Modern colors */
    --colorgray1: #344767;
    --colorgray2: #67748e;
    --colorgray3: #8392ab;
    --colorgray4: #252f40;
    --colorgray5: #e9ecef;
    --colorgreen: #82d616;
    --colorblue: #17c1e8;
    --colorred: #ea0606;
    --coloryellow: #fbcf33;
    --colorpink: #cb0c9f;
    /* --colorblue-2: #1976D2; */
    /* --colorblue-2: #1976d2e0; */
    --colorblue-2: #205EA3;
    /* --colorblue-2: #17497F; */
    /* bootstrap 5 css root variables */
    /* --bs-red: #ea0606;
    --bs-green: #82d616;
    --bs-danger-rgb: 234, 6, 6; */
    /* --bs-danger: #ea0606; */
    /* --bs-body-color: #344767; */

    --colorprimary1: #00BF6F; /* Primary - Sabaeus */
    --colorprimary2: #671E75; /* Primary - Concord */
    --colorprimary3: #05467E; /* Primary - Midnight */
    --colorprimary4: #2DCCD3; /* Primary - Artic */
    --coloraccent1: #F9BE00; /* Accent - Bumblebee */
    --coloraccent2: #F05B24; /* Accent - Bengal */
    --coloraccent3: #AC145A; /* Accent - Raspberry */
    --colorneutral1: #333E48; /* Neutral - Charcoal */
    --colorneutral2: #6C777D; /* Neutral - Slate */
    --colorneutral3: #9DA5AA; /* Neutral - Stone */
    --colorneutral4: #D0D2D3; /* Neutral - Flint */
    --colorneutral5: #36454F; /* Neutral - Charcoal Black */

    --color-pepper-0: #F0F4F6;
    --color-pepper-10: #E2E9ED;
    --color-pepper-20: #D5DEE3;
    --color-pepper-30: #C3CED5;
    --color-pepper-40: #ADBAC2;
    --color-pepper-50: #9AA7B0;
    --color-pepper-60: #859299;
    --color-pepper-70: #727E85;
    --color-pepper-80: #5D686F;
    --color-pepper-90: #4C555B;
    --color-pepper-100: #3C4348;
    --color-pepper-110: #2B3135;
    --color-pepper-120: #21262A;

}

body {
   /* font-family: Verdana, Arial, 'sans-serif' !important; */
   color: var(--colorneutral) !important;
   /* font-size: 12px; */
}

#app {
    height: 100%;
    min-height: 100vh;
}

/* MENU */
.sidebar-nav {
    width: 170px;
}

@media (max-width: 577px) {
/* @media (max-width: 843px) { */
    .sidebar-nav {
        width: 100%;
    }
}

.side-menu {
    padding-right: 0px;
    padding-left: 0px;
    margin-right: 0px;
    margin-left: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    /* height: 100% !important; */
}

.container-panel {
    height: 100vh;
    overflow-y: auto;
}

@media (max-width: 577px) {
/* @media (max-width: 843px) { */
    .container-panel {
        /* bottom: -20px; */
        height: auto;
        overflow-y: auto;
    }
}

.bg-bar {
    /* background:var(--colorprimary1); */
    background:var(--colorprimary);
    /* background:var(--colorneutral3); */
    /* background:var(--colorblue); */
    padding: 5px 5px 5px 5px;
}

@media (max-width: 577px) {
    .bg-bar {
        padding: 15px 15px 15px 15px;
    }
}

.menu-color {
    color: var(--colorbgtext);
    -webkit-appearance: none;
}

/* TEXT SIZE */
.text-12 {
    font-size: 12px;
}

.text-12-bold {
    font-size: 12px;
    font-weight: bold;
}

.text-14 {
    font-size: 14px;
}

.text-14-bold {
    font-size: 14px;
    font-weight: bold;
}

/* BACKGROUNDS */
.bg-main-color {
    /* background: var(--colorbg); */
    color: var(--colorbgtext);
}

.bg-custom {
    background: var(--colorneutral);
    color: #ffffff;
}

.bg-accent {
    background-color: var(--coloraccent) !important;
    color: var(--colorneutral) !important;
}

.bg-custom-note {
    background: #fff7dd;
    /* background: #efef10; */
}

.bg-light-green {
    /* background: #f6f6f7; */
    background: #f0f8f5;
}

.bg-custom-light {
    background:var(--colorgray1);
    color: #ffffff;
}

.bg-custom-extralight {
    background:var(--colorgray2);
    color: #ffffff;
}

.bg-white-light {
    /* background: #ffffff94; */
    /* background: #ffffff71; */
    background: #ffffff56;
    border-radius: 5px;
}

.bg-custom-primary1 {
    background:var(--colorprimary1);
    color: #ffffff;
}

.bg-custom-gray1 {
    background:var(--colorgray1);
    color: #ffffff;
}

.bg-custom-gray2 {
    background:var(--colorgray2);
    color: #ffffff;
}

.bg-custom-gray3 {
    background:var(--colorgray3);
    color: #ffffff;
}

.bg-custom-gray4 {
    background:var(--colorgray4);
    color: #ffffff;
}

.bg-custom-gray5 {
    background:var(--colorgray5);
    color: #ffffff;
}

.bg-custom-neutral1 {
    background:var(--colorneutral1);
    color: #ffffff;
}

.bg-custom-neutral2 {
    background:var(--colorneutral2);
    color: #ffffff;
}

.bg-custom-neutral3 {
    background:var(--colorneutral3);
    color: #ffffff;
}

.bg-custom-neutral4 {
    background:var(--colorneutral4);
    color: #ffffff;
}

.bg-custom-accent1 {
    background:var(--coloraccent1);
    /* color: #ffffff; */
}

.bg-custom-accent2 {
    background:var(--coloraccent2);
    color: #ffffff;
}

.bg-custom-accent3 {
    background:var(--coloraccent3);
    color: #ffffff;
}

.bg-light-no-print {
    background-color: rgba(var(--bs-light-rgb),1) !important;
}

.bg-custom-colorblue {
    background:var(--colorblue);
    /* color: #ffffff; */
}

.bg-custom-colorgreen {
    background:var(--colorprimary1);
    /* color: #ffffff; */
}

.bg-custom-colororange {
    background:var(--coloraccent2);
    /* color: #ffffff; */
}

.bg-custom-colorpink {
    background:var(--colorpink);
    /* color: #ffffff; */
}

.bg-custom-colorblue2 {
    background:var(--colorblue-2);
    /* color: #ffffff; */
}

/* TEXT COLOR */
.text-custom {
    color: var(--colorneutral) !important;
}

.text-accent {
    color: var(--coloraccent) !important;
}

.text-black {
    color: var(--colorbgtext) !important;
}

.text-gray1 {
    color: var(--colorgray1) !important;
}

.text-gray2 {
    color: var(--colorgray2) !important;
}

.text-gray3 {
    color: var(--colorgray3) !important;
}

.text-colorblue {
    color:var(--colorblue);
}

.text-colorgreen {
    color:var(--colorprimary1);
}

.text-colororange {
    color:var(--coloraccent2);
}

.text-colorpink {
    color:var(--colorpink);
}

/* NAVBAR CUSTOM */
/* navbar color text */
.navbar-nav .nav-item .nav-link {
    color: var(--colorneutral);
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item:hover .nav-link {
    color: var(--colorneutral);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-item.show .nav-link {
    color: var(--colorneutral) !important;
    -webkit-appearance: none;
}

.nav .nav-item .nav-link {
    /* color: var(--colorbgtext); */
    color: #ffffff;
}

.nav .nav-item.active .nav-link,
.nav .nav-item:hover .nav-link {
    /* color: var(--colorneutral1); */
    border-bottom: 4px solid var(--coloraccent);
    font-weight: bold;
}

.nav .nav-link.active,
.nav .nav-item.show .nav-link {
    color: var(--colorneutral) !important;
    -webkit-appearance: none;
}

/* BADGE CUSTOM COLOR */
.badge-yellow {
    color: #000000;
    background-color: #eeff00;
}
  
.badge-aqua {
    color: #000000;
    background-color: #6afcfc;
}
  
.badge-pink {
    color: #ffffff;
    background-color: #e690d3;
}

.badge-cadetblue {
    color: #ffffff;
    background-color: #5F9EA0;
}

.badge-violet {
    color: #ffffff;
    background-color: #EE82EE;
}

.badge-lawngreen {
    color: #000000;
    background-color: #7CFC00;
}

/* BUTTON */
/* Floating button bottom right inside div*/
.btn-floating-container-div {
    position: -webkit-sticky;
    position: sticky;
    right: 30px;
    bottom: 20px;
    float:right;
    /* position: absolute; */
    z-index: 9999;
    -webkit-appearance: none;
}

/* Floating button bottom right*/
.btn-floating-container {
    right: 30px;
    bottom: 20px;
    position: fixed;
    z-index: 9999;
}

.btn-floating {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.2), 0 1px 1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(245, 245, 245, 0.075);
    text-align: center;
    padding: 0px;
    font-size: 24px;
    -webkit-appearance: none;
}

/* bootstrap 5 custom button CIRCLE */
.btn-outline-custom-round {
    color: var(--colorneutral);
    background-color: #ffffff;
    border-color: var(--colorneutral);
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 50%;
    -webkit-appearance: none;
}
  
.btn-outline-custom-round:hover,
.btn-outline-custom-round:active,
.btn-outline-custom-round:focus,
.btn-outline-custom-round.active {
    background: var(--colorneutral);
    background-color: var(--colorneutral);
    color: #ffffff;
    border-color: var(--colorneutral);
}
  
  
.btn-custom-round {
    color: #ffffff;
    background-color: var(--colorneutral);
    border-color: var(--colorneutral);
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 50%;
    /* border-radius: 0; */
    -webkit-appearance: none;
}
  
.btn-custom-round:hover,
.btn-custom-round:active,
.btn-custom-round:focus,
.btn-custom-round.active {
    /* let's darken #004E64 a bit for hover effect */
    background: #ffffff;
    color: var(--colorneutral);
    border-color: var(--colorneutral);
}

.btn-custom-pill {
    border-radius: 50rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.btn-group-custom-pill {
    border-radius: 50rem 0rem 0rem 50rem !important;
    padding-right: 1rem !important;
    padding-left: 1rem !important;
}

.btn-group-custom-pill-split {
    border-radius: 0rem 50rem 50rem 0rem !important;
    padding-right: 0.7rem !important;
    padding-left: 0.5rem !important;
}

/* bootstrap 5 custom button */
.btn-outline-custom {
    color: var(--colorneutral);
    background-color: #ffffff;
    border-color: var(--colorneutral);
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 0.2rem;
    -webkit-appearance: none;
}
  
.btn-outline-custom:hover,
.btn-outline-custom:active,
.btn-outline-custom:focus,
.btn-outline-custom.active {
    background: var(--colorneutral);
    background-color: var(--colorneutral);
    color: #ffffff;
    border-color: var(--colorneutral);
}
 
.btn-outline-custom:disabled {
    color: var(--colorneutral) !important;
    /* border-color: var(--color3) !important; */
}
  
.btn-custom {
    color: #ffffff;
    background-color: var(--colorneutral);
    border-color: var(--colorneutral);
    font-weight: bold;
    letter-spacing: 0.05em;
    /* border-radius: 0; */
    -webkit-appearance: none;
}
  
.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus,
.btn-custom.active {
    /* let's darken #004E64 a bit for hover effect */
    background: #ffffff;
    color: var(--colorneutral);
    border-color: var(--colorneutral);
}

/* bootstrap 5 accent button */
.btn-outline-accent {
    color: var(--colorneutral);
    background-color: #ffffff;
    border-color: var(--coloraccent);
    font-weight: bold;
    letter-spacing: 0.05em;
    border-radius: 0.2rem;
    -webkit-appearance: none;
}
  
.btn-outline-accent:hover,
.btn-outline-accent:active,
.btn-outline-accent:focus,
.btn-outline-accent.active {
    background: var(--coloraccent) !important;
    background-color: var(--coloraccent) !important;
    color: #ffffff !important;
    border-color: var(--coloraccent) !important;
}

.btn-outline-accent:disabled {
    color: var(--colorneutral) !important;
    /* border-color: var(--color3) !important; */
}
  
.btn-accent {
    color: #ffffff;
    background-color: var(--coloraccent);
    border-color: var(--coloraccent);
    font-weight: bold;
    letter-spacing: 0.05em;
    /* border-radius: 0; */
    -webkit-appearance: none;
}
  
.btn-accent:hover,
.btn-accent:active,
.btn-accent:focus,
.btn-accent.active {
    /* let's darken #004E64 a bit for hover effect */
    background: #ffffff !important;
    color: var(--color0) !important;
    border-color: var(--coloraccent) !important;
}

.btn-accent:disabled {
    color: var(--colorneutral) !important;
    /* border-color: var(--color3) !important; */
}

.btn-table {
    color: #000000;
    background-color: var(--colorplus1);
    border-color: var(--colorplus2);
    font-weight: bold;
    letter-spacing: 0.05em;
    /* border-radius: 0; */
    -webkit-appearance: none;
}
  
.btn-table:hover,
.btn-table:active,
.btn-table:focus,
.btn-table.active {
    /* let's darken #004E64 a bit for hover effect */
    background: var(--colorplus2) !important;
    color: #ffffff !important;
    border-color: var(--colorplus1) !important;
}

.btn-table:disabled {
    color: var(--colorneutral) !important;
    /* border-color: var(--color3) !important; */
}

/* BOOTSTRAP SQUARE BUTTONS */
.btn-sq-lg {
    width: 150px !important;
    height: 150px !important;
}
  
.btn-sq {
    width: 100px !important;
    height: 100px !important;
    font-size: 10px;
}
  
.btn-sq-sm {
    width: 50px !important;
    height: 50px !important;
    font-size: 10px;
}
  
.btn-sq-xs {
    width: 25px !important;
    height: 25px !important;
    padding:2px;
}

/* INPUT CUSTOM */
.input-sm-empty {
    height: 30px;
    font-size: 14px;
}

.input-xs-empty {
    height: 28.59px;
    /* font-size: 14px; */
    font-size: 0.775rem;
}

/* Input with icon on left */
.input-icon-left .form-control {
    padding-left: 2.375rem !important;
}

.input-icon-left .custom-select {
    padding-left: 2.375rem !important;
}

.input-icon-left .input-icon-left-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.input-icon-left .input-icon-left-text {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    /* line-height: 2.375rem; */
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

/* Input with icon on right */
.input-icon-right .form-control {
    padding-right: 2.375rem !important;
}

.input-icon-right .custom-select {
    padding-right: 2.375rem !important;
}

.input-icon-right .input-icon-right-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.input-icon-right .input-icon-right-text {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    /* line-height: 2.375rem; */
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

/* LABEL CUSTOM */
.form-label-sm {
    font: 10px 'Open Sans', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer;
    margin-bottom: 0;
} 

.form-label-md {
    font: 12px 'Open Sans', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer;
    margin-bottom: 0;
}

/* CUSTOM RADIO INPUT */
.form-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    /* background-color: #f1f1f1; */
    background-color: #ffffff;
    color: #666;
    top: 5px;
    height: 30px;
    width: 30px;
    /* border: 0; */
    border: 1px solid #272727;
    border-radius: 50px;
    cursor: pointer;     
    margin-right: 7px;
    outline: none;
}

.form-radio:checked::before {
    position: absolute;
    font: 13px/1 'Open Sans', sans-serif;
    font-weight: 900;
    left: 11px;
    top: 7px;
    content: '\02143';
    transform: rotate(40deg);
}

.form-radio:hover {
    background-color: #f7f7f7;
    /* background-color: #ffffff; */
}

.form-radio:checked {
    /* background-color: #f1f1f1; */
    /* background-color: #ffffff; */
    border-color: var(--coloraccent) !important;
    /* background-color: var(--color2) !important; */
}

.form-radio:disabled {
    cursor: not-allowed;
    background-color: #e9ecef;
    opacity: 1;
}

.form-label {
    font: 15px/1.7 'Open Sans', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer;
    display: contents;
} 

/* CUSTOM RADIO FIXED FOR SUBCATEGORIES */
/* CUSTOM RADIO INPUT */
.form-radio-sm {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    background-color: #ffffff;
    /* background-color: #c9aaa4;; */
    color: #666;
    top: 5px;
    height: 20px;
    width: 20px;
    border: 0;
    border-radius: 50px;
    cursor: pointer;     
    margin-right: 3px;
    outline: none;
}

.form-radio-sm:checked::before {
    position: absolute;
    font: 13px/1 'Open Sans', sans-serif;
    font-weight: 700;
    left: 6px;
    top: 2px;
    content: '\02143';
    transform: rotate(40deg);
}

.form-radio-sm:hover {
    /* background-color: #f7f7f7; */
    background-color: #ffffff;
}

.form-radio-sm:checked {
    /* background-color: #f1f1f1; */
    background-color: #ffffff;
}

.form-radio-sm:disabled {
    cursor: not-allowed;
    background-color: #e9ecef;
    opacity: 1;
}

/* CUSTOM CHECK INPUT */
.form-check-label {
    display: contents !important;
}

.form-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    position: relative;
    /* background-color: #f1f1f1; */
    background-color: #ffffff;
    color: #666;
    top: 10px;
    height: 30px;
    width: 30px;
    border: 0;
    border-radius: 3px;
    cursor: pointer;     
    margin-right: 7px;
    outline: none;
    padding-left: 0rem !important;
}

.form-checkbox:checked::before {
    position: absolute;
    font: 13px/1 'Open Sans', sans-serif;
    font-weight: 900;
    left: 11px;
    top: 7px;
    content: '\02143';
    transform: rotate(40deg);
    /* color: #ffffff */
}

.form-checkbox:hover {
    /* background-color: #f7f7f7; */
    background-color: #ffffff;
}

.form-checkbox:checked {
    border-color: var(--coloraccent) !important;
    /* background-color: #ffffff; */
    /* background-color: var(--color2) !important; */
}

.form-checkbox:disabled {
    cursor: not-allowed;
    background-color: #e9ecef;
    opacity: 1;
}

/* input[type][disabled] {
    background-color: #f9f9f9;
    color: #ddd;
    cursor: default;
} */

input[type][disabled] + label {
    color: #999;
    cursor: default;
    /* text-decoration: line-through; */
}

/* Switch Small Specific Styles Checkbox */
input[type="checkbox"].switch_sm{
	font-size: 30px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	width: 1.5em;
	height: 0.75em;
	/* width: 3.5em;
	height: 1.5em; */
	background: #ddd;
	border-radius: 3em;
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
    margin: 0.15em;
    top: 8px;
}
  
input[type="checkbox"].switch_sm:checked{
	/* Blue */
    /* background: #0ebeff; */
    /* Green */
	/* background: #53B700; */
    /* Custom */
	background: var(--coloraccent);
}
  
input[type="checkbox"].switch_sm:after{
	position: absolute;
	content: "";
	width: 0.77em;
	height: 0.77em;
	/* width: 1.5em;
	height: 1.5em; */
	border-radius: 50%;
	background: #fff;
	-webkit-box-shadow: 0 0 .25em rgba(0,0,0,.3);
	        box-shadow: 0 0 .25em rgba(0,0,0,.3);
	-webkit-transform: scale(.7);
	        transform: scale(.7);
	left: 0;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
  
input[type="checkbox"].switch_sm:checked:after{
	/* left: calc(100% - 1.5em); */
	left: calc(100% - 0.77em);
}

/* bootstrap 5 switch size */
/* .form-check-input {
    clear: left;
  } */

.form-check-input:checked {
      background-color: var(--colorneutral) !important;
      border-color: var(--colorneutral) !important;
}

.form-switch.form-switch-sm {
    margin-bottom: 0.5rem; /* JUST FOR STYLING PURPOSE */
}
  
.form-switch.form-switch-sm .form-check-input {
    height: 1rem;
    width: calc(1rem + 0.75rem);
    border-radius: 2rem;
}
  
.form-switch.form-switch-md {
    margin-bottom: 1rem; /* JUST FOR STYLING PURPOSE */
}
  
.form-switch.form-switch-md .form-check-input {
    height: 1.5rem;
    width: calc(2rem + 0.75rem);
    border-radius: 3rem;
}
  
.form-switch.form-switch-lg {
    margin-bottom: 1.5rem; /* JUST FOR STYLING PURPOSE */
}
  
.form-switch.form-switch-lg .form-check-input {
    height: 2rem;
    width: calc(3rem + 0.75rem);
    border-radius: 4rem;
}
  
.form-switch.form-switch-xl {
    margin-bottom: 2rem; /* JUST FOR STYLING PURPOSE */
}
  
.form-switch.form-switch-xl .form-check-input {
    height: 2.5rem;
    width: calc(4rem + 0.75rem);
    border-radius: 5rem;
}

/* TOOLTIP */
/* 
  You want a simple and fancy tooltip?
  Just copy all [data-tooltip] blocks:
*/
[data-tooltip] {
    position: relative;
    z-index: 10;
}

/* Positioning and visibility settings of the tooltip */
[data-tooltip]:before,
[data-tooltip]:after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    left: 50%;
    bottom: calc(100% + 5px);
    pointer-events: none;
    transition: 0.2s;
    will-change: transform;
}
  
/* The actual tooltip with a dynamic width */
[data-tooltip]:before {
    content: attr(data-tooltip);
    padding: 10px 18px;
    min-width: 50px;
    max-width: 300px;
    width: max-content;
    width: -moz-max-content;
    border-radius: 6px;
    font-size: 14px;
    /*   font-size: 0.73rem; */
    background-color: var(--colorneutral);
    /* background-color: rgba(59, 72, 80, 0.9); */
    /* background-image: linear-gradient(30deg,
        rgba(59, 72, 80, 0.44),
        rgba(59, 68, 75, 0.44),
        rgba(60, 82, 88, 0.44)); */
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
    color: #fff;
    text-align: center;
    white-space: pre-wrap;
    transform: translate(-50%, -5px) scale(0.5);
}
  
/* Tooltip arrow */
[data-tooltip]:after {
    content: '';
    border-style: solid;
    border-width: 5px 5px 0px 5px;
    border-color: rgba(55, 64, 70, 0.9) transparent transparent transparent;
    transition-duration: 0s; /* If the mouse leaves the element, 
                                the transition effects for the 
                                tooltip arrow are "turned off" */
    transform-origin: top;   /* Orientation setting for the
                                slide-down effect */
    transform: translateX(-50%) scaleY(0);
}
  
/* Tooltip becomes visible at hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}

/* Tooltip becomes visible at hover */
[data-tooltip][data-tooltip-show="show"]:before,
[data-tooltip][data-tooltip-show="show"]:after{
    visibility: visible;
    opacity: 1;
}

[data-tooltip][data-tooltip-show="show"]:before {
    transition-delay: 0.3s;
    transform:  translate(-5%, 15px) scale(1);
    /* transform: translate(-50%, -5px) scale(1); */
}

[data-tooltip][data-tooltip-show="show"]:after {
    transition-delay: 0.5s; /* Starting after the grow effect */
    transition-duration: 0.2s;
    /* transform: translateX(-50%) scaleY(1); */
    transform: translateX(-100%) scaleY(1);
}
/* Scales from 0.5 to 1 -> grow effect */
[data-tooltip]:hover:before {
    transition-delay: 0.3s;
    transform: translate(-50%, -5px) scale(1);
}

/* Slide down effect only on mouseenter (NOT on mouseleave) */
[data-tooltip]:hover:after {
    transition-delay: 0.5s; /* Starting after the grow effect */
    transition-duration: 0.2s;
    transform: translateX(-50%) scaleY(1);
}

/*
That's it.
*/
/*
If you want some adjustability
here are some orientation settings you can use:
*/

/* LEFT */
/* Tooltip + arrow */
[data-tooltip-location="left"]:before,
[data-tooltip-location="left"]:after {
    left: auto;
    right: calc(100% + 5px);
    bottom: 50%;
}
  
/* Tooltip */
[data-tooltip-location="left"]:before {
    transform: translate(-5px, 50%) scale(0.5);
}

[data-tooltip-location="left"]:hover:before {
    transform: translate(-5px, 50%) scale(1);
}
  
/* Arrow */
[data-tooltip-location="left"]:after {
    border-width: 5px 0px 5px 5px;
    border-color: transparent transparent transparent rgba(55, 64, 70, 0.9);
    transform-origin: left;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="left"]:hover:after {
    transform: translateY(50%) scaleX(1);
}
  
/* RIGHT */
[data-tooltip-location="right"]:before,
[data-tooltip-location="right"]:after {
    left: calc(100% + 5px);
    bottom: 50%;
}
  
[data-tooltip-location="right"]:before {
    transform: translate(5px, 50%) scale(0.5);
}

[data-tooltip-location="right"]:hover:before {
    transform: translate(5px, 50%) scale(1);
}
  
[data-tooltip-location="right"]:after {
    border-width: 5px 5px 5px 0px;
    border-color: transparent rgba(55, 64, 70, 0.9) transparent transparent;
    transform-origin: right;
    transform: translateY(50%) scaleX(0);
}

[data-tooltip-location="right"]:hover:after {
    transform: translateY(50%) scaleX(1);
}
  
/* BOTTOM */
[data-tooltip-location="bottom"]:before,
[data-tooltip-location="bottom"]:after {
    top: calc(100% + 5px);
    bottom: auto;
}
  
[data-tooltip-location="bottom"]:before {
    transform: translate(-50%, 5px) scale(0.5);
}

[data-tooltip-location="bottom"]:hover:before {
    transform: translate(-50%, 5px) scale(1);
}
  
[data-tooltip-location="bottom"]:after {
    border-width: 0px 5px 5px 5px;
    border-color: transparent transparent rgba(55, 64, 70, 0.9) transparent;
    transform-origin: bottom;
}

/* PULSE ALERT */
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
    }
}

@keyframes shadow-pulse-big {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 0 70px rgba(0, 0, 0, 0);
    }
}

/*============================
	ANIMATIONS PULSE WRAP
=============================*/
.pulse_wrap {
	animation: pulse 1.5s ease-in-out alternate infinite;

}

@keyframes pulse {
	0% {
		opacity: 0.8;
		transform: scale(0.95);
        /* margin-left: -20px; */
	}
    100% {
		opacity: 1;
		transform: scale(1.2);
	}
}

/* CURSOR */
/* cursor hand */
.cursor-pointer{
    cursor: pointer;
}

/* MARGIN AND PADDING */
.remove-padding {
    padding-right: 0px;
    padding-left: 0px;
}

.remove-margin {
    margin-right: 0px;
    margin-left: 0px;
}

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

.remove-padding-tp {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

/* HR CUSTOM */
.hr-remove-margin {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.hr-line {
    border-top: 2px solid; 
}

/* FONT BOLD */
.qty-font-sm {
    font-size: 1.3em;
    font-weight: 800;
    line-height: 30px;
    border: 1px solid rgb(221,221,221);
    /* height: calc(1.5em + .5rem + 2px); */
    height: calc(1.2em + .5rem + 2px) !important;
}

.qty-font-lg {
    font-size: 1.5em;
    font-weight: 800;
    line-height: 30px;
    border: 1px solid rgb(221,221,221);
    /* height: calc(1.5em + .5rem + 2px); */
    height: calc(1.2em + .5rem + 2px) !important;
}

.tag-font-sm {
    font-size: 0.7em;
    font-weight: 800;
    line-height: 30px;
}

.tag-font-md {
    font-size: 1.0em;
    font-weight: 800;
    line-height: 30px;
}

.tag-font-lg {
    font-size: 1.5em;
    font-weight: 800;
    line-height: 30px;
}

.tag-font-xl {
    font-size: 2.5em;
    font-weight: 800;
    line-height: 30px;
}

/* CARD CUSTOM */
.card-close-float-right {
    position: absolute;
    /* background: red; */
    color: white;
    top: -10px;
    right: -15px;
}

.card-body-sm {
    padding: 0.5rem 0.5rem;
}

.card-noborder {
    border-radius: 0rem;
}

.card-header-custom {
    padding: 1rem 1rem;
    background-color: #ffffff;
    border-bottom: none;
}

.card-body-custom {
    padding: 0px 0px 0px 0px;
}

.card-footer-custom {
    padding: 1rem 1rem;
    background-color: #ffffff;
    border-top: none;
}

.card-footer:last-child .card-footer-noborder {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.card-custom-border {
    border:1px solid var(--colorgray3); 
}

/* FILL WITH DOTS */
.fill-dots { 
    overflow: hidden; 
    white-space: nowrap;
}

.fill-dots:after { 
    content: " .................................................................................. "; 
}

/* NEW TABLE RESPONSIVE CARD MODE */
/* Styles for card mode (presentational styles are marked as optional) */
.table-100 {
    width: 100%;
}

.bg-table-head {
    background: var(--color5);
}

.div-hover:hover {
    background-color: var(--colorgray5);
}

/* TABLE RESPONSIVE */
.table-md-font {
    font-size: 0.8rem !important;
}

.table-custom-color {
    --bs-table-color: #000;
    --bs-table-bg: #fff2d4;
    --bs-table-border-color: #2e2323;
    --bs-table-striped-bg: #2e2323;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #2e2323;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #2e2323;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}

@media (max-width: 855px) {
    .table-card,
    .table-card tbody,
    .table-card tfoot,
    .table-card tbody tr,
    .table-card tbody td {
        display: block;
        border: none;
        border-collapse: collapse;
    }

    .table-card {
        /* optional */
        border-top: 1px solid #e8e8e8; 
    }

    .table-card thead {
        display: none;
    }

    .table-card tbody tr{
        background-color: #ffffff;
        padding: 0.5rem 0 0.5rem 0;
        margin: 1rem 0 1rem 0;
        /* border-radius: 1rem; */
    }

    .table-card tbody tr:nth-child(odd) {
        /* optional */
        background-color: #c9c8c8; 
        /* background-color: #f9f9f9;  */
    }

    .table-card tbody td {
        position: relative;
        text-align: left;
        /* optional */
        padding: 7px 13px; 
        /* 50% is arbitrary, 13px is optional */
        padding-left: calc(50% + 13px); 
        /* optional */
        border: 1px solid #e8e8e8; 
        /* optional */
        border-top: none; 
    }

    .table-card tbody td:before {
        content: attr(data-label);
        position: absolute;
        white-space: nowrap;
        top: 0;
        bottom: 0;
        left: 0;
        /* arbitrary */
        width: 50%; 
        text-align: left;
        /* optional */
        padding: 7px 13px; 
        /* optional */
        font-weight: 600; 
        /* optional */
        border-right: 1px solid #e8e8e8; 
    }
}

/* Responsive table ==================================== */
/* @media screen and (max-width: 600px) {
    .table-left-right thead {
      border: none;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px;
    }
    
    .table-left-right tr {
      border-bottom: 3px solid #ddd;
      display: block;
    }
    
    .table-left-right td {
      display: block;
      text-align: right;
      border: none !important; 
    }
    
    .table-left-right td::before {
        content: attr(data-label);
        float: left;
        padding-right: 10px;
        font-weight: bold;
    }

    .table-left-right #tableTS td {
        display: flow-root !important;
        text-align: right;
        min-width: 89vw;
        border-left: 1px dashed #B0BEC5 !important;
        border-right: 1px dashed #B0BEC5 !important;
        border-top: 1px dashed #ECEFF1 !important;
        border-bottom: 1px dashed #ECEFF1 !important;
    }

    .table-left-right .wrapper {
        overflow: visible !important;
    }
} */

.scrollable-div {
    display:flex; 
    flex-wrap:nowrap; 
    overflow-x: scroll;
}

.rounded-corners {
    border-radius: 1rem;
}

/* font */
.font-cursive {
    font-family: cursive;
}

.img-wrap {
    width: 100%;
    max-height: 100vh;
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0;
    object-fit: cover;
}

.listing-noimg-content {
    border: 1px dashed #d9d5d2;
    width: 155px;
    height: 100px;
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
    /* padding: 5px 5px 5px 5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.listing-img-content {
    /* border: 1px dashed #d9d5d2; */
    width: 155px;
    height: 100px;
    text-align: center;
    margin: auto;
    margin-bottom: 10px;
    /* padding: 5px 5px 5px 5px; */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* .plandisabled input:disabled, select:disabled {
    border-color: var(--colorbg);
    background-color: white !important;
    background: white;
} */

.hiddenRow {
    padding: 0 !important;
}

.float-close {
    position: absolute;
    /* background: red; */
    /* color: white; */
    top: -10px;
    right: -10px;
}

/* Floating button bottom right inside div*/
.btn-floating-container-div {
    position: -webkit-sticky;
    position: sticky;
    right: 30px;
    bottom: 20px;
    float:right;
    /* position: absolute; */
    /* z-index: 9999; */
    z-index: 3;
}

/* PRINT */
/* .print-brake{page-break-before: always; } */

/* div as masonry */
.div-stack { display: flex; flex-direction: column; }

/* MEDIUM-ZOOM.JS FIX */
.medium-zoom-overlay,
.medium-zoom-image--opened {
    z-index: 1060;
}

/* VUE-LOADING-OVERLAY.JS */
/* vue-loading-overlay Fix text position */
.loading-after-icon {
    position: absolute;
    left: -100%;
    width: 210px;
}

/* VUE-SELECT */
/* v-select icon */
#vselect-icon {
    width: 16px;
    height: 16px;
    color: #999;
    margin: 8px 0px 0 8px;
}

.v-select-sm {
    /* padding-top: .25rem; */
    /* padding-bottom: .25rem; */
    font-size: .875rem;
    background: #ffffff;
}

.form-select-no-arrow {
    background-image: none;
}

/* PARSER.JS */
/* fix parser error */
.parsley-errors-list li {
    color: red;
}

.parsley-required {
    color: red;
}

.parsley-errors-list .parsley-required {
    color: red;
}

.has-error{
    color: #b94a48 !important;
    background-color: #f2dede !important;
    background: #f2dede !important;
    border: 1px solid #EED3D7 !important;
}

/* PRISTINE.JS */
.pristine-error {
    display: table;
}
/* PRISTINE.JS ERROR MESSAGE TEXT AND COLOR */
.text-help {
    color: var(--colorred);
    font-size: small;
}


/* UPPLOAD.JS */
/* fix uppload modal */
.uppload-modal-bg {
    background-color: rgba(125,125,125) !important;
}

/* VUE-MODAL CUSTOM CSS */
.vm.vue-modal-drawer {
    top: 0px;
    margin: 0px 0px 0px auto;
    height: 100%;
    /* width: 100%; */
    /* max-width: 750px; */
}

.vm-content {
    background: #fff;
}

.modal-footer {
    padding: 15px 0px 0px 0px;
    border-top: 1px solid #e5e5e5;
    margin-left: -14px;
    margin-right: -14px;
}

/* VUE-MODAL FULLMODAL CSS */
.fullscreen-modal {
    width: 100%;
    max-width: 100%;
    top: 0;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fullscreen-modal .vm-titlebar {
    flex-shrink: 0;
}

.fullscreen-modal .vm-content {
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-height: 0; 
}

.fullscreen-modal .vm-content .scrollable-content {
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    /* padding: 10px 15px 10px 15px; */
    flex-grow: 1;
}

.fullscreen-modal .fullscreen-modal-footer {
    border-top: 1px solid #e5e5e5;
    padding: 15px;
}

.vue-modal {
    min-width: 300px;
}

@media (min-width: 480px) {
    .vue-modal.modal-sm {
        max-width: 300px;
    }
}

@media (min-width: 992px) {
    .vue-modal.modal-lg,
    .vue-modal.modal-xl {
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .vue-modal.modal-xl {
        max-width: 1140px;
    }
}

.img-fluid-custom {
    width: 100%;
    max-height: 460px;
}

/* checkbox-tile */
.checkbox {
    display: contents;
    margin: 5px;
}
.checkbox-input {
    clip: rect(0 0 0 0);
    -webkit-clip-path: inset(100%);
            clip-path: inset(100%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
.checkbox-input:checked + .checkbox-tile {
    border-color: var(--coloraccent);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    color: var(--color0);
}
.checkbox-input:checked + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
    background-color: var(--coloraccent);
    border-color: var(--coloraccent);
}
.checkbox-input:checked + .checkbox-tile .checkbox-icon, .checkbox-input:checked + .checkbox-tile .checkbox-label {
    color: var(--color0);
}
.checkbox-input:focus + .checkbox-tile {
    border-color: var(--coloraccent);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}
.checkbox-input:focus + .checkbox-tile:before {
    transform: scale(1);
    opacity: 1;
}
.checkbox-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7rem;
    min-height: 7rem;
    border-radius: 0.5rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.15s ease;
    cursor: pointer;
    position: relative;
    padding: 5px;
}
.checkbox-tile:before {
    content: "";
    position: absolute;
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #b5bfd9;
    background-color: #fff;
    border-radius: 50%;
    top: 0.25rem;
    left: 0.25rem;
    opacity: 0;
    transform: scale(0);
    transition: 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
}
.checkbox-tile:hover {
    border-color: var(--coloraccent);
}
.checkbox-tile:hover:before {
    transform: scale(1);
    opacity: 1;
}

.checkbox-icon {
    transition: 0.375s ease;
    color: #494949;
}
.checkbox-icon {
    /* width: 3rem; */
    /* height: 3rem; */
    padding: 10px;
    align-items: center;
}

.checkbox-label {
    color: #707070;
    transition: 0.375s ease;
    text-align: center;
}
.checkbox .checkbox-input:disabled + .checkbox-tile{
    background: #e9ecef !important;
}
/* end checkbox tile */

/* table calendar */

.sticky-col {
    position: sticky;
    position: -webkit-sticky;    
    /* background-color: white; */
    background-color: #ECEFF1;
}

.first-col {
    /* width: 150px; */
    /* min-width: 100px; */
    /* max-width: 150px; */
    left: 0px;
    padding-right:10px;
    border: 2px;
    white-space: nowrap;
}

.first-row {
    /* width: 150px; */
    /* min-width: 100px; */
    /* max-width: 150px; */
    top: 0px;
    padding-right:10px;
    border: 2px;
    white-space: nowrap;
}

.p-remove-margin {
    margin-bottom: 0;
}

/* end table calendar */


/* from Bootstrap 5.3.0 text-muted was deprecated to keep compatibility */
.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

/* CALENDAR COLORS */
.cell-disabled{
    /* content:""; */
    /* background: repeating-linear-gradient(45deg, #606dbc, #606dbc 10px, #465298 10px, #465298 20px) !important; */
    background: repeating-linear-gradient(-55deg, #222, #222 10px, #333 10px, #333 20px);
    /* background: linear-gradient(to bottom, #5d9634, #5d9634 50%, #538c2b 50%, #538c2b); */
    /* background: repeating-linear-gradient(to right, #f6ba52, #f6ba52 10px, #ffd180 10px, #ffd180 20px); */
    /* background: repeating-linear-gradient(45deg, transparent, transparent 10px, #ccc 10px, #ccc 20px), linear-gradient(to bottom, #eee, #999); */
    /* background:lightgray !important; */
    /* border:1px solid grey; */
    cursor:not-allowed !important;
    opacity:0.5;
}

.cell-blocked{
    background: repeating-linear-gradient(45deg, #606dbc, #606dbc 10px, #465298 10px, #465298 20px) !important;
}

/* .avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    border: 2px solid var(--colorneutral);
    background: #f8f9fa;
    color: var(--colorneutral);
} */

.avatar {
    font-size: 1rem;
    position: relative;
    display: inline-block;
    width: 3.875rem;
    height: 3.875rem;
}
avatar.avatar-xl {
    font-size: 1.70833rem;
    width: 5.125rem;
    height: 5.125rem;
}

.avatar.avatar-lg {
    font-size: 1.4rem;
    width: 4.5rem;
    height: 4.5rem;
}

.avatar.avatar-md {
    font-size: .95rem;
    width: 3.25rem;
    height: 3.25rem;
}

.avatar.avatar-sm {
    font-size: .9rem;
    width: 2.625rem;
    height: 2.625rem;
}

.avatar.avatar-xs {
    font-size: .6rem;
    width: 2rem;
    height: 2rem;
}
.avatar .avatar-text {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-transform: uppercase;
    overflow: hidden;
    background: #fff;
    font-weight: 600;
    color: #00acf0;
}
.avatar .avatar-text .initial-wrap {
    display: table;
    width: 100%;
    height: 100%;
}

.avatar .avatar-text .initial-wrap > span {
    position: relative;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.avatar .avatar-text:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(178, 230, 250, 0.5);
}


/* CKEDitor */
.border-custom-colorred {
    border: 1px solid var(--colorred);
}

.cke_editable, .cke_editable p { margin: 0; }