:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #de4747;
  --lbs-yellow: #ffc107a2;
  --lbs-info: #0dcaf0ae;
  --lbs-orange: rgba(255, 213, 135, 0.589);

  --lbs-danger: #f44336;
  --lbs-success: #4caf50;

  --bs-light: #f8f9fa;
  --bs-dark: #202123;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-heading-color: ;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --bs-highlight-bg: #fff3cd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  scroll-behavior: smooth;
}

.blink_rainbow {
  animation: blinker_rainbow 1s infinite;
}

@keyframes blinker_rainbow {
  35% {
    background-color: yellow;
    color: red;
  }

  70% {
    background-color: greenyellow;
    color: white;
  }
}

.blink_orange {
  animation: blinker_orange 4s linear infinite;
}

@keyframes blinker_orange {
  25% {
    background-color: rgb(145, 255, 0);
    color: rgb(21, 149, 68);
  }

  50% {
    background-color: orange;
    color: red;
  }

  75% {
    background-color: rgb(0, 247, 255);
    color: rgb(0, 17, 255);
  }

  100% {
    background-color: rgb(255, 255, 255);
    color: rgb(17, 16, 16);
  }
}

.blink_danger {
  animation: blinker_danger 5s linear infinite;
}

@keyframes blinker_danger {
  50% {
    background-color: var(--bs-danger);
    color: white;
  }
}

.blink_primary {
  animation: blinker_primary 5s linear infinite;
}

@keyframes blinker_primary {
  50% {
    background-color: var(--bs-primary);
    color: white;
  }
}

.addressbar {
  height: 40px;
}

[title-right],
[title-left],
[title-top],
[title-bottom] {
  position: relative;
}

h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: var(--bs-link-color);
  text-decoration: underline;
}

a:hover {
  color: var(--bs-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not(
    [type="week"]
  ):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  appearance: button;
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: none;
  line-height: 20px !important;
  font-family: var(--bs-font-sans-serif);
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  appearance: textfield;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  appearance: button;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.tfrm2:active {
  transform: translate(2px, 2px);
}

.sh-1 {
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05) !important;
}

.sh-2 {
  -webkit-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05) !important;
}

.sh-3 {
  -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.05) !important;
}

.sh-4 {
  -webkit-box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.05) !important;
}

.sh-5 {
  -webkit-box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.05) !important;
}

.sh-1-st {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25),
    0 3px 10px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 3px 10px 0 rgba(0, 0, 0, 0.2) !important;
}

.sh-2-st {
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25),
    0 5px 15px 2px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 5px 15px 2px rgba(0, 0, 0, 0.2) !important;
}

.sh-3-st {
  -webkit-box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.25),
    0 7px 20px 3px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 6px 11px 0 rgba(0, 0, 0, 0.25),
    0 7px 20px 3px rgba(0, 0, 0, 0.2) !important;
}

.sh-4-st {
  -webkit-box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.25),
    0 10px 30px 4px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 6px 14px 0 rgba(0, 0, 0, 0.25),
    0 10px 30px 4px rgba(0, 0, 0, 0.2) !important;
}

.sh-light {
  box-shadow: 0px 25px 18px -27px rgba(0, 0, 0, 0.45);
}

.sh-5-st {
  -webkit-box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.25),
    0 12px 40px 5px rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.25),
    0 12px 40px 5px rgba(0, 0, 0, 0.2) !important;
}

.shadowb {
  -webkit-box-shadow: 1px 5px 2px 0px rgba(74, 74, 74, 0.72);
  -moz-box-shadow: 1px 5px 2px 0px rgba(74, 74, 74, 0.72);
  box-shadow: 1px 5px 2px 0px rgba(74, 74, 74, 0.72);
}

.bg-form {
  background: hsl(210.8, 76.5%, 70%);
  background: -moz-linear-gradient(
    top,
    hsl(210.8, 76.5%, 70%) 0%,
    hsl(210, 47.2%, 48.2%) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0%, hsl(210.8, 76.5%, 70%)),
    color-stop(100%, hsl(210, 47.2%, 48.2%))
  );
  background: -webkit-linear-gradient(
    top,
    hsl(210.8, 76.5%, 70%) 0%,
    hsl(210, 47.2%, 48.2%) 100%
  );
  background: -o-linear-gradient(
    top,
    hsl(210.8, 76.5%, 70%) 0%,
    hsl(210, 47.2%, 48.2%) 100%
  );
  background: -ms-linear-gradient(
    top,
    hsl(210.8, 76.5%, 70%) 0%,
    hsl(210, 47.2%, 48.2%) 100%
  );
  background: linear-gradient(
    to bottom,
    hsl(210.8, 76.5%, 70%) 0%,
    hsl(210, 47.2%, 48.2%) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='hsl(210.8,76.5%,70%)', endColorstr='hsl(210,47.2%,48.2%)', GradientType=0);
  border-color: hsl(210, 46.9%, 31.8%);
  color: white;
}

