* {
  margin: 0; /* Supprime les marges par défaut */
  padding: 0; /* Supprime les paddings par défaut */
  box-sizing: border-box; /* Inclut le padding et la bordure dans les dimensions */
}

:root {
  --blue-500: #3b82f6;
  --brother-blue: #0066cc;
  --color-badge-discount: #38cb89;
  --color-badge-promo: #0049ff;
  --color-base-gray: #8f8f8e;
  --color-base-orange: #ed7124;
  --color-danger-red: #d32f2f;
  --color-dark-gray: #454545;
  --color-dark-orange: #da661d;
  --color-light-gray: #ededed;
  --color-light-orange: #ffe4d3;
  --color-verylight-orange: #fff7ed;
  --color-veryverylight-orange: #fffdf9;
  --color-lightbase-gray: #adadad;
  --color-stock-dot: #60ff44;
  --cpp-gap: 20px;
  --cpp-radius-card: 8px;
  --cyan-500: #06b6d4;
  --discount-green: #38cb89;
  --gray-100: #fbfbfb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-50: #f9fafb;
  --gray-600: #4b5563;
  --gray-700: #454545;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #10b981;
  --green-600: #059669;
  --green-fluo: #60ff44;
  --intraligne-blue: #52b1ff;
  --magenta-500: #ec4899;
  --pink-500: #ec4899;
  --printers-radius-card: 8px;
  --promo-blue: #0049ff;
  --teal-200: #99f6e4;
  --teal-500: #14b8a6;
  --teal-50: #f0fdfa;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --thematics-card-height: 380px;
  --thematics-card-radius: 8px;
  --thematics-gap: 32px;
  --thematics-icon-size: 72px;
  --yellow-400: #fbbf24;
  --yellow-500: #eab308;
}
.-right-2 {
  right: -0.5rem;
}
.-top-2 {
  top: -0.5rem;
}
.absolute {
  position: absolute;
}
.bg-base-gray {
  background: var(--color-base-gray);
}
.bg-base-orange {
  background: var(--color-base-orange) !important;
}
.bg-black {
  background-color: black;
}
.bg-cyan-500 {
  background-color: var(--cyan-500);
}
.bg-dark-gray {
  background: var(--color-dark-gray);
}
.bg-dark-orange {
  background: var(--color-dark-orange) !important;
}
.bg-discount-green {
  background-color: var(--discount-green);
}
.bg-gray-100 {
  background-color: var(--gray-100);
}
.bg-gray-200 {
  background-color: var(--gray-200);
}
.bg-gray-300 {
  background-color: var(--gray-300);
}
.bg-gray-50 {
  background-color: var(--gray-50);
}
.bg-green-500 {
  background-color: var(--green-500);
}
.bg-green-fluo {
  background-color: var(--green-fluo);
}
.bg-light-gray {
  background: var(--color-light-gray) !important;
}
.bg-light-orange {
  background: var(--color-light-orange) !important;
}
.bg-very-light-orange {
  background: var(--color-verylight-orange) !important;
}
.bg-very-very-light-orange {
  background: var(--color-veryverylight-orange) !important;
}
.bg-magenta-500 {
  background-color: var(--magenta-500);
}
.bg-orange-50 {
  background-color: #fff9f5;
}
.bg-orange-500 {
  background-color: var(--color-base-orange);
}
.bg-pink-500 {
  background-color: var(--pink-500);
}
.bg-promo-blue {
  background-color: var(--promo-blue);
}
.bg-red {
  background-color: var(--color-danger-red);
}
.bg-teal-50 {
  background-color: var(--teal-50);
}
.bg-teal-500 {
  background-color: var(--teal-500);
}
.bg-transparent {
  background-color: transparent !important;
}
.bg-white {
  background-color: white;
}
.bg-yellow-500 {
  background-color: var(--yellow-500);
}
.block {
  display: block;
}
.border {
  border-color: var(--gray-200);
  border-style: solid;
  border-width: 1px;
  transition: border-color 0.2s ease;
}
.border-2 {
  border-color: var(--gray-200);
  border-style: solid;
  border-width: 2px;
}
.border-t {
  border-top: 1px solid;
}
.border-b {
  border-bottom: 1px solid;
}
.border-0 {
  border: 0;
}
.border-bottom {
  border-bottom: 1px solid #e5e7eb;
}
.border-gray {
  border: 1px solid var(--color-light-gray) !important;
}
.border-gray-200 {
  border-color: var(--gray-200);
}
.border-gray-300 {
  border-color: var(--gray-300);
}
.border-orange-500 {
  border-color: var(--color-base-orange);
}
.border-teal-200 {
  border-color: var(--teal-200);
}
.bottom-1\.5 {
  bottom: 0.375rem;
}
.bottom-4 {
  bottom: 1rem;
}
.btn:hover.bg-orange-500 {
  background-color: #ea580c !important;
  transition: background-color 0.2s ease;
}
.btn:hover.text-gray-600 {
  background-color: #f9fafb;
  transition: background-color 0.2s ease;
}
.cursor-pointer {
  cursor: pointer;
}
.fade-in {
  animation: fadeIn 0.3s ease-out;
}
.fit-contain {
  object-fit: contain;
}
.fit-cover {
  object-fit: cover;
}
.flex {
  display: flex;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-col {
  flex-direction: column;
}
.flex-column {
  flex-direction: column;
}
.flex-end {
  align-items: flex-end;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-row {
  flex-direction: row;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-start {
  align-items: flex-start;
}
.align-content-center {
  align-content: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.focus\:outline-none:focus {
  outline-offset: 2px;
  outline: 2px solid transparent;
}
.font-black {
  font-weight: 900 !important;
}
.font-bold {
  font-weight: 700 !important;
}
.font-extrabold {
  font-weight: 800 !important;
}
.font-extralight {
  font-weight: 200 !important;
}
.font-light {
  font-weight: 300 !important;
}
.font-medium {
  font-weight: 500 !important;
}
.font-normal {
  font-weight: 400 !important;
}
.font-semibold {
  font-weight: 600 !important;
}
.font-thin {
  font-weight: 100 !important;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-10px {
  gap: 10px !important;
}
.gap-11 {
  gap: 2.75rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-15px {
  gap: 15px !important;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-7 {
  gap: 1.75rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-9 {
  gap: 2.25rem;
}
.grid {
  display: grid;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-15 {
  height: 3.75rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-25 {
  height: 6.25rem;
}
.h-25px {
  height: 25px;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-50 {
  height: 12.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-96 {
  height: 24rem;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100% !important;
}
.hidden {
  display: none;
}
.hover\:bg-gray-100:hover {
  background-color: var(--gray-100);
}
.hover\:bg-orange-600:hover {
  background-color: #dc2626;
}
.hover\:bg-dark-gray:hover {
  background-color: var(--color-dark-gray);
}
.hover\:border-blue-500:hover {
  border-color: var(--blue-500);
}
.hover\:text-orange-500:hover {
  color: var(--color-base-orange);
}
.hover\:bg-orange-500:hover {
  background-color: var(--color-base-orange);
}

/* .hover\:text-white:hover {
  color: white;
} */
.hover\:text-white:hover,
.hover\:text-white:hover * {
  color: white !important;
}
.inline-block {
  display: inline-block;
}
.items-baseline {
  align-items: baseline;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-self-center {
  justify-self: center;
}
.justify-start {
  justify-content: flex-start;
}
.leading-100 {
  line-height: 1;
}
.leading-150 {
  line-height: 1.5;
}
.left-4 {
  left: 1rem;
}
.left-2{
  left: 0.5rem;
}
.left-auto{
  left: auto;
}
.right-2{
  right: 0.5rem;
}
.inset-y-0{
  top: 0;
  bottom: 0;
}
.w-10{
  width: 2.5rem;
}
.w-16{
  width: 4rem;
}
.line-through {
  text-decoration: line-through;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.m-0 {
  margin: 0;
}
.m-auto {
  margin: auto;
}
.max-w-7xl {
  max-width: 1440px !important;
}
.max-h-60{
  max-height: 15rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-1-t {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-2-t {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.mt-6 {
  margin-top: 1.5rem !important;
}
.mt-8 {
  margin-top: 2rem !important;
}
.mt-4{
  margin-top: 1rem;
}
.mb-auto {
  margin-bottom: auto;
}
.me-15px {
  margin-right: 15px !important;
}
.me-4 {
  margin-right: 1rem;
}
.me-auto {
  margin-right: auto !important;
}
.mr-0 {
  margin-right: 0 !important;
}
.ms-0 {
  margin-left: 0 !important;
}
.ms-15px {
  margin-left: 15px !important;
}
.ms-auto {
  margin-left: auto !important;
}
.mt-auto {
  margin-top: auto;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.no-underline {
  text-decoration: none;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.pt-4 {
  padding-top: 1rem;
}
.p-0 {
  padding: 0 !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-10 {
  padding: 2.5rem !important;
}
.p-11 {
  padding: 2.75rem !important;
}
.p-12 {
  padding: 3rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-3 {
  padding: 0.75rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.p-5 {
  padding: 1.25rem !important;
}
.p-6 {
  padding: 1.5rem !important;
}
.p-7 {
  padding: 1.75rem !important;
}
.p-8 {
  padding: 2rem !important;
}
.p-9 {
  padding: 2.25rem !important;
}
.pt-3-t {
  padding-top: 0.75rem;
}
.pe-0 {
  padding-right: 0 !important;
}
.pe-15px {
  padding-right: 15px !important;
}
.ps-0 {
  padding-left: 0 !important;
}
.ps-12-5 {
  padding-left: 3.125rem;
}
.px-0 {
  padding-left: 0;
  padding-right: 0;
}
.px-1-t{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2-t {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-1-t{
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
}
.py-2-t{
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.py-4 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.py-0 {
  padding-bottom: 0;
  padding-top: 0;
}
.py-3,.py-3-t {
  padding-bottom: 0.75rem !important;
  padding-top: 0.75rem !important;
}
.relative {
  position: relative;
}
.right-0 {
  right: 0;
}
.right-1\.5 {
  right: 0.375rem;
}
.right-4 {
  right: 1rem;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-8 {
  border-radius: 8px;
}
.rounded-full {
  border-radius: 50%;
  border-radius: 9999px;
}
.rounded-l {
  border-bottom-left-radius: 0.375rem;
  border-top-left-radius: 0.375rem;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-pill {
  border-radius: 50rem;
}
.rounded-r {
  border-bottom-right-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}

.self-center {
  align-self: center;
}
.self-start {
  align-self: flex-start;
}
.shadow-none {
  box-shadow: none !important;
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.space-y-1 > * + * {
  margin-top: 0.25rem;
}
.space-y-2 > * + * {
  margin-top: 0.5rem;
}
.space-y-3 > * + * {
  margin-top: 0.75rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.space-y-6 > * + * {
  margin-top: 1.5rem;
}
.start-100 {
  left: 100%;
}
.table {
  border-collapse: collapse;
  width: 100%;
}
.table td,
.table th {
  border: 1px solid var(--color-light-gray);
  padding: 0.75rem;
  text-align: left;
}
.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-base {
  font-size: 1rem !important;
}
.text-base-gray {
  color: var(--color-base-gray);
}
.text-base-orange {
  color: var(--color-base-orange);
}
.text-blue-500 {
  color: var(--blue-500);
}
.text-brother-blue {
  color: var(--brother-blue);
}
.text-center {
  text-align: center;
}
.text-orange-500{
  color: var(--color-base-orange);
}
.text-dark-gray {
  color: var(--color-dark-gray);
}
.text-dark-orange {
  color: var(--color-dark-orange);
}
.text-gray-500 {
  color: var(--gray-300);
}
.text-gray-600 {
  color: var(--gray-600);
}
.text-gray-700 {
  color: var(--gray-700);
}
.text-gray-800 {
  color: var(--gray-800);
}
.text-gray-900 {
  color: var(--gray-900) !important;
}
.text-green-500 {
  color: var(--green-500);
}
.text-green-600 {
  color: var(--green-600);
}
.text-inherit {
  color: inherit;
}
.text-intraligne-blue {
  color: var(--intraligne-blue);
}
.text-left {
  text-align: left !important;
}
.text-light-gray {
  color: var(--color-light-gray);
}
.text-light-orange {
  color: var(--color-light-orange);
}
.text-orange-price {
  color: var(--color-base-orange);
}

.text-red {
  color: var(--color-danger-red);
}
.text-right {
  text-align: right;
}
.text-size-15 {
  font-size: 15px;
}
.text-size-18 {
  font-size: 18px !important;
}
.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem;
}
.text-teal-600 {
  color: var(--teal-600);
}
.text-teal-700 {
  color: var(--teal-700);
}
.text-uppercase,
.uppercase {
  text-transform: uppercase;
}
.text-white {
  color: white;
}
.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem !important;
  line-height: 1rem;
}
.text-yellow-400 {
  color: var(--yellow-400);
}
.top-0 {
  top: 0;
}
.top-1\.5 {
  top: 0.375rem;
}
.top-4 {
  top: 1rem;
}
.transition {
  transition: all 0.2s ease;
}
.translate-middle {
  left: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.underline {
  text-decoration: underline;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-15 {
  width: 3.75rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-25px {
  width: 25px;
}
.w-3 {
  width: 0.75rem;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-7 {
  width: 1.75rem;
}
.w-auto {
  width: auto;
}
.w-3\/5 {
  width: 60%;
}
.w-full {
  width: 100% !important;
}
.z-10 {
  z-index: 10;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}

@media (min-width: 768px) {
  .md-flex {
    display: flex;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row !important;
  }
  .md\:p-4 {
    padding: 1rem !important;
  }
}

@media (min-width: 992px) {
  .lg-block {
    display: block;
  }
  .lg-flex {
    display: flex;
  }
  .lg-hidden {
    display: none;
  }

}

@media (min-width: 1440px) {
  .xl-flex {
    display: flex;
  }
}

@media (min-width: 576px) {
  .sm-hidden {
    display: none;
  }
  .sm-inline {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:grid-cols-2-1-3 {
    grid-template-columns: 1fr 0.33fr;
  }
  .lg\:grid-cols-3-2-1 {
    grid-template-columns: 1fr 1fr 0.5fr;
  }
  .lg\:col-span-1 {
    grid-column: span 1;
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row !important;
  }
  /* .lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  } */
}
.ml-auto {
  margin-left: auto !important;
}
.ml-05 {
  margin-left: 0.125rem !important;
}
/* === CLASSES FLEX UTILITAIRES === */
.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}
.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mx-5 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.z-99 {
  z-index: 99;
}
.btn-link {
  color: var(--color-base-orange) !important;
}
.btn:focus {
  outline-color: var(--color-base-orange) !important;
}
/* //NAVBAR */
.fixed {
  position: fixed;
}
.bottom-0 {
  bottom: 0;
}
.left-0 {
  left: 0;
}
.right-0 {
  right: 0;
}
.bg-white {
  background-color: #fff;
}
.shadow-navbar-footer {
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.px-5 {
  padding-left: 1.25rem; /* 20px */
  padding-right: 1.25rem;
}
.py-3 {
  padding-top: 0.75rem; /* 12px */
  padding-bottom: 0.75rem;
}
.transition-transform {
  transition-property: transform;
}
.duration-300 {
  transition-duration: 300ms;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
}

.translate-y-0 {
  transform: translateY(0);
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.lg\:flex-nowrap {
  flex-wrap: nowrap; /* en lg+ */
}
.items-center {
  align-items: center;
}
.gap-5 {
  gap: 1.25rem; /* 20px */
}
.justify-between {
  justify-content: space-between;
}
.w-full {
  width: 100%;
}
.lg\:w-auto {
  width: auto; /* en lg+ */
}
.order-1, .order-2 {
  order: 1 / 2;
}
.border {
  border-width: 1px;
}
.border-gray-300 {
  border-color: #d1d5db;
}
.border-gray-700 {
  border-color: #454545;
}
.rounded {
  border-radius: 0.25rem;
}
.bg-white {
  background-color: #fff;
}
.border-r, .border-l {
  border-right-width: 1px; border-left-width: 1px;
}
.px-3 {
  padding-left: 0.75rem; padding-right: 0.75rem;
}
.py-2 {
  padding-top: 0.5rem; padding-bottom: 0.5rem;
}
.text-base {
  font-size: 1rem; /* 16px */
}
.text-gray-800 {
  color: #1f2937;
}
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}
.rounded-l, .rounded-r {
  border-radius: 0.25rem 0 0 0.25rem; /* left/right */
}
.border-none {
  border: none;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.w-40px {
  width: 40px;
}
.w-50px {
  width: 50px;
}
.h-50px{
  height: 50px;
}
.px-1 {
  padding-left: 0.25rem; padding-right: 0.25rem;
}
.focus\:outline-none:focus {
  outline: none;
}
.bg-orange-500 {
  background-color: #f97316;
}
.text-white {
  color: #fff;
}
.px-6 {
  padding-left: 1.5rem; padding-right: 1.5rem;
}
.py-3 {
  padding-top: 0.75rem; padding-bottom: 0.75rem;
}
.text-sm {
  font-size: 0.875rem; /* 14px */
}
.rounded {
  border-radius: 0.25rem;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.hover\:bg-gray-800:hover {
  background-color: #1f2937;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}
.cursor-pointer {
  cursor: pointer;
}
.border-none {
  border: none;
}
.text-xl {
  font-size: 1.25rem; /* 20px */
  line-height: 1.75rem;
}
.font-bold {
  font-weight: 700;
}
.text-orange-500 {
  color: #f97316;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.text-10px {
  font-size: 10px;
}
.px-3-t{
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-2-t{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.p-0-t{
  padding: 0 !important;
}
.overflow-y-auto {
  overflow-y: auto;
}

