@font-face {
  font-family: "font-1";
  src: url("../fonts/JetBrainsMono-Regular.ttf");
  font-display: swap;
}

@font-face {
  font-family: "font-2";
  src: url("../fonts/JetBrainsMono-Regular.ttf");
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input,
select,
button {
  font-family: "font-1", sans-serif;
}

:root {
  --c-red: #ff0000;
  --c-green: #004703;
  --c-blue: #fe4c40;
  --c-success: #3ae57f;
  --c-danger: #ec2d01;
  --c-warning: #ffdb58;
  --c-white: #fff;
  --c-black: #241f20;
  /* --c-black:#000; */
  --c-grey: #e9e9e9;
  --small-font-size: 0.8rem;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4.5rem;
}

h3 {
  font-size: 4rem;
}

h4 {
  font-size: 3.5rem;
}

h5 {
  font-size: 3rem;
}

h6 {
  font-size: 2.5rem;
}

a {
  font-size: 0.9rem;
}

.qm-fg-red {
  color: var(--c-red);
}

.qm-fg-green {
  color: var(--c-green);
}

.qm-fg-blue {
  color: var(--c-blue);
}

.qm-fg-success {
  color: var(--c-success);
}

.qm-fg-danger {
  color: var(--c-danger);
}

.qm-fg-warning {
  color: var(--c-warning);
}

.qm-fg-white {
  color: var(--c-white);
}

.qm-fg-black {
  color: var(--c-black);
}

.qm-fg-grey {
  color: var(--c-grey);
}

.qm-bg-red {
  background-color: var(--c-red);
}

.qm-bg-green {
  background-color: var(--c-green);
}

.qm-bg-blue {
  background-color: var(--c-blue);
}

.qm-bg-success {
  background-color: var(--c-success);
}

.qm-bg-danger {
  background-color: var(--c-danger);
}

.qm-bg-warning {
  background-color: var(--c-warning);
}

.qm-bg-white {
  background-color: var(--c-white);
}

.qm-bg-black {
  background-color: var(--c-black);
}

.qm-bg-grey {
  background-color: var(--c-grey);
}

.qm-fill-red {
  fill: var(--c-red);
}

.qm-fill-green {
  fill: var(--c-green);
}

.qm-fill-blue {
  fill: var(--c-blue);
}

.qm-fill-success {
  fill: var(--c-success);
}

.qm-fill-danger {
  fill: var(--c-danger);
}

.qm-fill-warning {
  fill: var(--c-warning);
}

.qm-fill-white {
  fill: var(--c-white);
}

.qm-fill-black {
  fill: var(--c-black);
}

.qm-fill-grey {
  fill: var(--c-grey);
}

.qm-border {
  outline: 0;
}

.qm-border.bc-red {
  border-color: var(--c-red);
}

.qm-border.bc-green {
  border-color: var(--c-green);
}

.qm-border.bc-blue {
  border-color: var(--c-blue);
}

.qm-border.bc-success {
  border-color: var(--c-success);
}

.qm-border.bc-danger {
  border-color: var(--c-danger);
}

.qm-border.bc-warning {
  border-color: var(--c-warning);
}

.qm-border.bc-white {
  border-color: var(--c-white);
}

.qm-border.bc-black {
  border-color: var(--c-black);
}

.qm-border.bc-grey {
  border-color: var(--c-grey);
}

.qm-border.bc-transparent {
  border-color: var(--c-transparent);
}

.qm-border.bc-top-red {
  border-top-color: var(--c-red);
}

.qm-border.bc-top-green {
  border-top-color: var(--c-green);
}

.qm-border.bc-top-blue {
  border-top-color: var(--c-blue);
}

.qm-border.bc-top-success {
  border-top-color: var(--c-success);
}

.qm-border.bc-top-danger {
  border-top-color: var(--c-danger);
}

.qm-border.bc-top-warning {
  border-top-color: var(--c-warning);
}

.qm-border.bc-top-white {
  border-top-color: var(--c-white);
}

.qm-border.bc-top-black {
  border-top-color: var(--c-black);
}

.qm-border.bc-top-grey {
  border-top-color: var(--c-grey);
}

.qm-border.bc-top-transparent {
  border-top-color: var(--c-transparent);
}

.qm-border.bc-left-red {
  border-left-color: var(--c-red);
}

.qm-border.bc-left-green {
  border-left-color: var(--c-green);
}

.qm-border.bc-left-blue {
  border-left-color: var(--c-blue);
}

.qm-border.bc-left-success {
  border-left-color: var(--c-success);
}

.qm-border.bc-left-danger {
  border-left-color: var(--c-danger);
}

.qm-border.bc-left-warning {
  border-left-color: var(--c-warning);
}

.qm-border.bc-left-white {
  border-left-color: var(--c-white);
}

.qm-border.bc-left-black {
  border-left-color: var(--c-black);
}

.qm-border.bc-left-grey {
  border-left-color: var(--c-grey);
}

.qm-border.bc-left-transparent {
  border-left-color: var(--c-transparent);
}

.qm-border.bc-bottom-red {
  border-bottom-color: var(--c-red);
}

.qm-border.bc-bottom-green {
  border-bottom-color: var(--c-green);
}

.qm-border.bc-bottom-blue {
  border-bottom-color: var(--c-blue);
}

.qm-border.bc-bottom-success {
  border-bottom-color: var(--c-success);
}

.qm-border.bc-bottom-danger {
  border-bottom-color: var(--c-danger);
}

.qm-border.bc-bottom-warning {
  border-bottom-color: var(--c-warning);
}

.qm-border.bc-bottom-white {
  border-bottom-color: var(--c-white);
}

.qm-border.bc-bottom-black {
  border-bottom-color: var(--c-black);
}

.qm-border.bc-bottom-grey {
  border-bottom-color: var(--c-grey);
}

.qm-border.bc-bottom-transparent {
  border-bottom-color: var(--c-transparent);
}

.qm-border.bc-right-red {
  border-right-color: var(--c-red);
}

.qm-border.bc-right-green {
  border-right-color: var(--c-green);
}

.qm-border.bc-right-blue {
  border-right-color: var(--c-blue);
}

.qm-border.bc-right-success {
  border-right-color: var(--c-success);
}

.qm-border.bc-right-danger {
  border-right-color: var(--c-danger);
}

.qm-border.bc-right-warning {
  border-right-color: var(--c-warning);
}

.qm-border.bc-right-white {
  border-right-color: var(--c-white);
}

.qm-border.bc-right-black {
  border-right-color: var(--c-black);
}

.qm-border.bc-right-grey {
  border-right-color: var(--c-grey);
}

.qm-border.bc-right-transparent {
  border-right-color: var(--c-transparent);
}

.qm-border.width-1 {
  border-width: 1px;
}

.qm-border.width-2 {
  border-width: 2px;
}

.qm-border.width-3 {
  border-width: 3px;
}

.qm-border.width-4 {
  border-width: 4px;
}

.qm-border.width-5 {
  border-width: 5px;
}

.qm-border.width-6 {
  border-width: 6px;
}

.qm-border.width-7 {
  border-width: 7px;
}

.qm-border.width-8 {
  border-width: 8px;
}

.qm-border.width-9 {
  border-width: 9px;
}

.qm-border.width-10 {
  border-width: 10px;
}

.qm-border.left-width-1 {
  border-left-width: 1px;
}

.qm-border.left-width-2 {
  border-left-width: 2px;
}

.qm-border.left-width-3 {
  border-left-width: 3px;
}

.qm-border.left-width-4 {
  border-left-width: 4px;
}

.qm-border.left-width-5 {
  border-left-width: 5px;
}

.qm-border.left-width-6 {
  border-left-width: 6px;
}

.qm-border.left-width-7 {
  border-left-width: 7px;
}

.qm-border.left-width-8 {
  border-left-width: 8px;
}

.qm-border.left-width-9 {
  border-left-width: 9px;
}

.qm-border.left-width-10 {
  border-left-width: 10px;
}

.qm-border.right-width-1 {
  border-right-width: 1px;
}

.qm-border.right-width-2 {
  border-right-width: 2px;
}

.qm-border.right-width-3 {
  border-right-width: 3px;
}

.qm-border.right-width-4 {
  border-right-width: 4px;
}

.qm-border.right-width-5 {
  border-right-width: 5px;
}

.qm-border.right-width-6 {
  border-right-width: 6px;
}

.qm-border.right-width-7 {
  border-right-color: 7px;
}

.qm-border.right-width-8 {
  border-right-width: 8px;
}

.qm-border.right-width-9 {
  border-right-width: 9px;
}

.qm-border.right-width-10 {
  border-right-width: 10px;
}

.qm-border.top-width-1 {
  border-top-width: 1px;
}

.qm-border.top-width-2 {
  border-top-width: 2px;
}

.qm-border.top-width-3 {
  border-top-width: 3px;
}

.qm-border.top-width-4 {
  border-top-width: 4px;
}

.qm-border.top-width-5 {
  border-top-width: 5px;
}

.qm-border.top-width-6 {
  border-top-width: 6px;
}

.qm-border.top-width-7 {
  border-top-width: 7px;
}

.qm-border.top-width-8 {
  border-top-width: 8px;
}

.qm-border.top-width-9 {
  border-top-width: 9px;
}

.qm-border.top-width-10 {
  border-top-width: 10px;
}

.qm-border.bottom-width-1 {
  border-bottom-width: 1px;
}

.qm-border.bottom-width-2 {
  border-bottom-width: 2px;
}

.qm-border.bottom-width-3 {
  border-bottom-width: 3px;
}

.qm-border.bottom-width-4 {
  border-bottom-width: 4px;
}

.qm-border.bottom-width-5 {
  border-bottom-width: 5px;
}

.qm-border.bottom-width-6 {
  border-bottom-width: 6px;
}

.qm-border.bottom-width-7 {
  border-bottom-width: 7px;
}

.qm-border.bottom-width-8 {
  border-bottom-width: 8px;
}

.qm-border.bottom-width-9 {
  border-bottom-width: 9px;
}

.qm-border.bottom-width-10 {
  border-bottom-width: 10px;
}

.qm-border.style-solid {
  border-style: solid;
}

.qm-border.style-double {
  border-style: double;
}

.qm-border.style-groove {
  border-style: groove;
}

.qm-border.style-dashed {
  border-style: dashed;
}

.qm-border.style-dotted {
  border-style: dotted;
}

.qm-border.style-ridge {
  border-style: ridge;
}

.qm-border.style-inset {
  border-style: inset;
}

.qm-border.style-outset {
  border-style: outset;
}

.qm-border.top-style-solid {
  border-top-style: solid;
}

.qm-border.top-style-double {
  border-top-style: double;
}

.qm-border.top-style-groove {
  border-top-style: groove;
}

.qm-border.top-style-dashed {
  border-top-style: dashed;
}

.qm-border.top-style-dotted {
  border-top-style: dotted;
}

.qm-border.top-style-ridge {
  border-top-style: ridge;
}

.qm-border.top-style-inset {
  border-top-style: inset;
}

.qm-border.top-style-outset {
  border-top-style: outset;
}

.qm-border.left-style-solid {
  border-left-style: solid;
}

.qm-border.top-style-double {
  border-left-style: double;
}

.qm-border.left-style-groove {
  border-left-style: groove;
}

.qm-border.left-style-dashed {
  border-left-style: dashed;
}

.qm-border.left-style-dotted {
  border-left-style: dotted;
}

.qm-border.left-style-ridge {
  border-left-style: ridge;
}

.qm-border.left-style-inset {
  border-left-style: inset;
}

.qm-border.left-style-outset {
  border-left-style: outset;
}

.qm-border.bottom-style-solid {
  border-bottom-style: solid;
}

.qm-border.bottom-style-double {
  border-bottom-style: double;
}

.qm-border.bottom-style-groove {
  border-bottom-style: groove;
}

.qm-border.bottom-style-dashed {
  border-bottom-style: dashed;
}

.qm-border.bottom-style-dotted {
  border-bottom-style: dotted;
}

.qm-border.bottom-style-ridge {
  border-bottom-style: ridge;
}

.qm-border.bottom-style-inset {
  border-bottom-style: inset;
}

.qm-border.bottom-style-outset {
  border-bottom-style: outset;
}

.qm-border.right-style-solid {
  border-right-style: solid;
}

.qm-border.right-style-double {
  border-right-style: double;
}

.qm-border.right-style-groove {
  border-right-style: groove;
}

.qm-border.right-style-dashed {
  border-right-style: dashed;
}

.qm-border.right-style-dotted {
  border-right-style: dotted;
}

.qm-border.right-style-ridge {
  border-right-style: ridge;
}

.qm-border.right-style-inset {
  border-right-style: inset;
}

.qm-border.right-style-outset {
  border-right-style: outset;
}

.qm-border.edge-is-sharp {
  border-radius: 0;
}

.qm-border.edge-is-blunt {
  border-radius: 5px;
}

.qm-border.edge-is-curved {
  border-radius: 25px;
}

.qm-border.edge-is-round {
  border-radius: 50%;
}

.qm-border.edge-top-is-sharp {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.qm-border-edge-top-is-blunt {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.qm-border.edge-top-is-curved {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.qm-border.edge-top-is-round {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}

.qm-border.edge-left-is-sharp {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qm-border.edge-left-is-blunt {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.qm-border.edge-left-is-curved {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.qm-border-edge-left-is-round {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.qm-border.edge-bottom-is-sharp {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.qm-border.edge-bottom-is-blunt {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.qm-border.edge-bottom-is-curved {
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.qm-border.edge-bottom-is-round {
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.qm-border.edge-right-is-sharp {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qm-border.edge-right-is-blunt {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.qm-border.edge-right-is-curved {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
}

.qm-border.edge-right-is-round {
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.qm-border.edge-top-left-is-sharp {
  border-top-left-radius: 0;
}

.qm-border.edge-top-left-is-blunt {
  border-top-left-radius: 5px;
}

.qm-border.edge-top-left-is-curved {
  border-top-left-radius: 25px;
}

.qm-border.edge-top-left-is-round {
  border-top-left-radius: 50%;
}

.qm-border.edge-bottom-left-is-sharp {
  border-bottom-left-radius: 0;
}

.qm-border.edge-bottom-left-is-blunt {
  border-bottom-left-radius: 5px;
}

.qm-border.edge-bottom-left-is-curved {
  border-bottom-left-radius: 25px;
}

.qm-border.edge-bottom-left-is-round {
  border-bottom-left-radius: 50%;
}

.qm-border.edge-top-right-is-sharp {
  border-top-right-radius: 0;
}

.qm-border.edge-top-right-is-blunt {
  border-top-right-radius: 5px;
}

.qm-border.edge-top-right-is-curved {
  border-top-right-radius: 25px;
}

.qm-border.edge-top-right-is-round {
  border-top-right-radius: 50%;
}

.qm-border.edge-bottom-right-is-sharp {
  border-bottom-right-radius: 0;
}

.qm-border.edge-bottom-right-is-blunt {
  border-bottom-right-radius: 5px;
}

.qm-border.edge-bottom-right-is-curved {
  border-bottom-right-radius: 25px;
}

.qm-border.edge-bottom-right-is-round {
  border-bottom-right-radius: 50%;
}

.qm-txt.font-1 {
  font-family: "font-1", sans-serif;
}

.qm-txt.font-2 {
  font-family: "font-2", sans-serif;
}

.qm-txt.font-sz-xx-small {
  font-size: xx-small;
}

.qm-txt.font-sz-x-small {
  font-size: x-small;
}

.qm-txt.font-sz-smaller {
  font-size: smaller;
}

.qm-txt.font-sz-small {
  font-size: small;
}

.qm-txt.font-sz-medium {
  font-size: medium;
}

.qm-txt.font-sz-large {
  font-size: large;
}

.qm-txt.font-sz-larger {
  font-size: larger;
}

.qm-txt.font-sz-x-large {
  font-size: x-large;
}

.qm-txt.font-sz-xx-large {
  font-size: xx-large;
}

.qm-txt.no-decoration {
  text-decoration: none;
}

.qm-txt.overline {
  text-decoration: overline;
}

.qm-txt.line-through {
  text-decoration: line-through;
}

.qm-txt.underline {
  text-decoration: underline;
}

/* Check if you use the class overline and underline it will apply the two */
.qm-txt.italic {
  font-style: italic;
}

.qm-txt.oblique {
  font-style: oblique;
}

.qm-txt.uppercase {
  text-transform: uppercase;
}

.qm-txt.capitalize {
  text-transform: capitalize;
}

.qm-txt.lowercase {
  text-transform: lowercase;
}

.qm-txt.align-center {
  text-align: center;
}

.qm-txt.align-right {
  text-align: right;
}

.qm-txt.align-left {
  text-align: left;
}

.qm-txt.align-justified {
  text-align: justify;
}

.qm-txt.w-thin {
  font-weight: 100;
}

.qm-txt.w-extra-light {
  font-weight: 100;
}

.qm-txt.w-light {
  font-weight: 300;
}

.qm-txt.w-normal {
  font-weight: 400;
}

.qm-txt.w-medium {
  font-weight: 500;
}

.qm-txt.w-semi-bold {
  font-weight: 600;
}

.qm-txt.w-bold {
  font-weight: 700;
}

.qm-txt.w-extra-bold {
  font-weight: 800;
}

.qm-txt.w-heavy {
  font-weight: 900;
}

.qm-txt.ww-normal {
  word-wrap: normal;
}

.qm-txt.ww-initial {
  word-wrap: initial;
}

.qm-txt.ww-inherit {
  word-wrap: inherit;
}

.qm-txt.ww-break-word {
  word-wrap: break-word;
}

.qm-txt.wb-normal {
  word-break: normal;
}

.qm-txt.wb-break-all {
  word-break: break-all;
}

.qm-txt.wb-keep-all {
  word-break: keep-all;
}

.qm-txt.wb-initial {
  word-break: initial;
}

.qm-txt.wb-inherit {
  word-break: inherit;
}

.qm-txt.ws-normal {
  white-space: normal;
}

.qm-txt.ws-nowrap {
  white-space: nowrap;
}

.qm-txt.ws-pre {
  white-space: pre;
}

.qm-cursor.default {
  cursor: default;
}

.qm-cursor.pointer {
  cursor: pointer;
}

.qm-cursor.forbidden {
  cursor: not-allowed;
}

.qm-cursor.move {
  cursor: move;
}

.qm-cursor.no-cursor {
  cursor: none;
}

.qm-cursor.zoom-in {
  cursor: zoom-in;
}

.qm-cursor.zoom-out {
  cursor: zoom-out;
}

.qm-cursor.grab {
  cursor: grab;
}

.qm-cursor.grabbing {
  cursor: grabbing;
}

.qm-cursor.copy {
  cursor: copy;
}

.qm-scroll-bar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.qm-scroll-bar::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.qm-scroll-bar.c-none::-webkit-scrollbar-track {
  background-color: white;
}

.qm-scroll-bar.c-none::-webkit-scrollbar-thumb {
  background-color: white;
}

.qm-scroll-bar.none::-webkit-scrollbar-thumb:hover {
  background-color: white;
}

.qm-scroll-bar.c-red::-webkit-scrollbar-thumb {
  background-color: var(--c-red);
}

.qm-scroll-bar.c-green::-webkit-scrollbar-thumb {
  background-color: var(--c-green);
}

.qm-scroll-bar.c-blue::-webkit-scrollbar-thumb {
  background-color: var(--c-blue);
}

.qm-scroll-bar.c-success::-webkit-scrollbar-thumb {
  background-color: var(--c-success);
}

.qm-scroll-bar.c-danger::-webkit-scrollbar-thumb {
  background-color: var(--c-danger);
}

.qm-scroll-bar.c-warning::-webkit-scrollbar-thumb {
  background-color: var(--c-warning);
}

.qm-scroll-bar.c-white::-webkit-scrollbar-thumb {
  background-color: var(--c-white);
}

.qm-scroll-bar.c-black::-webkit-scrollbar-thumb {
  background-color: var(--c-black);
}

.qm-scroll-bar.c-grey::-webkit-scrollbar-thumb {
  background-color: var(--c-grey);
}

.qm-scroll-bar::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.qm-scroll.scroll {
  overflow: scroll;
}

.qm-scroll.auto {
  overflow: auto;
}

.qm-scroll.hidden {
  overflow: hidden;
}

.qm-scroll.visible {
  overflow: visible;
}

.qm-scroll.x-scroll {
  overflow-x: scroll;
}

.qm-scroll.x-auto {
  overflow-x: auto;
}

.qm-scroll.x-hidden {
  overflow-x: hidden;
}

.qm-scroll.y-scroll {
  overflow-y: scroll;
}

.qm-scroll.y-auto {
  overflow-y: auto;
}

.qm-scroll.y-hidden {
  overflow-y: hidden;
}

.qm-display-inline {
  display: inline;
}

.qm-display-inline-block {
  display: inline-block;
}

.qm-display-block {
  display: block;
}

.qm-display-none {
  display: none;
}

.qm-flex {
  display: flex;
  flex-wrap: wrap;
}

.qm-flex-inline {
  display: inline-flex;
  flex-wrap: wrap;
}

.qm-flex.wrap-reverse {
  flex-wrap: wrap-reverse;
}

.qm-flex.nowrap {
  flex-wrap: nowrap;
}

.qm-flex.direction-row {
  flex-direction: row;
}

.qm-flex.direction-row-reverse {
  flex-direction: row-reverse;
}

.qm-flex.direction-column {
  flex-direction: column;
}

.qm-flex.direction-column-reverse {
  flex-direction: column-reverse;
}

.qm-flex.direction-initial {
  flex-direction: initial;
}

.qm-flex.direction-inherit {
  flex-direction: inherit;
}

.qm-flex-align-normal {
  align-items: start;
}

.qm-flex-align-items-stretch {
  align-items: stretch;
}

.qm-flex-align-items-center {
  align-items: center;
}

.qm-flex-align-items-flex-start {
  align-items: flex-start;
}

.qm-flex-align-items-flex-end {
  align-items: flex-end;
}

.qm-flex-align-items-start {
  align-items: start;
}

.qm-flex-align-items-end {
  align-items: end;
}

.qm-flex-align-items-baseline {
  align-items: baseline;
}

.qm-flex-align-items-initial {
  align-items: initial;
}

.qm-flex-align-items-inherit {
  align-items: inherit;
}

.qm-flex-justify-content-start {
  justify-content: flex-start;
}

.qm-flex-justify-content-end {
  justify-content: end;
}

.qm-flex-justify-content-center {
  justify-content: center;
}

.qm-flex-justify-content-space-between {
  justify-content: space-between;
}

.qm-flex-justify-content-space-around {
  justify-content: space-around;
}

.qm-flex-justify-content-space-evenly {
  justify-content: space-evenly;
}

.qm-flex-justify-content-initial {
  justify-content: initial;
}

.qm-flex-justify-content-inherit {
  justify-content: inherit;
}

.qm-align-content-stretch {
  align-content: stretch;
}

.qm-align-content-center {
  align-content: center;
}

.qm-align-content-flex-start {
  align-content: flex-start;
}

.qm-align-content-flex-end {
  align-content: flex-end;
}

.qm-align-content-space-between {
  align-content: space-between;
}

.qm-align-content-space-around {
  align-content: space-around;
}

.qm-align-content-space-evenly {
  align-content: space-evenly;
}

.qm-align-content-initial {
  align-content: initial;
}

.qm-align-content-inherit {
  align-content: inherit;
}

.qm-grid {
  display: grid;
  grid-gap: 20px;
}

.qm-grid.no-gap {
  grid-gap: 0;
}

.qm-grid.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qm-grid.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.qm-grid.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.qm-grid.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.qm-grid.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.qm-pos-static {
  position: static;
}

.qm-pos-relative {
  position: relative;
}

.qm-pos-fixed {
  position: fixed;
}

.qm-pos-absolute {
  position: absolute;
}

.qm-pos-sticky {
  position: sticky;
}

.qm-pos.top-offset {
  top: 0;
}

.qm-pos.left-offset {
  left: 0;
}

.qm-pos.bottom-offset {
  bottom: 0;
}

.qm-pos.right-offset {
  right: 0;
}

.qm-float-left {
  float: left;
}

.qm-float-right {
  float: right;
}

.qm-float-none {
  float: none;
}

.qm-float-inherit {
  float: inherit;
}

.qm-clear-none {
  clear: none;
}

.qm-clear-left {
  clear: left;
}

.qm-clear-right {
  clear: right;
}

.qm-clear-both {
  clear: both;
}

.qm-clear-inherit {
  clear: inherit;
}

.qm-size.no-width {
  width: 0;
}

.qm-size.no-height {
  height: 0;
}

.qm-size.full-width {
  width: 100%;
}

.qm-size.half-width {
  width: 50%;
}

.qm-size.full-height {
  height: 100%;
}

.qm-size.half-height {
  height: 50%;
}

.qm-container {
  padding: 0 2.5%;
}

.qm-container-1 {
  padding: 0 80px;
}

.qm-container-2 {
  padding: 0 100px;
}

.qm-container-3 {
  padding: 0 150px;
}

.qm-inner-space-1 {
  padding: 5px;
}

.qm-inner-space-2 {
  padding: 10px;
}

.qm-inner-space-3 {
  padding: 15px;
}

.qm-inner-space-4 {
  padding: 20px;
}

.qm-breaker-1 {
  height: 5px;
}

.qm-breaker-2 {
  height: 10px;
}

.qm-breaker-3 {
  height: 15px;
}

.qm-breaker-4 {
  height: 20px;
}

.qm-margin-top {
  margin-top: 10px;
}

.qm-margin-left {
  margin-left: 10px;
}

.qm-margin-bottom {
  margin-bottom: 10px;
}

.qm-margin-right {
  margin-right: 10px;
}

.qm-shadow {
  box-shadow: 1px 1px 5px 1px #e3e3e3;
}

.qm-no-shadow {
  box-shadow: none;
}

.qm-transparency {
  opacity: 0;
}

.qm-transparency.is-1 {
  opacity: 1;
}

.qm-overlay-light {
  background-color: rgb(255, 255, 255, 0.5);
}

.qm-overlay-dark {
  background-color: rgb(0, 0, 0, 0.7);
}

.qm-disabled {
  opacity: 0.5;
}

.qm-button {
  outline: 0;
  font-size: var(--small-font-size);
}

.qm-button.sm {
  padding: 6px 12px;
}

.qm-button.lg {
  padding: 10px 15px;
}

.qm-form input,
.qm-form select,
.qm-form textarea {
  outline: 0;
  border-radius: 0;
  font-size: 1rem;
  min-width: 95%;
}

.qm-form input.sm,
.qm-form select.sm,
.qm-form textarea.sm {
  padding: 6px 12px;
}

.qm-form input.lg,
.qm-form select.lg,
.qm-form textarea.lg {
  padding: 12px 12px;
}

.qm-form select.lg,
.qm-form input[type="date"] {
  height: 45px;
}


.qm-form input.line-in,
.qm-form select.line-in,
.qm-form textarea.line-in {
  outline: 0;
  padding: 6px 0;
  font-size: 1rem;
}

.qm-form textarea {
  resize: none;
  height: 150px;
  max-height: 200px;
}

.qm-form .checkbox {
  display: block;
  position: relative;
  padding: 7px 0 0 38px;
  cursor: pointer;
  font-size: 0.9rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.qm-form .checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.qm-form .checkbox:hover input[type="checkbox"]~.checkmark {
  background-color: #ccc;
}

.qm-form .checkbox input[type="checkbox"].qm-bg-red:checked~.checkmark {
  background-color: var(--c-red);
}

.qm-form .checkbox input[type="checkbox"].qm-bg-green:checked~.checkmark {
  background-color: var(--c-green);
}

.qm-form .checkbox input[type="checkbox"].qm-bg-blue:checked~.checkmark {
  background-color: var(--c-blue);
}

.qm-form .checkbox input[type="checkbox"].qm-bg-success:checked~.checkmark {
  background-color: var(--c-success);
}

.qm-form .checkbox input[type="checkbox"].qm-bg-danger:checked~.checkmark {
  background-color: var(--c-danger);
}

.qm-form .checkbox input[type="checkbox"].qm-bg-warning:checked~.checkmark {
  background-color: var(--c-warning);
}

.qm-form .checkbox input[type="checkbox"].qm-bg-black:checked~.checkmark {
  background-color: var(--c-black);
}

.qm-form .checkbox input[type="checkbox"]:checked~.checkmark:after {
  display: block;
}

.qm-form .checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #eee;
}

.qm-form .checkbox.qm-border-edge.is-blunt .checkmark {
  border-radius: 5px;
}

.qm-form .checkbox.qm-border-edge.is-curved .checkmark {
  border-radius: 25px;
}

.qm-form .checkbox.qm-border-edge.is-round .checkmark {
  border-radius: 50%;
}

.qm-form .checkbox .checkmark:after {
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: 1px solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  -ms-transform: rotate(45deg) translateX(-50%) translateY(-50%);
  transform: rotate(45deg) translateX(-50%) translateY(-50%);
  content: "";
  position: absolute;
  display: none;
}

.qm-form .radio {
  display: block;
  position: relative;
  padding: 7px 0 0 38px;
  cursor: pointer;
  font-size: 0.9rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.qm-form .radio input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.qm-form .radio:hover input[type="radio"]~.checkmark {
  background-color: #ccc;
}

.qm-form .radio input[type="radio"].qm-bg-red:checked~.checkmark {
  background-color: var(--c-red);
}

.qm-form .radio input[type="radio"].qm-bg-green:checked~.checkmark {
  background-color: var(--c-green);
}

.qm-form .radio input[type="radio"].qm-bg-blue:checked~.checkmark {
  background-color: var(--c-blue);
}

.qm-form .radio input[type="radio"].qm-bg-success:checked~.checkmark {
  background-color: var(--c-success);
}

.qm-form .radio input[type="radio"].qm-bg-danger:checked~.checkmark {
  background-color: var(--c-danger);
}

.qm-form .radio input[type="radio"].qm-bg-warning:checked~.checkmark {
  background-color: var(--c-warning);
}

.qm-form .radio input[type="radio"].qm-bg-black:checked~.checkmark {
  background-color: var(--c-black);
}

.qm-form .radio input[type="radio"]:checked~.checkmark:after {
  display: block;
}

.qm-form .radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 30px;
  width: 30px;
  background-color: #eee;
}

.qm-form .radio.qm-border-edge.is-blunt .checkmark {
  border-radius: 5px;
}

.qm-form .radio.qm-border-edge.is-curved .checkmark {
  border-radius: 25px;
}

.qm-form .radio.qm-border-edge.is-round .checkmark {
  border-radius: 50%;
}

.qm-form .radio .checkmark:after {
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
  background-color: white;
  border-radius: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  content: "";
  position: absolute;
  display: none;
}

.qm-switch {
  width: 50px;
  height: 28px;
}

.qm-switch .slide {
  background-color: var(--c-grey);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.qm-switch .slide:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: var(--c-white);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.qm-switch input.qm-bg-red:checked+.slide {
  background-color: var(--c-red);
}

.qm-switch input.qm-bg-green:checked+.slide {
  background-color: var(--c-green);
}

.qm-switch input.qm-bg-success:checked+.slide {
  background-color: var(--c-success);
}

.qm-switch input.qm-bg-danger:checked+.slide {
  background-color: var(--c-danger);
}

.qm-switch input.qm-bg-warning:checked+.slide {
  background-color: var(--c-warning);
}

.qm-switch input.qm-bg-black:checked+.slide {
  background-color: var(--c-black);
}

.qm-switch input:checked+.slide:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.qm-table {
  border-collapse: collapse;
  border: 1px solid var(--c-grey);
}

.qm-table thead tr th {
  font-size: 0.7rem;
  padding: 15px 20px;
  /* color: var(--c-black); */
  text-align: left;
  /* background-color: var(--c-grey); */
  border-left: 1px solid var(--c-white);
}

.qm-table thead tr th:nth-child(1) {
  border-left: none;
}

.qm-table tbody tr td {
  font-size: 0.7rem;
  padding: 12px 20px;
  border: 1px solid var(--c-grey);
}

.qm-list.remove-style {
  list-style-type: none;
}

.qm-image {
  object-fit: cover;
  object-position: top center;
}

.qm-image.fill-it {
  object-fit: fill;
}

.qm-image.contain-it {
  object-fit: contain;
}

.qm-image.scale-it-down {
  object-fit: scale-down;
}

.qm-image.no-fit {
  object-fit: none;
}

.qm-image.mini-size {
  width: 40px;
  height: 40px;
}

.qm-image.tiny-size {
  width: 80px;
  height: 80px;
}

.qm-image.small-size {
  width: 150px;
  height: 150px;
}

.qm-image.medium-size {
  width: 300px;
  height: 300px;
}

.qm-badge {
  padding: 4px 8px;
  font-size: var(--small-font-size);
}

.qm-spinner {
  width: 36px;
  height: 36px;
  -webkit-animation: spin-it 2s linear infinite;
  animation: spin-it 2s linear infinite;
}

.qm-message {
  right: 30px;
  bottom: 30px;
  font-size: 0.85rem;
  padding: 10px 10px;
  margin-bottom: 10px;
  z-index: 15;
  display: none;
}

.qm-message.positioned {
  right: 20px;
  bottom: 30px;
}

.qm-message.success {
  color: var(--c-success);
  background-color: #e8fcf0;
}

.qm-message.danger {
  color: var(--c-danger);
  background-color: #ffeae6;
}

.qm-message.warning {
  color: var(--c-warning);
  background-color: #fff9e5;
}


@-webkit-keyframes spin-it {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.qm-paginate a {
  margin: 0 2px;
  padding: 8px 10px;
  font-size: var(--small-font-size);
  transition: background-color 0.3s;
}

.qm-paginate a:hover:not(.qm-border) {
  background-color: inherit;
  opacity: 0.2;
}

.qm-tab {
  white-space: nowrap;
}

.qm-tab a {
  margin-left: 25px;
  padding-bottom: 20px;
}

.qm-tab a:nth-child(1) {
  margin-left: 0;
}

.qm-tab .active::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  bottom: 0;
}

.qm-tab .active.tc-red::before {
  background-color: var(--c-red);
}

.qm-tab .active.tc-green::before {
  background-color: var(--c-green);
}

.qm-tab .active.tc-blue::before {
  background-color: var(--c-blue);
}

.qm-tab .active.tc-success::before {
  background-color: var(--c-success);
}

.qm-tab .active.tc-danger::before {
  background-color: var(--c-danger);
}

.qm-tab .active.tc-warning::before {
  background-color: var(--c-warning);
}

.qm-tab .active.tc-white::before {
  background-color: var(--c-white);
}

.qm-tab .active.tc-black::before {
  background-color: var(--c-black);
}

.qm-tab .active.tc-grey::before {
  background-color: var(--c-grey);
}

.qm-alert {
  padding: 20px 10px;
  font-size: var(--small-font-size);
}

.qm-modal {
  z-index: 10;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.qm-modal .content-box {
  height: auto;
}

.qm-modal .content-box .head .the-title {
  width: 90%;
}

.qm-modal .content-box .head .icon {
  width: 10%;
}

.qm-modal .content-box .head .icon svg {
  width: 28px;
  height: 28px;
}

.qm-modal .content-box.sz-small {
  width: 400px;
  max-height: 600px;
}

.qm-modal .content-box.sz-medium {
  width: 600px;
  max-height: 600px;
}

.qm-modal .content-box.sz-large {
  width: 90%;
  max-height: 90%;
}

.qm-modal .content-box.sz-full {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  border-radius: 0;
}

@media (max-width: 900px) {
  .qm-grid.grid-2.stackable {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .qm-grid.grid-3.stackable {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .qm-grid.grid-3.stackable-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qm-grid.grid-4.stackable {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .qm-grid.grid-4.stackable-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qm-grid.grid-4.stackable-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .qm-grid.grid-5.stackable {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .qm-grid.grid-5.stackable-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qm-grid.grid-5.stackable-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .qm-grid.grid-6.stackable {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .qm-grid.grid-6.stackable-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .qm-grid.grid-6.stackable-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .qm-modal .content-box.sz-small {
    width: 90%;
    max-height: 90%;
  }

  .qm-modal .content-box.sz-medium {
    width: 90%;
    max-height: 90%;
  }

  .qm-modal .content-box.sz-large {
    width: 100%;
    max-height: 90%;
  }
}