.lbg1 {
  background-color: #d1f2eb !important ;
  color: rgb(58, 51, 51) !important ;
}

.lbg2 {
  background-color: #fdebd0 !important ;
  color: rgb(58, 51, 51) !important ;
}

.lbg3 {
  background-color: #ebdef0 !important ;
  color: rgb(58, 51, 51) !important ;
}

.lbg4 {
  background-color: #abebc6 !important ;
  color: rgb(58, 51, 51) !important ;
}

.hoverlbg1:hover {
  background-color: #d1f2eb !important ;
  color: rgb(58, 51, 51) !important ;
}

.hoverlbg2:hover {
  background-color: #fdebd0 !important ;
  color: rgb(58, 51, 51) !important ;
}

.lbg-success {
  background-color: var(--lbs-success) !important;
  color: white !important;
}

.llbg-success {
  background-color: rgb(168, 255, 157) !important;
  color: rgb(58, 51, 51) !important;
}

.lbg-danger {
  background-color: var(--lbs-danger) !important;
  color: white !important;
}

.lbg-orange {
  background-color: var(--lbs-orange) !important;
  color: rgb(255, 106, 0);
}

.lbg-yellow {
  background-color: var(--lbs-yellow) !important;
  color: rgb(67, 67, 67) !important;
}

.lbg-info {
  background-color: var(--lbs-info) !important;
  color: white !important;
}

.lbg1 {
  background-color: rgba(229, 229, 229, 0.786);
  color: rgb(90, 87, 87) !important;
}

.lbg2 {
  background-color: rgba(65, 244, 65, 0.325);
  color: rgb(90, 87, 87) !important;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
  color: white !important;
}

.bg-success {
  background-color: var(--bs-success) !important;
  color: white !important;
}

.bg-danger {
  background-color: var(--bs-danger) !important;
  color: white !important;
}

.bg-danger2 {
  background-color: rgb(181, 26, 26) !important;
  color: white !important;
}

.bg-orange {
  background-color: var(--bs-orange) !important;
  color: white !important;
}

.bg-purple {
  background-color: var(--bs-purple) !important;
  color: white !important;
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: white !important;
}

.bg-info {
  background-color: var(--bs-info) !important;
  color: white !important;
}

.bg-white {
  background-color: white !important;
  color: rgb(45, 40, 40) !important;
}

.bg-bisc {
  background-image: linear-gradient(to bottom, #ffeeeea9, #ddefbb95);
  color: rgb(41, 41, 185);
}

.bg-none {
  background: none !important;
  background-color: none !important;
  color: black;
}

.bg-rainbow {
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  ) !important;
  color: white !important;
}

.lbg-rainbow {
  background: linear-gradient(
    45deg,
    #ff000089,
    #ff730077,
    #fffb0071,
    #48ff008d,
    #00ffd55e,
    #002aff75,
    #7b00ff6e,
    #ff00c870,
    #ff000066
  ) !important;
  color: maroon !important;
}

.hover-white:hover {
  background-color: white !important;
  color: black !important;
}

.hover-orange:hover {
  background-color: orange !important;
  color: bisque !important;
}

.hover-lorange:hover {
  background-color: rgba(255, 187, 61, 0.568) !important;
  color: rgb(91, 85, 85) !important;
}

.hover-primary:hover {
  background-color: var(--bs-primary) !important;
  color: #fff !important;
}

.hover-info:hover {
  background-color: var(--bs-info) !important;
  color: #333 !important;
}

.hover-danger:hover {
  background-color: var(--bs-danger) !important;
  color: var(--bs-white) !important;
}

.hover-success:hover {
  background-color: var(--bs-success) !important;
  color: var(--bs-white) !important;
}

.hover-purple:hover {
  background-color: purple !important;
  color: white !important;
}

.hover-active:hover {
  background-color: purple !important;
  color: white !important;
}

.hover-rainbow:hover {
  /* background-color:transparent!important; */
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffd5,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  ) !important;
  color: maroon !important;
}

.hover-shadow:hover {
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25),
    0 3px 10px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25), 0 3px 10px 0 rgba(0, 0, 0, 0.2) !important;
}

.span-lsuccess::before,
.span-orange::before,
.span-purple::before,
.span-primary::before,
.span-success::before,
.span-danger::before,
.span-warning::before {
  content: "  ";
}

