:root {
  --font-family-sans: sans-serif;
  --breakpoint-large: 1024px;
  --spacing-medium: 8px;
  --pallet-black: #1A1A1A;
  --pallet-blue: #00BFFF;
  --fs-display-h1: 7em;
  --pallet-yellow: #F1C40F;
  --fs-serif-s: 1.4em;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  font-family: kehlin-regular;
}

a:hover.no-hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

.flex {
  display: flex;
}
.flex.f-row {
  display: flex;
  flex-direction: row;
}
.flex.f-column {
  display: flex;
  flex-direction: column;
}
@media (max-width: 600px) {
  .flex.f-row-sd {
    display: flex;
    flex-direction: row !important;
  }
  .flex.f-column-sd {
    display: flex;
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  .flex.f-row-md {
    display: flex;
    flex-direction: row !important;
  }
  .flex.f-column-md {
    display: flex;
    flex-direction: column !important;
  }
}
@media (max-width: 1024px) {
  .flex.f-row-ld {
    display: flex;
    flex-direction: row !important;
  }
  .flex.f-column-ld {
    display: flex;
    flex-direction: column !important;
  }
}
.flex.f-center {
  justify-content: center;
  align-items: center;
}
.flex.f-start {
  justify-content: flex-start;
  align-items: flex-start;
}
.flex.f-end {
  justify-content: flex-end;
  align-items: flex-end;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-1 {
  flex: 1;
}
@media (max-width: 600px) {
  .flex-sd-1 {
    flex: 1;
  }
  .flex-sd-grow-1 {
    flex-grow: 1;
  }
}
@media (max-width: 768px) {
  .flex-md-1 {
    flex: 1;
  }
  .flex-md-grow-1 {
    flex-grow: 1;
  }
}
@media (max-width: 1024px) {
  .flex-ld-1 {
    flex: 1;
  }
  .flex-ld-grow-1 {
    flex-grow: 1;
  }
}
.flex-grow-2 {
  flex-grow: 2;
}
.flex-2 {
  flex: 2;
}
@media (max-width: 600px) {
  .flex-sd-2 {
    flex: 2;
  }
  .flex-sd-grow-2 {
    flex-grow: 2;
  }
}
@media (max-width: 768px) {
  .flex-md-2 {
    flex: 2;
  }
  .flex-md-grow-2 {
    flex-grow: 2;
  }
}
@media (max-width: 1024px) {
  .flex-ld-2 {
    flex: 2;
  }
  .flex-ld-grow-2 {
    flex-grow: 2;
  }
}
.flex-grow-3 {
  flex-grow: 3;
}
.flex-3 {
  flex: 3;
}
@media (max-width: 600px) {
  .flex-sd-3 {
    flex: 3;
  }
  .flex-sd-grow-3 {
    flex-grow: 3;
  }
}
@media (max-width: 768px) {
  .flex-md-3 {
    flex: 3;
  }
  .flex-md-grow-3 {
    flex-grow: 3;
  }
}
@media (max-width: 1024px) {
  .flex-ld-3 {
    flex: 3;
  }
  .flex-ld-grow-3 {
    flex-grow: 3;
  }
}
.flex-grow-4 {
  flex-grow: 4;
}
.flex-4 {
  flex: 4;
}
@media (max-width: 600px) {
  .flex-sd-4 {
    flex: 4;
  }
  .flex-sd-grow-4 {
    flex-grow: 4;
  }
}
@media (max-width: 768px) {
  .flex-md-4 {
    flex: 4;
  }
  .flex-md-grow-4 {
    flex-grow: 4;
  }
}
@media (max-width: 1024px) {
  .flex-ld-4 {
    flex: 4;
  }
  .flex-ld-grow-4 {
    flex-grow: 4;
  }
}
.flex-grow-5 {
  flex-grow: 5;
}
.flex-5 {
  flex: 5;
}
@media (max-width: 600px) {
  .flex-sd-5 {
    flex: 5;
  }
  .flex-sd-grow-5 {
    flex-grow: 5;
  }
}
@media (max-width: 768px) {
  .flex-md-5 {
    flex: 5;
  }
  .flex-md-grow-5 {
    flex-grow: 5;
  }
}
@media (max-width: 1024px) {
  .flex-ld-5 {
    flex: 5;
  }
  .flex-ld-grow-5 {
    flex-grow: 5;
  }
}
.flex-grow-6 {
  flex-grow: 6;
}
.flex-6 {
  flex: 6;
}
@media (max-width: 600px) {
  .flex-sd-6 {
    flex: 6;
  }
  .flex-sd-grow-6 {
    flex-grow: 6;
  }
}
@media (max-width: 768px) {
  .flex-md-6 {
    flex: 6;
  }
  .flex-md-grow-6 {
    flex-grow: 6;
  }
}
@media (max-width: 1024px) {
  .flex-ld-6 {
    flex: 6;
  }
  .flex-ld-grow-6 {
    flex-grow: 6;
  }
}
.flex-grow-7 {
  flex-grow: 7;
}
.flex-7 {
  flex: 7;
}
@media (max-width: 600px) {
  .flex-sd-7 {
    flex: 7;
  }
  .flex-sd-grow-7 {
    flex-grow: 7;
  }
}
@media (max-width: 768px) {
  .flex-md-7 {
    flex: 7;
  }
  .flex-md-grow-7 {
    flex-grow: 7;
  }
}
@media (max-width: 1024px) {
  .flex-ld-7 {
    flex: 7;
  }
  .flex-ld-grow-7 {
    flex-grow: 7;
  }
}
.flex-grow-8 {
  flex-grow: 8;
}
.flex-8 {
  flex: 8;
}
@media (max-width: 600px) {
  .flex-sd-8 {
    flex: 8;
  }
  .flex-sd-grow-8 {
    flex-grow: 8;
  }
}
@media (max-width: 768px) {
  .flex-md-8 {
    flex: 8;
  }
  .flex-md-grow-8 {
    flex-grow: 8;
  }
}
@media (max-width: 1024px) {
  .flex-ld-8 {
    flex: 8;
  }
  .flex-ld-grow-8 {
    flex-grow: 8;
  }
}
.flex-grow-9 {
  flex-grow: 9;
}
.flex-9 {
  flex: 9;
}
@media (max-width: 600px) {
  .flex-sd-9 {
    flex: 9;
  }
  .flex-sd-grow-9 {
    flex-grow: 9;
  }
}
@media (max-width: 768px) {
  .flex-md-9 {
    flex: 9;
  }
  .flex-md-grow-9 {
    flex-grow: 9;
  }
}
@media (max-width: 1024px) {
  .flex-ld-9 {
    flex: 9;
  }
  .flex-ld-grow-9 {
    flex-grow: 9;
  }
}
.flex-grow-10 {
  flex-grow: 10;
}
.flex-10 {
  flex: 10;
}
@media (max-width: 600px) {
  .flex-sd-10 {
    flex: 10;
  }
  .flex-sd-grow-10 {
    flex-grow: 10;
  }
}
@media (max-width: 768px) {
  .flex-md-10 {
    flex: 10;
  }
  .flex-md-grow-10 {
    flex-grow: 10;
  }
}
@media (max-width: 1024px) {
  .flex-ld-10 {
    flex: 10;
  }
  .flex-ld-grow-10 {
    flex-grow: 10;
  }
}
.flex-grow-11 {
  flex-grow: 11;
}
.flex-11 {
  flex: 11;
}
@media (max-width: 600px) {
  .flex-sd-11 {
    flex: 11;
  }
  .flex-sd-grow-11 {
    flex-grow: 11;
  }
}
@media (max-width: 768px) {
  .flex-md-11 {
    flex: 11;
  }
  .flex-md-grow-11 {
    flex-grow: 11;
  }
}
@media (max-width: 1024px) {
  .flex-ld-11 {
    flex: 11;
  }
  .flex-ld-grow-11 {
    flex-grow: 11;
  }
}
.flex-grow-12 {
  flex-grow: 12;
}
.flex-12 {
  flex: 12;
}
@media (max-width: 600px) {
  .flex-sd-12 {
    flex: 12;
  }
  .flex-sd-grow-12 {
    flex-grow: 12;
  }
}
@media (max-width: 768px) {
  .flex-md-12 {
    flex: 12;
  }
  .flex-md-grow-12 {
    flex-grow: 12;
  }
}
@media (max-width: 1024px) {
  .flex-ld-12 {
    flex: 12;
  }
  .flex-ld-grow-12 {
    flex-grow: 12;
  }
}
.flex.f-gap-0 {
  gap: 0;
}
.flex.f-gap-xxs {
  gap: 1px;
}
.flex.f-gap-xs {
  gap: 2px;
}
.flex.f-gap-s {
  gap: 4px;
}
.flex.f-gap-m {
  gap: 8px;
}
.flex.f-gap-l {
  gap: 16px;
}
.flex.f-gap-xl {
  gap: 32px;
}
.flex.f-gap-xxl {
  gap: 64px;
}
.flex.f-space-between {
  justify-content: space-between;
}
.flex.f-space-around {
  justify-content: space-around;
}
.flex.f-space-evenly {
  justify-content: space-evenly;
}
.flex.f-wrap {
  flex-wrap: wrap;
}
.flex.f-nowrap {
  flex-wrap: nowrap;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
}
.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
}
.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
  }
}
.grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
  }
}
.grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }
}
.grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
@media (min-width: 600px) {
  .grid-sd-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 768px) {
  .grid-md-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid-ld-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
.grid-gap-0 {
  grid-gap: 0;
}
.grid-gap-xxs {
  grid-gap: 1px;
}
.grid-gap-xs {
  grid-gap: 2px;
}
.grid-gap-s {
  grid-gap: 4px;
}
.grid-gap-m {
  grid-gap: 8px;
}
.grid-gap-l {
  grid-gap: 16px;
}
.grid-gap-xl {
  grid-gap: 32px;
}
.grid-gap-xxl {
  grid-gap: 64px;
}

.border-radius-circle {
  border-radius: 50%;
}
.border-radius-top-circle {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.border-radius-small {
  border-radius: 2px;
}
.border-radius-top-small {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.border-radius-normal {
  border-radius: 5px;
}
.border-radius-top-normal {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.border-radius-large {
  border-radius: 25px;
}
.border-radius-top-large {
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}
.border-none {
  border: none;
}
.border-0 {
  border-style: solid;
  border-width: 0px;
  border-color: #333333;
}
.border-0-light {
  border-style: solid;
  border-width: 0px;
  border-color: #FFFFFF;
}
.border-0-dark {
  border-style: solid;
  border-width: 0px;
  border-color: #dfe0e4;
}
.border-0-accessory {
  border-style: solid;
  border-width: 0px;
  border-color: #e7553e;
}
.border-b-0 {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #333333;
}
.border-b-0-light {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #FFFFFF;
}
.border-b-0-dark {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #dfe0e4;
}
.border-b-0-accessory {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #e7553e;
}
.border-t-0 {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #333333;
}
.border-t-0-light {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #FFFFFF;
}
.border-t-0-dark {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #dfe0e4;
}
.border-t-0-accessory {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #e7553e;
}
.border-bt-0 {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #333333;
}
.border-bt-0-light {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #FFFFFF;
}
.border-bt-0-dark {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #dfe0e4;
}
.border-bt-0-accessory {
  border-top-style: solid;
  border-top-width: 0px;
  border-top-color: #e7553e;
}
.border-bb-0 {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #333333;
}
.border-bb-0-light {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #FFFFFF;
}
.border-bb-0-dark {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #dfe0e4;
}
.border-bb-0-accessory {
  border-bottom-style: solid;
  border-bottom-width: 0px;
  border-bottom-color: #e7553e;
}
.border-bl-0 {
  border-left-style: solid;
  border-left-width: 0px;
  border-left-color: #333333;
}
.border-bl-0-light {
  border-left-style: solid;
  border-left-width: 0px;
  border-left-color: #FFFFFF;
}
.border-bl-0-dark {
  border-left-style: solid;
  border-left-width: 0px;
  border-left-color: #dfe0e4;
}
.border-bl-0-accessory {
  border-left-style: solid;
  border-left-width: 0px;
  border-left-color: #e7553e;
}
.border-br-0 {
  border-right-style: solid;
  border-right-width: 0px;
  border-right-color: #333333;
}
.border-br-0-light {
  border-right-style: solid;
  border-right-width: 0px;
  border-right-color: #FFFFFF;
}
.border-br-0-dark {
  border-right-style: solid;
  border-right-width: 0px;
  border-right-color: #dfe0e4;
}
.border-br-0-accessory {
  border-right-style: solid;
  border-right-width: 0px;
  border-right-color: #e7553e;
}
.border-s {
  border-style: solid;
  border-width: 0.5px;
  border-color: #333333;
}
.border-s-light {
  border-style: solid;
  border-width: 0.5px;
  border-color: #FFFFFF;
}
.border-s-dark {
  border-style: solid;
  border-width: 0.5px;
  border-color: #dfe0e4;
}
.border-s-accessory {
  border-style: solid;
  border-width: 0.5px;
  border-color: #e7553e;
}
.border-b-s {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #333333;
}
.border-b-s-light {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #FFFFFF;
}
.border-b-s-dark {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #dfe0e4;
}
.border-b-s-accessory {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #e7553e;
}
.border-t-s {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #333333;
}
.border-t-s-light {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #FFFFFF;
}
.border-t-s-dark {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #dfe0e4;
}
.border-t-s-accessory {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #e7553e;
}
.border-bt-s {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #333333;
}
.border-bt-s-light {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #FFFFFF;
}
.border-bt-s-dark {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #dfe0e4;
}
.border-bt-s-accessory {
  border-top-style: solid;
  border-top-width: 0.5px;
  border-top-color: #e7553e;
}
.border-bb-s {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #333333;
}
.border-bb-s-light {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #FFFFFF;
}
.border-bb-s-dark {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #dfe0e4;
}
.border-bb-s-accessory {
  border-bottom-style: solid;
  border-bottom-width: 0.5px;
  border-bottom-color: #e7553e;
}
.border-bl-s {
  border-left-style: solid;
  border-left-width: 0.5px;
  border-left-color: #333333;
}
.border-bl-s-light {
  border-left-style: solid;
  border-left-width: 0.5px;
  border-left-color: #FFFFFF;
}
.border-bl-s-dark {
  border-left-style: solid;
  border-left-width: 0.5px;
  border-left-color: #dfe0e4;
}
.border-bl-s-accessory {
  border-left-style: solid;
  border-left-width: 0.5px;
  border-left-color: #e7553e;
}
.border-br-s {
  border-right-style: solid;
  border-right-width: 0.5px;
  border-right-color: #333333;
}
.border-br-s-light {
  border-right-style: solid;
  border-right-width: 0.5px;
  border-right-color: #FFFFFF;
}
.border-br-s-dark {
  border-right-style: solid;
  border-right-width: 0.5px;
  border-right-color: #dfe0e4;
}
.border-br-s-accessory {
  border-right-style: solid;
  border-right-width: 0.5px;
  border-right-color: #e7553e;
}
.border-m {
  border-style: solid;
  border-width: 1px;
  border-color: #333333;
}
.border-m-light {
  border-style: solid;
  border-width: 1px;
  border-color: #FFFFFF;
}
.border-m-dark {
  border-style: solid;
  border-width: 1px;
  border-color: #dfe0e4;
}
.border-m-accessory {
  border-style: solid;
  border-width: 1px;
  border-color: #e7553e;
}
.border-b-m {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #333333;
}
.border-b-m-light {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #FFFFFF;
}
.border-b-m-dark {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #dfe0e4;
}
.border-b-m-accessory {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e7553e;
}
.border-t-m {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #333333;
}
.border-t-m-light {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #FFFFFF;
}
.border-t-m-dark {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #dfe0e4;
}
.border-t-m-accessory {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e7553e;
}
.border-bt-m {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #333333;
}
.border-bt-m-light {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #FFFFFF;
}
.border-bt-m-dark {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #dfe0e4;
}
.border-bt-m-accessory {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: #e7553e;
}
.border-bb-m {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #333333;
}
.border-bb-m-light {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #FFFFFF;
}
.border-bb-m-dark {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #dfe0e4;
}
.border-bb-m-accessory {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #e7553e;
}
.border-bl-m {
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #333333;
}
.border-bl-m-light {
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #FFFFFF;
}
.border-bl-m-dark {
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #dfe0e4;
}
.border-bl-m-accessory {
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: #e7553e;
}
.border-br-m {
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #333333;
}
.border-br-m-light {
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #FFFFFF;
}
.border-br-m-dark {
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #dfe0e4;
}
.border-br-m-accessory {
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: #e7553e;
}
.border-l {
  border-style: solid;
  border-width: 2px;
  border-color: #333333;
}
.border-l-light {
  border-style: solid;
  border-width: 2px;
  border-color: #FFFFFF;
}
.border-l-dark {
  border-style: solid;
  border-width: 2px;
  border-color: #dfe0e4;
}
.border-l-accessory {
  border-style: solid;
  border-width: 2px;
  border-color: #e7553e;
}
.border-b-l {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #333333;
}
.border-b-l-light {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #FFFFFF;
}
.border-b-l-dark {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #dfe0e4;
}
.border-b-l-accessory {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #e7553e;
}
.border-t-l {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #333333;
}
.border-t-l-light {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #FFFFFF;
}
.border-t-l-dark {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #dfe0e4;
}
.border-t-l-accessory {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #e7553e;
}
.border-bt-l {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #333333;
}
.border-bt-l-light {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #FFFFFF;
}
.border-bt-l-dark {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #dfe0e4;
}
.border-bt-l-accessory {
  border-top-style: solid;
  border-top-width: 2px;
  border-top-color: #e7553e;
}
.border-bb-l {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #333333;
}
.border-bb-l-light {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #FFFFFF;
}
.border-bb-l-dark {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #dfe0e4;
}
.border-bb-l-accessory {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: #e7553e;
}
.border-bl-l {
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: #333333;
}
.border-bl-l-light {
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: #FFFFFF;
}
.border-bl-l-dark {
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: #dfe0e4;
}
.border-bl-l-accessory {
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: #e7553e;
}
.border-br-l {
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: #333333;
}
.border-br-l-light {
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: #FFFFFF;
}
.border-br-l-dark {
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: #dfe0e4;
}
.border-br-l-accessory {
  border-right-style: solid;
  border-right-width: 2px;
  border-right-color: #e7553e;
}
.border-xl {
  border-style: solid;
  border-width: 4px;
  border-color: #333333;
}
.border-xl-light {
  border-style: solid;
  border-width: 4px;
  border-color: #FFFFFF;
}
.border-xl-dark {
  border-style: solid;
  border-width: 4px;
  border-color: #dfe0e4;
}
.border-xl-accessory {
  border-style: solid;
  border-width: 4px;
  border-color: #e7553e;
}
.border-b-xl {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #333333;
}
.border-b-xl-light {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #FFFFFF;
}
.border-b-xl-dark {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #dfe0e4;
}
.border-b-xl-accessory {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #e7553e;
}
.border-t-xl {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #333333;
}
.border-t-xl-light {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #FFFFFF;
}
.border-t-xl-dark {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #dfe0e4;
}
.border-t-xl-accessory {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #e7553e;
}
.border-bt-xl {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #333333;
}
.border-bt-xl-light {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #FFFFFF;
}
.border-bt-xl-dark {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #dfe0e4;
}
.border-bt-xl-accessory {
  border-top-style: solid;
  border-top-width: 4px;
  border-top-color: #e7553e;
}
.border-bb-xl {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #333333;
}
.border-bb-xl-light {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #FFFFFF;
}
.border-bb-xl-dark {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #dfe0e4;
}
.border-bb-xl-accessory {
  border-bottom-style: solid;
  border-bottom-width: 4px;
  border-bottom-color: #e7553e;
}
.border-bl-xl {
  border-left-style: solid;
  border-left-width: 4px;
  border-left-color: #333333;
}
.border-bl-xl-light {
  border-left-style: solid;
  border-left-width: 4px;
  border-left-color: #FFFFFF;
}
.border-bl-xl-dark {
  border-left-style: solid;
  border-left-width: 4px;
  border-left-color: #dfe0e4;
}
.border-bl-xl-accessory {
  border-left-style: solid;
  border-left-width: 4px;
  border-left-color: #e7553e;
}
.border-br-xl {
  border-right-style: solid;
  border-right-width: 4px;
  border-right-color: #333333;
}
.border-br-xl-light {
  border-right-style: solid;
  border-right-width: 4px;
  border-right-color: #FFFFFF;
}
.border-br-xl-dark {
  border-right-style: solid;
  border-right-width: 4px;
  border-right-color: #dfe0e4;
}
.border-br-xl-accessory {
  border-right-style: solid;
  border-right-width: 4px;
  border-right-color: #e7553e;
}
.border-xxl {
  border-style: solid;
  border-width: 8px;
  border-color: #333333;
}
.border-xxl-light {
  border-style: solid;
  border-width: 8px;
  border-color: #FFFFFF;
}
.border-xxl-dark {
  border-style: solid;
  border-width: 8px;
  border-color: #dfe0e4;
}
.border-xxl-accessory {
  border-style: solid;
  border-width: 8px;
  border-color: #e7553e;
}
.border-b-xxl {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #333333;
}
.border-b-xxl-light {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #FFFFFF;
}
.border-b-xxl-dark {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #dfe0e4;
}
.border-b-xxl-accessory {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #e7553e;
}
.border-t-xxl {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #333333;
}
.border-t-xxl-light {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #FFFFFF;
}
.border-t-xxl-dark {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #dfe0e4;
}
.border-t-xxl-accessory {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #e7553e;
}
.border-bt-xxl {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #333333;
}
.border-bt-xxl-light {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #FFFFFF;
}
.border-bt-xxl-dark {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #dfe0e4;
}
.border-bt-xxl-accessory {
  border-top-style: solid;
  border-top-width: 8px;
  border-top-color: #e7553e;
}
.border-bb-xxl {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #333333;
}
.border-bb-xxl-light {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #FFFFFF;
}
.border-bb-xxl-dark {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #dfe0e4;
}
.border-bb-xxl-accessory {
  border-bottom-style: solid;
  border-bottom-width: 8px;
  border-bottom-color: #e7553e;
}
.border-bl-xxl {
  border-left-style: solid;
  border-left-width: 8px;
  border-left-color: #333333;
}
.border-bl-xxl-light {
  border-left-style: solid;
  border-left-width: 8px;
  border-left-color: #FFFFFF;
}
.border-bl-xxl-dark {
  border-left-style: solid;
  border-left-width: 8px;
  border-left-color: #dfe0e4;
}
.border-bl-xxl-accessory {
  border-left-style: solid;
  border-left-width: 8px;
  border-left-color: #e7553e;
}
.border-br-xxl {
  border-right-style: solid;
  border-right-width: 8px;
  border-right-color: #333333;
}
.border-br-xxl-light {
  border-right-style: solid;
  border-right-width: 8px;
  border-right-color: #FFFFFF;
}
.border-br-xxl-dark {
  border-right-style: solid;
  border-right-width: 8px;
  border-right-color: #dfe0e4;
}
.border-br-xxl-accessory {
  border-right-style: solid;
  border-right-width: 8px;
  border-right-color: #e7553e;
}

.bg-light {
  background: #FFFFFF;
  color: #281f22;
}
.bg-light-transparent {
  background-color: rgba(255, 255, 255, 0.5);
}
.bg-light-transparent-10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.bg-dark {
  background: #E63946;
  color: #281f22;
}
.bg-dark-transparent {
  background-color: rgba(230, 57, 70, 0.5);
}
.bg-dark-transparent-10 {
  background-color: rgba(230, 57, 70, 0.1);
}
.bg-primary {
  background: #281f22;
  color: #281f22;
}
.bg-primary-transparent {
  background-color: rgba(40, 31, 34, 0.5);
}
.bg-primary-transparent-10 {
  background-color: rgba(40, 31, 34, 0.1);
}
.bg-secondary {
  background: #e7553e;
  color: #281f22;
}
.bg-secondary-transparent {
  background-color: rgba(231, 85, 62, 0.5);
}
.bg-secondary-transparent-10 {
  background-color: rgba(231, 85, 62, 0.1);
}
.bg-accessory {
  background: rgba(241, 183, 149, 0.7);
  color: #281f22;
}
.bg-accessory-transparent {
  background-color: rgba(241, 183, 149, 0.5);
}
.bg-accessory-transparent-10 {
  background-color: rgba(241, 183, 149, 0.1);
}

.highlight {
  filter: brightness(0.9);
  transition: filter 0.1s;
}

.bags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bags .bag-0 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-0-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-1 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-1-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-2 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-2-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-3 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-3-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-4 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-4-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-5 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-5-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-6 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-6-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-7 {
  background-color: #FF1493;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-7-new {
  background-color: rgb(255, 71, 170.4382978723);
  border: 1px dashed #FFFFFF;
  color: #FFFFFF;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-normal {
  background-color: #E63946;
  border: 1px solid #e7553e;
  color: #e7553e;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-normal-new {
  background-color: rgb(235.7174887892, 102.2825112108, 112.3094170404);
  border: 1px dashed #e7553e;
  color: #e7553e;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-success {
  background-color: #e7553e;
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-success-new {
  background-color: rgb(236.6405529954, 124.9539170507, 107.3594470046);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-danger {
  background-color: #e34035;
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-danger-new {
  background-color: rgb(233.2086956522, 106.352173913, 97.7913043478);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-warning {
  background-color: #ffff00;
  border: 1px solid #e7553e;
  color: #e7553e;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-warning-new {
  background-color: #ffff33;
  border: 1px dashed #e7553e;
  color: #e7553e;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-info {
  background-color: #281f22;
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-info-new {
  background-color: rgb(68.7323943662, 53.2676056338, 58.4225352113);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-light {
  background-color: #edfdf5;
  border: 1px solid #e7553e;
  color: #e7553e;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-light-new {
  background-color: hsl(150, 80%, 106.0784313725%);
  border: 1px dashed #e7553e;
  color: #e7553e;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-dark {
  background-color: #e7553e;
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-dark-new {
  background-color: rgb(236.6405529954, 124.9539170507, 107.3594470046);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-primary {
  background-color: #281f22;
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-primary-new {
  background-color: rgb(68.7323943662, 53.2676056338, 58.4225352113);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-secondary {
  background-color: #e7553e;
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-secondary-new {
  background-color: rgb(236.6405529954, 124.9539170507, 107.3594470046);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-accessory {
  background-color: rgba(241, 183, 149, 0.7);
  border: 1px solid #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bags .bag-accessory-new {
  background-color: rgba(246.95, 213.6, 194.05, 0.7);
  border: 1px dashed #E63946;
  color: #E63946;
  padding: 0.2em 1em;
  border-radius: 2px;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  font-size: 1em;
  font-family: sans-serif;
  font-weight: bold;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.skeleton {
  display: inline-block;
  background-color: #e0e0e0 !important;
  border-color: transparent !important;
  color: transparent !important;
}
.skeleton-animation {
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 3s infinite;
}
@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.btn-normal {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  background: #e7553e;
  color: #281f22;
}
.btn-normal-transparent {
  background-color: rgba(231, 85, 62, 0.5);
}
.btn-normal-transparent-10 {
  background-color: rgba(231, 85, 62, 0.1);
}
.btn-normal:hover {
  background: rgb(192.5552995392, 46.8917050691, 23.9447004608);
}
.btn-normal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-normal:disabled:hover {
  background: #e7553e;
}
.btn-outlined-normal {
  font-size: 18.2857142857px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e7553e;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  color: #e7553e;
  background: transparent;
}
.btn-outlined-normal:hover {
  background: rgb(192.5552995392, 46.8917050691, 23.9447004608);
  color: hsl(340, 12.676056338%, -1.0784313725%);
}
.btn-outlined-normal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-outlined-normal:disabled:hover {
  color: #e7553e;
  background: transparent;
}
.btn-light {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  background: #FFFFFF;
  color: #281f22;
}
.btn-light-transparent {
  background-color: rgba(255, 255, 255, 0.5);
}
.btn-light-transparent-10 {
  background-color: rgba(255, 255, 255, 0.1);
}
.btn-light:hover {
  background: rgb(216.75, 216.75, 216.75);
}
.btn-light:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-light:disabled:hover {
  background: #FFFFFF;
}
.btn-outlined-light {
  font-size: 18.2857142857px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #FFFFFF;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  color: #FFFFFF;
  background: transparent;
}
.btn-outlined-light:hover {
  background: rgb(216.75, 216.75, 216.75);
  color: hsl(340, 12.676056338%, -1.0784313725%);
}
.btn-outlined-light:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-outlined-light:disabled:hover {
  color: #FFFFFF;
  background: transparent;
}
.btn-success {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  background: #e7553e;
  color: #281f22;
}
.btn-success-transparent {
  background-color: rgba(231, 85, 62, 0.5);
}
.btn-success-transparent-10 {
  background-color: rgba(231, 85, 62, 0.1);
}
.btn-success:hover {
  background: rgb(192.5552995392, 46.8917050691, 23.9447004608);
}
.btn-success:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-success:disabled:hover {
  background: #e7553e;
}
.btn-outlined-success {
  font-size: 18.2857142857px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e7553e;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  color: #e7553e;
  background: transparent;
}
.btn-outlined-success:hover {
  background: rgb(192.5552995392, 46.8917050691, 23.9447004608);
  color: hsl(340, 12.676056338%, -1.0784313725%);
}
.btn-outlined-success:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-outlined-success:disabled:hover {
  color: #e7553e;
  background: transparent;
}
.btn-danger {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  background: #e34035;
  color: #281f22;
}
.btn-danger-transparent {
  background-color: rgba(227, 64, 53, 0.5);
}
.btn-danger-transparent-10 {
  background-color: rgba(227, 64, 53, 0.1);
}
.btn-danger:hover {
  background: rgb(178.7260869565, 34.5065217391, 24.7739130435);
}
.btn-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-danger:disabled:hover {
  background: #e34035;
}
.btn-outlined-danger {
  font-size: 18.2857142857px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e34035;
  border-radius: 0.5rem;
  padding: 8px;
  cursor: pointer;
  transition: all 0.3s;
  user-select: none;
  text-wrap: nowrap;
  color: #e34035;
  background: transparent;
}
.btn-outlined-danger:hover {
  background: rgb(178.7260869565, 34.5065217391, 24.7739130435);
  color: hsl(340, 12.676056338%, -1.0784313725%);
}
.btn-outlined-danger:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-outlined-danger:disabled:hover {
  color: #e34035;
  background: transparent;
}
.btn-xs {
  font-size: 12.8px;
  line-height: 1.2;
}
.btn-s {
  font-size: 13.2231404959px;
  line-height: 1.2;
  padding: 0.5rem 0.7rem;
  min-width: 70px;
}
.btn-m {
  font-size: 18.2857142857px;
  line-height: 1.2;
  padding: 0.5rem 1rem;
  min-width: 100px;
}
.btn-l {
  font-size: 26.6666666667px;
  line-height: 1.5;
  padding: 0.75rem 1.5rem;
  min-width: 130px;
  font-size: 1.8em;
  padding: 0.5rem 1rem;
  min-width: 100px;
}
.btn-xl {
  font-size: 40px;
  line-height: 1.7142857143;
}
.btn-xxl {
  font-size: 94.1176470588px;
  line-height: 1.7142857143;
}
.btn-radius-circle {
  border-radius: 50%;
}
.btn-radius-small {
  border-radius: 2px;
}
.btn-radius-normal {
  border-radius: 5px;
}
.btn-radius-large {
  border-radius: 25px;
}
.btn-whatsapp {
  background: #25d366 !important;
  color: #fff !important;
}
.btn-whatsapp:hover {
  background: rgb(25.5866935484, 145.9133064516, 70.5362903226) !important;
}

@media (max-width: 600px) {
  .sd\:btn-xs {
    font-size: 12.8px;
    line-height: 1.2;
  }
  .sd\:btn-s {
    font-size: 13.2231404959px;
    line-height: 1.2;
    padding: 0.5rem 0.7rem;
    min-width: 70px;
  }
  .sd\:btn-m {
    font-size: 18.2857142857px;
    line-height: 1.2;
    padding: 0.5rem 1rem;
    min-width: 100px;
  }
  .sd\:btn-l {
    font-size: 26.6666666667px;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    min-width: 130px;
    font-size: 1.8em;
    padding: 0.5rem 1rem;
    min-width: 100px;
  }
  .sd\:btn-xl {
    font-size: 40px;
    line-height: 1.7142857143;
  }
  .sd\:btn-xxl {
    font-size: 94.1176470588px;
    line-height: 1.7142857143;
  }
}
@media (max-width: 768px) {
  .md\:btn-xs {
    font-size: 12.8px;
    line-height: 1.2;
  }
  .md\:btn-s {
    font-size: 13.2231404959px;
    line-height: 1.2;
    padding: 0.5rem 0.7rem;
    min-width: 70px;
  }
  .md\:btn-m {
    font-size: 18.2857142857px;
    line-height: 1.2;
    padding: 0.5rem 1rem;
    min-width: 100px;
  }
  .md\:btn-l {
    font-size: 26.6666666667px;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    min-width: 130px;
    font-size: 1.8em;
    padding: 0.5rem 1rem;
    min-width: 100px;
  }
  .md\:btn-xl {
    font-size: 40px;
    line-height: 1.7142857143;
  }
  .md\:btn-xxl {
    font-size: 94.1176470588px;
    line-height: 1.7142857143;
  }
}
@media (max-width: 1024px) {
  .ld\:btn-xs {
    font-size: 12.8px;
    line-height: 1.2;
  }
  .ld\:btn-s {
    font-size: 13.2231404959px;
    line-height: 1.2;
    padding: 0.5rem 0.7rem;
    min-width: 70px;
  }
  .ld\:btn-m {
    font-size: 18.2857142857px;
    line-height: 1.2;
    padding: 0.5rem 1rem;
    min-width: 100px;
  }
  .ld\:btn-l {
    font-size: 26.6666666667px;
    line-height: 1.5;
    padding: 0.75rem 1.5rem;
    min-width: 130px;
    font-size: 1.8em;
    padding: 0.5rem 1rem;
    min-width: 100px;
  }
  .ld\:btn-xl {
    font-size: 40px;
    line-height: 1.7142857143;
  }
  .ld\:btn-xxl {
    font-size: 94.1176470588px;
    line-height: 1.7142857143;
  }
}
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}
.ml-0 {
  margin-left: 0;
}
.mr-0 {
  margin-right: 0;
}
.m-xxs {
  margin: 1px;
}
.mt-xxs {
  margin-top: 1px;
}
.mb-xxs {
  margin-bottom: 1px;
}
.ml-xxs {
  margin-left: 1px;
}
.mr-xxs {
  margin-right: 1px;
}
.m-xs {
  margin: 2px;
}
.mt-xs {
  margin-top: 2px;
}
.mb-xs {
  margin-bottom: 2px;
}
.ml-xs {
  margin-left: 2px;
}
.mr-xs {
  margin-right: 2px;
}
.m-s {
  margin: 4px;
}
.mt-s {
  margin-top: 4px;
}
.mb-s {
  margin-bottom: 4px;
}
.ml-s {
  margin-left: 4px;
}
.mr-s {
  margin-right: 4px;
}
.m-m {
  margin: 8px;
}
.mt-m {
  margin-top: 8px;
}
.mb-m {
  margin-bottom: 8px;
}
.ml-m {
  margin-left: 8px;
}
.mr-m {
  margin-right: 8px;
}
.m-l {
  margin: 16px;
}
.mt-l {
  margin-top: 16px;
}
.mb-l {
  margin-bottom: 16px;
}
.ml-l {
  margin-left: 16px;
}
.mr-l {
  margin-right: 16px;
}
.m-xl {
  margin: 32px;
}
.mt-xl {
  margin-top: 32px;
}
.mb-xl {
  margin-bottom: 32px;
}
.ml-xl {
  margin-left: 32px;
}
.mr-xl {
  margin-right: 32px;
}
.m-xxl {
  margin: 64px;
}
.mt-xxl {
  margin-top: 64px;
}
.mb-xxl {
  margin-bottom: 64px;
}
.ml-xxl {
  margin-left: 64px;
}
.mr-xxl {
  margin-right: 64px;
}
.m-0 {
  margin: 0px;
}
.mt-0 {
  margin-top: 0px;
}
.mb-0 {
  margin-bottom: 0px;
}
.ml-0 {
  margin-left: 0px;
}
.mr-0 {
  margin-right: 0px;
}
.m-1 {
  margin: 1px;
}
.mt-1 {
  margin-top: 1px;
}
.mb-1 {
  margin-bottom: 1px;
}
.ml-1 {
  margin-left: 1px;
}
.mr-1 {
  margin-right: 1px;
}
.m-2 {
  margin: 2px;
}
.mt-2 {
  margin-top: 2px;
}
.mb-2 {
  margin-bottom: 2px;
}
.ml-2 {
  margin-left: 2px;
}
.mr-2 {
  margin-right: 2px;
}
.m-3 {
  margin: 3px;
}
.mt-3 {
  margin-top: 3px;
}
.mb-3 {
  margin-bottom: 3px;
}
.ml-3 {
  margin-left: 3px;
}
.mr-3 {
  margin-right: 3px;
}
.m-4 {
  margin: 4px;
}
.mt-4 {
  margin-top: 4px;
}
.mb-4 {
  margin-bottom: 4px;
}
.ml-4 {
  margin-left: 4px;
}
.mr-4 {
  margin-right: 4px;
}
.m-5 {
  margin: 5px;
}
.mt-5 {
  margin-top: 5px;
}
.mb-5 {
  margin-bottom: 5px;
}
.ml-5 {
  margin-left: 5px;
}
.mr-5 {
  margin-right: 5px;
}
.m-6 {
  margin: 6px;
}
.mt-6 {
  margin-top: 6px;
}
.mb-6 {
  margin-bottom: 6px;
}
.ml-6 {
  margin-left: 6px;
}
.mr-6 {
  margin-right: 6px;
}
.m-7 {
  margin: 7px;
}
.mt-7 {
  margin-top: 7px;
}
.mb-7 {
  margin-bottom: 7px;
}
.ml-7 {
  margin-left: 7px;
}
.mr-7 {
  margin-right: 7px;
}
.m-8 {
  margin: 8px;
}
.mt-8 {
  margin-top: 8px;
}
.mb-8 {
  margin-bottom: 8px;
}
.ml-8 {
  margin-left: 8px;
}
.mr-8 {
  margin-right: 8px;
}
.m-9 {
  margin: 9px;
}
.mt-9 {
  margin-top: 9px;
}
.mb-9 {
  margin-bottom: 9px;
}
.ml-9 {
  margin-left: 9px;
}
.mr-9 {
  margin-right: 9px;
}
.m-10 {
  margin: 10px;
}
.mt-10 {
  margin-top: 10px;
}
.mb-10 {
  margin-bottom: 10px;
}
.ml-10 {
  margin-left: 10px;
}
.mr-10 {
  margin-right: 10px;
}
.m-auto {
  margin: auto;
}

.overlay {
  position: absolute;
  background: #333333;
  opacity: 50%;
  width: 100%;
  height: 100%;
}

.p-0 {
  padding: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.pr-0 {
  padding-right: 0 !important;
}
.ptb-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.prl-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.p-xxs {
  padding: 1px !important;
}
.pt-xxs {
  padding-top: 1px !important;
}
.pb-xxs {
  padding-bottom: 1px !important;
}
.pl-xxs {
  padding-left: 1px !important;
}
.pr-xxs {
  padding-right: 1px !important;
}
.ptb-xxs {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}
.prl-xxs {
  padding-right: 1px !important;
  padding-left: 1px !important;
}
.p-xs {
  padding: 2px !important;
}
.pt-xs {
  padding-top: 2px !important;
}
.pb-xs {
  padding-bottom: 2px !important;
}
.pl-xs {
  padding-left: 2px !important;
}
.pr-xs {
  padding-right: 2px !important;
}
.ptb-xs {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.prl-xs {
  padding-right: 2px !important;
  padding-left: 2px !important;
}
.p-s {
  padding: 4px !important;
}
.pt-s {
  padding-top: 4px !important;
}
.pb-s {
  padding-bottom: 4px !important;
}
.pl-s {
  padding-left: 4px !important;
}
.pr-s {
  padding-right: 4px !important;
}
.ptb-s {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.prl-s {
  padding-right: 4px !important;
  padding-left: 4px !important;
}
.p-m {
  padding: 8px !important;
}
.pt-m {
  padding-top: 8px !important;
}
.pb-m {
  padding-bottom: 8px !important;
}
.pl-m {
  padding-left: 8px !important;
}
.pr-m {
  padding-right: 8px !important;
}
.ptb-m {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.prl-m {
  padding-right: 8px !important;
  padding-left: 8px !important;
}
.p-l {
  padding: 16px !important;
}
.pt-l {
  padding-top: 16px !important;
}
.pb-l {
  padding-bottom: 16px !important;
}
.pl-l {
  padding-left: 16px !important;
}
.pr-l {
  padding-right: 16px !important;
}
.ptb-l {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.prl-l {
  padding-right: 16px !important;
  padding-left: 16px !important;
}
.p-xl {
  padding: 32px !important;
}
.pt-xl {
  padding-top: 32px !important;
}
.pb-xl {
  padding-bottom: 32px !important;
}
.pl-xl {
  padding-left: 32px !important;
}
.pr-xl {
  padding-right: 32px !important;
}
.ptb-xl {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.prl-xl {
  padding-right: 32px !important;
  padding-left: 32px !important;
}
.p-xxl {
  padding: 64px !important;
}
.pt-xxl {
  padding-top: 64px !important;
}
.pb-xxl {
  padding-bottom: 64px !important;
}
.pl-xxl {
  padding-left: 64px !important;
}
.pr-xxl {
  padding-right: 64px !important;
}
.ptb-xxl {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}
.prl-xxl {
  padding-right: 64px !important;
  padding-left: 64px !important;
}
.p-0 {
  padding: 0px;
}
.pt-0 {
  padding-top: 0px;
}
.pb-0 {
  padding-bottom: 0px;
}
.pl-0 {
  padding-left: 0px;
}
.pr-0 {
  padding-right: 0px;
}
.p-1 {
  padding: 1px;
}
.pt-1 {
  padding-top: 1px;
}
.pb-1 {
  padding-bottom: 1px;
}
.pl-1 {
  padding-left: 1px;
}
.pr-1 {
  padding-right: 1px;
}
.p-2 {
  padding: 2px;
}
.pt-2 {
  padding-top: 2px;
}
.pb-2 {
  padding-bottom: 2px;
}
.pl-2 {
  padding-left: 2px;
}
.pr-2 {
  padding-right: 2px;
}
.p-3 {
  padding: 3px;
}
.pt-3 {
  padding-top: 3px;
}
.pb-3 {
  padding-bottom: 3px;
}
.pl-3 {
  padding-left: 3px;
}
.pr-3 {
  padding-right: 3px;
}
.p-4 {
  padding: 4px;
}
.pt-4 {
  padding-top: 4px;
}
.pb-4 {
  padding-bottom: 4px;
}
.pl-4 {
  padding-left: 4px;
}
.pr-4 {
  padding-right: 4px;
}
.p-5 {
  padding: 5px;
}
.pt-5 {
  padding-top: 5px;
}
.pb-5 {
  padding-bottom: 5px;
}
.pl-5 {
  padding-left: 5px;
}
.pr-5 {
  padding-right: 5px;
}
.p-6 {
  padding: 6px;
}
.pt-6 {
  padding-top: 6px;
}
.pb-6 {
  padding-bottom: 6px;
}
.pl-6 {
  padding-left: 6px;
}
.pr-6 {
  padding-right: 6px;
}
.p-7 {
  padding: 7px;
}
.pt-7 {
  padding-top: 7px;
}
.pb-7 {
  padding-bottom: 7px;
}
.pl-7 {
  padding-left: 7px;
}
.pr-7 {
  padding-right: 7px;
}
.p-8 {
  padding: 8px;
}
.pt-8 {
  padding-top: 8px;
}
.pb-8 {
  padding-bottom: 8px;
}
.pl-8 {
  padding-left: 8px;
}
.pr-8 {
  padding-right: 8px;
}
.p-9 {
  padding: 9px;
}
.pt-9 {
  padding-top: 9px;
}
.pb-9 {
  padding-bottom: 9px;
}
.pl-9 {
  padding-left: 9px;
}
.pr-9 {
  padding-right: 9px;
}
.p-10 {
  padding: 10px;
}
.pt-10 {
  padding-top: 10px;
}
.pb-10 {
  padding-bottom: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}

.position-relative {
  position: relative;
}
.position-absolute {
  position: absolute;
}
.position-fixed {
  position: fixed;
}
.position-sticky {
  position: sticky;
}
.position-static {
  position: static;
}
.position-inherit {
  position: inherit;
}

.pos-full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.pos-full-top {
  top: 0;
  left: 0;
  right: 0;
}
.pos-top-0 {
  top: 0;
}
.pos-bottom-0 {
  bottom: 0;
}
.pos-left-0 {
  left: 0;
}
.pos-right-0 {
  right: 0;
}
.pos-top-xxs {
  top: 1px;
}
.pos-bottom-xxs {
  bottom: 1px;
}
.pos-left-xxs {
  left: 1px;
}
.pos-right-xxs {
  right: 1px;
}
.pos-top-xs {
  top: 2px;
}
.pos-bottom-xs {
  bottom: 2px;
}
.pos-left-xs {
  left: 2px;
}
.pos-right-xs {
  right: 2px;
}
.pos-top-s {
  top: 4px;
}
.pos-bottom-s {
  bottom: 4px;
}
.pos-left-s {
  left: 4px;
}
.pos-right-s {
  right: 4px;
}
.pos-top-m {
  top: 8px;
}
.pos-bottom-m {
  bottom: 8px;
}
.pos-left-m {
  left: 8px;
}
.pos-right-m {
  right: 8px;
}
.pos-top-l {
  top: 16px;
}
.pos-bottom-l {
  bottom: 16px;
}
.pos-left-l {
  left: 16px;
}
.pos-right-l {
  right: 16px;
}
.pos-top-xl {
  top: 32px;
}
.pos-bottom-xl {
  bottom: 32px;
}
.pos-left-xl {
  left: 32px;
}
.pos-right-xl {
  right: 32px;
}
.pos-top-xxl {
  top: 64px;
}
.pos-bottom-xxl {
  bottom: 64px;
}
.pos-left-xxl {
  left: 64px;
}
.pos-right-xxl {
  right: 64px;
}
.pos-bottom {
  bottom: 15%;
}
.pos-center {
  left: 50%;
  transform: translateX(-50%);
}

.overlap-top-left {
  transform: translate(-15px, 10px);
}

@font-face {
  font-family: kehlin-regular;
  src: url(/assets/fonts/kehlin-regular-webfont.woff2);
}
@font-face {
  font-family: kehlin;
  src: url(/assets/fonts/kehlin-webfont.woff2);
}
@font-face {
  font-family: ebgaramond-italic;
  src: url(/assets/fonts/EBGaramond-Italic-VariableFont_wght.woff2);
}
@font-face {
  font-family: ebgaramond;
  src: url(/assets/fonts/EBGaramond-VariableFont_wght.woff2);
}
.heading {
  font-size: 26.6666666667px;
  line-height: 1.5;
  line-height: 1em;
  margin-bottom: 6.6666666667px;
  font-weight: bold;
  font-family: kehlin-regular;
}
.heading-xlarge {
  font-size: 94.1176470588px;
  line-height: 1.7142857143;
  line-height: 1em;
  margin-bottom: 23.5294117647px;
  font-weight: bold;
  font-family: kehlin-regular;
}
.heading-large {
  font-size: 40px;
  line-height: 1.7142857143;
  line-height: 1em;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: kehlin-regular;
}
.heading-medium {
  font-size: 26.6666666667px;
  line-height: 1.5;
  line-height: 1em;
  margin-bottom: 6.6666666667px;
  font-weight: bold;
  font-family: kehlin-regular;
}
.heading-small {
  font-size: 18.2857142857px;
  line-height: 1.2;
  line-height: 1em;
  margin-bottom: 4.5714285714px;
  font-weight: bold;
  font-family: kehlin-regular;
}

@media (max-width: 600px) {
  .sd\:heading-xlarge {
    font-size: 94.1176470588px;
    line-height: 1.7142857143;
    line-height: 1em;
    margin-bottom: 23.5294117647px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .sd\:heading-large {
    font-size: 40px;
    line-height: 1.7142857143;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .sd\:heading-medium {
    font-size: 26.6666666667px;
    line-height: 1.5;
    line-height: 1em;
    margin-bottom: 6.6666666667px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .sd\:heading-small {
    font-size: 18.2857142857px;
    line-height: 1.2;
    line-height: 1em;
    margin-bottom: 4.5714285714px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
}
@media (max-width: 768px) {
  .md\:heading-xlarge {
    font-size: 94.1176470588px;
    line-height: 1.7142857143;
    line-height: 1em;
    margin-bottom: 23.5294117647px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .md\:heading-large {
    font-size: 40px;
    line-height: 1.7142857143;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .md\:heading-medium {
    font-size: 26.6666666667px;
    line-height: 1.5;
    line-height: 1em;
    margin-bottom: 6.6666666667px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .md\:heading-small {
    font-size: 18.2857142857px;
    line-height: 1.2;
    line-height: 1em;
    margin-bottom: 4.5714285714px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
}
@media (max-width: 1024px) {
  .ld\:heading-xlarge {
    font-size: 94.1176470588px;
    line-height: 1.7142857143;
    line-height: 1em;
    margin-bottom: 23.5294117647px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .ld\:heading-large {
    font-size: 40px;
    line-height: 1.7142857143;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .ld\:heading-medium {
    font-size: 26.6666666667px;
    line-height: 1.5;
    line-height: 1em;
    margin-bottom: 6.6666666667px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
  .ld\:heading-small {
    font-size: 18.2857142857px;
    line-height: 1.2;
    line-height: 1em;
    margin-bottom: 4.5714285714px;
    font-weight: bold;
    font-family: kehlin-regular;
  }
}
.body-text {
  font-size: 18.2857142857px;
  line-height: 1.2;
  text-wrap: auto;
  font-family: ebgaramond;
}
.body-text-xlarge {
  font-size: 40px;
  line-height: 1.7142857143;
  text-wrap: auto;
  font-family: ebgaramond;
}
.body-text-large {
  font-size: 26.6666666667px;
  line-height: 1.5;
  text-wrap: auto;
  font-family: ebgaramond;
}
.body-text-medium {
  font-size: 18.2857142857px;
  line-height: 1.2;
  text-wrap: auto;
  font-family: ebgaramond;
}
.body-text-small {
  font-size: 13.2231404959px;
  line-height: 1.2;
  text-wrap: auto;
  font-family: ebgaramond;
}

@media (max-width: 600px) {
  .sd\:body-text-xlarge {
    font-size: 40px;
    line-height: 1.7142857143;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .sd\:body-text-large {
    font-size: 26.6666666667px;
    line-height: 1.5;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .sd\:body-text-medium {
    font-size: 18.2857142857px;
    line-height: 1.2;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .sd\:body-text-small {
    font-size: 13.2231404959px;
    line-height: 1.2;
    text-wrap: auto;
    font-family: ebgaramond;
  }
}
@media (max-width: 768px) {
  .md\:body-text-xlarge {
    font-size: 40px;
    line-height: 1.7142857143;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .md\:body-text-large {
    font-size: 26.6666666667px;
    line-height: 1.5;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .md\:body-text-medium {
    font-size: 18.2857142857px;
    line-height: 1.2;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .md\:body-text-small {
    font-size: 13.2231404959px;
    line-height: 1.2;
    text-wrap: auto;
    font-family: ebgaramond;
  }
}
@media (max-width: 1024px) {
  .ld\:body-text-xlarge {
    font-size: 40px;
    line-height: 1.7142857143;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .ld\:body-text-large {
    font-size: 26.6666666667px;
    line-height: 1.5;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .ld\:body-text-medium {
    font-size: 18.2857142857px;
    line-height: 1.2;
    text-wrap: auto;
    font-family: ebgaramond;
  }
  .ld\:body-text-small {
    font-size: 13.2231404959px;
    line-height: 1.2;
    text-wrap: auto;
    font-family: ebgaramond;
  }
}
.text-label {
  font-size: 18.2857142857px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: ebgaramond;
}
.text-label-medium {
  font-size: 18.2857142857px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: ebgaramond;
}
.text-label-small {
  font-size: 13.2231404959px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: ebgaramond;
}

@media (max-width: 600px) {
  .sd\:text-label-medium {
    font-size: 18.2857142857px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: ebgaramond;
  }
  .sd\:text-label-small {
    font-size: 13.2231404959px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: ebgaramond;
  }
}
@media (max-width: 768px) {
  .md\:text-label-medium {
    font-size: 18.2857142857px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: ebgaramond;
  }
  .md\:text-label-small {
    font-size: 13.2231404959px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: ebgaramond;
  }
}
@media (max-width: 1024px) {
  .ld\:text-label-medium {
    font-size: 18.2857142857px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: ebgaramond;
  }
  .ld\:text-label-small {
    font-size: 13.2231404959px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: ebgaramond;
  }
}
.text-no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-value {
  font-size: 18.2857142857px;
  line-height: 1.2;
  font-family: ebgaramond;
  font-weight: bold;
}
.text-value-small {
  font-size: 13.2231404959px;
  line-height: 1.2;
  font-family: ebgaramond;
  font-weight: bold;
}

.text-color-primary {
  color: #333333;
}

.text-color-secondary {
  color: #F1C40F;
}

.text-color-accessory {
  color: #f5f5f5;
}

.text-color-light {
  color: #FFFFFF;
}

.text-break-spaces {
  white-space: pre-line;
}

.text-bold {
  font-weight: bold;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/material-outlined.woff2) format("woff2");
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/material-filled.woff2) format("woff2");
}
.icon-filled {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  margin-bottom: auto;
  margin-top: auto;
}
.icon-filled:hover {
  text-decoration: none;
}
.icon-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  margin-bottom: auto;
  margin-top: auto;
}
.icon-outlined:hover {
  text-decoration: none;
}
.icon-size-xs {
  font-size: 8px;
}
.icon-size-s {
  font-size: 16px;
}
.icon-size-m {
  font-size: 24px;
}
.icon-size-l {
  font-size: 32px;
}
.icon-size-xl {
  font-size: 48px;
}
@media (max-width: 600px) {
  .icon-size-sd-xs {
    font-size: 8px;
  }
  .icon-size-sd-s {
    font-size: 16px;
  }
  .icon-size-sd-m {
    font-size: 24px;
  }
  .icon-size-sd-l {
    font-size: 32px;
  }
  .icon-size-sd-xl {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .icon-size-md-xs {
    font-size: 8px;
  }
  .icon-size-md-s {
    font-size: 16px;
  }
  .icon-size-md-m {
    font-size: 24px;
  }
  .icon-size-md-l {
    font-size: 32px;
  }
  .icon-size-md-xl {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .icon-size-ld-xs {
    font-size: 8px;
  }
  .icon-size-ld-s {
    font-size: 16px;
  }
  .icon-size-ld-m {
    font-size: 24px;
  }
  .icon-size-ld-l {
    font-size: 32px;
  }
  .icon-size-ld-xl {
    font-size: 48px;
  }
}
.icon-color-primary {
  color: #333333;
}
.icon-color-secondary {
  color: #F1C40F;
}
.icon-color-accessory {
  color: #f5f5f5;
}
.icon-color-light {
  color: #FFFFFF;
}
.icon-color-success {
  color: #07f16b;
}
.icon-color-danger {
  color: #e34035;
}
.icon-color:hover {
  text-decoration: none;
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.form-container.alert {
  margin-bottom: 8px;
  font-weight: bold;
}
.form-container > .form-group {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.form-container > .form-grouplabel {
  margin-right: 8px;
  align-content: center;
  font-size: 16px;
}
.form-container > .form-groupinput, .form-container > .form-group select, .form-container > .form-group textarea {
  padding: 8px;
  border: 1px solid #333333;
  border-radius: 4px;
  font-size: 16px;
}

body {
  color: #232323;
  font-family: kehlin-regular;
  font-size: 16px;
  line-height: 1.5;
  background: linear-gradient(135deg, #fdf6e3 25%, #a7d7c5 25%, #a7d7c5 50%, #70b7d1 50%, #70b7d1 75%, #fce38a 75%);
  background: linear-gradient(135deg, #fce38a 25%, #fdf6e3 25%, #fdf6e3 75%, #70b7d1 75%);
  background-size: 100% 100%;
  color: #000;
  margin: 0;
  padding: 0;
}

a {
  color: #232323;
  text-decoration: none;
  font-family: kehlin-regular;
}
a:hover {
  text-decoration: underline;
}

.container {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    min-width: 720px;
    max-width: 1024px;
  }
}
@media (min-width: 1440px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
    min-width: 1024px;
    max-width: 1024px;
  }
}

.container-small {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  width: 720px;
}
@media (max-width: 768px) {
  .container-small {
    width: 100%;
  }
}

.no-text-selection {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.active-hover {
  cursor: pointer;
}
.active-hover:hover {
  transform: scale(1.05);
  opacity: 0.5;
  transition: all 0.3s;
}
.active-hover-soft {
  cursor: pointer;
  transition: filter 0.3s;
}
.active-hover-soft:hover {
  filter: brightness(0.9);
}

.no-selection {
  user-select: none;
}

.active-hover-rounded {
  cursor: pointer;
}
.active-hover-rounded:hover {
  transform: scale(1.05);
  opacity: 0.8;
  transition: all 0.3s;
  background: rgb(227.1412556054, 34.3587443946, 48.8452914798);
  border-radius: 50%;
}

.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.disabled:hover {
  transform: scale(1);
  opacity: 0.5;
  background: #E63946;
  border-radius: 0;
}

div.loading {
  flex-grow: 0.5;
  display: flex;
  background: radial-gradient(rgb(83.0985915493, 64.4014084507, 70.6338028169), transparent);
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

div.void-state {
  flex-grow: 0.5;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-auto {
  overflow: auto;
}
.overflow-y {
  overflow-y: auto;
}
.overflow-x {
  overflow-x: auto;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}

.overflow-scroll {
  overflow: scroll;
}

.w-100 {
  width: 100% !important;
}
@media (max-width: 600px) {
  .w-100-sd {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .w-100-md {
    width: 100% !important;
  }
}
@media (max-width: 1024px) {
  .w-100-ld {
    width: 100% !important;
  }
}

.w-75 {
  width: 75%;
}

.w-50 {
  width: 50%;
}

.w-33 {
  width: 33.33%;
}
@media (min-width: 600px) {
  .w-33-sd {
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  .w-33-md {
    width: 33.33%;
  }
}
@media (min-width: 1024px) {
  .w-33-ld {
    width: 33.33%;
  }
}

.w-25 {
  width: 25%;
}

.w-100px {
  width: 100px;
}

.w-150px {
  width: 150px;
}

.w-250px {
  width: 250px;
}

.h-100 {
  height: 100% !important;
}

.h-50 {
  height: 50%;
}

.h-25 {
  height: 25%;
}

.h-200px {
  height: 200px;
}

.vh-100 {
  height: 100vh;
}

.vh-90 {
  height: 90vh;
}

.vh-75 {
  height: 75vh;
}

.vh-50 {
  height: 50vh;
}

.vh-25 {
  height: 25vh;
}

.max-height-100 {
  max-height: 100%;
}
.max-width-100 {
  max-width: 100%;
}
.max-height-90 {
  max-height: 90%;
}
.max-width-90 {
  max-width: 90%;
}
.max-width-150px {
  max-width: 150px;
}
.max-width-250px {
  max-width: 250px;
}
.max-width-500px {
  max-width: 500px;
}
.max-height-30vh {
  max-height: 30vh;
}

.min-height-100 {
  min-height: 100%;
}
.min-width-100 {
  min-width: 100%;
}
.min-height-90 {
  min-height: 90%;
}
.min-width-90 {
  min-width: 90%;
}
.min-width-150px {
  min-width: 150px;
}

.img-fit-contain {
  object-fit: contain;
}
.img-fit-cover {
  object-fit: cover;
}
.img-fit-fill {
  object-fit: fill;
}
.img-fit-scale-down {
  object-fit: scale-down;
}

.text-align-left {
  text-align: left;
}
.text-align-center {
  text-align: center;
}
.text-align-right {
  text-align: right;
}
.text-align-justify {
  text-align: justify;
}

.z-index-behind-100 {
  z-index: -100;
}
.z-index-999 {
  z-index: 999;
}
.z-index-888 {
  z-index: 888;
}
.z-index-777 {
  z-index: 777;
}

.opacity-0 {
  opacity: 0;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-100 {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  display: none !important;
}

@media (max-width: 600px) {
  .hidden-mobile {
    display: none !important;
  }
}
@media (min-width: 600px) {
  .hidden-desktop {
    display: none !important;
  }
}
.dot {
  background-color: #333333;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  transition: background-color 0.3s;
}
.dot.active {
  background-color: #f5f5f5;
}

.shadow {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.shadow-soft {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

a.text-decoration-none {
  text-decoration: none;
}
a.text-decoration-none:hover {
  text-decoration: none;
}

.translate-up-25 {
  transform: translateY(-25%);
}

.tooltip {
  display: inline-block;
  border-bottom: 1px dotted black;
}
.tooltip:hover .tooltip-text {
  visibility: visible;
}
.tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 888;
  transform: translate(-68%, 120%);
}
.tooltip-text::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}
.tooltip-text:disabled {
  visibility: hidden !important;
}

header.header {
  font-family: ebgaramond;
  font-size: 1.4em;
  color: #1A1A1A;
  padding-bottom: 0px !important;
}
header.header .header-logo {
  width: 1.2em;
  height: 1.2em;
  margin-right: 0.2em;
  vertical-align: middle;
}
header.header .body-text {
  font-family: kehlin-regular;
  color: #00BFFF;
  letter-spacing: -3%;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: #F1C40F;
}
header.header .nav-back {
  background: #8E44AD;
  color: white;
  padding: 0.4em;
}
header.header .nav-back h2 {
  margin: 0;
}

.scene-info .button {
  border: 0.2m solid black;
}
.scene-info h3 {
  font-size: 3em;
  line-height: 1;
  text-wrap: wrap;
  margin-top: 0.1em;
  font-family: kehlin-regular;
  overflow-wrap: anywhere;
}
.scene-info div.root {
  font-family: sans-serif;
}
.scene-info .text-label {
  font-family: sans-serif;
  font-size: 1.2em;
}
.scene-info .bag-dark {
  background-color: #F1C40F;
  color: #1A1A1A;
  font-variant: all-petite-caps;
}
.scene-info .bag-primary {
  background-color: #8E44AD;
  color: #FFFFFF;
  font-variant: all-petite-caps;
}
.scene-info .bag-accessory {
  background-color: #8E44AD !important;
  color: #FFFFFF !important;
  font-variant: all-petite-caps !important;
}
.scene-info .bag-normal {
  background-color: #FF1493;
  color: #FFFFFF;
  font-variant: all-petite-caps;
}
.scene-info .bag-success {
  background-color: #FF1493 !important;
  color: #FFFFFF !important;
  font-variant: all-petite-caps !important;
}
.scene-info .label {
  font-family: sans-serif;
  font-size: 1.2em;
}

footer {
  background: #1A1A1A;
}
footer a.normal {
  color: #F1C40F;
  font-family: ebgaramond;
  font-size: 1.4em;
}
footer a.action {
  border-radius: 0.5rem;
  padding: 0.2em 0.5em;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-wrap: nowrap;
  background: #E63946;
  color: #1A1A1A;
  font-size: 2.2em;
}
footer a.action:hover {
  text-decoration: none;
}
footer nav {
  flex-wrap: wrap-reverse;
}
footer nav .legal {
  margin: 1em 0;
}

.card {
  border: 0.4em solid black;
}

main.landing {
  display: flex;
  flex-direction: column;
}
main.landing .header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
main.landing .header .date {
  text-decoration: underline;
}
main.landing .card-container {
  display: flex;
  gap: 8px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  main.landing .card-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(100px, 1fr));
    grid-gap: 8px;
  }
}
main.landing h1 {
  text-shadow: 1px 1px 0 #1A1A1A;
  color: #00BFFF;
  line-height: 1;
  font-size: min(18vw, 7em);
}
main.landing h2 {
  font-size: 4em;
  text-align: center;
  font-family: sans-serif;
}
main.landing img {
  max-height: 50%;
}
main.landing .button {
  border-radius: 0.5rem;
  border: 0.2em solid #1A1A1A;
  align-items: center;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-wrap: nowrap;
  background: #00BFFF;
  color: #1A1A1A;
  font-size: 2.2em;
}
main.landing .button:hover {
  text-decoration: none;
}

main.detail {
  display: flex;
  flex-direction: column;
}
main.detail .bordered {
  border: 0.7em solid black;
  border-bottom: none;
  border-radius: 2em;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
main.detail .text-label {
  font-family: sans-serif;
}
main.detail .body-text {
  font-size: 1.4em;
}
main.detail .btn-m {
  border: 1px solid #8E44AD;
  color: #8E44AD;
  background: #FFFFFF;
  line-height: 1;
  font-size: 1.8em;
}
main.detail .btn-m span {
  font-variant-caps: all-small-caps;
}
main.detail .btn-m:hover {
  color: #FFFFFF;
  background-color: #8E44AD;
}
main.detail .tag {
  padding: 0.2em 1em;
  margin: 0 0.15em;
}
main.detail .local-button-container {
  flex-direction: column !important;
}

main.imprint {
  background: #FFFFFF;
  border: 0.6em solid black;
  border-radius: 2em;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  font-family: ebgaramond;
  font-size: 1.4em;
}

.tag {
  background: #1A1A1A;
  color: #FFFFFF;
  border-radius: 0.2em;
  padding: 0.01em 0.5em;
  font-size: 1em;
  font-family: sans-serif;
}

/*# sourceMappingURL=main.css.map */
