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

:root {
    --colorbg: #f8f9fa;
    --colorbgtext: #000000;
    --color0: #05467E;
    /* --color0: #17c1e8; */
    --color0light: #0c7bb680;
    --color1: #ECEEF1;
    --color2: #53B700;
    --color2light: #52b70079;
    --color3: #FF8000;
    --color4: #0c7ab6;
    --color5: #D4D7DC;
    --color6: #BABEC5;
    --colorbar: #F4F5F8;
    /* Modern colors */
    --colorgray1: #344767;
    --colorgray2: #67748e;
    --colorgray3: #8392ab;
    --colorgray4: #252f40;
    --colorgray5: #e9ecef;
    --colorgreen: #82d616;
    --colorblue: #17c1e8;
    --colorred: #ea0606;
    --coloryellow: #fbcf33;
    --colorpink: #cb0c9f;

    /* 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 */
}

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

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

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

/* .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
} */

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

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

/* custom colors */

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

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

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

.text-custom {
    color: var(--color0) !important;
}

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

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

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

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

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

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

.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; */
}

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

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

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

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

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

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


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

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

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

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

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

.div-hover:hover {
    background-color: var(--colorgray5);
}
.scrollable-div {
    display:flex; 
    flex-wrap:nowrap; 
    overflow-x: scroll;
}

.input-sm-empty {
    height: 30px;
    font-size: 14px;
}

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

.navbar-nav .nav-link.active,
.navbar-nav .nav-item.show .nav-link {
    color: var(--color0) !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(--colorblue);
    border-bottom: 4px solid var(--colorblue);
    font-weight: bold;
}
}

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

/* custom badge */
.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;
}


/* 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(--color0);
    background-color: #ffffff;
    border-color: var(--color0);
    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(--color0);
    background-color: var(--color0);
    color: #ffffff;
    border-color: var(--color0);
}
  
  
.btn-custom-round {
    color: #ffffff;
    background-color: var(--color0);
    border-color: var(--color0);
    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(--color0);
    border-color: var(--color0);
}

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


/* bootstrap 5 custom button */
.btn-outline-custom {
    color: var(--color0);
    background-color: #ffffff;
    border-color: var(--color0);
    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(--color0) !important;
    background-color: var(--color0) !important;
    color: #ffffff !important;
    border-color: var(--color0) !important;
}
  
  
.btn-custom {
    color: #ffffff;
    background-color: var(--color0);
    border-color: var(--color0);
    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 !important;
    color: var(--color0) !important;
    border-color: var(--color0) !important;
}

.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;
}

/* 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;
}

/* 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; */
}

/* 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(--color2) !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: 1;
    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(--color2) !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; */
}

/* 
  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(--color0);
    /* 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 Alerts */
@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 hand */
.cursor-pointer{
    cursor: pointer;
}

/* cursor hand */
.cursor-drag{
    cursor: move;
}

/* 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;
}

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

.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-remove-margin {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

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


/* 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;
}

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

    #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;
    }

    .wrapper {
        overflow: visible !important;
    }
} */

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

.hiddenRow {
    padding: 0 !important;
}



/* 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;
}

/* 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(--color2);
}
  
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(--color0) !important;
      border-color: var(--color0) !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;
}

/* BOLD FONT */
  .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-md {
    font-size: 1.0em;
    font-weight: 800;
    line-height: 30px;
}

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


/* CARD */
.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: 0.5rem 1rem 0rem 1rem;
    background-color: #ffffff;
    border-bottom: none;
}

.card-body-custom {
    padding: 0.5rem 1rem 0.5rem 1rem;
}

.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;
}

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

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

@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: 1rem 0 1rem 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; 
    }
}

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

.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;
} 

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

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

/* VUE-MODAL CUSTOM CSS */
.vm.vue-modal-drawer {
    top: 0px;
    margin: 0px 0px 0px auto;
    height: 100%;
    /* width: 100%; */
    max-width: 1250px;
}
.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;
    }
  }

/* .print-brake{page-break-before: always; } */
/* div as masonry */
.div-stack { display: flex; flex-direction: column; }


.pristine-error {
    display: table;
}

.text-help {
    color: var(--colorred);
    font-size: small;
}

/* Floating div inside div*/
.div-floating-container-div-bottom {
    position: -webkit-sticky;
    position: sticky;
    /* right: 30px; */
    bottom: 5px;
    float:center;
    /* position: absolute; */
    z-index: 3;
    -webkit-appearance: none;
}

.div-floating-container-div-top {
    position: -webkit-sticky;
    position: sticky;
    /* right: 30px; */
    top: -5px;
    float:center;
    /* position: absolute; */
    z-index: 9999;
    -webkit-appearance: none;
}


/* To work with zero grid */
.text-font-xs {
    font-size: 0.775rem;
    /* font-weight: 800; */
}

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

@media (min-width:1799px){
    .screen-large {
        width: 1800px;
    }
}