.span-lsuccess::after,
.span-orange::after,
.span-purple::after,
.span-primary::after,
.span-success::after,
.span-danger::after,
.span-warning::after {
  content: "  ";
}

.span-primary {
  white-space: pre;
  border-radius: 4px;
  background-color: var(--bs-primary) !important;
  color: white !important;
}

.span-success {
  white-space: pre;
  border-radius: 4px;
  background-color: var(--bs-success) !important;
  color: white !important;
}

.span-danger {
  white-space: pre;
  border-radius: 4px;
  background-color: var(--bs-danger) !important;
  color: white !important;
}

.span-warning {
  white-space: pre;
  border-radius: 4px;
  background-color: var(--bs-orange) !important;
  color: white !important;
}

.span-orange {
  white-space: pre;
  border-radius: 4px;
  background-color: orange !important;
  color: white !important;
}

.span-lsuccess {
  white-space: pre;
  border-radius: 4px;
  background-color: #b3ffb3 !important;
  color: rgb(0, 97, 0) !important;
}

.span-purple {
  white-space: pre;
  border-radius: 4px;
  background-color: var(--bs-purple) !important;
  color: white !important;
}

.text-white {
  color: white !important;
}

.text-dark {
  color: #474242 !important;
}

.text-black {
  color: #000000 !important;
}

.text-danger {
  color: var(--bs-danger) !important;
}

.text-success {
  color: var(--bs-success) !important;
}

.text-orange {
  color: var(--bs-orange) !important;
}

.text-purple {
  color: var(--bs-purple) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.text-info {
  color: var(--bs-info) !important;
}

.brd-primary {
  border: 1px solid var(--bs-primary) !important;
}

.brd-orange {
  border: 1px solid var(--bs-orange) !important;
}

.brd-danger {
  border: 1px solid var(--bs-danger) !important;
}

.brd-success {
  border: 1px solid var(--bs-success) !important;
}

.brd-grey {
  border: 1px solid lightgray !important;
}

.brd-none {
  border-radius: none !important;
}

.brd4 {
  border-radius: 4px;
}

.brd8 {
  border-radius: 8px;
}

.brdt4 {
  border-top-left-radius: 4px !important;
  border-top-right-radius: 4px !important;
}

.brdb4 {
  border-bottom-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.brdt8 {
  border-top-left-radius: 8px !important;
  border-top-right-radius: 8px !important;
}

.brdb8 {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.brdl8 {
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.brdr8 {
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.brdl4 {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
}

.brdr4 {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.brdct4 {
  border-top-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.brdcb4 {
  border-top-left-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}

.brdct8 {
  border-top-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.brdcb8 {
  border-top-right-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.round50 {
  border-radius: 50%;
}

.prelative {
  position: relative;
}

.psticky {
  position: sticky;
}

.pabsolute {
  position: absolute;
}

.pfixed {
  position: fixed !important;
}

.l0 {
  left: 0;
}

.b0 {
  bottom: 0;
}

.r0 {
  right: 0;
}

.t0 {
  top: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.ofa {
  overflow: auto;
}

.ofn {
  overflow: hidden;
}

.ofy {
  overflow-x: hidden;
  overflow-y: auto;
}

.ofx {
  overflow-y: hidden;
  overflow-x: auto;
}

.tl {
  text-align: left !important;
}

.tr {
  text-align: right !important;
}

.tj {
  text-align: justify !important;
}

.tc {
  text-align: center !important;
}

.tu {
  text-decoration: underline !important;
}

.te1 {
  white-space: nowrap;
  overflow: hidden;   
  text-overflow: ellipsis; 
  width: 100%;
}

.te2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; 
  white-space: normal; 
  max-width: 100%; 
}


.cpt {
  cursor: pointer;
}

.cban {
  cursor: no-drop !important;
}

.rotate90 {
  transform: rotate(90deg);
}

.center_self {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ease {
  transition: all 0.5s ease-in-out;
}

/* ******* default scrollbar to all div ******************************** */

div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #5067fd;
  background-color: #92ebfb5f;
  border-radius: 10px;
}

div::-webkit-scrollbar {
  width: 2px;
  background-color: #5067fd;
}

div::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #5067fd;
  background-color: #5067fd;
}

div {
  --scrollbar-color-thumb: #5067fd;
  --scrollbar-color-track: #92ebfb5f;
  --scrollbar-width: thin;
  --scrollbar-width-legacy: 2px;
}

/* Modern browsers with `scrollbar-*` support */
@supports (scrollbar-width: auto) {
  div {
    scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
    scrollbar-width: var(--scrollbar-width);
  }
}

/* Legacy browsers with `::-webkit-scrollbar-*` support */
@supports selector(::-webkit-scrollbar) {
  div::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color-thumb);
  }

  div::-webkit-scrollbar-track {
    background: var(--scrollbar-color-track);
  }

  div::-webkit-scrollbar {
    max-width: var(--scrollbar-width-legacy);
    max-height: var(--scrollbar-width-legacy);
  }
}

/* ***************************************************************************  */

.scrollbar-primary::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #5067fd;
  background-color: #92ebfb5f;
  border-radius: 10px;
}

.scrollbar-primary::-webkit-scrollbar {
  width: 2px;
  background-color: #5067fd;
}

.scrollbar-primary::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #5067fd;
  background-color: #5067fd;
}

.scrollbar-primary {
  --scrollbar-color-thumb: #5067fd;
  --scrollbar-color-track: #92ebfb5f;
  --scrollbar-width: thin;
  --scrollbar-width-legacy: 2px;
}

/* Modern browsers with `scrollbar-*` support */
@supports (scrollbar-width: auto) {
  .scrollbar-primary {
    scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
    scrollbar-width: var(--scrollbar-width);
  }
}

/* Legacy browsers with `::-webkit-scrollbar-*` support */
@supports selector(::-webkit-scrollbar) {
  .scrollbar-primary::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color-thumb);
  }

  .scrollbar-primary::-webkit-scrollbar-track {
    background: var(--scrollbar-color-track);
  }

  .scrollbar-primary::-webkit-scrollbar {
    max-width: var(--scrollbar-width-legacy);
    max-height: var(--scrollbar-width-legacy);
  }
}

/* *************************************************************************** */

.scrollbar-danger::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
  border-radius: 10px;
}

.scrollbar-danger::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

.scrollbar-danger::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #ff3547;
}

.scrollbar-danger {
  scrollbar-color: #ff3547 #f5f5f5;
}

***************************************************************************
  .scrollbar-warning::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px orange;
  background-color: #fdaf825c;
  border-radius: 4px;
}

.scrollbar-warning::-webkit-scrollbar {
  width: 3px;
  background-color: orange;
}

.scrollbar-warning::-webkit-scrollbar-thumb {
  border-radius: 4px;
  -webkit-box-shadow: inset 0 0 6px orange;
  background-color: #fdaf825c;
}

.scrollbar-warning {
  --scrollbar-color-thumb: orange;
  --scrollbar-color-track: #fdaf825c;
  --scrollbar-width: thin;
  --scrollbar-width-legacy: 3px;
}

/* Modern browsers with `scrollbar-*` support */
@supports (scrollbar-width: auto) {
  .scrollbar-warning {
    scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
    scrollbar-width: var(--scrollbar-width);
  }
}

/* Legacy browsers with `::-webkit-scrollbar-*` support */
@supports selector(::-webkit-scrollbar) {
  .scrollbar-warning::-webkit-scrollbar-thumb {
    background: var(--scrollbar-color-thumb);
  }

  .scrollbar-warning::-webkit-scrollbar-track {
    background: var(--scrollbar-color-track);
  }

  .scrollbar-warning::-webkit-scrollbar {
    max-width: var(--scrollbar-width-legacy);
    max-height: var(--scrollbar-width-legacy);
  }
}

/* *************************************************************************** */

.scrollbar-success::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
  border-radius: 10px;
}

.scrollbar-success::-webkit-scrollbar {
  width: 8px;
  background-color: #f5f5f5;
}

.scrollbar-success::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #00c851;
}

.scrollbar-success {
  scrollbar-color: #00c851 #f5f5f5;
}

.brd-50 {
  border-radius: 50%;
}

.show_hover {
  background-color: none;
  color: #ffffff00;
}

.show_hover:hover {
  border: 1px solid blue;
  background-color: white;
  color: blue;
}

.border-bottom {
  border: none !important;
  border-bottom: 2px solid rgb(169, 169, 169) !important;
}

.brd-left-danger {
  border: 2px solid var(--bs-danger);
  border-left: 8px solid var(--bs-danger);
}

.brd-left-purple {
  border: 2px solid var(--bs-purple);
  border-left: 8px solid var(--bs-purple);
}

.brd-left-success {
  border: 2px solid var(--bs-success);
  border-left: 8px solid var(--bs-success);
}

.brd-left-orange {
  border: 2px solid var(--bs-orange);
  border-left: 8px solid var(--bs-orange);
}

.brd-left-primary {
  border: 2px solid var(--bs-primary);
  border-left: 8px solid var(--bs-primary);
}

.brd-left-info {
  border: 2px solid var(--bs-info);
  border-left: 8px solid var(--bs-info);
}

.td-none {
  text-decoration: none !important;
  color: black;
}

.bg-menu2 {
  background: rgb(0, 4, 40);
  background: linear-gradient(
    0deg,
    rgba(0, 4, 40, 1) 7%,
    rgba(0, 78, 146, 1) 81%
  );
  color: white;
}

.bg-menu {
  background: linear-gradient(white, rgba(255, 255, 255, 0.562));
}

/* CSS */

.mshow {
  display: none;
  visibility: hidden;
}

.fshow {
  display: block;
  visibility: visible;
}

.typewriter {
  display: inline-flex;
}

.typewriter span {
  background-color: white;
  word-break: break-all;
  height: 1.5em;
  width: 0%;
  overflow: hidden;
  animation: t 2s linear infinite alternate;
}

.typewriter span:before {
  content: " ";
  display: inline-block;
}

@keyframes t {
  90%,
  100% {
    width: 100%;
  }
}

#baseprofilebar input:disabled + label {
  display: none;
}

.badgespan {
  position: absolute;
  top: -6px;
  left: 15px;
  font-size: 12px;
  border-radius: 50%;
  background: #ea0003;
  color: #fff;
  height: 24px;
  width: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.UploadWrapper {
  height: 128px;
  width: 128px;
  position: relative;
  border: 1px solid rgb(102, 97, 97);
  background-size: 100% 100%;
  overflow: hidden;
}

.UploadPicker {
  position: absolute;
  bottom: 0;
  width: 1;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.507);
}

.UploadPicker::-webkit-file-upload-button {
  visibility: hidden;
}

.UploadPicker::before {
  content: "\270E";
  color: white;
  width: 25px;
  height: 25px;
  position: absolute;
  transform: translate(47.5px);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}

.file_upload {
  background: none;
  border-radius: 0px;
  border: 1px solid black;
  box-shadow: 4px 4px 8px rgb(236, 236, 236);
  width: 100%;
  height: 35px;
  line-height: 30px;
  outline: none;
}

::-webkit-file-upload-button {
  color: rgb(255, 106, 0);
  background: rgba(255, 213, 135, 0.589);
  padding: 2px 20px 2px 20px;
  border: none;
  border-radius: 0px;
  line-height: 30px;
}

.hmax100 {
  max-height: 100% !important;
}

.wmax100 {
  max-width: 100% !important;
}

.hwmax100 {
  max-height: 100% !important;
  max-width: 100% !important;
}

.h100vh {
  height: 100vh !important;
}

.w100vw {
  width: 100vw !important;
}

/* FLIP BOX */
.flip-box {
  background-color: transparent;
  width: 100%;
  height: 100%;
  perspective: 1000px;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* .flip-box:hover .flip-box-inner {
    transform: rotateY(180deg);
  } */

.flip-click {
  transform: rotateY(180deg);
}

.flip-box-front,
.flip-box-back {
  background-color: white;
  background: white;
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-back {
  transform: rotateY(180deg);
}

.vflip-box-back {
  transform: rotateX(180deg);
}

.vflip-click {
  transform: rotateX(180deg);
}

/* FLIP BOX END */

/* SLIDER CUBE */
.accoladecube_parent {
  z-index: 300;
  background-color: wheat;
  border-radius: 30%;
  position: absolute;
  bottom: 52px;
  right: 75px;
  width: 110px;
  height: 110px;
  -webkit-box-shadow: 2px 2px 2px 2px #524747;
  -moz-box-shadow: 2px 2px 2px 2px #524747;
  box-shadow: 2px 2px 2px 2px #524747;
}
.accoladecube {
  width: 110px;
  height: 110px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 40s infinite linear;
}
@keyframes rotateCube {
  0% {
    transform: rotateY(-360deg);
  }
  100% {
    transform: rotateY(-0deg);
  }
}
.accoladeside {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid #988f8f;
  background-color: white;
}
.front {
  transform: rotateY(0deg) translateZ(55px);
}
.back {
  transform: rotateY(180deg) translateZ(55px);
}
.left {
  transform: rotateY(-90deg) translateZ(55px);
}
.right {
  transform: rotateY(90deg) translateZ(55px);
}
.accoladeside img {
  height: auto;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}

/* FLEX */

.flex {
  display: flex;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-cent {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-left {
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 5px;
}

.flex-right {
  display: flex;
  align-items: center;
  justify-content: right;
  padding-right: 5px;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-grow {
  flex-grow: 1;
}

.flex-between {
  justify-content: space-between;
}

.flex-around {
  justify-content: space-around;
}

.flex-start {
  display: flex;
  justify-content: flex-start; /* Aligns items to the start (left) */
}

.flex-end {
  display: flex;
  justify-content: flex-end; /* Aligns items to the end (right) */
}

/* Header  */

.top {
  height: 35px;
  width: 100%;
  border-bottom: 1px solid lightgray;
}

.mid {
  height: calc(100% - 70px);
  width: 100%;
}

.bot {
  height: 35px;
  width: 100%;
  border-top: 1px solid lightgray;
}

.footer {
  height: var(--footer-height);
  background-color: var(--footer-color);
  overflow: hidden;
  color: white;
}

.beforehand_danger::before {
  content: "\261B";
  color: var(--bs-danger);
  font-size: 3rem;
  position: absolute;
  transform: translate(-45px, -34px);
}

.beforehand_primary::before {
  content: "\261B";
  color: var(--bs-primary);
  font-size: 3rem;
  position: absolute;
  transform: translate(-45px, -34px);
}

.beforehand_success::before {
  content: "\261B";
  color: var(--bs-success);
  font-size: 3rem;
  position: absolute;
  transform: translate(-45px, -34px);
}

.beforehand_info::before {
  content: "\261B";
  color: var(--bs-info);
  font-size: 3rem;
  position: absolute;
  transform: translate(-45px, -34px);
}

.beforehand_orange::before {
  content: "\261B";
  color: var(--bs-orange);
  font-size: 3rem;
  position: absolute;
  transform: translate(-45px, -34px);
}

.beforehand_purple::before {
  content: "\261B";
  color: var(--bs-purple);
  font-size: 3rem;
  position: absolute;
  transform: translate(-45px, -34px);
}

/* Basic CSS */

.fs1 {
  font-size: 0.25rem;
}

.fs2 {
  font-size: 0.5rem;
}

.fs3 {
  font-size: 0.75rem;
}

.fs4 {
  font-size: 1rem;
}

.fs5 {
  font-size: 1.25rem;
}

.fs6 {
  font-size: 1.5rem;
}

.fs7 {
  font-size: 1.75rem;
}

.fs8 {
  font-size: 2rem;
}

.fw200 {
  font-weight: 200;
}

.fw400 {
  font-weight: 400;
}

.fw600 {
  font-weight: 600;
}

.fw800 {
  font-weight: 800;
}

.fwb {
  font-weight: bold;
}

.fwbl {
  font-weight: bolder;
}

.h-auto {
  height: auto;
}

.h10px {
  height: 10px !important;
  line-height: 10px !important;
}

.hb10px {
  height: calc(100% - 10px);
}

.h15px {
  height: 15px !important;
  line-height: 15px !important;
}

.hb15px {
  height: calc(100% - 15px);
}

.h25px {
  height: 25px !important;
}

.hb25px {
  height: calc(100% - 25px);
}

.hb50px {
  height: calc(100% - 50px);
}

.h40px {
  height: 40px !important;
}

.hb40px {
  height: calc(100% - 40px);
}

.hb80px {
  height: calc(100% - 80px);
}

.hb120px {
  height: calc(100% - 120px);
}

.h32px {
  height: 32px !important;
}

.h48px {
  height: 48px !important;
}

.hb32px {
  height: calc(100% - 32px);
}

.hb48px {
  height: calc(100% - 48px);
}

.hb64px {
  height: calc(100% - 64px);
}

.h64px {
  height: 64px !important;
}

.lh1 {
  line-height: 1rem !important;
}

.h128px {
  height: 128px !important;
}

.h256px {
  height: 256px !important;
}

.h512px {
  height: 512px !important;
}

.h1024px {
  height: 1024px !important;
}

.h1 {
  height: 10% !important;
}

.h2 {
  height: 20% !important;
}

.h3 {
  height: 30% !important;
}

.h4 {
  height: 40% !important;
}

.h5 {
  height: 50% !important;
}

.h6 {
  height: 60% !important;
}

.h7 {
  height: 70% !important;
}

.h8 {
  height: 80% !important;
}

.h9 {
  height: 90% !important;
}

.h10 {
  height: 100% !important;
}

.w1 {
  width: 10% !important;
}

.w2 {
  width: 20% !important;
}

.w3 {
  width: 30% !important;
}

.w4 {
  width: 40% !important;
}

.w5 {
  width: 50% !important;
}

.w6 {
  width: 60% !important;
}

.w7 {
  width: 70% !important;
}

.w8 {
  width: 80% !important;
}

.w9 {
  width: 90% !important;
}

.w10 {
  width: 100% !important;
}

.w25px {
  width: 25px !important;
}

.w32px {
  width: 32px !important;
}

.wb32px {
  width: calc(100% - 32px) !important;
}

.w64px {
  width: 64px !important;
}

.w128px {
  width: 128px !important;
}

.w256px {
  width: 250px !important;
}

.wb64px {
  width: calc(100% - 64px) !important;
}

.l25 {
  left: 25%;
}

.m1 {
  margin: 0.25rem !important;
}

.m2 {
  margin: 0.5rem !important;
}

.m3 {
  margin: 0.75rem !important;
}

.m4 {
  margin: 1rem !important;
}

.mr1 {
  margin-right: 0.25rem !important;
}

.mr2 {
  margin-right: 0.5rem !important;
}

.mr3 {
  margin-right: 0.75rem !important;
}

.mr4 {
  margin-right: 1rem !important;
}

.ml1 {
  margin-left: 0.25rem !important;
}

.ml2 {
  margin-left: 0.5rem !important;
}

.ml3 {
  margin-left: 0.75rem !important;
}

.ml4 {
  margin-left: 1rem !important;
}

.mt1 {
  margin-top: 0.25rem !important;
}

.mt2 {
  margin-top: 0.5rem !important;
}

.mt3 {
  margin-top: 0.75rem !important;
}

.mt4 {
  margin-top: 1rem !important;
}

.mb1 {
  margin-bottom: 0.25rem !important;
}

.mb2 {
  margin-bottom: 0.5rem !important;
}

.mb3 {
  margin-bottom: 0.75rem !important;
}

.mb4 {
  margin-bottom: 1rem !important;
}

.p1 {
  padding: 0.25rem !important;
}

.p2 {
  padding: 0.5rem !important;
}

.p3 {
  padding: 0.75rem !important;
}

.p4 {
  padding: 1rem !important;
}

.p0 {
  padding: 0px !important;
}

.pm {
  padding: 0px !important;
  margin: 0px !important;
}

.pr1 {
  padding-right: 0.25rem !important;
}

.pr2 {
  padding-right: 0.5rem !important;
}

.pr3 {
  padding-right: 0.75rem !important;
}

.pr4 {
  padding-right: 1rem !important;
}

.pl1 {
  padding-left: 0.25rem !important;
}

.pl2 {
  padding-left: 0.5rem !important;
}

.pl3 {
  padding-left: 0.75rem !important;
}

.pl4 {
  padding-left: 1rem !important;
}

.pt1 {
  padding-top: 0.25rem !important;
}

.pt2 {
  padding-top: 0.5rem !important;
}

.pt3 {
  padding-top: 0.75rem !important;
}

.pt4 {
  padding-top: 1rem !important;
}

.pb1 {
  padding-bottom: 0.25rem !important;
}

.pb2 {
  padding-bottom: 0.5rem !important;
}

.pb3 {
  padding-bottom: 0.75rem !important;
}

.pb4 {
  padding-bottom: 1rem !important;
}

.ball {
  border: 1px solid lightgrey !important;
}

.ball2 {
  border: 2px solid black !important;
}

.ball-primary {
  border: 1px solid #3276eb !important;
}

.ball-danger {
  border: 1px solid #f5b7b1 !important;
}

.bnone {
  border: none !important;
}

.bbt {
  border-bottom: 1px solid lightgrey;
}

.btp {
  border-top: 1px solid lightgrey;
}

.blt {
  border-left: 1px solid lightgrey;
}

.brt {
  border-right: 1px solid lightgrey;
}

/* GRID SYSTEM */
.grid12,
.grid8,
.grid6,
.grid4,
.grid3,
.grid2,
.grid1 {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.grid12 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid8 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid6 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.grid4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.grid2 {
  grid-template-columns: 1fr 1fr;
}

.grid1 {
  grid-template-columns: 1fr;
}

/* GRID SYSTEM END */

@media only screen and (max-width: 768px) {
  .grid12 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .grid8 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .grid6 {
    grid-template-columns: 1fr 1fr;
  }

  .grid6-2 {
    grid-template-columns: 1fr 1fr;
  }

  .grid6-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid3 {
    grid-template-columns: 1fr;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .mmt1 {
    margin-top: 0.25rem;
  }

  .mmt2 {
    margin-top: 0.5rem;
  }

  .mmt3 {
    margin-top: 0.75rem;
  }

  .mmt4 {
    margin-top: 1rem;
  }

  .hm1 {
    height: 10% !important;
  }

  .hm2 {
    height: 20% !important;
  }

  .hm3 {
    height: 30% !important;
  }

  .hm4 {
    height: 40% !important;
  }

  .hm5 {
    height: 50% !important;
  }

  .hm6 {
    height: 60% !important;
  }

  .hm7 {
    height: 70% !important;
  }

  .hm8 {
    height: 80% !important;
  }

  .hm9 {
    height: 90% !important;
  }

  .hm10 {
    height: 100% !important;
  }

  .wm1 {
    width: 10% !important;
  }

  .wm2 {
    width: 20% !important;
  }

  .wm3 {
    width: 30% !important;
  }

  .wm4 {
    width: 40% !important;
  }

  .wm5 {
    width: 50% !important;
  }

  .wm6 {
    width: 60% !important;
  }

  .wm7 {
    width: 70% !important;
  }

  .wm8 {
    width: 80% !important;
  }

  .wm9 {
    width: 90% !important;
  }

  .wm10 {
    width: 100% !important;
  }

  .fm1 {
    font-size: 0.4rem;
  }

  .fm2 {
    font-size: 0.5rem;
  }

  .fm3 {
    font-size: 0.6rem;
  }

  .fm4 {
    font-size: 0.7rem;
  }

  .fm5 {
    font-size: 0.8rem;
  }

  .fm6 {
    font-size: 0.9rem;
  }

  .fm7 {
    font-size: 1rem;
  }

  .l25 {
    left: 5%;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    --accwidth: 120px;
    --accheight: 60px;
  }

  .infomodal {
    left: 1.5vw;
    top: 10vh;
    width: 96vw;
    height: 80vh;
  }

  .mofa {
    overflow: auto !important;
  }

  .ssbar {
    margin-top: 0px;
    position: absolute;
    border-right: 2px solid lightgray;
  }

  .ssbar_btn {
    display: block;
  }

  .mshow {
    visibility: visible;
    display: block;
  }

  .fshow {
    display: none;
    visibility: hidden;
  }

  .d-none {
    display: none;
  }

  .mofa {
    overflow: auto;
  }

  .mflex-colreverse {
    flex-direction: column-reverse;
  }
  .mflex-col {
    flex-direction: column;
  }
  .mflex-row {
    flex-direction: row;
  }

  .mm1 {
    margin: 0.25rem !important;
  }

  .mm2 {
    margin: 0.5rem !important;
  }

  .mm3 {
    margin: 0.75rem !important;
  }

  .mm4 {
    margin: 1rem !important;
  }

  .mmr1 {
    margin-right: 0.25rem !important;
  }

  .mmr2 {
    margin-right: 0.5rem !important;
  }

  .mmr3 {
    margin-right: 0.75rem !important;
  }

  .mmr4 {
    margin-right: 1rem !important;
  }

  .mml1 {
    margin-left: 0.25rem !important;
  }

  .ml2 {
    margin-left: 0.5rem !important;
  }

  .mml3 {
    margin-left: 0.75rem !important;
  }

  .mml4 {
    margin-left: 1rem !important;
  }

  .mt1 {
    margin-top: 0.25rem !important;
  }

  .mmt2 {
    margin-top: 0.5rem !important;
  }

  .mmt3 {
    margin-top: 0.75rem !important;
  }

  .mmt4 {
    margin-top: 1rem !important;
  }

  .mmb1 {
    margin-bottom: 0.25rem !important;
  }

  .mmb2 {
    margin-bottom: 0.5rem !important;
  }

  .mmb3 {
    margin-bottom: 0.75rem !important;
  }

  .mmb4 {
    margin-bottom: 1rem !important;
  }

  .pm1 {
    padding: 0.25rem !important;
  }

  .pm2 {
    padding: 0.5rem !important;
  }

  .pm3 {
    padding: 0.75rem !important;
  }

  .pm4 {
    padding: 1rem !important;
  }

  .pm0 {
    padding: 0px !important;
  }

  .pm {
    padding: 0px !important;
    margin: 0px !important;
  }

  .pmr1 {
    padding-right: 0.25rem !important;
  }

  .pmr2 {
    padding-right: 0.5rem !important;
  }

  .pmr3 {
    padding-right: 0.75rem !important;
  }

  .pmr4 {
    padding-right: 1rem !important;
  }

  .pml1 {
    padding-left: 0.25rem !important;
  }

  .pml2 {
    padding-left: 0.5rem !important;
  }

  .pml3 {
    padding-left: 0.75rem !important;
  }

  .pml4 {
    padding-left: 1rem !important;
  }

  .pmt1 {
    padding-top: 0.25rem !important;
  }

  .pmt2 {
    padding-top: 0.5rem !important;
  }

  .pmt3 {
    padding-top: 0.75rem !important;
  }

  .pmt4 {
    padding-top: 1rem !important;
  }

  .pmb1 {
    padding-bottom: 0.25rem !important;
  }

  .pmb2 {
    padding-bottom: 0.5rem !important;
  }

  .pmb3 {
    padding-bottom: 0.75rem !important;
  }

  .pmb4 {
    padding-bottom: 1rem !important;
  }
}
