@tailwind base;

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}

@media (min-width: 1320px){
  .container{
    max-width: 1320px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.visible{
  visibility: visible;
}

.collapse{
  visibility: collapse;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.\!relative{
  position: relative !important;
}

.relative{
  position: relative;
}

.sticky{
  position: sticky;
}

.-left-8{
  left: -2rem;
}

.-right-7{
  right: -1.75rem;
}

.-top-14{
  top: -3.5rem;
}

.-top-\[165px\]{
  top: -165px;
}

.-top-\[18px\]{
  top: -18px;
}

.-top-\[90px\]{
  top: -90px;
}

.bottom-0{
  bottom: 0px;
}

.bottom-4{
  bottom: 1rem;
}

.bottom-8{
  bottom: 2rem;
}

.left-0{
  left: 0px;
}

.right-0{
  right: 0px;
}

.right-4{
  right: 1rem;
}

.right-8{
  right: 2rem;
}

.top-0{
  top: 0px;
}

.top-1{
  top: 0.25rem;
}

.top-1\/2{
  top: 50%;
}

.top-16{
  top: 4rem;
}

.top-2{
  top: 0.5rem;
}

.top-4{
  top: 1rem;
}

.top-\[11px\]{
  top: 11px;
}

.top-\[2px\]{
  top: 2px;
}

.top-auto{
  top: auto;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-30{
  z-index: 30;
}

.z-\[100\]{
  z-index: 100;
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.col-span-3{
  grid-column: span 3 / span 3;
}

.col-span-5{
  grid-column: span 5 / span 5;
}

.col-span-full{
  grid-column: 1 / -1;
}

.col-start-1{
  grid-column-start: 1;
}

.col-start-6{
  grid-column-start: 6;
}

.row-start-2{
  grid-row-start: 2;
}

.float-left{
  float: left;
}

.m-0{
  margin: 0px;
}

.m-4{
  margin: 1rem;
}

.m-auto{
  margin: auto;
}

.mx-2{
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

.mb-0{
  margin-bottom: 0px;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-14{
  margin-bottom: 3.5rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.mb-7{
  margin-bottom: 1.75rem;
}

.mb-8{
  margin-bottom: 2rem;
}

.ml-1{
  margin-left: 0.25rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-3{
  margin-left: 0.75rem;
}

.mr-1{
  margin-right: 0.25rem;
}

.mr-2{
  margin-right: 0.5rem;
}

.mr-3{
  margin-right: 0.75rem;
}

.mr-4{
  margin-right: 1rem;
}

.mr-6{
  margin-right: 1.5rem;
}

.mr-8{
  margin-right: 2rem;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-10{
  margin-top: 2.5rem;
}

.mt-16{
  margin-top: 4rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-3{
  margin-top: 0.75rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-5{
  margin-top: 1.25rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-\[10px\]{
  margin-top: 10px;
}

.block{
  display: block;
}

.inline-block{
  display: inline-block;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.contents{
  display: contents;
}

.hidden{
  display: none;
}

.h-12{
  height: 3rem;
}

.h-24{
  height: 6rem;
}

.h-4{
  height: 1rem;
}

.h-5{
  height: 1.25rem;
}

.h-9{
  height: 2.25rem;
}

.h-\[180px\]{
  height: 180px;
}

.h-\[18px\]{
  height: 18px;
}

.h-\[1px\]{
  height: 1px;
}

.h-\[24px\]{
  height: 24px;
}

.h-\[32px\]{
  height: 32px;
}

.h-\[330px\]{
  height: 330px;
}

.h-\[450px\]{
  height: 450px;
}

.h-\[560px\]{
  height: 560px;
}

.h-\[90vh\]{
  height: 90vh;
}

.h-\[93px\]{
  height: 93px;
}

.h-full{
  height: 100%;
}

.h-screen{
  height: 100vh;
}

.max-h-0{
  max-height: 0px;
}

.min-h-screen{
  min-height: 100vh;
}

.w-1\/2{
  width: 50%;
}

.w-24{
  width: 6rem;
}

.w-4{
  width: 1rem;
}

.w-5{
  width: 1.25rem;
}

.w-52{
  width: 13rem;
}

.w-56{
  width: 14rem;
}

.w-80{
  width: 20rem;
}

.w-9{
  width: 2.25rem;
}

.w-\[18px\]{
  width: 18px;
}

.w-\[24px\]{
  width: 24px;
}

.w-\[32px\]{
  width: 32px;
}

.w-\[350px\]{
  width: 350px;
}

.w-\[calc\(100\%\+64px\)\]{
  width: calc(100% + 64px);
}

.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}

.w-full{
  width: 100%;
}

.w-px{
  width: 1px;
}

.min-w-\[310px\]{
  min-width: 310px;
}

.max-w-lg{
  max-width: 32rem;
}

.max-w-screen-lg{
  max-width: 1024px;
}

.max-w-xs{
  max-width: 20rem;
}

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

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

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

.flex-grow{
  flex-grow: 1;
}

.border-collapse{
  border-collapse: collapse;
}

.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-0{
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes fadeIn{
  0%{
    opacity: 0;
  }

  100%{
    opacity: 1;
  }
}

.animate-fadeIn{
  animation: fadeIn 800ms ease-in forwards;
}

@keyframes slideDown{
  0%{
    opacity: 0;
    transform: translateY(-224px);
  }

  100%{
    opacity: 1;
    transform: translateY(0px);
  }
}

.animate-slideDown{
  animation: slideDown 500ms ease-in forwards;
}

.cursor-pointer{
  cursor: pointer;
}

.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.columns-lg{
  -moz-columns: 32rem;
       columns: 32rem;
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex-row{
  flex-direction: row;
}

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

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

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

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

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

.items-center{
  align-items: center;
}

.items-stretch{
  align-items: stretch;
}

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

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

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

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

.gap-6{
  gap: 1.5rem;
}

.gap-x-6{
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-y-14{
  row-gap: 3.5rem;
}

.gap-y-3{
  row-gap: 0.75rem;
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

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

.self-center{
  align-self: center;
}

.justify-self-end{
  justify-self: end;
}

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

.overflow-hidden{
  overflow: hidden;
}

.overflow-scroll{
  overflow: scroll;
}

.overflow-y-auto{
  overflow-y: auto;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.whitespace-nowrap{
  white-space: nowrap;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-2xl{
  border-radius: 1rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-none{
  border-radius: 0px;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded-b-full{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.rounded-b-lg{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-l-lg{
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.rounded-r-lg{
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.rounded-t-lg{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.rounded-t-sm{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.rounded-bl-lg{
  border-bottom-left-radius: 0.5rem;
}

.rounded-br-lg{
  border-bottom-right-radius: 0.5rem;
}

.rounded-tl-lg{
  border-top-left-radius: 0.5rem;
}

.rounded-tr-lg{
  border-top-right-radius: 0.5rem;
}

.border{
  border-width: 1px;
}

.border-4{
  border-width: 4px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-r{
  border-right-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-dashed{
  border-style: dashed;
}

.border-black{
  --tw-border-opacity: 1;
  border-color: rgb(43 16 9 / var(--tw-border-opacity));
}

.border-current{
  border-color: currentColor;
}

.border-grey2{
  --tw-border-opacity: 1;
  border-color: rgb(242 236 228 / var(--tw-border-opacity));
}

.border-red-100{
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / var(--tw-border-opacity));
}

.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-b-grey2{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(242 236 228 / var(--tw-border-opacity));
}

.border-b-grey3{
  --tw-border-opacity: 1;
  border-bottom-color: rgb(210 205 197 / var(--tw-border-opacity));
}

.\!bg-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(43 16 9 / var(--tw-bg-opacity)) !important;
}

.\!bg-highlight{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(233 255 106 / var(--tw-bg-opacity)) !important;
}

.\!bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
}

.bg-DarkTerracotta{
  --tw-bg-opacity: 1;
  background-color: rgb(113 53 35 / var(--tw-bg-opacity));
}

.bg-DarkTerracotta\/0{
  background-color: rgb(113 53 35 / 0);
}

.bg-DarkTerracotta\/10{
  background-color: rgb(113 53 35 / 0.1);
}

.bg-DarkTerracotta\/100{
  background-color: rgb(113 53 35 / 1);
}

.bg-DarkTerracotta\/20{
  background-color: rgb(113 53 35 / 0.2);
}

.bg-DarkTerracotta\/25{
  background-color: rgb(113 53 35 / 0.25);
}

.bg-DarkTerracotta\/30{
  background-color: rgb(113 53 35 / 0.3);
}

.bg-DarkTerracotta\/40{
  background-color: rgb(113 53 35 / 0.4);
}

.bg-DarkTerracotta\/5{
  background-color: rgb(113 53 35 / 0.05);
}

.bg-DarkTerracotta\/50{
  background-color: rgb(113 53 35 / 0.5);
}

.bg-DarkTerracotta\/60{
  background-color: rgb(113 53 35 / 0.6);
}

.bg-DarkTerracotta\/70{
  background-color: rgb(113 53 35 / 0.7);
}

.bg-DarkTerracotta\/75{
  background-color: rgb(113 53 35 / 0.75);
}

.bg-DarkTerracotta\/80{
  background-color: rgb(113 53 35 / 0.8);
}

.bg-DarkTerracotta\/90{
  background-color: rgb(113 53 35 / 0.9);
}

.bg-DarkTerracotta\/95{
  background-color: rgb(113 53 35 / 0.95);
}

.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(43 16 9 / var(--tw-bg-opacity));
}

.bg-black\/0{
  background-color: rgb(43 16 9 / 0);
}

.bg-black\/10{
  background-color: rgb(43 16 9 / 0.1);
}

.bg-black\/100{
  background-color: rgb(43 16 9 / 1);
}

.bg-black\/20{
  background-color: rgb(43 16 9 / 0.2);
}

.bg-black\/25{
  background-color: rgb(43 16 9 / 0.25);
}

.bg-black\/30{
  background-color: rgb(43 16 9 / 0.3);
}

.bg-black\/40{
  background-color: rgb(43 16 9 / 0.4);
}

.bg-black\/5{
  background-color: rgb(43 16 9 / 0.05);
}

.bg-black\/50{
  background-color: rgb(43 16 9 / 0.5);
}

.bg-black\/60{
  background-color: rgb(43 16 9 / 0.6);
}

.bg-black\/70{
  background-color: rgb(43 16 9 / 0.7);
}

.bg-black\/75{
  background-color: rgb(43 16 9 / 0.75);
}

.bg-black\/80{
  background-color: rgb(43 16 9 / 0.8);
}

.bg-black\/90{
  background-color: rgb(43 16 9 / 0.9);
}

.bg-black\/95{
  background-color: rgb(43 16 9 / 0.95);
}

.bg-current{
  background-color: currentColor;
}

.bg-discountDarkGreen{
  --tw-bg-opacity: 1;
  background-color: rgb(28 65 18 / var(--tw-bg-opacity));
}

.bg-discountDarkGreen\/0{
  background-color: rgb(28 65 18 / 0);
}

.bg-discountDarkGreen\/10{
  background-color: rgb(28 65 18 / 0.1);
}

.bg-discountDarkGreen\/100{
  background-color: rgb(28 65 18 / 1);
}

.bg-discountDarkGreen\/20{
  background-color: rgb(28 65 18 / 0.2);
}

.bg-discountDarkGreen\/25{
  background-color: rgb(28 65 18 / 0.25);
}

.bg-discountDarkGreen\/30{
  background-color: rgb(28 65 18 / 0.3);
}

.bg-discountDarkGreen\/40{
  background-color: rgb(28 65 18 / 0.4);
}

.bg-discountDarkGreen\/5{
  background-color: rgb(28 65 18 / 0.05);
}

.bg-discountDarkGreen\/50{
  background-color: rgb(28 65 18 / 0.5);
}

.bg-discountDarkGreen\/60{
  background-color: rgb(28 65 18 / 0.6);
}

.bg-discountDarkGreen\/70{
  background-color: rgb(28 65 18 / 0.7);
}

.bg-discountDarkGreen\/75{
  background-color: rgb(28 65 18 / 0.75);
}

.bg-discountDarkGreen\/80{
  background-color: rgb(28 65 18 / 0.8);
}

.bg-discountDarkGreen\/90{
  background-color: rgb(28 65 18 / 0.9);
}

.bg-discountDarkGreen\/95{
  background-color: rgb(28 65 18 / 0.95);
}

.bg-discountGreyBlue{
  --tw-bg-opacity: 1;
  background-color: rgb(178 200 221 / var(--tw-bg-opacity));
}

.bg-discountGreyBlue\/0{
  background-color: rgb(178 200 221 / 0);
}

.bg-discountGreyBlue\/10{
  background-color: rgb(178 200 221 / 0.1);
}

.bg-discountGreyBlue\/100{
  background-color: rgb(178 200 221 / 1);
}

.bg-discountGreyBlue\/20{
  background-color: rgb(178 200 221 / 0.2);
}

.bg-discountGreyBlue\/25{
  background-color: rgb(178 200 221 / 0.25);
}

.bg-discountGreyBlue\/30{
  background-color: rgb(178 200 221 / 0.3);
}

.bg-discountGreyBlue\/40{
  background-color: rgb(178 200 221 / 0.4);
}

.bg-discountGreyBlue\/5{
  background-color: rgb(178 200 221 / 0.05);
}

.bg-discountGreyBlue\/50{
  background-color: rgb(178 200 221 / 0.5);
}

.bg-discountGreyBlue\/60{
  background-color: rgb(178 200 221 / 0.6);
}

.bg-discountGreyBlue\/70{
  background-color: rgb(178 200 221 / 0.7);
}

.bg-discountGreyBlue\/75{
  background-color: rgb(178 200 221 / 0.75);
}

.bg-discountGreyBlue\/80{
  background-color: rgb(178 200 221 / 0.8);
}

.bg-discountGreyBlue\/90{
  background-color: rgb(178 200 221 / 0.9);
}

.bg-discountGreyBlue\/95{
  background-color: rgb(178 200 221 / 0.95);
}

.bg-discountLavandel{
  --tw-bg-opacity: 1;
  background-color: rgb(213 191 249 / var(--tw-bg-opacity));
}

.bg-discountLavandel\/0{
  background-color: rgb(213 191 249 / 0);
}

.bg-discountLavandel\/10{
  background-color: rgb(213 191 249 / 0.1);
}

.bg-discountLavandel\/100{
  background-color: rgb(213 191 249 / 1);
}

.bg-discountLavandel\/20{
  background-color: rgb(213 191 249 / 0.2);
}

.bg-discountLavandel\/25{
  background-color: rgb(213 191 249 / 0.25);
}

.bg-discountLavandel\/30{
  background-color: rgb(213 191 249 / 0.3);
}

.bg-discountLavandel\/40{
  background-color: rgb(213 191 249 / 0.4);
}

.bg-discountLavandel\/5{
  background-color: rgb(213 191 249 / 0.05);
}

.bg-discountLavandel\/50{
  background-color: rgb(213 191 249 / 0.5);
}

.bg-discountLavandel\/60{
  background-color: rgb(213 191 249 / 0.6);
}

.bg-discountLavandel\/70{
  background-color: rgb(213 191 249 / 0.7);
}

.bg-discountLavandel\/75{
  background-color: rgb(213 191 249 / 0.75);
}

.bg-discountLavandel\/80{
  background-color: rgb(213 191 249 / 0.8);
}

.bg-discountLavandel\/90{
  background-color: rgb(213 191 249 / 0.9);
}

.bg-discountLavandel\/95{
  background-color: rgb(213 191 249 / 0.95);
}

.bg-discountLimeGreen{
  --tw-bg-opacity: 1;
  background-color: rgb(233 255 106 / var(--tw-bg-opacity));
}

.bg-discountLimeGreen\/0{
  background-color: rgb(233 255 106 / 0);
}

.bg-discountLimeGreen\/10{
  background-color: rgb(233 255 106 / 0.1);
}

.bg-discountLimeGreen\/100{
  background-color: rgb(233 255 106 / 1);
}

.bg-discountLimeGreen\/20{
  background-color: rgb(233 255 106 / 0.2);
}

.bg-discountLimeGreen\/25{
  background-color: rgb(233 255 106 / 0.25);
}

.bg-discountLimeGreen\/30{
  background-color: rgb(233 255 106 / 0.3);
}

.bg-discountLimeGreen\/40{
  background-color: rgb(233 255 106 / 0.4);
}

.bg-discountLimeGreen\/5{
  background-color: rgb(233 255 106 / 0.05);
}

.bg-discountLimeGreen\/50{
  background-color: rgb(233 255 106 / 0.5);
}

.bg-discountLimeGreen\/60{
  background-color: rgb(233 255 106 / 0.6);
}

.bg-discountLimeGreen\/70{
  background-color: rgb(233 255 106 / 0.7);
}

.bg-discountLimeGreen\/75{
  background-color: rgb(233 255 106 / 0.75);
}

.bg-discountLimeGreen\/80{
  background-color: rgb(233 255 106 / 0.8);
}

.bg-discountLimeGreen\/90{
  background-color: rgb(233 255 106 / 0.9);
}

.bg-discountLimeGreen\/95{
  background-color: rgb(233 255 106 / 0.95);
}

.bg-discountOliveGreen{
  --tw-bg-opacity: 1;
  background-color: rgb(195 202 171 / var(--tw-bg-opacity));
}

.bg-discountOliveGreen\/0{
  background-color: rgb(195 202 171 / 0);
}

.bg-discountOliveGreen\/10{
  background-color: rgb(195 202 171 / 0.1);
}

.bg-discountOliveGreen\/100{
  background-color: rgb(195 202 171 / 1);
}

.bg-discountOliveGreen\/20{
  background-color: rgb(195 202 171 / 0.2);
}

.bg-discountOliveGreen\/25{
  background-color: rgb(195 202 171 / 0.25);
}

.bg-discountOliveGreen\/30{
  background-color: rgb(195 202 171 / 0.3);
}

.bg-discountOliveGreen\/40{
  background-color: rgb(195 202 171 / 0.4);
}

.bg-discountOliveGreen\/5{
  background-color: rgb(195 202 171 / 0.05);
}

.bg-discountOliveGreen\/50{
  background-color: rgb(195 202 171 / 0.5);
}

.bg-discountOliveGreen\/60{
  background-color: rgb(195 202 171 / 0.6);
}

.bg-discountOliveGreen\/70{
  background-color: rgb(195 202 171 / 0.7);
}

.bg-discountOliveGreen\/75{
  background-color: rgb(195 202 171 / 0.75);
}

.bg-discountOliveGreen\/80{
  background-color: rgb(195 202 171 / 0.8);
}

.bg-discountOliveGreen\/90{
  background-color: rgb(195 202 171 / 0.9);
}

.bg-discountOliveGreen\/95{
  background-color: rgb(195 202 171 / 0.95);
}

.bg-discountSalmon{
  --tw-bg-opacity: 1;
  background-color: rgb(255 171 123 / var(--tw-bg-opacity));
}

.bg-discountSalmon\/0{
  background-color: rgb(255 171 123 / 0);
}

.bg-discountSalmon\/10{
  background-color: rgb(255 171 123 / 0.1);
}

.bg-discountSalmon\/100{
  background-color: rgb(255 171 123 / 1);
}

.bg-discountSalmon\/20{
  background-color: rgb(255 171 123 / 0.2);
}

.bg-discountSalmon\/25{
  background-color: rgb(255 171 123 / 0.25);
}

.bg-discountSalmon\/30{
  background-color: rgb(255 171 123 / 0.3);
}

.bg-discountSalmon\/40{
  background-color: rgb(255 171 123 / 0.4);
}

.bg-discountSalmon\/5{
  background-color: rgb(255 171 123 / 0.05);
}

.bg-discountSalmon\/50{
  background-color: rgb(255 171 123 / 0.5);
}

.bg-discountSalmon\/60{
  background-color: rgb(255 171 123 / 0.6);
}

.bg-discountSalmon\/70{
  background-color: rgb(255 171 123 / 0.7);
}

.bg-discountSalmon\/75{
  background-color: rgb(255 171 123 / 0.75);
}

.bg-discountSalmon\/80{
  background-color: rgb(255 171 123 / 0.8);
}

.bg-discountSalmon\/90{
  background-color: rgb(255 171 123 / 0.9);
}

.bg-discountSalmon\/95{
  background-color: rgb(255 171 123 / 0.95);
}

.bg-discountWineRed{
  --tw-bg-opacity: 1;
  background-color: rgb(107 0 64 / var(--tw-bg-opacity));
}

.bg-discountWineRed\/0{
  background-color: rgb(107 0 64 / 0);
}

.bg-discountWineRed\/10{
  background-color: rgb(107 0 64 / 0.1);
}

.bg-discountWineRed\/100{
  background-color: rgb(107 0 64 / 1);
}

.bg-discountWineRed\/20{
  background-color: rgb(107 0 64 / 0.2);
}

.bg-discountWineRed\/25{
  background-color: rgb(107 0 64 / 0.25);
}

.bg-discountWineRed\/30{
  background-color: rgb(107 0 64 / 0.3);
}

.bg-discountWineRed\/40{
  background-color: rgb(107 0 64 / 0.4);
}

.bg-discountWineRed\/5{
  background-color: rgb(107 0 64 / 0.05);
}

.bg-discountWineRed\/50{
  background-color: rgb(107 0 64 / 0.5);
}

.bg-discountWineRed\/60{
  background-color: rgb(107 0 64 / 0.6);
}

.bg-discountWineRed\/70{
  background-color: rgb(107 0 64 / 0.7);
}

.bg-discountWineRed\/75{
  background-color: rgb(107 0 64 / 0.75);
}

.bg-discountWineRed\/80{
  background-color: rgb(107 0 64 / 0.8);
}

.bg-discountWineRed\/90{
  background-color: rgb(107 0 64 / 0.9);
}

.bg-discountWineRed\/95{
  background-color: rgb(107 0 64 / 0.95);
}

.bg-error{
  --tw-bg-opacity: 1;
  background-color: rgb(214 21 21 / var(--tw-bg-opacity));
}

.bg-error\/0{
  background-color: rgb(214 21 21 / 0);
}

.bg-error\/10{
  background-color: rgb(214 21 21 / 0.1);
}

.bg-error\/100{
  background-color: rgb(214 21 21 / 1);
}

.bg-error\/20{
  background-color: rgb(214 21 21 / 0.2);
}

.bg-error\/25{
  background-color: rgb(214 21 21 / 0.25);
}

.bg-error\/30{
  background-color: rgb(214 21 21 / 0.3);
}

.bg-error\/40{
  background-color: rgb(214 21 21 / 0.4);
}

.bg-error\/5{
  background-color: rgb(214 21 21 / 0.05);
}

.bg-error\/50{
  background-color: rgb(214 21 21 / 0.5);
}

.bg-error\/60{
  background-color: rgb(214 21 21 / 0.6);
}

.bg-error\/70{
  background-color: rgb(214 21 21 / 0.7);
}

.bg-error\/75{
  background-color: rgb(214 21 21 / 0.75);
}

.bg-error\/80{
  background-color: rgb(214 21 21 / 0.8);
}

.bg-error\/90{
  background-color: rgb(214 21 21 / 0.9);
}

.bg-error\/95{
  background-color: rgb(214 21 21 / 0.95);
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-green{
  --tw-bg-opacity: 1;
  background-color: rgb(90 111 74 / var(--tw-bg-opacity));
}

.bg-green\/0{
  background-color: rgb(90 111 74 / 0);
}

.bg-green\/10{
  background-color: rgb(90 111 74 / 0.1);
}

.bg-green\/100{
  background-color: rgb(90 111 74 / 1);
}

.bg-green\/20{
  background-color: rgb(90 111 74 / 0.2);
}

.bg-green\/25{
  background-color: rgb(90 111 74 / 0.25);
}

.bg-green\/30{
  background-color: rgb(90 111 74 / 0.3);
}

.bg-green\/40{
  background-color: rgb(90 111 74 / 0.4);
}

.bg-green\/5{
  background-color: rgb(90 111 74 / 0.05);
}

.bg-green\/50{
  background-color: rgb(90 111 74 / 0.5);
}

.bg-green\/60{
  background-color: rgb(90 111 74 / 0.6);
}

.bg-green\/70{
  background-color: rgb(90 111 74 / 0.7);
}

.bg-green\/75{
  background-color: rgb(90 111 74 / 0.75);
}

.bg-green\/80{
  background-color: rgb(90 111 74 / 0.8);
}

.bg-green\/90{
  background-color: rgb(90 111 74 / 0.9);
}

.bg-green\/95{
  background-color: rgb(90 111 74 / 0.95);
}

.bg-grey1{
  --tw-bg-opacity: 1;
  background-color: rgb(247 245 242 / var(--tw-bg-opacity));
}

.bg-grey1\/0{
  background-color: rgb(247 245 242 / 0);
}

.bg-grey1\/10{
  background-color: rgb(247 245 242 / 0.1);
}

.bg-grey1\/100{
  background-color: rgb(247 245 242 / 1);
}

.bg-grey1\/20{
  background-color: rgb(247 245 242 / 0.2);
}

.bg-grey1\/25{
  background-color: rgb(247 245 242 / 0.25);
}

.bg-grey1\/30{
  background-color: rgb(247 245 242 / 0.3);
}

.bg-grey1\/40{
  background-color: rgb(247 245 242 / 0.4);
}

.bg-grey1\/5{
  background-color: rgb(247 245 242 / 0.05);
}

.bg-grey1\/50{
  background-color: rgb(247 245 242 / 0.5);
}

.bg-grey1\/60{
  background-color: rgb(247 245 242 / 0.6);
}

.bg-grey1\/70{
  background-color: rgb(247 245 242 / 0.7);
}

.bg-grey1\/75{
  background-color: rgb(247 245 242 / 0.75);
}

.bg-grey1\/80{
  background-color: rgb(247 245 242 / 0.8);
}

.bg-grey1\/90{
  background-color: rgb(247 245 242 / 0.9);
}

.bg-grey1\/95{
  background-color: rgb(247 245 242 / 0.95);
}

.bg-grey2{
  --tw-bg-opacity: 1;
  background-color: rgb(242 236 228 / var(--tw-bg-opacity));
}

.bg-grey2\/0{
  background-color: rgb(242 236 228 / 0);
}

.bg-grey2\/10{
  background-color: rgb(242 236 228 / 0.1);
}

.bg-grey2\/100{
  background-color: rgb(242 236 228 / 1);
}

.bg-grey2\/20{
  background-color: rgb(242 236 228 / 0.2);
}

.bg-grey2\/25{
  background-color: rgb(242 236 228 / 0.25);
}

.bg-grey2\/30{
  background-color: rgb(242 236 228 / 0.3);
}

.bg-grey2\/40{
  background-color: rgb(242 236 228 / 0.4);
}

.bg-grey2\/5{
  background-color: rgb(242 236 228 / 0.05);
}

.bg-grey2\/50{
  background-color: rgb(242 236 228 / 0.5);
}

.bg-grey2\/60{
  background-color: rgb(242 236 228 / 0.6);
}

.bg-grey2\/70{
  background-color: rgb(242 236 228 / 0.7);
}

.bg-grey2\/75{
  background-color: rgb(242 236 228 / 0.75);
}

.bg-grey2\/80{
  background-color: rgb(242 236 228 / 0.8);
}

.bg-grey2\/90{
  background-color: rgb(242 236 228 / 0.9);
}

.bg-grey2\/95{
  background-color: rgb(242 236 228 / 0.95);
}

.bg-grey3{
  --tw-bg-opacity: 1;
  background-color: rgb(210 205 197 / var(--tw-bg-opacity));
}

.bg-grey3\/0{
  background-color: rgb(210 205 197 / 0);
}

.bg-grey3\/10{
  background-color: rgb(210 205 197 / 0.1);
}

.bg-grey3\/100{
  background-color: rgb(210 205 197 / 1);
}

.bg-grey3\/20{
  background-color: rgb(210 205 197 / 0.2);
}

.bg-grey3\/25{
  background-color: rgb(210 205 197 / 0.25);
}

.bg-grey3\/30{
  background-color: rgb(210 205 197 / 0.3);
}

.bg-grey3\/40{
  background-color: rgb(210 205 197 / 0.4);
}

.bg-grey3\/5{
  background-color: rgb(210 205 197 / 0.05);
}

.bg-grey3\/50{
  background-color: rgb(210 205 197 / 0.5);
}

.bg-grey3\/60{
  background-color: rgb(210 205 197 / 0.6);
}

.bg-grey3\/70{
  background-color: rgb(210 205 197 / 0.7);
}

.bg-grey3\/75{
  background-color: rgb(210 205 197 / 0.75);
}

.bg-grey3\/80{
  background-color: rgb(210 205 197 / 0.8);
}

.bg-grey3\/90{
  background-color: rgb(210 205 197 / 0.9);
}

.bg-grey3\/95{
  background-color: rgb(210 205 197 / 0.95);
}

.bg-grey4{
  --tw-bg-opacity: 1;
  background-color: rgb(153 139 129 / var(--tw-bg-opacity));
}

.bg-grey4\/0{
  background-color: rgb(153 139 129 / 0);
}

.bg-grey4\/10{
  background-color: rgb(153 139 129 / 0.1);
}

.bg-grey4\/100{
  background-color: rgb(153 139 129 / 1);
}

.bg-grey4\/20{
  background-color: rgb(153 139 129 / 0.2);
}

.bg-grey4\/25{
  background-color: rgb(153 139 129 / 0.25);
}

.bg-grey4\/30{
  background-color: rgb(153 139 129 / 0.3);
}

.bg-grey4\/40{
  background-color: rgb(153 139 129 / 0.4);
}

.bg-grey4\/5{
  background-color: rgb(153 139 129 / 0.05);
}

.bg-grey4\/50{
  background-color: rgb(153 139 129 / 0.5);
}

.bg-grey4\/60{
  background-color: rgb(153 139 129 / 0.6);
}

.bg-grey4\/70{
  background-color: rgb(153 139 129 / 0.7);
}

.bg-grey4\/75{
  background-color: rgb(153 139 129 / 0.75);
}

.bg-grey4\/80{
  background-color: rgb(153 139 129 / 0.8);
}

.bg-grey4\/90{
  background-color: rgb(153 139 129 / 0.9);
}

.bg-grey4\/95{
  background-color: rgb(153 139 129 / 0.95);
}

.bg-grey5{
  --tw-bg-opacity: 1;
  background-color: rgb(97 79 67 / var(--tw-bg-opacity));
}

.bg-grey5\/0{
  background-color: rgb(97 79 67 / 0);
}

.bg-grey5\/10{
  background-color: rgb(97 79 67 / 0.1);
}

.bg-grey5\/100{
  background-color: rgb(97 79 67 / 1);
}

.bg-grey5\/20{
  background-color: rgb(97 79 67 / 0.2);
}

.bg-grey5\/25{
  background-color: rgb(97 79 67 / 0.25);
}

.bg-grey5\/30{
  background-color: rgb(97 79 67 / 0.3);
}

.bg-grey5\/40{
  background-color: rgb(97 79 67 / 0.4);
}

.bg-grey5\/5{
  background-color: rgb(97 79 67 / 0.05);
}

.bg-grey5\/50{
  background-color: rgb(97 79 67 / 0.5);
}

.bg-grey5\/60{
  background-color: rgb(97 79 67 / 0.6);
}

.bg-grey5\/70{
  background-color: rgb(97 79 67 / 0.7);
}

.bg-grey5\/75{
  background-color: rgb(97 79 67 / 0.75);
}

.bg-grey5\/80{
  background-color: rgb(97 79 67 / 0.8);
}

.bg-grey5\/90{
  background-color: rgb(97 79 67 / 0.9);
}

.bg-grey5\/95{
  background-color: rgb(97 79 67 / 0.95);
}

.bg-grey6{
  --tw-bg-opacity: 1;
  background-color: rgb(71 49 40 / var(--tw-bg-opacity));
}

.bg-grey6\/0{
  background-color: rgb(71 49 40 / 0);
}

.bg-grey6\/10{
  background-color: rgb(71 49 40 / 0.1);
}

.bg-grey6\/100{
  background-color: rgb(71 49 40 / 1);
}

.bg-grey6\/20{
  background-color: rgb(71 49 40 / 0.2);
}

.bg-grey6\/25{
  background-color: rgb(71 49 40 / 0.25);
}

.bg-grey6\/30{
  background-color: rgb(71 49 40 / 0.3);
}

.bg-grey6\/40{
  background-color: rgb(71 49 40 / 0.4);
}

.bg-grey6\/5{
  background-color: rgb(71 49 40 / 0.05);
}

.bg-grey6\/50{
  background-color: rgb(71 49 40 / 0.5);
}

.bg-grey6\/60{
  background-color: rgb(71 49 40 / 0.6);
}

.bg-grey6\/70{
  background-color: rgb(71 49 40 / 0.7);
}

.bg-grey6\/75{
  background-color: rgb(71 49 40 / 0.75);
}

.bg-grey6\/80{
  background-color: rgb(71 49 40 / 0.8);
}

.bg-grey6\/90{
  background-color: rgb(71 49 40 / 0.9);
}

.bg-grey6\/95{
  background-color: rgb(71 49 40 / 0.95);
}

.bg-grey7{
  --tw-bg-opacity: 1;
  background-color: rgb(64 40 34 / var(--tw-bg-opacity));
}

.bg-grey7\/0{
  background-color: rgb(64 40 34 / 0);
}

.bg-grey7\/10{
  background-color: rgb(64 40 34 / 0.1);
}

.bg-grey7\/100{
  background-color: rgb(64 40 34 / 1);
}

.bg-grey7\/20{
  background-color: rgb(64 40 34 / 0.2);
}

.bg-grey7\/25{
  background-color: rgb(64 40 34 / 0.25);
}

.bg-grey7\/30{
  background-color: rgb(64 40 34 / 0.3);
}

.bg-grey7\/40{
  background-color: rgb(64 40 34 / 0.4);
}

.bg-grey7\/5{
  background-color: rgb(64 40 34 / 0.05);
}

.bg-grey7\/50{
  background-color: rgb(64 40 34 / 0.5);
}

.bg-grey7\/60{
  background-color: rgb(64 40 34 / 0.6);
}

.bg-grey7\/70{
  background-color: rgb(64 40 34 / 0.7);
}

.bg-grey7\/75{
  background-color: rgb(64 40 34 / 0.75);
}

.bg-grey7\/80{
  background-color: rgb(64 40 34 / 0.8);
}

.bg-grey7\/90{
  background-color: rgb(64 40 34 / 0.9);
}

.bg-grey7\/95{
  background-color: rgb(64 40 34 / 0.95);
}

.bg-highlight{
  --tw-bg-opacity: 1;
  background-color: rgb(233 255 106 / var(--tw-bg-opacity));
}

.bg-lightMoss{
  --tw-bg-opacity: 1;
  background-color: rgb(239 245 226 / var(--tw-bg-opacity));
}

.bg-lightMoss\/0{
  background-color: rgb(239 245 226 / 0);
}

.bg-lightMoss\/10{
  background-color: rgb(239 245 226 / 0.1);
}

.bg-lightMoss\/100{
  background-color: rgb(239 245 226 / 1);
}

.bg-lightMoss\/20{
  background-color: rgb(239 245 226 / 0.2);
}

.bg-lightMoss\/25{
  background-color: rgb(239 245 226 / 0.25);
}

.bg-lightMoss\/30{
  background-color: rgb(239 245 226 / 0.3);
}

.bg-lightMoss\/40{
  background-color: rgb(239 245 226 / 0.4);
}

.bg-lightMoss\/5{
  background-color: rgb(239 245 226 / 0.05);
}

.bg-lightMoss\/50{
  background-color: rgb(239 245 226 / 0.5);
}

.bg-lightMoss\/60{
  background-color: rgb(239 245 226 / 0.6);
}

.bg-lightMoss\/70{
  background-color: rgb(239 245 226 / 0.7);
}

.bg-lightMoss\/75{
  background-color: rgb(239 245 226 / 0.75);
}

.bg-lightMoss\/80{
  background-color: rgb(239 245 226 / 0.8);
}

.bg-lightMoss\/90{
  background-color: rgb(239 245 226 / 0.9);
}

.bg-lightMoss\/95{
  background-color: rgb(239 245 226 / 0.95);
}

.bg-moss{
  --tw-bg-opacity: 1;
  background-color: rgb(192 203 167 / var(--tw-bg-opacity));
}

.bg-moss\/0{
  background-color: rgb(192 203 167 / 0);
}

.bg-moss\/10{
  background-color: rgb(192 203 167 / 0.1);
}

.bg-moss\/100{
  background-color: rgb(192 203 167 / 1);
}

.bg-moss\/20{
  background-color: rgb(192 203 167 / 0.2);
}

.bg-moss\/25{
  background-color: rgb(192 203 167 / 0.25);
}

.bg-moss\/30{
  background-color: rgb(192 203 167 / 0.3);
}

.bg-moss\/40{
  background-color: rgb(192 203 167 / 0.4);
}

.bg-moss\/5{
  background-color: rgb(192 203 167 / 0.05);
}

.bg-moss\/50{
  background-color: rgb(192 203 167 / 0.5);
}

.bg-moss\/60{
  background-color: rgb(192 203 167 / 0.6);
}

.bg-moss\/70{
  background-color: rgb(192 203 167 / 0.7);
}

.bg-moss\/75{
  background-color: rgb(192 203 167 / 0.75);
}

.bg-moss\/80{
  background-color: rgb(192 203 167 / 0.8);
}

.bg-moss\/90{
  background-color: rgb(192 203 167 / 0.9);
}

.bg-moss\/95{
  background-color: rgb(192 203 167 / 0.95);
}

.bg-red-200{
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity));
}

.bg-red-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity));
}

.bg-salmon{
  --tw-bg-opacity: 1;
  background-color: rgb(242 153 126 / var(--tw-bg-opacity));
}

.bg-salmon\/0{
  background-color: rgb(242 153 126 / 0);
}

.bg-salmon\/10{
  background-color: rgb(242 153 126 / 0.1);
}

.bg-salmon\/100{
  background-color: rgb(242 153 126 / 1);
}

.bg-salmon\/20{
  background-color: rgb(242 153 126 / 0.2);
}

.bg-salmon\/25{
  background-color: rgb(242 153 126 / 0.25);
}

.bg-salmon\/30{
  background-color: rgb(242 153 126 / 0.3);
}

.bg-salmon\/40{
  background-color: rgb(242 153 126 / 0.4);
}

.bg-salmon\/5{
  background-color: rgb(242 153 126 / 0.05);
}

.bg-salmon\/50{
  background-color: rgb(242 153 126 / 0.5);
}

.bg-salmon\/60{
  background-color: rgb(242 153 126 / 0.6);
}

.bg-salmon\/70{
  background-color: rgb(242 153 126 / 0.7);
}

.bg-salmon\/75{
  background-color: rgb(242 153 126 / 0.75);
}

.bg-salmon\/80{
  background-color: rgb(242 153 126 / 0.8);
}

.bg-salmon\/90{
  background-color: rgb(242 153 126 / 0.9);
}

.bg-salmon\/95{
  background-color: rgb(242 153 126 / 0.95);
}

.bg-succes{
  --tw-bg-opacity: 1;
  background-color: rgb(56 127 2 / var(--tw-bg-opacity));
}

.bg-succes\/0{
  background-color: rgb(56 127 2 / 0);
}

.bg-succes\/10{
  background-color: rgb(56 127 2 / 0.1);
}

.bg-succes\/100{
  background-color: rgb(56 127 2 / 1);
}

.bg-succes\/20{
  background-color: rgb(56 127 2 / 0.2);
}

.bg-succes\/25{
  background-color: rgb(56 127 2 / 0.25);
}

.bg-succes\/30{
  background-color: rgb(56 127 2 / 0.3);
}

.bg-succes\/40{
  background-color: rgb(56 127 2 / 0.4);
}

.bg-succes\/5{
  background-color: rgb(56 127 2 / 0.05);
}

.bg-succes\/50{
  background-color: rgb(56 127 2 / 0.5);
}

.bg-succes\/60{
  background-color: rgb(56 127 2 / 0.6);
}

.bg-succes\/70{
  background-color: rgb(56 127 2 / 0.7);
}

.bg-succes\/75{
  background-color: rgb(56 127 2 / 0.75);
}

.bg-succes\/80{
  background-color: rgb(56 127 2 / 0.8);
}

.bg-succes\/90{
  background-color: rgb(56 127 2 / 0.9);
}

.bg-succes\/95{
  background-color: rgb(56 127 2 / 0.95);
}

.bg-transparent{
  background-color: transparent;
}

.bg-transparent\/0{
  background-color: rgb(0 0 0 / 0);
}

.bg-transparent\/10{
  background-color: rgb(0 0 0 / 0.1);
}

.bg-transparent\/100{
  background-color: rgb(0 0 0 / 1);
}

.bg-transparent\/20{
  background-color: rgb(0 0 0 / 0.2);
}

.bg-transparent\/25{
  background-color: rgb(0 0 0 / 0.25);
}

.bg-transparent\/30{
  background-color: rgb(0 0 0 / 0.3);
}

.bg-transparent\/40{
  background-color: rgb(0 0 0 / 0.4);
}

.bg-transparent\/5{
  background-color: rgb(0 0 0 / 0.05);
}

.bg-transparent\/50{
  background-color: rgb(0 0 0 / 0.5);
}

.bg-transparent\/60{
  background-color: rgb(0 0 0 / 0.6);
}

.bg-transparent\/70{
  background-color: rgb(0 0 0 / 0.7);
}

.bg-transparent\/75{
  background-color: rgb(0 0 0 / 0.75);
}

.bg-transparent\/80{
  background-color: rgb(0 0 0 / 0.8);
}

.bg-transparent\/90{
  background-color: rgb(0 0 0 / 0.9);
}

.bg-transparent\/95{
  background-color: rgb(0 0 0 / 0.95);
}

.bg-usualBeige{
  --tw-bg-opacity: 1;
  background-color: rgb(237 219 195 / var(--tw-bg-opacity));
}

.bg-usualBeige\/0{
  background-color: rgb(237 219 195 / 0);
}

.bg-usualBeige\/10{
  background-color: rgb(237 219 195 / 0.1);
}

.bg-usualBeige\/100{
  background-color: rgb(237 219 195 / 1);
}

.bg-usualBeige\/20{
  background-color: rgb(237 219 195 / 0.2);
}

.bg-usualBeige\/25{
  background-color: rgb(237 219 195 / 0.25);
}

.bg-usualBeige\/30{
  background-color: rgb(237 219 195 / 0.3);
}

.bg-usualBeige\/40{
  background-color: rgb(237 219 195 / 0.4);
}

.bg-usualBeige\/5{
  background-color: rgb(237 219 195 / 0.05);
}

.bg-usualBeige\/50{
  background-color: rgb(237 219 195 / 0.5);
}

.bg-usualBeige\/60{
  background-color: rgb(237 219 195 / 0.6);
}

.bg-usualBeige\/70{
  background-color: rgb(237 219 195 / 0.7);
}

.bg-usualBeige\/75{
  background-color: rgb(237 219 195 / 0.75);
}

.bg-usualBeige\/80{
  background-color: rgb(237 219 195 / 0.8);
}

.bg-usualBeige\/90{
  background-color: rgb(237 219 195 / 0.9);
}

.bg-usualBeige\/95{
  background-color: rgb(237 219 195 / 0.95);
}

.bg-usualGreen{
  --tw-bg-opacity: 1;
  background-color: rgb(7 38 7 / var(--tw-bg-opacity));
}

.bg-usualGreen\/0{
  background-color: rgb(7 38 7 / 0);
}

.bg-usualGreen\/10{
  background-color: rgb(7 38 7 / 0.1);
}

.bg-usualGreen\/100{
  background-color: rgb(7 38 7 / 1);
}

.bg-usualGreen\/20{
  background-color: rgb(7 38 7 / 0.2);
}

.bg-usualGreen\/25{
  background-color: rgb(7 38 7 / 0.25);
}

.bg-usualGreen\/30{
  background-color: rgb(7 38 7 / 0.3);
}

.bg-usualGreen\/40{
  background-color: rgb(7 38 7 / 0.4);
}

.bg-usualGreen\/5{
  background-color: rgb(7 38 7 / 0.05);
}

.bg-usualGreen\/50{
  background-color: rgb(7 38 7 / 0.5);
}

.bg-usualGreen\/60{
  background-color: rgb(7 38 7 / 0.6);
}

.bg-usualGreen\/70{
  background-color: rgb(7 38 7 / 0.7);
}

.bg-usualGreen\/75{
  background-color: rgb(7 38 7 / 0.75);
}

.bg-usualGreen\/80{
  background-color: rgb(7 38 7 / 0.8);
}

.bg-usualGreen\/90{
  background-color: rgb(7 38 7 / 0.9);
}

.bg-usualGreen\/95{
  background-color: rgb(7 38 7 / 0.95);
}

.bg-usualTerracotta{
  --tw-bg-opacity: 1;
  background-color: rgb(173 76 47 / var(--tw-bg-opacity));
}

.bg-usualTerracotta\/0{
  background-color: rgb(173 76 47 / 0);
}

.bg-usualTerracotta\/10{
  background-color: rgb(173 76 47 / 0.1);
}

.bg-usualTerracotta\/100{
  background-color: rgb(173 76 47 / 1);
}

.bg-usualTerracotta\/20{
  background-color: rgb(173 76 47 / 0.2);
}

.bg-usualTerracotta\/25{
  background-color: rgb(173 76 47 / 0.25);
}

.bg-usualTerracotta\/30{
  background-color: rgb(173 76 47 / 0.3);
}

.bg-usualTerracotta\/40{
  background-color: rgb(173 76 47 / 0.4);
}

.bg-usualTerracotta\/5{
  background-color: rgb(173 76 47 / 0.05);
}

.bg-usualTerracotta\/50{
  background-color: rgb(173 76 47 / 0.5);
}

.bg-usualTerracotta\/60{
  background-color: rgb(173 76 47 / 0.6);
}

.bg-usualTerracotta\/70{
  background-color: rgb(173 76 47 / 0.7);
}

.bg-usualTerracotta\/75{
  background-color: rgb(173 76 47 / 0.75);
}

.bg-usualTerracotta\/80{
  background-color: rgb(173 76 47 / 0.8);
}

.bg-usualTerracotta\/90{
  background-color: rgb(173 76 47 / 0.9);
}

.bg-usualTerracotta\/95{
  background-color: rgb(173 76 47 / 0.95);
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-white\/0{
  background-color: rgb(255 255 255 / 0);
}

.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/100{
  background-color: rgb(255 255 255 / 1);
}

.bg-white\/20{
  background-color: rgb(255 255 255 / 0.2);
}

.bg-white\/25{
  background-color: rgb(255 255 255 / 0.25);
}

.bg-white\/30{
  background-color: rgb(255 255 255 / 0.3);
}

.bg-white\/40{
  background-color: rgb(255 255 255 / 0.4);
}

.bg-white\/5{
  background-color: rgb(255 255 255 / 0.05);
}

.bg-white\/50{
  background-color: rgb(255 255 255 / 0.5);
}

.bg-white\/60{
  background-color: rgb(255 255 255 / 0.6);
}

.bg-white\/70{
  background-color: rgb(255 255 255 / 0.7);
}

.bg-white\/75{
  background-color: rgb(255 255 255 / 0.75);
}

.bg-white\/80{
  background-color: rgb(255 255 255 / 0.8);
}

.bg-white\/90{
  background-color: rgb(255 255 255 / 0.9);
}

.bg-white\/95{
  background-color: rgb(255 255 255 / 0.95);
}

.bg-yellow{
  --tw-bg-opacity: 1;
  background-color: rgb(240 185 67 / var(--tw-bg-opacity));
}

.bg-yellow\/0{
  background-color: rgb(240 185 67 / 0);
}

.bg-yellow\/10{
  background-color: rgb(240 185 67 / 0.1);
}

.bg-yellow\/100{
  background-color: rgb(240 185 67 / 1);
}

.bg-yellow\/20{
  background-color: rgb(240 185 67 / 0.2);
}

.bg-yellow\/25{
  background-color: rgb(240 185 67 / 0.25);
}

.bg-yellow\/30{
  background-color: rgb(240 185 67 / 0.3);
}

.bg-yellow\/40{
  background-color: rgb(240 185 67 / 0.4);
}

.bg-yellow\/5{
  background-color: rgb(240 185 67 / 0.05);
}

.bg-yellow\/50{
  background-color: rgb(240 185 67 / 0.5);
}

.bg-yellow\/60{
  background-color: rgb(240 185 67 / 0.6);
}

.bg-yellow\/70{
  background-color: rgb(240 185 67 / 0.7);
}

.bg-yellow\/75{
  background-color: rgb(240 185 67 / 0.75);
}

.bg-yellow\/80{
  background-color: rgb(240 185 67 / 0.8);
}

.bg-yellow\/90{
  background-color: rgb(240 185 67 / 0.9);
}

.bg-yellow\/95{
  background-color: rgb(240 185 67 / 0.95);
}

.fill-grey3{
  fill: #D2CDC5;
}

.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}

.p-10{
  padding: 2.5rem;
}

.p-3{
  padding: 0.75rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-8{
  padding: 2rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-7{
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0{
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-20{
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-\[50px\]{
  padding-top: 50px;
  padding-bottom: 50px;
}

.py-\[80px\]{
  padding-top: 80px;
  padding-bottom: 80px;
}

.pb-10{
  padding-bottom: 2.5rem;
}

.pb-2{
  padding-bottom: 0.5rem;
}

.pb-28{
  padding-bottom: 7rem;
}

.pb-3{
  padding-bottom: 0.75rem;
}

.pb-4{
  padding-bottom: 1rem;
}

.pb-5{
  padding-bottom: 1.25rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pb-\[120px\]{
  padding-bottom: 120px;
}

.pb-\[2px\]{
  padding-bottom: 2px;
}

.pb-\[94px\]{
  padding-bottom: 94px;
}

.pl-4{
  padding-left: 1rem;
}

.pl-5{
  padding-left: 1.25rem;
}

.pr-4{
  padding-right: 1rem;
}

.pr-6{
  padding-right: 1.5rem;
}

.pt-10{
  padding-top: 2.5rem;
}

.pt-20{
  padding-top: 5rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-5{
  padding-top: 1.25rem;
}

.pt-7{
  padding-top: 1.75rem;
}

.pt-8{
  padding-top: 2rem;
}

.pt-9{
  padding-top: 2.25rem;
}

.pt-\[calc\(80px-56px\)\]{
  padding-top: calc(80px - 56px);
}

.text-left{
  text-align: left;
}

.text-center{
  text-align: center;
}

.font-body{
  font-family: "Roobert", helvetica, arial, sans-serif;
}

.font-heading{
  font-family: "Moranga", helvetica, arial, sans-serif;
}

.text-2xl{
  font-size: 40px;
  line-height: 1.2;
}

.text-\[9px\]{
  font-size: 9px;
}

.text-base{
  font-size: 16px;
  line-height: 1.5;
}

.text-lg{
  font-size: 24px;
  line-height: 1.2;
}

.text-md{
  font-size: 20px;
  line-height: 1.5;
}

.text-sm{
  font-size: 14px;
  line-height: 1.5;
}

.text-xl{
  font-size: 32px;
  line-height: 1.2;
}

.text-xs{
  font-size: 12px;
  line-height: 1.5;
}

.font-light{
  font-weight: 300;
}

.font-normal{
  font-weight: 400;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.lowercase{
  text-transform: lowercase;
}

.italic{
  font-style: italic;
}

.leading-tight{
  line-height: 1.25;
}

.tracking-widest{
  letter-spacing: 0.1em;
}

.text-DarkTerracotta{
  --tw-text-opacity: 1;
  color: rgb(113 53 35 / var(--tw-text-opacity));
}

.text-DarkTerracotta\/0{
  color: rgb(113 53 35 / 0);
}

.text-DarkTerracotta\/10{
  color: rgb(113 53 35 / 0.1);
}

.text-DarkTerracotta\/100{
  color: rgb(113 53 35 / 1);
}

.text-DarkTerracotta\/20{
  color: rgb(113 53 35 / 0.2);
}

.text-DarkTerracotta\/25{
  color: rgb(113 53 35 / 0.25);
}

.text-DarkTerracotta\/30{
  color: rgb(113 53 35 / 0.3);
}

.text-DarkTerracotta\/40{
  color: rgb(113 53 35 / 0.4);
}

.text-DarkTerracotta\/5{
  color: rgb(113 53 35 / 0.05);
}

.text-DarkTerracotta\/50{
  color: rgb(113 53 35 / 0.5);
}

.text-DarkTerracotta\/60{
  color: rgb(113 53 35 / 0.6);
}

.text-DarkTerracotta\/70{
  color: rgb(113 53 35 / 0.7);
}

.text-DarkTerracotta\/75{
  color: rgb(113 53 35 / 0.75);
}

.text-DarkTerracotta\/80{
  color: rgb(113 53 35 / 0.8);
}

.text-DarkTerracotta\/90{
  color: rgb(113 53 35 / 0.9);
}

.text-DarkTerracotta\/95{
  color: rgb(113 53 35 / 0.95);
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(43 16 9 / var(--tw-text-opacity));
}

.text-black\/0{
  color: rgb(43 16 9 / 0);
}

.text-black\/10{
  color: rgb(43 16 9 / 0.1);
}

.text-black\/100{
  color: rgb(43 16 9 / 1);
}

.text-black\/20{
  color: rgb(43 16 9 / 0.2);
}

.text-black\/25{
  color: rgb(43 16 9 / 0.25);
}

.text-black\/30{
  color: rgb(43 16 9 / 0.3);
}

.text-black\/40{
  color: rgb(43 16 9 / 0.4);
}

.text-black\/5{
  color: rgb(43 16 9 / 0.05);
}

.text-black\/50{
  color: rgb(43 16 9 / 0.5);
}

.text-black\/60{
  color: rgb(43 16 9 / 0.6);
}

.text-black\/70{
  color: rgb(43 16 9 / 0.7);
}

.text-black\/75{
  color: rgb(43 16 9 / 0.75);
}

.text-black\/80{
  color: rgb(43 16 9 / 0.8);
}

.text-black\/90{
  color: rgb(43 16 9 / 0.9);
}

.text-black\/95{
  color: rgb(43 16 9 / 0.95);
}

.text-current{
  color: currentColor;
}

.text-discountDarkGreen{
  --tw-text-opacity: 1;
  color: rgb(28 65 18 / var(--tw-text-opacity));
}

.text-discountDarkGreen\/0{
  color: rgb(28 65 18 / 0);
}

.text-discountDarkGreen\/10{
  color: rgb(28 65 18 / 0.1);
}

.text-discountDarkGreen\/100{
  color: rgb(28 65 18 / 1);
}

.text-discountDarkGreen\/20{
  color: rgb(28 65 18 / 0.2);
}

.text-discountDarkGreen\/25{
  color: rgb(28 65 18 / 0.25);
}

.text-discountDarkGreen\/30{
  color: rgb(28 65 18 / 0.3);
}

.text-discountDarkGreen\/40{
  color: rgb(28 65 18 / 0.4);
}

.text-discountDarkGreen\/5{
  color: rgb(28 65 18 / 0.05);
}

.text-discountDarkGreen\/50{
  color: rgb(28 65 18 / 0.5);
}

.text-discountDarkGreen\/60{
  color: rgb(28 65 18 / 0.6);
}

.text-discountDarkGreen\/70{
  color: rgb(28 65 18 / 0.7);
}

.text-discountDarkGreen\/75{
  color: rgb(28 65 18 / 0.75);
}

.text-discountDarkGreen\/80{
  color: rgb(28 65 18 / 0.8);
}

.text-discountDarkGreen\/90{
  color: rgb(28 65 18 / 0.9);
}

.text-discountDarkGreen\/95{
  color: rgb(28 65 18 / 0.95);
}

.text-discountGreyBlue{
  --tw-text-opacity: 1;
  color: rgb(178 200 221 / var(--tw-text-opacity));
}

.text-discountGreyBlue\/0{
  color: rgb(178 200 221 / 0);
}

.text-discountGreyBlue\/10{
  color: rgb(178 200 221 / 0.1);
}

.text-discountGreyBlue\/100{
  color: rgb(178 200 221 / 1);
}

.text-discountGreyBlue\/20{
  color: rgb(178 200 221 / 0.2);
}

.text-discountGreyBlue\/25{
  color: rgb(178 200 221 / 0.25);
}

.text-discountGreyBlue\/30{
  color: rgb(178 200 221 / 0.3);
}

.text-discountGreyBlue\/40{
  color: rgb(178 200 221 / 0.4);
}

.text-discountGreyBlue\/5{
  color: rgb(178 200 221 / 0.05);
}

.text-discountGreyBlue\/50{
  color: rgb(178 200 221 / 0.5);
}

.text-discountGreyBlue\/60{
  color: rgb(178 200 221 / 0.6);
}

.text-discountGreyBlue\/70{
  color: rgb(178 200 221 / 0.7);
}

.text-discountGreyBlue\/75{
  color: rgb(178 200 221 / 0.75);
}

.text-discountGreyBlue\/80{
  color: rgb(178 200 221 / 0.8);
}

.text-discountGreyBlue\/90{
  color: rgb(178 200 221 / 0.9);
}

.text-discountGreyBlue\/95{
  color: rgb(178 200 221 / 0.95);
}

.text-discountLavandel{
  --tw-text-opacity: 1;
  color: rgb(213 191 249 / var(--tw-text-opacity));
}

.text-discountLavandel\/0{
  color: rgb(213 191 249 / 0);
}

.text-discountLavandel\/10{
  color: rgb(213 191 249 / 0.1);
}

.text-discountLavandel\/100{
  color: rgb(213 191 249 / 1);
}

.text-discountLavandel\/20{
  color: rgb(213 191 249 / 0.2);
}

.text-discountLavandel\/25{
  color: rgb(213 191 249 / 0.25);
}

.text-discountLavandel\/30{
  color: rgb(213 191 249 / 0.3);
}

.text-discountLavandel\/40{
  color: rgb(213 191 249 / 0.4);
}

.text-discountLavandel\/5{
  color: rgb(213 191 249 / 0.05);
}

.text-discountLavandel\/50{
  color: rgb(213 191 249 / 0.5);
}

.text-discountLavandel\/60{
  color: rgb(213 191 249 / 0.6);
}

.text-discountLavandel\/70{
  color: rgb(213 191 249 / 0.7);
}

.text-discountLavandel\/75{
  color: rgb(213 191 249 / 0.75);
}

.text-discountLavandel\/80{
  color: rgb(213 191 249 / 0.8);
}

.text-discountLavandel\/90{
  color: rgb(213 191 249 / 0.9);
}

.text-discountLavandel\/95{
  color: rgb(213 191 249 / 0.95);
}

.text-discountLimeGreen{
  --tw-text-opacity: 1;
  color: rgb(233 255 106 / var(--tw-text-opacity));
}

.text-discountLimeGreen\/0{
  color: rgb(233 255 106 / 0);
}

.text-discountLimeGreen\/10{
  color: rgb(233 255 106 / 0.1);
}

.text-discountLimeGreen\/100{
  color: rgb(233 255 106 / 1);
}

.text-discountLimeGreen\/20{
  color: rgb(233 255 106 / 0.2);
}

.text-discountLimeGreen\/25{
  color: rgb(233 255 106 / 0.25);
}

.text-discountLimeGreen\/30{
  color: rgb(233 255 106 / 0.3);
}

.text-discountLimeGreen\/40{
  color: rgb(233 255 106 / 0.4);
}

.text-discountLimeGreen\/5{
  color: rgb(233 255 106 / 0.05);
}

.text-discountLimeGreen\/50{
  color: rgb(233 255 106 / 0.5);
}

.text-discountLimeGreen\/60{
  color: rgb(233 255 106 / 0.6);
}

.text-discountLimeGreen\/70{
  color: rgb(233 255 106 / 0.7);
}

.text-discountLimeGreen\/75{
  color: rgb(233 255 106 / 0.75);
}

.text-discountLimeGreen\/80{
  color: rgb(233 255 106 / 0.8);
}

.text-discountLimeGreen\/90{
  color: rgb(233 255 106 / 0.9);
}

.text-discountLimeGreen\/95{
  color: rgb(233 255 106 / 0.95);
}

.text-discountOliveGreen{
  --tw-text-opacity: 1;
  color: rgb(195 202 171 / var(--tw-text-opacity));
}

.text-discountOliveGreen\/0{
  color: rgb(195 202 171 / 0);
}

.text-discountOliveGreen\/10{
  color: rgb(195 202 171 / 0.1);
}

.text-discountOliveGreen\/100{
  color: rgb(195 202 171 / 1);
}

.text-discountOliveGreen\/20{
  color: rgb(195 202 171 / 0.2);
}

.text-discountOliveGreen\/25{
  color: rgb(195 202 171 / 0.25);
}

.text-discountOliveGreen\/30{
  color: rgb(195 202 171 / 0.3);
}

.text-discountOliveGreen\/40{
  color: rgb(195 202 171 / 0.4);
}

.text-discountOliveGreen\/5{
  color: rgb(195 202 171 / 0.05);
}

.text-discountOliveGreen\/50{
  color: rgb(195 202 171 / 0.5);
}

.text-discountOliveGreen\/60{
  color: rgb(195 202 171 / 0.6);
}

.text-discountOliveGreen\/70{
  color: rgb(195 202 171 / 0.7);
}

.text-discountOliveGreen\/75{
  color: rgb(195 202 171 / 0.75);
}

.text-discountOliveGreen\/80{
  color: rgb(195 202 171 / 0.8);
}

.text-discountOliveGreen\/90{
  color: rgb(195 202 171 / 0.9);
}

.text-discountOliveGreen\/95{
  color: rgb(195 202 171 / 0.95);
}

.text-discountSalmon{
  --tw-text-opacity: 1;
  color: rgb(255 171 123 / var(--tw-text-opacity));
}

.text-discountSalmon\/0{
  color: rgb(255 171 123 / 0);
}

.text-discountSalmon\/10{
  color: rgb(255 171 123 / 0.1);
}

.text-discountSalmon\/100{
  color: rgb(255 171 123 / 1);
}

.text-discountSalmon\/20{
  color: rgb(255 171 123 / 0.2);
}

.text-discountSalmon\/25{
  color: rgb(255 171 123 / 0.25);
}

.text-discountSalmon\/30{
  color: rgb(255 171 123 / 0.3);
}

.text-discountSalmon\/40{
  color: rgb(255 171 123 / 0.4);
}

.text-discountSalmon\/5{
  color: rgb(255 171 123 / 0.05);
}

.text-discountSalmon\/50{
  color: rgb(255 171 123 / 0.5);
}

.text-discountSalmon\/60{
  color: rgb(255 171 123 / 0.6);
}

.text-discountSalmon\/70{
  color: rgb(255 171 123 / 0.7);
}

.text-discountSalmon\/75{
  color: rgb(255 171 123 / 0.75);
}

.text-discountSalmon\/80{
  color: rgb(255 171 123 / 0.8);
}

.text-discountSalmon\/90{
  color: rgb(255 171 123 / 0.9);
}

.text-discountSalmon\/95{
  color: rgb(255 171 123 / 0.95);
}

.text-discountWineRed{
  --tw-text-opacity: 1;
  color: rgb(107 0 64 / var(--tw-text-opacity));
}

.text-discountWineRed\/0{
  color: rgb(107 0 64 / 0);
}

.text-discountWineRed\/10{
  color: rgb(107 0 64 / 0.1);
}

.text-discountWineRed\/100{
  color: rgb(107 0 64 / 1);
}

.text-discountWineRed\/20{
  color: rgb(107 0 64 / 0.2);
}

.text-discountWineRed\/25{
  color: rgb(107 0 64 / 0.25);
}

.text-discountWineRed\/30{
  color: rgb(107 0 64 / 0.3);
}

.text-discountWineRed\/40{
  color: rgb(107 0 64 / 0.4);
}

.text-discountWineRed\/5{
  color: rgb(107 0 64 / 0.05);
}

.text-discountWineRed\/50{
  color: rgb(107 0 64 / 0.5);
}

.text-discountWineRed\/60{
  color: rgb(107 0 64 / 0.6);
}

.text-discountWineRed\/70{
  color: rgb(107 0 64 / 0.7);
}

.text-discountWineRed\/75{
  color: rgb(107 0 64 / 0.75);
}

.text-discountWineRed\/80{
  color: rgb(107 0 64 / 0.8);
}

.text-discountWineRed\/90{
  color: rgb(107 0 64 / 0.9);
}

.text-discountWineRed\/95{
  color: rgb(107 0 64 / 0.95);
}

.text-error{
  --tw-text-opacity: 1;
  color: rgb(214 21 21 / var(--tw-text-opacity));
}

.text-error\/0{
  color: rgb(214 21 21 / 0);
}

.text-error\/10{
  color: rgb(214 21 21 / 0.1);
}

.text-error\/100{
  color: rgb(214 21 21 / 1);
}

.text-error\/20{
  color: rgb(214 21 21 / 0.2);
}

.text-error\/25{
  color: rgb(214 21 21 / 0.25);
}

.text-error\/30{
  color: rgb(214 21 21 / 0.3);
}

.text-error\/40{
  color: rgb(214 21 21 / 0.4);
}

.text-error\/5{
  color: rgb(214 21 21 / 0.05);
}

.text-error\/50{
  color: rgb(214 21 21 / 0.5);
}

.text-error\/60{
  color: rgb(214 21 21 / 0.6);
}

.text-error\/70{
  color: rgb(214 21 21 / 0.7);
}

.text-error\/75{
  color: rgb(214 21 21 / 0.75);
}

.text-error\/80{
  color: rgb(214 21 21 / 0.8);
}

.text-error\/90{
  color: rgb(214 21 21 / 0.9);
}

.text-error\/95{
  color: rgb(214 21 21 / 0.95);
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}

.text-green{
  --tw-text-opacity: 1;
  color: rgb(90 111 74 / var(--tw-text-opacity));
}

.text-green\/0{
  color: rgb(90 111 74 / 0);
}

.text-green\/10{
  color: rgb(90 111 74 / 0.1);
}

.text-green\/100{
  color: rgb(90 111 74 / 1);
}

.text-green\/20{
  color: rgb(90 111 74 / 0.2);
}

.text-green\/25{
  color: rgb(90 111 74 / 0.25);
}

.text-green\/30{
  color: rgb(90 111 74 / 0.3);
}

.text-green\/40{
  color: rgb(90 111 74 / 0.4);
}

.text-green\/5{
  color: rgb(90 111 74 / 0.05);
}

.text-green\/50{
  color: rgb(90 111 74 / 0.5);
}

.text-green\/60{
  color: rgb(90 111 74 / 0.6);
}

.text-green\/70{
  color: rgb(90 111 74 / 0.7);
}

.text-green\/75{
  color: rgb(90 111 74 / 0.75);
}

.text-green\/80{
  color: rgb(90 111 74 / 0.8);
}

.text-green\/90{
  color: rgb(90 111 74 / 0.9);
}

.text-green\/95{
  color: rgb(90 111 74 / 0.95);
}

.text-grey1{
  --tw-text-opacity: 1;
  color: rgb(247 245 242 / var(--tw-text-opacity));
}

.text-grey1\/0{
  color: rgb(247 245 242 / 0);
}

.text-grey1\/10{
  color: rgb(247 245 242 / 0.1);
}

.text-grey1\/100{
  color: rgb(247 245 242 / 1);
}

.text-grey1\/20{
  color: rgb(247 245 242 / 0.2);
}

.text-grey1\/25{
  color: rgb(247 245 242 / 0.25);
}

.text-grey1\/30{
  color: rgb(247 245 242 / 0.3);
}

.text-grey1\/40{
  color: rgb(247 245 242 / 0.4);
}

.text-grey1\/5{
  color: rgb(247 245 242 / 0.05);
}

.text-grey1\/50{
  color: rgb(247 245 242 / 0.5);
}

.text-grey1\/60{
  color: rgb(247 245 242 / 0.6);
}

.text-grey1\/70{
  color: rgb(247 245 242 / 0.7);
}

.text-grey1\/75{
  color: rgb(247 245 242 / 0.75);
}

.text-grey1\/80{
  color: rgb(247 245 242 / 0.8);
}

.text-grey1\/90{
  color: rgb(247 245 242 / 0.9);
}

.text-grey1\/95{
  color: rgb(247 245 242 / 0.95);
}

.text-grey2{
  --tw-text-opacity: 1;
  color: rgb(242 236 228 / var(--tw-text-opacity));
}

.text-grey2\/0{
  color: rgb(242 236 228 / 0);
}

.text-grey2\/10{
  color: rgb(242 236 228 / 0.1);
}

.text-grey2\/100{
  color: rgb(242 236 228 / 1);
}

.text-grey2\/20{
  color: rgb(242 236 228 / 0.2);
}

.text-grey2\/25{
  color: rgb(242 236 228 / 0.25);
}

.text-grey2\/30{
  color: rgb(242 236 228 / 0.3);
}

.text-grey2\/40{
  color: rgb(242 236 228 / 0.4);
}

.text-grey2\/5{
  color: rgb(242 236 228 / 0.05);
}

.text-grey2\/50{
  color: rgb(242 236 228 / 0.5);
}

.text-grey2\/60{
  color: rgb(242 236 228 / 0.6);
}

.text-grey2\/70{
  color: rgb(242 236 228 / 0.7);
}

.text-grey2\/75{
  color: rgb(242 236 228 / 0.75);
}

.text-grey2\/80{
  color: rgb(242 236 228 / 0.8);
}

.text-grey2\/90{
  color: rgb(242 236 228 / 0.9);
}

.text-grey2\/95{
  color: rgb(242 236 228 / 0.95);
}

.text-grey3{
  --tw-text-opacity: 1;
  color: rgb(210 205 197 / var(--tw-text-opacity));
}

.text-grey3\/0{
  color: rgb(210 205 197 / 0);
}

.text-grey3\/10{
  color: rgb(210 205 197 / 0.1);
}

.text-grey3\/100{
  color: rgb(210 205 197 / 1);
}

.text-grey3\/20{
  color: rgb(210 205 197 / 0.2);
}

.text-grey3\/25{
  color: rgb(210 205 197 / 0.25);
}

.text-grey3\/30{
  color: rgb(210 205 197 / 0.3);
}

.text-grey3\/40{
  color: rgb(210 205 197 / 0.4);
}

.text-grey3\/5{
  color: rgb(210 205 197 / 0.05);
}

.text-grey3\/50{
  color: rgb(210 205 197 / 0.5);
}

.text-grey3\/60{
  color: rgb(210 205 197 / 0.6);
}

.text-grey3\/70{
  color: rgb(210 205 197 / 0.7);
}

.text-grey3\/75{
  color: rgb(210 205 197 / 0.75);
}

.text-grey3\/80{
  color: rgb(210 205 197 / 0.8);
}

.text-grey3\/90{
  color: rgb(210 205 197 / 0.9);
}

.text-grey3\/95{
  color: rgb(210 205 197 / 0.95);
}

.text-grey4{
  --tw-text-opacity: 1;
  color: rgb(153 139 129 / var(--tw-text-opacity));
}

.text-grey4\/0{
  color: rgb(153 139 129 / 0);
}

.text-grey4\/10{
  color: rgb(153 139 129 / 0.1);
}

.text-grey4\/100{
  color: rgb(153 139 129 / 1);
}

.text-grey4\/20{
  color: rgb(153 139 129 / 0.2);
}

.text-grey4\/25{
  color: rgb(153 139 129 / 0.25);
}

.text-grey4\/30{
  color: rgb(153 139 129 / 0.3);
}

.text-grey4\/40{
  color: rgb(153 139 129 / 0.4);
}

.text-grey4\/5{
  color: rgb(153 139 129 / 0.05);
}

.text-grey4\/50{
  color: rgb(153 139 129 / 0.5);
}

.text-grey4\/60{
  color: rgb(153 139 129 / 0.6);
}

.text-grey4\/70{
  color: rgb(153 139 129 / 0.7);
}

.text-grey4\/75{
  color: rgb(153 139 129 / 0.75);
}

.text-grey4\/80{
  color: rgb(153 139 129 / 0.8);
}

.text-grey4\/90{
  color: rgb(153 139 129 / 0.9);
}

.text-grey4\/95{
  color: rgb(153 139 129 / 0.95);
}

.text-grey5{
  --tw-text-opacity: 1;
  color: rgb(97 79 67 / var(--tw-text-opacity));
}

.text-grey5\/0{
  color: rgb(97 79 67 / 0);
}

.text-grey5\/10{
  color: rgb(97 79 67 / 0.1);
}

.text-grey5\/100{
  color: rgb(97 79 67 / 1);
}

.text-grey5\/20{
  color: rgb(97 79 67 / 0.2);
}

.text-grey5\/25{
  color: rgb(97 79 67 / 0.25);
}

.text-grey5\/30{
  color: rgb(97 79 67 / 0.3);
}

.text-grey5\/40{
  color: rgb(97 79 67 / 0.4);
}

.text-grey5\/5{
  color: rgb(97 79 67 / 0.05);
}

.text-grey5\/50{
  color: rgb(97 79 67 / 0.5);
}

.text-grey5\/60{
  color: rgb(97 79 67 / 0.6);
}

.text-grey5\/70{
  color: rgb(97 79 67 / 0.7);
}

.text-grey5\/75{
  color: rgb(97 79 67 / 0.75);
}

.text-grey5\/80{
  color: rgb(97 79 67 / 0.8);
}

.text-grey5\/90{
  color: rgb(97 79 67 / 0.9);
}

.text-grey5\/95{
  color: rgb(97 79 67 / 0.95);
}

.text-grey6{
  --tw-text-opacity: 1;
  color: rgb(71 49 40 / var(--tw-text-opacity));
}

.text-grey6\/0{
  color: rgb(71 49 40 / 0);
}

.text-grey6\/10{
  color: rgb(71 49 40 / 0.1);
}

.text-grey6\/100{
  color: rgb(71 49 40 / 1);
}

.text-grey6\/20{
  color: rgb(71 49 40 / 0.2);
}

.text-grey6\/25{
  color: rgb(71 49 40 / 0.25);
}

.text-grey6\/30{
  color: rgb(71 49 40 / 0.3);
}

.text-grey6\/40{
  color: rgb(71 49 40 / 0.4);
}

.text-grey6\/5{
  color: rgb(71 49 40 / 0.05);
}

.text-grey6\/50{
  color: rgb(71 49 40 / 0.5);
}

.text-grey6\/60{
  color: rgb(71 49 40 / 0.6);
}

.text-grey6\/70{
  color: rgb(71 49 40 / 0.7);
}

.text-grey6\/75{
  color: rgb(71 49 40 / 0.75);
}

.text-grey6\/80{
  color: rgb(71 49 40 / 0.8);
}

.text-grey6\/90{
  color: rgb(71 49 40 / 0.9);
}

.text-grey6\/95{
  color: rgb(71 49 40 / 0.95);
}

.text-grey7{
  --tw-text-opacity: 1;
  color: rgb(64 40 34 / var(--tw-text-opacity));
}

.text-grey7\/0{
  color: rgb(64 40 34 / 0);
}

.text-grey7\/10{
  color: rgb(64 40 34 / 0.1);
}

.text-grey7\/100{
  color: rgb(64 40 34 / 1);
}

.text-grey7\/20{
  color: rgb(64 40 34 / 0.2);
}

.text-grey7\/25{
  color: rgb(64 40 34 / 0.25);
}

.text-grey7\/30{
  color: rgb(64 40 34 / 0.3);
}

.text-grey7\/40{
  color: rgb(64 40 34 / 0.4);
}

.text-grey7\/5{
  color: rgb(64 40 34 / 0.05);
}

.text-grey7\/50{
  color: rgb(64 40 34 / 0.5);
}

.text-grey7\/60{
  color: rgb(64 40 34 / 0.6);
}

.text-grey7\/70{
  color: rgb(64 40 34 / 0.7);
}

.text-grey7\/75{
  color: rgb(64 40 34 / 0.75);
}

.text-grey7\/80{
  color: rgb(64 40 34 / 0.8);
}

.text-grey7\/90{
  color: rgb(64 40 34 / 0.9);
}

.text-grey7\/95{
  color: rgb(64 40 34 / 0.95);
}

.text-lightMoss{
  --tw-text-opacity: 1;
  color: rgb(239 245 226 / var(--tw-text-opacity));
}

.text-lightMoss\/0{
  color: rgb(239 245 226 / 0);
}

.text-lightMoss\/10{
  color: rgb(239 245 226 / 0.1);
}

.text-lightMoss\/100{
  color: rgb(239 245 226 / 1);
}

.text-lightMoss\/20{
  color: rgb(239 245 226 / 0.2);
}

.text-lightMoss\/25{
  color: rgb(239 245 226 / 0.25);
}

.text-lightMoss\/30{
  color: rgb(239 245 226 / 0.3);
}

.text-lightMoss\/40{
  color: rgb(239 245 226 / 0.4);
}

.text-lightMoss\/5{
  color: rgb(239 245 226 / 0.05);
}

.text-lightMoss\/50{
  color: rgb(239 245 226 / 0.5);
}

.text-lightMoss\/60{
  color: rgb(239 245 226 / 0.6);
}

.text-lightMoss\/70{
  color: rgb(239 245 226 / 0.7);
}

.text-lightMoss\/75{
  color: rgb(239 245 226 / 0.75);
}

.text-lightMoss\/80{
  color: rgb(239 245 226 / 0.8);
}

.text-lightMoss\/90{
  color: rgb(239 245 226 / 0.9);
}

.text-lightMoss\/95{
  color: rgb(239 245 226 / 0.95);
}

.text-moss{
  --tw-text-opacity: 1;
  color: rgb(192 203 167 / var(--tw-text-opacity));
}

.text-moss\/0{
  color: rgb(192 203 167 / 0);
}

.text-moss\/10{
  color: rgb(192 203 167 / 0.1);
}

.text-moss\/100{
  color: rgb(192 203 167 / 1);
}

.text-moss\/20{
  color: rgb(192 203 167 / 0.2);
}

.text-moss\/25{
  color: rgb(192 203 167 / 0.25);
}

.text-moss\/30{
  color: rgb(192 203 167 / 0.3);
}

.text-moss\/40{
  color: rgb(192 203 167 / 0.4);
}

.text-moss\/5{
  color: rgb(192 203 167 / 0.05);
}

.text-moss\/50{
  color: rgb(192 203 167 / 0.5);
}

.text-moss\/60{
  color: rgb(192 203 167 / 0.6);
}

.text-moss\/70{
  color: rgb(192 203 167 / 0.7);
}

.text-moss\/75{
  color: rgb(192 203 167 / 0.75);
}

.text-moss\/80{
  color: rgb(192 203 167 / 0.8);
}

.text-moss\/90{
  color: rgb(192 203 167 / 0.9);
}

.text-moss\/95{
  color: rgb(192 203 167 / 0.95);
}

.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}

.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity));
}

.text-salmon{
  --tw-text-opacity: 1;
  color: rgb(242 153 126 / var(--tw-text-opacity));
}

.text-salmon\/0{
  color: rgb(242 153 126 / 0);
}

.text-salmon\/10{
  color: rgb(242 153 126 / 0.1);
}

.text-salmon\/100{
  color: rgb(242 153 126 / 1);
}

.text-salmon\/20{
  color: rgb(242 153 126 / 0.2);
}

.text-salmon\/25{
  color: rgb(242 153 126 / 0.25);
}

.text-salmon\/30{
  color: rgb(242 153 126 / 0.3);
}

.text-salmon\/40{
  color: rgb(242 153 126 / 0.4);
}

.text-salmon\/5{
  color: rgb(242 153 126 / 0.05);
}

.text-salmon\/50{
  color: rgb(242 153 126 / 0.5);
}

.text-salmon\/60{
  color: rgb(242 153 126 / 0.6);
}

.text-salmon\/70{
  color: rgb(242 153 126 / 0.7);
}

.text-salmon\/75{
  color: rgb(242 153 126 / 0.75);
}

.text-salmon\/80{
  color: rgb(242 153 126 / 0.8);
}

.text-salmon\/90{
  color: rgb(242 153 126 / 0.9);
}

.text-salmon\/95{
  color: rgb(242 153 126 / 0.95);
}

.text-succes{
  --tw-text-opacity: 1;
  color: rgb(56 127 2 / var(--tw-text-opacity));
}

.text-succes\/0{
  color: rgb(56 127 2 / 0);
}

.text-succes\/10{
  color: rgb(56 127 2 / 0.1);
}

.text-succes\/100{
  color: rgb(56 127 2 / 1);
}

.text-succes\/20{
  color: rgb(56 127 2 / 0.2);
}

.text-succes\/25{
  color: rgb(56 127 2 / 0.25);
}

.text-succes\/30{
  color: rgb(56 127 2 / 0.3);
}

.text-succes\/40{
  color: rgb(56 127 2 / 0.4);
}

.text-succes\/5{
  color: rgb(56 127 2 / 0.05);
}

.text-succes\/50{
  color: rgb(56 127 2 / 0.5);
}

.text-succes\/60{
  color: rgb(56 127 2 / 0.6);
}

.text-succes\/70{
  color: rgb(56 127 2 / 0.7);
}

.text-succes\/75{
  color: rgb(56 127 2 / 0.75);
}

.text-succes\/80{
  color: rgb(56 127 2 / 0.8);
}

.text-succes\/90{
  color: rgb(56 127 2 / 0.9);
}

.text-succes\/95{
  color: rgb(56 127 2 / 0.95);
}

.text-transparent{
  color: transparent;
}

.text-transparent\/0{
  color: rgb(0 0 0 / 0);
}

.text-transparent\/10{
  color: rgb(0 0 0 / 0.1);
}

.text-transparent\/100{
  color: rgb(0 0 0 / 1);
}

.text-transparent\/20{
  color: rgb(0 0 0 / 0.2);
}

.text-transparent\/25{
  color: rgb(0 0 0 / 0.25);
}

.text-transparent\/30{
  color: rgb(0 0 0 / 0.3);
}

.text-transparent\/40{
  color: rgb(0 0 0 / 0.4);
}

.text-transparent\/5{
  color: rgb(0 0 0 / 0.05);
}

.text-transparent\/50{
  color: rgb(0 0 0 / 0.5);
}

.text-transparent\/60{
  color: rgb(0 0 0 / 0.6);
}

.text-transparent\/70{
  color: rgb(0 0 0 / 0.7);
}

.text-transparent\/75{
  color: rgb(0 0 0 / 0.75);
}

.text-transparent\/80{
  color: rgb(0 0 0 / 0.8);
}

.text-transparent\/90{
  color: rgb(0 0 0 / 0.9);
}

.text-transparent\/95{
  color: rgb(0 0 0 / 0.95);
}

.text-usualBeige{
  --tw-text-opacity: 1;
  color: rgb(237 219 195 / var(--tw-text-opacity));
}

.text-usualBeige\/0{
  color: rgb(237 219 195 / 0);
}

.text-usualBeige\/10{
  color: rgb(237 219 195 / 0.1);
}

.text-usualBeige\/100{
  color: rgb(237 219 195 / 1);
}

.text-usualBeige\/20{
  color: rgb(237 219 195 / 0.2);
}

.text-usualBeige\/25{
  color: rgb(237 219 195 / 0.25);
}

.text-usualBeige\/30{
  color: rgb(237 219 195 / 0.3);
}

.text-usualBeige\/40{
  color: rgb(237 219 195 / 0.4);
}

.text-usualBeige\/5{
  color: rgb(237 219 195 / 0.05);
}

.text-usualBeige\/50{
  color: rgb(237 219 195 / 0.5);
}

.text-usualBeige\/60{
  color: rgb(237 219 195 / 0.6);
}

.text-usualBeige\/70{
  color: rgb(237 219 195 / 0.7);
}

.text-usualBeige\/75{
  color: rgb(237 219 195 / 0.75);
}

.text-usualBeige\/80{
  color: rgb(237 219 195 / 0.8);
}

.text-usualBeige\/90{
  color: rgb(237 219 195 / 0.9);
}

.text-usualBeige\/95{
  color: rgb(237 219 195 / 0.95);
}

.text-usualGreen{
  --tw-text-opacity: 1;
  color: rgb(7 38 7 / var(--tw-text-opacity));
}

.text-usualGreen\/0{
  color: rgb(7 38 7 / 0);
}

.text-usualGreen\/10{
  color: rgb(7 38 7 / 0.1);
}

.text-usualGreen\/100{
  color: rgb(7 38 7 / 1);
}

.text-usualGreen\/20{
  color: rgb(7 38 7 / 0.2);
}

.text-usualGreen\/25{
  color: rgb(7 38 7 / 0.25);
}

.text-usualGreen\/30{
  color: rgb(7 38 7 / 0.3);
}

.text-usualGreen\/40{
  color: rgb(7 38 7 / 0.4);
}

.text-usualGreen\/5{
  color: rgb(7 38 7 / 0.05);
}

.text-usualGreen\/50{
  color: rgb(7 38 7 / 0.5);
}

.text-usualGreen\/60{
  color: rgb(7 38 7 / 0.6);
}

.text-usualGreen\/70{
  color: rgb(7 38 7 / 0.7);
}

.text-usualGreen\/75{
  color: rgb(7 38 7 / 0.75);
}

.text-usualGreen\/80{
  color: rgb(7 38 7 / 0.8);
}

.text-usualGreen\/90{
  color: rgb(7 38 7 / 0.9);
}

.text-usualGreen\/95{
  color: rgb(7 38 7 / 0.95);
}

.text-usualTerracotta{
  --tw-text-opacity: 1;
  color: rgb(173 76 47 / var(--tw-text-opacity));
}

.text-usualTerracotta\/0{
  color: rgb(173 76 47 / 0);
}

.text-usualTerracotta\/10{
  color: rgb(173 76 47 / 0.1);
}

.text-usualTerracotta\/100{
  color: rgb(173 76 47 / 1);
}

.text-usualTerracotta\/20{
  color: rgb(173 76 47 / 0.2);
}

.text-usualTerracotta\/25{
  color: rgb(173 76 47 / 0.25);
}

.text-usualTerracotta\/30{
  color: rgb(173 76 47 / 0.3);
}

.text-usualTerracotta\/40{
  color: rgb(173 76 47 / 0.4);
}

.text-usualTerracotta\/5{
  color: rgb(173 76 47 / 0.05);
}

.text-usualTerracotta\/50{
  color: rgb(173 76 47 / 0.5);
}

.text-usualTerracotta\/60{
  color: rgb(173 76 47 / 0.6);
}

.text-usualTerracotta\/70{
  color: rgb(173 76 47 / 0.7);
}

.text-usualTerracotta\/75{
  color: rgb(173 76 47 / 0.75);
}

.text-usualTerracotta\/80{
  color: rgb(173 76 47 / 0.8);
}

.text-usualTerracotta\/90{
  color: rgb(173 76 47 / 0.9);
}

.text-usualTerracotta\/95{
  color: rgb(173 76 47 / 0.95);
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-white\/0{
  color: rgb(255 255 255 / 0);
}

.text-white\/10{
  color: rgb(255 255 255 / 0.1);
}

.text-white\/100{
  color: rgb(255 255 255 / 1);
}

.text-white\/20{
  color: rgb(255 255 255 / 0.2);
}

.text-white\/25{
  color: rgb(255 255 255 / 0.25);
}

.text-white\/30{
  color: rgb(255 255 255 / 0.3);
}

.text-white\/40{
  color: rgb(255 255 255 / 0.4);
}

.text-white\/5{
  color: rgb(255 255 255 / 0.05);
}

.text-white\/50{
  color: rgb(255 255 255 / 0.5);
}

.text-white\/60{
  color: rgb(255 255 255 / 0.6);
}

.text-white\/70{
  color: rgb(255 255 255 / 0.7);
}

.text-white\/75{
  color: rgb(255 255 255 / 0.75);
}

.text-white\/80{
  color: rgb(255 255 255 / 0.8);
}

.text-white\/90{
  color: rgb(255 255 255 / 0.9);
}

.text-white\/95{
  color: rgb(255 255 255 / 0.95);
}

.text-yellow{
  --tw-text-opacity: 1;
  color: rgb(240 185 67 / var(--tw-text-opacity));
}

.text-yellow\/0{
  color: rgb(240 185 67 / 0);
}

.text-yellow\/10{
  color: rgb(240 185 67 / 0.1);
}

.text-yellow\/100{
  color: rgb(240 185 67 / 1);
}

.text-yellow\/20{
  color: rgb(240 185 67 / 0.2);
}

.text-yellow\/25{
  color: rgb(240 185 67 / 0.25);
}

.text-yellow\/30{
  color: rgb(240 185 67 / 0.3);
}

.text-yellow\/40{
  color: rgb(240 185 67 / 0.4);
}

.text-yellow\/5{
  color: rgb(240 185 67 / 0.05);
}

.text-yellow\/50{
  color: rgb(240 185 67 / 0.5);
}

.text-yellow\/60{
  color: rgb(240 185 67 / 0.6);
}

.text-yellow\/70{
  color: rgb(240 185 67 / 0.7);
}

.text-yellow\/75{
  color: rgb(240 185 67 / 0.75);
}

.text-yellow\/80{
  color: rgb(240 185 67 / 0.8);
}

.text-yellow\/90{
  color: rgb(240 185 67 / 0.9);
}

.text-yellow\/95{
  color: rgb(240 185 67 / 0.95);
}

.underline{
  text-decoration-line: underline;
}

.opacity-100{
  opacity: 1;
}

.opacity-40{
  opacity: 0.4;
}

.opacity-50{
  opacity: 0.5;
}

.opacity-75{
  opacity: 0.75;
}

.shadow-3xl{
  --tw-shadow: 0px 8px 32px rgba(43, 16, 9, 0.12);
  --tw-shadow-colored: 0px 8px 32px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-4xl{
  --tw-shadow: 0px 2px 20px rgba(43, 16, 9, 0.15);
  --tw-shadow-colored: 0px 2px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur-lg{
  --tw-blur: blur(16px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.drop-shadow-lg{
  --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.backdrop-blur-lg{
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
          backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}

.transition{
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-100{
  transition-duration: 100ms;
}

.duration-200{
  transition-duration: 200ms;
}

.duration-500{
  transition-duration: 500ms;
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/*Date range picker*/

.easepick-mobile-backdrop {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.3) !important;
  z-index: 9998 !important;
  display: none !important;
}

@media (max-width: 480px) {
  .easepick-wrapper {
    position: fixed !important;
    z-index: 9999;
  }

  .easepick-mobile-backdrop.show {
    display: block !important;
  }
}

.checkbox::after {
  content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.40426 12.8716L6.75781 13.2252L7.46492 12.5181L7.11137 12.1645L6.40426 12.8716ZM2.40426 8.87162L6.40426 12.8716L7.11137 12.1645L3.11137 8.16451L2.40426 8.87162Z' fill='white'/%3E%3Cpath d='M8.40426 10.1645L8.05071 10.5181L8.75781 11.2252L9.11137 10.8716L8.40426 10.1645ZM9.11137 10.8716L15.1114 4.87162L14.4043 4.16451L8.40426 10.1645L9.11137 10.8716Z' fill='white'/%3E%3C/svg%3E%0A") !important;
}

.container-section--image-header + .container-section {
  padding-top: calc(50% + 80px);
}

@media (min-width: 640px) {
  .container-section--image-header + .container-section {
    padding-top: calc(50% + 80px);
  }
}

@media (min-width: 768px) {
  .container-section--image-header + .container-section {
    padding-top: calc(50px + 80px);
  }
}

@media (min-width: 1024px) {
  .container-section--image-header + .container-section {
    padding-top: calc(95px + 80px);
  }
}

@media (min-width: 1280px) {
  .container-section--image-header + .container-section {
    padding-top: calc(135px + 80px);
  }
}

.checkbox::after {
  content: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.40426 12.8716L6.75781 13.2252L7.46492 12.5181L7.11137 12.1645L6.40426 12.8716ZM2.40426 8.87162L6.40426 12.8716L7.11137 12.1645L3.11137 8.16451L2.40426 8.87162Z' fill='white'/%3E%3Cpath d='M8.40426 10.1645L8.05071 10.5181L8.75781 11.2252L9.11137 10.8716L8.40426 10.1645ZM9.11137 10.8716L15.1114 4.87162L14.4043 4.16451L8.40426 10.1645L9.11137 10.8716Z' fill='white'/%3E%3C/svg%3E%0A") !important;
}

/* stylelint-disable */

/*! tailwindcss v3.2.6 | MIT License | https://tailwindcss.com*/

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

.heading-h1{
  font-size: 40px;
  line-height: 1.2;
}

@media (min-width: 1024px){
  .heading-h1{
    font-size: 52px;
    line-height: 1.2;
  }
}

.heading-h2{
  font-size: 32px;
  line-height: 1.2;
}

@media (min-width: 1024px){
  .heading-h2{
    font-size: 40px;
    line-height: 1.2;
  }
}

.heading-h3{
  font-size: 24px;
  line-height: 1.2;
}

@media (min-width: 1024px){
  .heading-h3{
    font-size: 32px;
    line-height: 1.2;
  }
}

.heading-h4{
  font-size: 20px;
  line-height: 1.5;
}

@media (min-width: 1024px){
  .heading-h4{
    font-size: 24px;
    line-height: 1.2;
  }
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

/* stylelint-enable */

.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #AD4C2F;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #AD4C2F transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.text > p + * {
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
}

.text > .heading-h5{
  margin-bottom: 1rem;
  font-family: "Moranga", helvetica, arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  --tw-text-opacity: 1;
  color: rgb(43 16 9 / var(--tw-text-opacity));
}

.text > .text-bold{
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(43 16 9 / var(--tw-text-opacity));
}

.text > .text--unorderd-list {
  padding-right: 50px;
}

.text > .text--unorderd-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  background-color: #614f43;
  border-radius: 50%;
}

.text > .text--unorderd-list li {
  position: relative;
  padding: 0 0 0 20px;
}

.text > .text--two-col-list {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px){
  .text > .text--two-col-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.text > .text--two-col-list li.checkmark {
  position: relative;
  padding: 0 0 0 24px;
}

.text > .text--two-col-list li.checkmark::before {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.40426 12.8716L6.75781 13.2252L7.46492 12.5181L7.11137 12.1645L6.40426 12.8716ZM2.40426 8.87162L6.40426 12.8716L7.11137 12.1645L3.11137 8.16451L2.40426 8.87162Z' fill='currentColor'/%3E%3Cpath d='M8.40426 10.1645L8.05071 10.5181L8.75781 11.2252L9.11137 10.8716L8.40426 10.1645ZM9.11137 10.8716L15.1114 4.87162L14.4043 4.16451L8.40426 10.1645L9.11137 10.8716Z' fill='currentColor'/%3E%3C/svg%3E%0A");
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
}

.toggle-button {
  transform: rotate(180deg);
}

.toggle-button.toggle-button--active {
  transform: rotate(0);
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.sidebar {
  background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6d5d5;
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
}

.top-row ::deep a, .top-row .btn-link {
  white-space: nowrap;
  margin-left: 1.5rem;
}

.top-row a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
  .top-row:not(.auth) {
    display: none;
  }

  .top-row.auth {
    justify-content: space-between;
  }

  .top-row a, .top-row .btn-link {
    margin-left: 0;
  }
}

@media (min-width: 641px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
  }

  .top-row {
    position: sticky;
    top: 0;
    z-index: 1;
  }

  .top-row, article {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
  }
}

.steps-header--booking-bar + .container-section{
  padding-top: calc(80px - 56px);
}

.placeholder\:text-grey4::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(153 139 129 / var(--tw-text-opacity));
}

.placeholder\:text-grey4::placeholder{
  --tw-text-opacity: 1;
  color: rgb(153 139 129 / var(--tw-text-opacity));
}

.placeholder\:opacity-50::-moz-placeholder{
  opacity: 0.5;
}

.placeholder\:opacity-50::placeholder{
  opacity: 0.5;
}

.before\:absolute::before{
  content: var(--tw-content);
  position: absolute;
}

.before\:relative::before{
  content: var(--tw-content);
  position: relative;
}

.before\:-right-\[40px\]::before{
  content: var(--tw-content);
  right: -40px;
}

.before\:-top-4::before{
  content: var(--tw-content);
  top: -1rem;
}

.before\:bottom-0::before{
  content: var(--tw-content);
  bottom: 0px;
}

.before\:left-0::before{
  content: var(--tw-content);
  left: 0px;
}

.before\:right-0::before{
  content: var(--tw-content);
  right: 0px;
}

.before\:top-0::before{
  content: var(--tw-content);
  top: 0px;
}

.before\:top-\[13px\]::before{
  content: var(--tw-content);
  top: 13px;
}

.before\:-z-10::before{
  content: var(--tw-content);
  z-index: -10;
}

.before\:col-span-2::before{
  content: var(--tw-content);
  grid-column: span 2 / span 2;
}

.before\:mt-6::before{
  content: var(--tw-content);
  margin-top: 1.5rem;
}

.before\:block::before{
  content: var(--tw-content);
  display: block;
}

.before\:hidden::before{
  content: var(--tw-content);
  display: none;
}

.before\:h-8::before{
  content: var(--tw-content);
  height: 2rem;
}

.before\:h-\[1px\]::before{
  content: var(--tw-content);
  height: 1px;
}

.before\:h-full::before{
  content: var(--tw-content);
  height: 100%;
}

.before\:w-8::before{
  content: var(--tw-content);
  width: 2rem;
}

.before\:rounded-full::before{
  content: var(--tw-content);
  border-radius: 9999px;
}

.before\:border-t::before{
  content: var(--tw-content);
  border-top-width: 1px;
}

.before\:border-grey3::before{
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(210 205 197 / var(--tw-border-opacity));
}

.before\:\!bg-pureBlack::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1 !important;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity)) !important;
}

.before\:bg-black::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(43 16 9 / var(--tw-bg-opacity));
}

.before\:bg-grey2::before{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(242 236 228 / var(--tw-bg-opacity));
}

.before\:opacity-80::before{
  content: var(--tw-content);
  opacity: 0.8;
}

.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}

.after\:inset-0::after{
  content: var(--tw-content);
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

.after\:-bottom-1::after{
  content: var(--tw-content);
  bottom: -0.25rem;
}

.after\:-left-\[40px\]::after{
  content: var(--tw-content);
  left: -40px;
}

.after\:-right-2::after{
  content: var(--tw-content);
  right: -0.5rem;
}

.after\:-top-4::after{
  content: var(--tw-content);
  top: -1rem;
}

.after\:left-0::after{
  content: var(--tw-content);
  left: 0px;
}

.after\:left-\[29\%\]::after{
  content: var(--tw-content);
  left: 29%;
}

.after\:right-0::after{
  content: var(--tw-content);
  right: 0px;
}

.after\:right-\[40\%\]::after{
  content: var(--tw-content);
  right: 40%;
}

.after\:top-0::after{
  content: var(--tw-content);
  top: 0px;
}

.after\:-z-10::after{
  content: var(--tw-content);
  z-index: -10;
}

.after\:z-0::after{
  content: var(--tw-content);
  z-index: 0;
}

.after\:block::after{
  content: var(--tw-content);
  display: block;
}

.after\:h-10::after{
  content: var(--tw-content);
  height: 2.5rem;
}

.after\:h-5::after{
  content: var(--tw-content);
  height: 1.25rem;
}

.after\:h-52::after{
  content: var(--tw-content);
  height: 13rem;
}

.after\:h-8::after{
  content: var(--tw-content);
  height: 2rem;
}

.after\:h-80::after{
  content: var(--tw-content);
  height: 20rem;
}

.after\:h-\[10px\]::after{
  content: var(--tw-content);
  height: 10px;
}

.after\:h-\[1px\]::after{
  content: var(--tw-content);
  height: 1px;
}

.after\:w-10::after{
  content: var(--tw-content);
  width: 2.5rem;
}

.after\:w-5::after{
  content: var(--tw-content);
  width: 1.25rem;
}

.after\:w-8::after{
  content: var(--tw-content);
  width: 2rem;
}

.after\:w-\[10px\]::after{
  content: var(--tw-content);
  width: 10px;
}

.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}

.after\:-translate-x-full::after{
  content: var(--tw-content);
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:scale-0::after{
  content: var(--tw-content);
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.after\:rounded-full::after{
  content: var(--tw-content);
  border-radius: 9999px;
}

.after\:bg-black::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(43 16 9 / var(--tw-bg-opacity));
}

.after\:bg-current::after{
  content: var(--tw-content);
  background-color: currentColor;
}

.after\:bg-grey2::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(242 236 228 / var(--tw-bg-opacity));
}

.after\:bg-usualGreen::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(7 38 7 / var(--tw-bg-opacity));
}

.after\:bg-usualTerracotta::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(173 76 47 / var(--tw-bg-opacity));
}

.after\:pl-\[1px\]::after{
  content: var(--tw-content);
  padding-left: 1px;
}

.after\:opacity-75::after{
  content: var(--tw-content);
  opacity: 0.75;
}

.after\:transition-all::after{
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:content-\[\'\'\]::after{
  --tw-content: '';
  content: var(--tw-content);
}

.after\:content-\[\'\*\'\]::after{
  --tw-content: '*';
  content: var(--tw-content);
}

.after\:content-\[\\\"\*\\\"\]::after{
  --tw-content: \"*\";
  content: var(--tw-content);
}

.first\:col-span-full:first-child{
  grid-column: 1 / -1;
}

.first\:ml-0:first-child{
  margin-left: 0px;
}

.first\:mt-0:first-child{
  margin-top: 0px;
}

.first\:mt-2:first-child{
  margin-top: 0.5rem;
}

.first\:mt-4:first-child{
  margin-top: 1rem;
}

.first\:mt-6:first-child{
  margin-top: 1.5rem;
}

.checked\:after\:scale-100:checked::after{
  content: var(--tw-content);
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.valid\:border-black:valid{
  --tw-border-opacity: 1;
  border-color: rgb(43 16 9 / var(--tw-border-opacity));
}

.hover\:cursor-pointer:hover{
  cursor: pointer;
}

.hover\:\!bg-DarkTerracotta:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(113 53 35 / var(--tw-bg-opacity)) !important;
}

.hover\:\!bg-highlight2:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(146 224 119 / var(--tw-bg-opacity)) !important;
}

.hover\:bg-black:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(43 16 9 / var(--tw-bg-opacity));
}

.hover\:bg-grey1:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(247 245 242 / var(--tw-bg-opacity));
}

.hover\:bg-highlight2:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(146 224 119 / var(--tw-bg-opacity));
}

.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.hover\:fill-black:hover{
  fill: #2B1009;
}

.hover\:text-black:hover{
  --tw-text-opacity: 1;
  color: rgb(43 16 9 / var(--tw-text-opacity));
}

.hover\:text-usualTerracotta:hover{
  --tw-text-opacity: 1;
  color: rgb(173 76 47 / var(--tw-text-opacity));
}

.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.hover\:after\:translate-x-0:hover::after{
  content: var(--tw-content);
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.focus\:text-DarkTerracotta:focus{
  --tw-text-opacity: 1;
  color: rgb(113 53 35 / var(--tw-text-opacity));
}

.focus\:text-DarkTerracotta\/0:focus{
  color: rgb(113 53 35 / 0);
}

.focus\:text-DarkTerracotta\/10:focus{
  color: rgb(113 53 35 / 0.1);
}

.focus\:text-DarkTerracotta\/100:focus{
  color: rgb(113 53 35 / 1);
}

.focus\:text-DarkTerracotta\/20:focus{
  color: rgb(113 53 35 / 0.2);
}

.focus\:text-DarkTerracotta\/25:focus{
  color: rgb(113 53 35 / 0.25);
}

.focus\:text-DarkTerracotta\/30:focus{
  color: rgb(113 53 35 / 0.3);
}

.focus\:text-DarkTerracotta\/40:focus{
  color: rgb(113 53 35 / 0.4);
}

.focus\:text-DarkTerracotta\/5:focus{
  color: rgb(113 53 35 / 0.05);
}

.focus\:text-DarkTerracotta\/50:focus{
  color: rgb(113 53 35 / 0.5);
}

.focus\:text-DarkTerracotta\/60:focus{
  color: rgb(113 53 35 / 0.6);
}

.focus\:text-DarkTerracotta\/70:focus{
  color: rgb(113 53 35 / 0.7);
}

.focus\:text-DarkTerracotta\/75:focus{
  color: rgb(113 53 35 / 0.75);
}

.focus\:text-DarkTerracotta\/80:focus{
  color: rgb(113 53 35 / 0.8);
}

.focus\:text-DarkTerracotta\/90:focus{
  color: rgb(113 53 35 / 0.9);
}

.focus\:text-DarkTerracotta\/95:focus{
  color: rgb(113 53 35 / 0.95);
}

.focus\:text-black:focus{
  --tw-text-opacity: 1;
  color: rgb(43 16 9 / var(--tw-text-opacity));
}

.focus\:text-black\/0:focus{
  color: rgb(43 16 9 / 0);
}

.focus\:text-black\/10:focus{
  color: rgb(43 16 9 / 0.1);
}

.focus\:text-black\/100:focus{
  color: rgb(43 16 9 / 1);
}

.focus\:text-black\/20:focus{
  color: rgb(43 16 9 / 0.2);
}

.focus\:text-black\/25:focus{
  color: rgb(43 16 9 / 0.25);
}

.focus\:text-black\/30:focus{
  color: rgb(43 16 9 / 0.3);
}

.focus\:text-black\/40:focus{
  color: rgb(43 16 9 / 0.4);
}

.focus\:text-black\/5:focus{
  color: rgb(43 16 9 / 0.05);
}

.focus\:text-black\/50:focus{
  color: rgb(43 16 9 / 0.5);
}

.focus\:text-black\/60:focus{
  color: rgb(43 16 9 / 0.6);
}

.focus\:text-black\/70:focus{
  color: rgb(43 16 9 / 0.7);
}

.focus\:text-black\/75:focus{
  color: rgb(43 16 9 / 0.75);
}

.focus\:text-black\/80:focus{
  color: rgb(43 16 9 / 0.8);
}

.focus\:text-black\/90:focus{
  color: rgb(43 16 9 / 0.9);
}

.focus\:text-black\/95:focus{
  color: rgb(43 16 9 / 0.95);
}

.focus\:text-current:focus{
  color: currentColor;
}

.focus\:text-discountDarkGreen:focus{
  --tw-text-opacity: 1;
  color: rgb(28 65 18 / var(--tw-text-opacity));
}

.focus\:text-discountDarkGreen\/0:focus{
  color: rgb(28 65 18 / 0);
}

.focus\:text-discountDarkGreen\/10:focus{
  color: rgb(28 65 18 / 0.1);
}

.focus\:text-discountDarkGreen\/100:focus{
  color: rgb(28 65 18 / 1);
}

.focus\:text-discountDarkGreen\/20:focus{
  color: rgb(28 65 18 / 0.2);
}

.focus\:text-discountDarkGreen\/25:focus{
  color: rgb(28 65 18 / 0.25);
}

.focus\:text-discountDarkGreen\/30:focus{
  color: rgb(28 65 18 / 0.3);
}

.focus\:text-discountDarkGreen\/40:focus{
  color: rgb(28 65 18 / 0.4);
}

.focus\:text-discountDarkGreen\/5:focus{
  color: rgb(28 65 18 / 0.05);
}

.focus\:text-discountDarkGreen\/50:focus{
  color: rgb(28 65 18 / 0.5);
}

.focus\:text-discountDarkGreen\/60:focus{
  color: rgb(28 65 18 / 0.6);
}

.focus\:text-discountDarkGreen\/70:focus{
  color: rgb(28 65 18 / 0.7);
}

.focus\:text-discountDarkGreen\/75:focus{
  color: rgb(28 65 18 / 0.75);
}

.focus\:text-discountDarkGreen\/80:focus{
  color: rgb(28 65 18 / 0.8);
}

.focus\:text-discountDarkGreen\/90:focus{
  color: rgb(28 65 18 / 0.9);
}

.focus\:text-discountDarkGreen\/95:focus{
  color: rgb(28 65 18 / 0.95);
}

.focus\:text-discountGreyBlue:focus{
  --tw-text-opacity: 1;
  color: rgb(178 200 221 / var(--tw-text-opacity));
}

.focus\:text-discountGreyBlue\/0:focus{
  color: rgb(178 200 221 / 0);
}

.focus\:text-discountGreyBlue\/10:focus{
  color: rgb(178 200 221 / 0.1);
}

.focus\:text-discountGreyBlue\/100:focus{
  color: rgb(178 200 221 / 1);
}

.focus\:text-discountGreyBlue\/20:focus{
  color: rgb(178 200 221 / 0.2);
}

.focus\:text-discountGreyBlue\/25:focus{
  color: rgb(178 200 221 / 0.25);
}

.focus\:text-discountGreyBlue\/30:focus{
  color: rgb(178 200 221 / 0.3);
}

.focus\:text-discountGreyBlue\/40:focus{
  color: rgb(178 200 221 / 0.4);
}

.focus\:text-discountGreyBlue\/5:focus{
  color: rgb(178 200 221 / 0.05);
}

.focus\:text-discountGreyBlue\/50:focus{
  color: rgb(178 200 221 / 0.5);
}

.focus\:text-discountGreyBlue\/60:focus{
  color: rgb(178 200 221 / 0.6);
}

.focus\:text-discountGreyBlue\/70:focus{
  color: rgb(178 200 221 / 0.7);
}

.focus\:text-discountGreyBlue\/75:focus{
  color: rgb(178 200 221 / 0.75);
}

.focus\:text-discountGreyBlue\/80:focus{
  color: rgb(178 200 221 / 0.8);
}

.focus\:text-discountGreyBlue\/90:focus{
  color: rgb(178 200 221 / 0.9);
}

.focus\:text-discountGreyBlue\/95:focus{
  color: rgb(178 200 221 / 0.95);
}

.focus\:text-discountLavandel:focus{
  --tw-text-opacity: 1;
  color: rgb(213 191 249 / var(--tw-text-opacity));
}

.focus\:text-discountLavandel\/0:focus{
  color: rgb(213 191 249 / 0);
}

.focus\:text-discountLavandel\/10:focus{
  color: rgb(213 191 249 / 0.1);
}

.focus\:text-discountLavandel\/100:focus{
  color: rgb(213 191 249 / 1);
}

.focus\:text-discountLavandel\/20:focus{
  color: rgb(213 191 249 / 0.2);
}

.focus\:text-discountLavandel\/25:focus{
  color: rgb(213 191 249 / 0.25);
}

.focus\:text-discountLavandel\/30:focus{
  color: rgb(213 191 249 / 0.3);
}

.focus\:text-discountLavandel\/40:focus{
  color: rgb(213 191 249 / 0.4);
}

.focus\:text-discountLavandel\/5:focus{
  color: rgb(213 191 249 / 0.05);
}

.focus\:text-discountLavandel\/50:focus{
  color: rgb(213 191 249 / 0.5);
}

.focus\:text-discountLavandel\/60:focus{
  color: rgb(213 191 249 / 0.6);
}

.focus\:text-discountLavandel\/70:focus{
  color: rgb(213 191 249 / 0.7);
}

.focus\:text-discountLavandel\/75:focus{
  color: rgb(213 191 249 / 0.75);
}

.focus\:text-discountLavandel\/80:focus{
  color: rgb(213 191 249 / 0.8);
}

.focus\:text-discountLavandel\/90:focus{
  color: rgb(213 191 249 / 0.9);
}

.focus\:text-discountLavandel\/95:focus{
  color: rgb(213 191 249 / 0.95);
}

.focus\:text-discountLimeGreen:focus{
  --tw-text-opacity: 1;
  color: rgb(233 255 106 / var(--tw-text-opacity));
}

.focus\:text-discountLimeGreen\/0:focus{
  color: rgb(233 255 106 / 0);
}

.focus\:text-discountLimeGreen\/10:focus{
  color: rgb(233 255 106 / 0.1);
}

.focus\:text-discountLimeGreen\/100:focus{
  color: rgb(233 255 106 / 1);
}

.focus\:text-discountLimeGreen\/20:focus{
  color: rgb(233 255 106 / 0.2);
}

.focus\:text-discountLimeGreen\/25:focus{
  color: rgb(233 255 106 / 0.25);
}

.focus\:text-discountLimeGreen\/30:focus{
  color: rgb(233 255 106 / 0.3);
}

.focus\:text-discountLimeGreen\/40:focus{
  color: rgb(233 255 106 / 0.4);
}

.focus\:text-discountLimeGreen\/5:focus{
  color: rgb(233 255 106 / 0.05);
}

.focus\:text-discountLimeGreen\/50:focus{
  color: rgb(233 255 106 / 0.5);
}

.focus\:text-discountLimeGreen\/60:focus{
  color: rgb(233 255 106 / 0.6);
}

.focus\:text-discountLimeGreen\/70:focus{
  color: rgb(233 255 106 / 0.7);
}

.focus\:text-discountLimeGreen\/75:focus{
  color: rgb(233 255 106 / 0.75);
}

.focus\:text-discountLimeGreen\/80:focus{
  color: rgb(233 255 106 / 0.8);
}

.focus\:text-discountLimeGreen\/90:focus{
  color: rgb(233 255 106 / 0.9);
}

.focus\:text-discountLimeGreen\/95:focus{
  color: rgb(233 255 106 / 0.95);
}

.focus\:text-discountOliveGreen:focus{
  --tw-text-opacity: 1;
  color: rgb(195 202 171 / var(--tw-text-opacity));
}

.focus\:text-discountOliveGreen\/0:focus{
  color: rgb(195 202 171 / 0);
}

.focus\:text-discountOliveGreen\/10:focus{
  color: rgb(195 202 171 / 0.1);
}

.focus\:text-discountOliveGreen\/100:focus{
  color: rgb(195 202 171 / 1);
}

.focus\:text-discountOliveGreen\/20:focus{
  color: rgb(195 202 171 / 0.2);
}

.focus\:text-discountOliveGreen\/25:focus{
  color: rgb(195 202 171 / 0.25);
}

.focus\:text-discountOliveGreen\/30:focus{
  color: rgb(195 202 171 / 0.3);
}

.focus\:text-discountOliveGreen\/40:focus{
  color: rgb(195 202 171 / 0.4);
}

.focus\:text-discountOliveGreen\/5:focus{
  color: rgb(195 202 171 / 0.05);
}

.focus\:text-discountOliveGreen\/50:focus{
  color: rgb(195 202 171 / 0.5);
}

.focus\:text-discountOliveGreen\/60:focus{
  color: rgb(195 202 171 / 0.6);
}

.focus\:text-discountOliveGreen\/70:focus{
  color: rgb(195 202 171 / 0.7);
}

.focus\:text-discountOliveGreen\/75:focus{
  color: rgb(195 202 171 / 0.75);
}

.focus\:text-discountOliveGreen\/80:focus{
  color: rgb(195 202 171 / 0.8);
}

.focus\:text-discountOliveGreen\/90:focus{
  color: rgb(195 202 171 / 0.9);
}

.focus\:text-discountOliveGreen\/95:focus{
  color: rgb(195 202 171 / 0.95);
}

.focus\:text-discountSalmon:focus{
  --tw-text-opacity: 1;
  color: rgb(255 171 123 / var(--tw-text-opacity));
}

.focus\:text-discountSalmon\/0:focus{
  color: rgb(255 171 123 / 0);
}

.focus\:text-discountSalmon\/10:focus{
  color: rgb(255 171 123 / 0.1);
}

.focus\:text-discountSalmon\/100:focus{
  color: rgb(255 171 123 / 1);
}

.focus\:text-discountSalmon\/20:focus{
  color: rgb(255 171 123 / 0.2);
}

.focus\:text-discountSalmon\/25:focus{
  color: rgb(255 171 123 / 0.25);
}

.focus\:text-discountSalmon\/30:focus{
  color: rgb(255 171 123 / 0.3);
}

.focus\:text-discountSalmon\/40:focus{
  color: rgb(255 171 123 / 0.4);
}

.focus\:text-discountSalmon\/5:focus{
  color: rgb(255 171 123 / 0.05);
}

.focus\:text-discountSalmon\/50:focus{
  color: rgb(255 171 123 / 0.5);
}

.focus\:text-discountSalmon\/60:focus{
  color: rgb(255 171 123 / 0.6);
}

.focus\:text-discountSalmon\/70:focus{
  color: rgb(255 171 123 / 0.7);
}

.focus\:text-discountSalmon\/75:focus{
  color: rgb(255 171 123 / 0.75);
}

.focus\:text-discountSalmon\/80:focus{
  color: rgb(255 171 123 / 0.8);
}

.focus\:text-discountSalmon\/90:focus{
  color: rgb(255 171 123 / 0.9);
}

.focus\:text-discountSalmon\/95:focus{
  color: rgb(255 171 123 / 0.95);
}

.focus\:text-discountWineRed:focus{
  --tw-text-opacity: 1;
  color: rgb(107 0 64 / var(--tw-text-opacity));
}

.focus\:text-discountWineRed\/0:focus{
  color: rgb(107 0 64 / 0);
}

.focus\:text-discountWineRed\/10:focus{
  color: rgb(107 0 64 / 0.1);
}

.focus\:text-discountWineRed\/100:focus{
  color: rgb(107 0 64 / 1);
}

.focus\:text-discountWineRed\/20:focus{
  color: rgb(107 0 64 / 0.2);
}

.focus\:text-discountWineRed\/25:focus{
  color: rgb(107 0 64 / 0.25);
}

.focus\:text-discountWineRed\/30:focus{
  color: rgb(107 0 64 / 0.3);
}

.focus\:text-discountWineRed\/40:focus{
  color: rgb(107 0 64 / 0.4);
}

.focus\:text-discountWineRed\/5:focus{
  color: rgb(107 0 64 / 0.05);
}

.focus\:text-discountWineRed\/50:focus{
  color: rgb(107 0 64 / 0.5);
}

.focus\:text-discountWineRed\/60:focus{
  color: rgb(107 0 64 / 0.6);
}

.focus\:text-discountWineRed\/70:focus{
  color: rgb(107 0 64 / 0.7);
}

.focus\:text-discountWineRed\/75:focus{
  color: rgb(107 0 64 / 0.75);
}

.focus\:text-discountWineRed\/80:focus{
  color: rgb(107 0 64 / 0.8);
}

.focus\:text-discountWineRed\/90:focus{
  color: rgb(107 0 64 / 0.9);
}

.focus\:text-discountWineRed\/95:focus{
  color: rgb(107 0 64 / 0.95);
}

.focus\:text-error:focus{
  --tw-text-opacity: 1;
  color: rgb(214 21 21 / var(--tw-text-opacity));
}

.focus\:text-error\/0:focus{
  color: rgb(214 21 21 / 0);
}

.focus\:text-error\/10:focus{
  color: rgb(214 21 21 / 0.1);
}

.focus\:text-error\/100:focus{
  color: rgb(214 21 21 / 1);
}

.focus\:text-error\/20:focus{
  color: rgb(214 21 21 / 0.2);
}

.focus\:text-error\/25:focus{
  color: rgb(214 21 21 / 0.25);
}

.focus\:text-error\/30:focus{
  color: rgb(214 21 21 / 0.3);
}

.focus\:text-error\/40:focus{
  color: rgb(214 21 21 / 0.4);
}

.focus\:text-error\/5:focus{
  color: rgb(214 21 21 / 0.05);
}

.focus\:text-error\/50:focus{
  color: rgb(214 21 21 / 0.5);
}

.focus\:text-error\/60:focus{
  color: rgb(214 21 21 / 0.6);
}

.focus\:text-error\/70:focus{
  color: rgb(214 21 21 / 0.7);
}

.focus\:text-error\/75:focus{
  color: rgb(214 21 21 / 0.75);
}

.focus\:text-error\/80:focus{
  color: rgb(214 21 21 / 0.8);
}

.focus\:text-error\/90:focus{
  color: rgb(214 21 21 / 0.9);
}

.focus\:text-error\/95:focus{
  color: rgb(214 21 21 / 0.95);
}

.focus\:text-green:focus{
  --tw-text-opacity: 1;
  color: rgb(90 111 74 / var(--tw-text-opacity));
}

.focus\:text-green\/0:focus{
  color: rgb(90 111 74 / 0);
}

.focus\:text-green\/10:focus{
  color: rgb(90 111 74 / 0.1);
}

.focus\:text-green\/100:focus{
  color: rgb(90 111 74 / 1);
}

.focus\:text-green\/20:focus{
  color: rgb(90 111 74 / 0.2);
}

.focus\:text-green\/25:focus{
  color: rgb(90 111 74 / 0.25);
}

.focus\:text-green\/30:focus{
  color: rgb(90 111 74 / 0.3);
}

.focus\:text-green\/40:focus{
  color: rgb(90 111 74 / 0.4);
}

.focus\:text-green\/5:focus{
  color: rgb(90 111 74 / 0.05);
}

.focus\:text-green\/50:focus{
  color: rgb(90 111 74 / 0.5);
}

.focus\:text-green\/60:focus{
  color: rgb(90 111 74 / 0.6);
}

.focus\:text-green\/70:focus{
  color: rgb(90 111 74 / 0.7);
}

.focus\:text-green\/75:focus{
  color: rgb(90 111 74 / 0.75);
}

.focus\:text-green\/80:focus{
  color: rgb(90 111 74 / 0.8);
}

.focus\:text-green\/90:focus{
  color: rgb(90 111 74 / 0.9);
}

.focus\:text-green\/95:focus{
  color: rgb(90 111 74 / 0.95);
}

.focus\:text-grey1:focus{
  --tw-text-opacity: 1;
  color: rgb(247 245 242 / var(--tw-text-opacity));
}

.focus\:text-grey1\/0:focus{
  color: rgb(247 245 242 / 0);
}

.focus\:text-grey1\/10:focus{
  color: rgb(247 245 242 / 0.1);
}

.focus\:text-grey1\/100:focus{
  color: rgb(247 245 242 / 1);
}

.focus\:text-grey1\/20:focus{
  color: rgb(247 245 242 / 0.2);
}

.focus\:text-grey1\/25:focus{
  color: rgb(247 245 242 / 0.25);
}

.focus\:text-grey1\/30:focus{
  color: rgb(247 245 242 / 0.3);
}

.focus\:text-grey1\/40:focus{
  color: rgb(247 245 242 / 0.4);
}

.focus\:text-grey1\/5:focus{
  color: rgb(247 245 242 / 0.05);
}

.focus\:text-grey1\/50:focus{
  color: rgb(247 245 242 / 0.5);
}

.focus\:text-grey1\/60:focus{
  color: rgb(247 245 242 / 0.6);
}

.focus\:text-grey1\/70:focus{
  color: rgb(247 245 242 / 0.7);
}

.focus\:text-grey1\/75:focus{
  color: rgb(247 245 242 / 0.75);
}

.focus\:text-grey1\/80:focus{
  color: rgb(247 245 242 / 0.8);
}

.focus\:text-grey1\/90:focus{
  color: rgb(247 245 242 / 0.9);
}

.focus\:text-grey1\/95:focus{
  color: rgb(247 245 242 / 0.95);
}

.focus\:text-grey2:focus{
  --tw-text-opacity: 1;
  color: rgb(242 236 228 / var(--tw-text-opacity));
}

.focus\:text-grey2\/0:focus{
  color: rgb(242 236 228 / 0);
}

.focus\:text-grey2\/10:focus{
  color: rgb(242 236 228 / 0.1);
}

.focus\:text-grey2\/100:focus{
  color: rgb(242 236 228 / 1);
}

.focus\:text-grey2\/20:focus{
  color: rgb(242 236 228 / 0.2);
}

.focus\:text-grey2\/25:focus{
  color: rgb(242 236 228 / 0.25);
}

.focus\:text-grey2\/30:focus{
  color: rgb(242 236 228 / 0.3);
}

.focus\:text-grey2\/40:focus{
  color: rgb(242 236 228 / 0.4);
}

.focus\:text-grey2\/5:focus{
  color: rgb(242 236 228 / 0.05);
}

.focus\:text-grey2\/50:focus{
  color: rgb(242 236 228 / 0.5);
}

.focus\:text-grey2\/60:focus{
  color: rgb(242 236 228 / 0.6);
}

.focus\:text-grey2\/70:focus{
  color: rgb(242 236 228 / 0.7);
}

.focus\:text-grey2\/75:focus{
  color: rgb(242 236 228 / 0.75);
}

.focus\:text-grey2\/80:focus{
  color: rgb(242 236 228 / 0.8);
}

.focus\:text-grey2\/90:focus{
  color: rgb(242 236 228 / 0.9);
}

.focus\:text-grey2\/95:focus{
  color: rgb(242 236 228 / 0.95);
}

.focus\:text-grey3:focus{
  --tw-text-opacity: 1;
  color: rgb(210 205 197 / var(--tw-text-opacity));
}

.focus\:text-grey3\/0:focus{
  color: rgb(210 205 197 / 0);
}

.focus\:text-grey3\/10:focus{
  color: rgb(210 205 197 / 0.1);
}

.focus\:text-grey3\/100:focus{
  color: rgb(210 205 197 / 1);
}

.focus\:text-grey3\/20:focus{
  color: rgb(210 205 197 / 0.2);
}

.focus\:text-grey3\/25:focus{
  color: rgb(210 205 197 / 0.25);
}

.focus\:text-grey3\/30:focus{
  color: rgb(210 205 197 / 0.3);
}

.focus\:text-grey3\/40:focus{
  color: rgb(210 205 197 / 0.4);
}

.focus\:text-grey3\/5:focus{
  color: rgb(210 205 197 / 0.05);
}

.focus\:text-grey3\/50:focus{
  color: rgb(210 205 197 / 0.5);
}

.focus\:text-grey3\/60:focus{
  color: rgb(210 205 197 / 0.6);
}

.focus\:text-grey3\/70:focus{
  color: rgb(210 205 197 / 0.7);
}

.focus\:text-grey3\/75:focus{
  color: rgb(210 205 197 / 0.75);
}

.focus\:text-grey3\/80:focus{
  color: rgb(210 205 197 / 0.8);
}

.focus\:text-grey3\/90:focus{
  color: rgb(210 205 197 / 0.9);
}

.focus\:text-grey3\/95:focus{
  color: rgb(210 205 197 / 0.95);
}

.focus\:text-grey4:focus{
  --tw-text-opacity: 1;
  color: rgb(153 139 129 / var(--tw-text-opacity));
}

.focus\:text-grey4\/0:focus{
  color: rgb(153 139 129 / 0);
}

.focus\:text-grey4\/10:focus{
  color: rgb(153 139 129 / 0.1);
}

.focus\:text-grey4\/100:focus{
  color: rgb(153 139 129 / 1);
}

.focus\:text-grey4\/20:focus{
  color: rgb(153 139 129 / 0.2);
}

.focus\:text-grey4\/25:focus{
  color: rgb(153 139 129 / 0.25);
}

.focus\:text-grey4\/30:focus{
  color: rgb(153 139 129 / 0.3);
}

.focus\:text-grey4\/40:focus{
  color: rgb(153 139 129 / 0.4);
}

.focus\:text-grey4\/5:focus{
  color: rgb(153 139 129 / 0.05);
}

.focus\:text-grey4\/50:focus{
  color: rgb(153 139 129 / 0.5);
}

.focus\:text-grey4\/60:focus{
  color: rgb(153 139 129 / 0.6);
}

.focus\:text-grey4\/70:focus{
  color: rgb(153 139 129 / 0.7);
}

.focus\:text-grey4\/75:focus{
  color: rgb(153 139 129 / 0.75);
}

.focus\:text-grey4\/80:focus{
  color: rgb(153 139 129 / 0.8);
}

.focus\:text-grey4\/90:focus{
  color: rgb(153 139 129 / 0.9);
}

.focus\:text-grey4\/95:focus{
  color: rgb(153 139 129 / 0.95);
}

.focus\:text-grey5:focus{
  --tw-text-opacity: 1;
  color: rgb(97 79 67 / var(--tw-text-opacity));
}

.focus\:text-grey5\/0:focus{
  color: rgb(97 79 67 / 0);
}

.focus\:text-grey5\/10:focus{
  color: rgb(97 79 67 / 0.1);
}

.focus\:text-grey5\/100:focus{
  color: rgb(97 79 67 / 1);
}

.focus\:text-grey5\/20:focus{
  color: rgb(97 79 67 / 0.2);
}

.focus\:text-grey5\/25:focus{
  color: rgb(97 79 67 / 0.25);
}

.focus\:text-grey5\/30:focus{
  color: rgb(97 79 67 / 0.3);
}

.focus\:text-grey5\/40:focus{
  color: rgb(97 79 67 / 0.4);
}

.focus\:text-grey5\/5:focus{
  color: rgb(97 79 67 / 0.05);
}

.focus\:text-grey5\/50:focus{
  color: rgb(97 79 67 / 0.5);
}

.focus\:text-grey5\/60:focus{
  color: rgb(97 79 67 / 0.6);
}

.focus\:text-grey5\/70:focus{
  color: rgb(97 79 67 / 0.7);
}

.focus\:text-grey5\/75:focus{
  color: rgb(97 79 67 / 0.75);
}

.focus\:text-grey5\/80:focus{
  color: rgb(97 79 67 / 0.8);
}

.focus\:text-grey5\/90:focus{
  color: rgb(97 79 67 / 0.9);
}

.focus\:text-grey5\/95:focus{
  color: rgb(97 79 67 / 0.95);
}

.focus\:text-grey6:focus{
  --tw-text-opacity: 1;
  color: rgb(71 49 40 / var(--tw-text-opacity));
}

.focus\:text-grey6\/0:focus{
  color: rgb(71 49 40 / 0);
}

.focus\:text-grey6\/10:focus{
  color: rgb(71 49 40 / 0.1);
}

.focus\:text-grey6\/100:focus{
  color: rgb(71 49 40 / 1);
}

.focus\:text-grey6\/20:focus{
  color: rgb(71 49 40 / 0.2);
}

.focus\:text-grey6\/25:focus{
  color: rgb(71 49 40 / 0.25);
}

.focus\:text-grey6\/30:focus{
  color: rgb(71 49 40 / 0.3);
}

.focus\:text-grey6\/40:focus{
  color: rgb(71 49 40 / 0.4);
}

.focus\:text-grey6\/5:focus{
  color: rgb(71 49 40 / 0.05);
}

.focus\:text-grey6\/50:focus{
  color: rgb(71 49 40 / 0.5);
}

.focus\:text-grey6\/60:focus{
  color: rgb(71 49 40 / 0.6);
}

.focus\:text-grey6\/70:focus{
  color: rgb(71 49 40 / 0.7);
}

.focus\:text-grey6\/75:focus{
  color: rgb(71 49 40 / 0.75);
}

.focus\:text-grey6\/80:focus{
  color: rgb(71 49 40 / 0.8);
}

.focus\:text-grey6\/90:focus{
  color: rgb(71 49 40 / 0.9);
}

.focus\:text-grey6\/95:focus{
  color: rgb(71 49 40 / 0.95);
}

.focus\:text-grey7:focus{
  --tw-text-opacity: 1;
  color: rgb(64 40 34 / var(--tw-text-opacity));
}

.focus\:text-grey7\/0:focus{
  color: rgb(64 40 34 / 0);
}

.focus\:text-grey7\/10:focus{
  color: rgb(64 40 34 / 0.1);
}

.focus\:text-grey7\/100:focus{
  color: rgb(64 40 34 / 1);
}

.focus\:text-grey7\/20:focus{
  color: rgb(64 40 34 / 0.2);
}

.focus\:text-grey7\/25:focus{
  color: rgb(64 40 34 / 0.25);
}

.focus\:text-grey7\/30:focus{
  color: rgb(64 40 34 / 0.3);
}

.focus\:text-grey7\/40:focus{
  color: rgb(64 40 34 / 0.4);
}

.focus\:text-grey7\/5:focus{
  color: rgb(64 40 34 / 0.05);
}

.focus\:text-grey7\/50:focus{
  color: rgb(64 40 34 / 0.5);
}

.focus\:text-grey7\/60:focus{
  color: rgb(64 40 34 / 0.6);
}

.focus\:text-grey7\/70:focus{
  color: rgb(64 40 34 / 0.7);
}

.focus\:text-grey7\/75:focus{
  color: rgb(64 40 34 / 0.75);
}

.focus\:text-grey7\/80:focus{
  color: rgb(64 40 34 / 0.8);
}

.focus\:text-grey7\/90:focus{
  color: rgb(64 40 34 / 0.9);
}

.focus\:text-grey7\/95:focus{
  color: rgb(64 40 34 / 0.95);
}

.focus\:text-lightMoss:focus{
  --tw-text-opacity: 1;
  color: rgb(239 245 226 / var(--tw-text-opacity));
}

.focus\:text-lightMoss\/0:focus{
  color: rgb(239 245 226 / 0);
}

.focus\:text-lightMoss\/10:focus{
  color: rgb(239 245 226 / 0.1);
}

.focus\:text-lightMoss\/100:focus{
  color: rgb(239 245 226 / 1);
}

.focus\:text-lightMoss\/20:focus{
  color: rgb(239 245 226 / 0.2);
}

.focus\:text-lightMoss\/25:focus{
  color: rgb(239 245 226 / 0.25);
}

.focus\:text-lightMoss\/30:focus{
  color: rgb(239 245 226 / 0.3);
}

.focus\:text-lightMoss\/40:focus{
  color: rgb(239 245 226 / 0.4);
}

.focus\:text-lightMoss\/5:focus{
  color: rgb(239 245 226 / 0.05);
}

.focus\:text-lightMoss\/50:focus{
  color: rgb(239 245 226 / 0.5);
}

.focus\:text-lightMoss\/60:focus{
  color: rgb(239 245 226 / 0.6);
}

.focus\:text-lightMoss\/70:focus{
  color: rgb(239 245 226 / 0.7);
}

.focus\:text-lightMoss\/75:focus{
  color: rgb(239 245 226 / 0.75);
}

.focus\:text-lightMoss\/80:focus{
  color: rgb(239 245 226 / 0.8);
}

.focus\:text-lightMoss\/90:focus{
  color: rgb(239 245 226 / 0.9);
}

.focus\:text-lightMoss\/95:focus{
  color: rgb(239 245 226 / 0.95);
}

.focus\:text-moss:focus{
  --tw-text-opacity: 1;
  color: rgb(192 203 167 / var(--tw-text-opacity));
}

.focus\:text-moss\/0:focus{
  color: rgb(192 203 167 / 0);
}

.focus\:text-moss\/10:focus{
  color: rgb(192 203 167 / 0.1);
}

.focus\:text-moss\/100:focus{
  color: rgb(192 203 167 / 1);
}

.focus\:text-moss\/20:focus{
  color: rgb(192 203 167 / 0.2);
}

.focus\:text-moss\/25:focus{
  color: rgb(192 203 167 / 0.25);
}

.focus\:text-moss\/30:focus{
  color: rgb(192 203 167 / 0.3);
}

.focus\:text-moss\/40:focus{
  color: rgb(192 203 167 / 0.4);
}

.focus\:text-moss\/5:focus{
  color: rgb(192 203 167 / 0.05);
}

.focus\:text-moss\/50:focus{
  color: rgb(192 203 167 / 0.5);
}

.focus\:text-moss\/60:focus{
  color: rgb(192 203 167 / 0.6);
}

.focus\:text-moss\/70:focus{
  color: rgb(192 203 167 / 0.7);
}

.focus\:text-moss\/75:focus{
  color: rgb(192 203 167 / 0.75);
}

.focus\:text-moss\/80:focus{
  color: rgb(192 203 167 / 0.8);
}

.focus\:text-moss\/90:focus{
  color: rgb(192 203 167 / 0.9);
}

.focus\:text-moss\/95:focus{
  color: rgb(192 203 167 / 0.95);
}

.focus\:text-salmon:focus{
  --tw-text-opacity: 1;
  color: rgb(242 153 126 / var(--tw-text-opacity));
}

.focus\:text-salmon\/0:focus{
  color: rgb(242 153 126 / 0);
}

.focus\:text-salmon\/10:focus{
  color: rgb(242 153 126 / 0.1);
}

.focus\:text-salmon\/100:focus{
  color: rgb(242 153 126 / 1);
}

.focus\:text-salmon\/20:focus{
  color: rgb(242 153 126 / 0.2);
}

.focus\:text-salmon\/25:focus{
  color: rgb(242 153 126 / 0.25);
}

.focus\:text-salmon\/30:focus{
  color: rgb(242 153 126 / 0.3);
}

.focus\:text-salmon\/40:focus{
  color: rgb(242 153 126 / 0.4);
}

.focus\:text-salmon\/5:focus{
  color: rgb(242 153 126 / 0.05);
}

.focus\:text-salmon\/50:focus{
  color: rgb(242 153 126 / 0.5);
}

.focus\:text-salmon\/60:focus{
  color: rgb(242 153 126 / 0.6);
}

.focus\:text-salmon\/70:focus{
  color: rgb(242 153 126 / 0.7);
}

.focus\:text-salmon\/75:focus{
  color: rgb(242 153 126 / 0.75);
}

.focus\:text-salmon\/80:focus{
  color: rgb(242 153 126 / 0.8);
}

.focus\:text-salmon\/90:focus{
  color: rgb(242 153 126 / 0.9);
}

.focus\:text-salmon\/95:focus{
  color: rgb(242 153 126 / 0.95);
}

.focus\:text-succes:focus{
  --tw-text-opacity: 1;
  color: rgb(56 127 2 / var(--tw-text-opacity));
}

.focus\:text-succes\/0:focus{
  color: rgb(56 127 2 / 0);
}

.focus\:text-succes\/10:focus{
  color: rgb(56 127 2 / 0.1);
}

.focus\:text-succes\/100:focus{
  color: rgb(56 127 2 / 1);
}

.focus\:text-succes\/20:focus{
  color: rgb(56 127 2 / 0.2);
}

.focus\:text-succes\/25:focus{
  color: rgb(56 127 2 / 0.25);
}

.focus\:text-succes\/30:focus{
  color: rgb(56 127 2 / 0.3);
}

.focus\:text-succes\/40:focus{
  color: rgb(56 127 2 / 0.4);
}

.focus\:text-succes\/5:focus{
  color: rgb(56 127 2 / 0.05);
}

.focus\:text-succes\/50:focus{
  color: rgb(56 127 2 / 0.5);
}

.focus\:text-succes\/60:focus{
  color: rgb(56 127 2 / 0.6);
}

.focus\:text-succes\/70:focus{
  color: rgb(56 127 2 / 0.7);
}

.focus\:text-succes\/75:focus{
  color: rgb(56 127 2 / 0.75);
}

.focus\:text-succes\/80:focus{
  color: rgb(56 127 2 / 0.8);
}

.focus\:text-succes\/90:focus{
  color: rgb(56 127 2 / 0.9);
}

.focus\:text-succes\/95:focus{
  color: rgb(56 127 2 / 0.95);
}

.focus\:text-transparent:focus{
  color: transparent;
}

.focus\:text-transparent\/0:focus{
  color: rgb(0 0 0 / 0);
}

.focus\:text-transparent\/10:focus{
  color: rgb(0 0 0 / 0.1);
}

.focus\:text-transparent\/100:focus{
  color: rgb(0 0 0 / 1);
}

.focus\:text-transparent\/20:focus{
  color: rgb(0 0 0 / 0.2);
}

.focus\:text-transparent\/25:focus{
  color: rgb(0 0 0 / 0.25);
}

.focus\:text-transparent\/30:focus{
  color: rgb(0 0 0 / 0.3);
}

.focus\:text-transparent\/40:focus{
  color: rgb(0 0 0 / 0.4);
}

.focus\:text-transparent\/5:focus{
  color: rgb(0 0 0 / 0.05);
}

.focus\:text-transparent\/50:focus{
  color: rgb(0 0 0 / 0.5);
}

.focus\:text-transparent\/60:focus{
  color: rgb(0 0 0 / 0.6);
}

.focus\:text-transparent\/70:focus{
  color: rgb(0 0 0 / 0.7);
}

.focus\:text-transparent\/75:focus{
  color: rgb(0 0 0 / 0.75);
}

.focus\:text-transparent\/80:focus{
  color: rgb(0 0 0 / 0.8);
}

.focus\:text-transparent\/90:focus{
  color: rgb(0 0 0 / 0.9);
}

.focus\:text-transparent\/95:focus{
  color: rgb(0 0 0 / 0.95);
}

.focus\:text-usualBeige:focus{
  --tw-text-opacity: 1;
  color: rgb(237 219 195 / var(--tw-text-opacity));
}

.focus\:text-usualBeige\/0:focus{
  color: rgb(237 219 195 / 0);
}

.focus\:text-usualBeige\/10:focus{
  color: rgb(237 219 195 / 0.1);
}

.focus\:text-usualBeige\/100:focus{
  color: rgb(237 219 195 / 1);
}

.focus\:text-usualBeige\/20:focus{
  color: rgb(237 219 195 / 0.2);
}

.focus\:text-usualBeige\/25:focus{
  color: rgb(237 219 195 / 0.25);
}

.focus\:text-usualBeige\/30:focus{
  color: rgb(237 219 195 / 0.3);
}

.focus\:text-usualBeige\/40:focus{
  color: rgb(237 219 195 / 0.4);
}

.focus\:text-usualBeige\/5:focus{
  color: rgb(237 219 195 / 0.05);
}

.focus\:text-usualBeige\/50:focus{
  color: rgb(237 219 195 / 0.5);
}

.focus\:text-usualBeige\/60:focus{
  color: rgb(237 219 195 / 0.6);
}

.focus\:text-usualBeige\/70:focus{
  color: rgb(237 219 195 / 0.7);
}

.focus\:text-usualBeige\/75:focus{
  color: rgb(237 219 195 / 0.75);
}

.focus\:text-usualBeige\/80:focus{
  color: rgb(237 219 195 / 0.8);
}

.focus\:text-usualBeige\/90:focus{
  color: rgb(237 219 195 / 0.9);
}

.focus\:text-usualBeige\/95:focus{
  color: rgb(237 219 195 / 0.95);
}

.focus\:text-usualGreen:focus{
  --tw-text-opacity: 1;
  color: rgb(7 38 7 / var(--tw-text-opacity));
}

.focus\:text-usualGreen\/0:focus{
  color: rgb(7 38 7 / 0);
}

.focus\:text-usualGreen\/10:focus{
  color: rgb(7 38 7 / 0.1);
}

.focus\:text-usualGreen\/100:focus{
  color: rgb(7 38 7 / 1);
}

.focus\:text-usualGreen\/20:focus{
  color: rgb(7 38 7 / 0.2);
}

.focus\:text-usualGreen\/25:focus{
  color: rgb(7 38 7 / 0.25);
}

.focus\:text-usualGreen\/30:focus{
  color: rgb(7 38 7 / 0.3);
}

.focus\:text-usualGreen\/40:focus{
  color: rgb(7 38 7 / 0.4);
}

.focus\:text-usualGreen\/5:focus{
  color: rgb(7 38 7 / 0.05);
}

.focus\:text-usualGreen\/50:focus{
  color: rgb(7 38 7 / 0.5);
}

.focus\:text-usualGreen\/60:focus{
  color: rgb(7 38 7 / 0.6);
}

.focus\:text-usualGreen\/70:focus{
  color: rgb(7 38 7 / 0.7);
}

.focus\:text-usualGreen\/75:focus{
  color: rgb(7 38 7 / 0.75);
}

.focus\:text-usualGreen\/80:focus{
  color: rgb(7 38 7 / 0.8);
}

.focus\:text-usualGreen\/90:focus{
  color: rgb(7 38 7 / 0.9);
}

.focus\:text-usualGreen\/95:focus{
  color: rgb(7 38 7 / 0.95);
}

.focus\:text-usualTerracotta:focus{
  --tw-text-opacity: 1;
  color: rgb(173 76 47 / var(--tw-text-opacity));
}

.focus\:text-usualTerracotta\/0:focus{
  color: rgb(173 76 47 / 0);
}

.focus\:text-usualTerracotta\/10:focus{
  color: rgb(173 76 47 / 0.1);
}

.focus\:text-usualTerracotta\/100:focus{
  color: rgb(173 76 47 / 1);
}

.focus\:text-usualTerracotta\/20:focus{
  color: rgb(173 76 47 / 0.2);
}

.focus\:text-usualTerracotta\/25:focus{
  color: rgb(173 76 47 / 0.25);
}

.focus\:text-usualTerracotta\/30:focus{
  color: rgb(173 76 47 / 0.3);
}

.focus\:text-usualTerracotta\/40:focus{
  color: rgb(173 76 47 / 0.4);
}

.focus\:text-usualTerracotta\/5:focus{
  color: rgb(173 76 47 / 0.05);
}

.focus\:text-usualTerracotta\/50:focus{
  color: rgb(173 76 47 / 0.5);
}

.focus\:text-usualTerracotta\/60:focus{
  color: rgb(173 76 47 / 0.6);
}

.focus\:text-usualTerracotta\/70:focus{
  color: rgb(173 76 47 / 0.7);
}

.focus\:text-usualTerracotta\/75:focus{
  color: rgb(173 76 47 / 0.75);
}

.focus\:text-usualTerracotta\/80:focus{
  color: rgb(173 76 47 / 0.8);
}

.focus\:text-usualTerracotta\/90:focus{
  color: rgb(173 76 47 / 0.9);
}

.focus\:text-usualTerracotta\/95:focus{
  color: rgb(173 76 47 / 0.95);
}

.focus\:text-white:focus{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.focus\:text-white\/0:focus{
  color: rgb(255 255 255 / 0);
}

.focus\:text-white\/10:focus{
  color: rgb(255 255 255 / 0.1);
}

.focus\:text-white\/100:focus{
  color: rgb(255 255 255 / 1);
}

.focus\:text-white\/20:focus{
  color: rgb(255 255 255 / 0.2);
}

.focus\:text-white\/25:focus{
  color: rgb(255 255 255 / 0.25);
}

.focus\:text-white\/30:focus{
  color: rgb(255 255 255 / 0.3);
}

.focus\:text-white\/40:focus{
  color: rgb(255 255 255 / 0.4);
}

.focus\:text-white\/5:focus{
  color: rgb(255 255 255 / 0.05);
}

.focus\:text-white\/50:focus{
  color: rgb(255 255 255 / 0.5);
}

.focus\:text-white\/60:focus{
  color: rgb(255 255 255 / 0.6);
}

.focus\:text-white\/70:focus{
  color: rgb(255 255 255 / 0.7);
}

.focus\:text-white\/75:focus{
  color: rgb(255 255 255 / 0.75);
}

.focus\:text-white\/80:focus{
  color: rgb(255 255 255 / 0.8);
}

.focus\:text-white\/90:focus{
  color: rgb(255 255 255 / 0.9);
}

.focus\:text-white\/95:focus{
  color: rgb(255 255 255 / 0.95);
}

.focus\:text-yellow:focus{
  --tw-text-opacity: 1;
  color: rgb(240 185 67 / var(--tw-text-opacity));
}

.focus\:text-yellow\/0:focus{
  color: rgb(240 185 67 / 0);
}

.focus\:text-yellow\/10:focus{
  color: rgb(240 185 67 / 0.1);
}

.focus\:text-yellow\/100:focus{
  color: rgb(240 185 67 / 1);
}

.focus\:text-yellow\/20:focus{
  color: rgb(240 185 67 / 0.2);
}

.focus\:text-yellow\/25:focus{
  color: rgb(240 185 67 / 0.25);
}

.focus\:text-yellow\/30:focus{
  color: rgb(240 185 67 / 0.3);
}

.focus\:text-yellow\/40:focus{
  color: rgb(240 185 67 / 0.4);
}

.focus\:text-yellow\/5:focus{
  color: rgb(240 185 67 / 0.05);
}

.focus\:text-yellow\/50:focus{
  color: rgb(240 185 67 / 0.5);
}

.focus\:text-yellow\/60:focus{
  color: rgb(240 185 67 / 0.6);
}

.focus\:text-yellow\/70:focus{
  color: rgb(240 185 67 / 0.7);
}

.focus\:text-yellow\/75:focus{
  color: rgb(240 185 67 / 0.75);
}

.focus\:text-yellow\/80:focus{
  color: rgb(240 185 67 / 0.8);
}

.focus\:text-yellow\/90:focus{
  color: rgb(240 185 67 / 0.9);
}

.focus\:text-yellow\/95:focus{
  color: rgb(240 185 67 / 0.95);
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}

.disabled\:\!bg-grey3:disabled{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(210 205 197 / var(--tw-bg-opacity)) !important;
}

.disabled\:bg-grey4:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(153 139 129 / var(--tw-bg-opacity));
}

.disabled\:text-grey3:disabled{
  --tw-text-opacity: 1;
  color: rgb(210 205 197 / var(--tw-text-opacity));
}

.disabled\:text-grey5:disabled{
  --tw-text-opacity: 1;
  color: rgb(97 79 67 / var(--tw-text-opacity));
}

.disabled\:opacity-40:disabled{
  opacity: 0.4;
}

.disabled\:hover\:\!bg-highlight:hover:disabled{
  --tw-bg-opacity: 1 !important;
  background-color: rgb(233 255 106 / var(--tw-bg-opacity)) !important;
}

.hover\:disabled\:bg-transparent:disabled:hover{
  background-color: transparent;
}

.hover\:disabled\:text-white:disabled:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.group:hover .group-hover\:visible{
  visibility: visible;
}

.group:hover .group-hover\:block{
  display: block;
}

.group:hover .group-hover\:rotate-0{
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rounded-b-full{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.group:hover .group-hover\:rounded-t-sm{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.group:focus .group-focus\:rounded-b-full{
  border-bottom-right-radius: 9999px;
  border-bottom-left-radius: 9999px;
}

.group:focus .group-focus\:rounded-t-sm{
  border-top-left-radius: 0.125rem;
  border-top-right-radius: 0.125rem;
}

.peer:valid ~ .peer-valid\:block{
  display: block;
}

@media (prefers-reduced-motion: no-preference){
  @keyframes fadeIn{
    0%{
      opacity: 0;
    }

    100%{
      opacity: 1;
    }
  }

  .motion-safe\:animate-fadeIn{
    animation: fadeIn 800ms ease-in forwards;
  }

  @keyframes slideDown{
    0%{
      opacity: 0;
      transform: translateY(-224px);
    }

    100%{
      opacity: 1;
      transform: translateY(0px);
    }
  }

  .motion-safe\:animate-slideDown{
    animation: slideDown 500ms ease-in forwards;
  }
}

@media (min-width: 640px){
  .sm\:\!col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .sm\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .sm\:mt-14{
    margin-top: 3.5rem;
  }

  .sm\:w-fit{
    width: -moz-fit-content;
    width: fit-content;
  }

  .sm\:max-w-fit{
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .sm\:flex-row{
    flex-direction: row;
  }
}

@media (min-width: 768px){
  .md\:invisible{
    visibility: hidden;
  }

  .md\:relative{
    position: relative;
  }

  .md\:-right-8{
    right: -2rem;
  }

  .md\:-top-12{
    top: -3rem;
  }

  .md\:-top-14{
    top: -3.5rem;
  }

  .md\:bottom-auto{
    bottom: auto;
  }

  .md\:left-0{
    left: 0px;
  }

  .md\:left-auto{
    left: auto;
  }

  .md\:right-auto{
    right: auto;
  }

  .md\:top-auto{
    top: auto;
  }

  .md\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .md\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .md\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .md\:col-start-1{
    grid-column-start: 1;
  }

  .md\:col-start-2{
    grid-column-start: 2;
  }

  .md\:col-start-8{
    grid-column-start: 8;
  }

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:mr-6{
    margin-right: 1.5rem;
  }

  .md\:mt-0{
    margin-top: 0px;
  }

  .md\:mt-2{
    margin-top: 0.5rem;
  }

  .md\:mt-3{
    margin-top: 0.75rem;
  }

  .md\:mt-6{
    margin-top: 1.5rem;
  }

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:hidden{
    display: none;
  }

  .md\:h-4{
    height: 1rem;
  }

  .md\:h-\[560px\]{
    height: 560px;
  }

  .md\:h-auto{
    height: auto;
  }

  .md\:w-1\/3{
    width: 33.333333%;
  }

  .md\:w-2\/3{
    width: 66.666667%;
  }

  .md\:w-4{
    width: 1rem;
  }

  .md\:w-52{
    width: 13rem;
  }

  .md\:w-\[296px\]{
    width: 296px;
  }

  .md\:w-\[620px\]{
    width: 620px;
  }

  .md\:w-\[635px\]{
    width: 635px;
  }

  .md\:w-\[initial\]{
    width: initial;
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:w-full{
    width: 100%;
  }

  .md\:max-w-4xl{
    max-width: 56rem;
  }

  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

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

  .md\:items-center{
    align-items: center;
  }

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

  .md\:gap-5{
    gap: 1.25rem;
  }

  .md\:gap-y-0{
    row-gap: 0px;
  }

  .md\:space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:rounded-lg{
    border-radius: 0.5rem;
  }

  .md\:rounded-t-lg{
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .md\:border{
    border-width: 1px;
  }

  .md\:border-0{
    border-width: 0px;
  }

  .md\:border-r{
    border-right-width: 1px;
  }

  .md\:border-grey3{
    --tw-border-opacity: 1;
    border-color: rgb(210 205 197 / var(--tw-border-opacity));
  }

  .md\:bg-black{
    --tw-bg-opacity: 1;
    background-color: rgb(43 16 9 / var(--tw-bg-opacity));
  }

  .md\:bg-transparent{
    background-color: transparent;
  }

  .md\:p-8{
    padding: 2rem;
  }

  .md\:px-4{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-\[120px\]{
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .md\:pb-0{
    padding-bottom: 0px;
  }

  .md\:pb-2{
    padding-bottom: 0.5rem;
  }

  .md\:pb-6{
    padding-bottom: 1.5rem;
  }

  .md\:pb-\[156px\]{
    padding-bottom: 156px;
  }

  .md\:pl-4{
    padding-left: 1rem;
  }

  .md\:pr-4{
    padding-right: 1rem;
  }

  .md\:pt-2{
    padding-top: 0.5rem;
  }

  .md\:pt-4{
    padding-top: 1rem;
  }

  .md\:pt-6{
    padding-top: 1.5rem;
  }

  .md\:text-lg{
    font-size: 24px;
    line-height: 1.2;
  }

  .md\:after\:right-\[40\%\]::after{
    content: var(--tw-content);
    right: 40%;
  }

  .first\:md\:col-span-1:first-child{
    grid-column: span 1 / span 1;
  }

  .md\:hover\:visible:hover{
    visibility: visible;
  }

  .md\:hover\:bg-grey1:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(247 245 242 / var(--tw-bg-opacity));
  }

  .group:hover .md\:group-hover\:bg-grey1{
    --tw-bg-opacity: 1;
    background-color: rgb(247 245 242 / var(--tw-bg-opacity));
  }
}

@media (min-width: 1024px){
  .lg\:relative{
    position: relative;
  }

  .lg\:col-span-10{
    grid-column: span 10 / span 10;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .lg\:col-start-1{
    grid-column-start: 1;
  }

  .lg\:col-start-11{
    grid-column-start: 11;
  }

  .lg\:col-start-2{
    grid-column-start: 2;
  }

  .lg\:col-start-3{
    grid-column-start: 3;
  }

  .lg\:col-start-4{
    grid-column-start: 4;
  }

  .lg\:mt-0{
    margin-top: 0px;
  }

  .lg\:mt-8{
    margin-top: 2rem;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:h-auto{
    height: auto;
  }

  .lg\:max-h-\[20rem\]{
    max-height: 20rem;
  }

  .lg\:max-h-\[30rem\]{
    max-height: 30rem;
  }

  .lg\:w-\[835px\]{
    width: 835px;
  }

  .lg\:max-w-\[728px\]{
    max-width: 728px;
  }

  .lg\:grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:grid-cols-bookingbar{
    grid-template-columns: 190px 150px 150px 150px;
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:gap-x-8{
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }

  .lg\:overflow-auto{
    overflow: auto;
  }

  .lg\:overflow-y-auto{
    overflow-y: auto;
  }

  .lg\:p-0{
    padding: 0px;
  }

  .lg\:p-12{
    padding: 3rem;
  }

  .lg\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .lg\:pb-0{
    padding-bottom: 0px;
  }

  .lg\:pb-12{
    padding-bottom: 3rem;
  }

  .lg\:pl-0{
    padding-left: 0px;
  }

  .lg\:pl-4{
    padding-left: 1rem;
  }

  .lg\:pt-8{
    padding-top: 2rem;
  }

  .lg\:pt-9{
    padding-top: 2.25rem;
  }

  .lg\:shadow-none{
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }

  .lg\:transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }

  .lg\:duration-500{
    transition-duration: 500ms;
  }

  .lg\:ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }

  .lg\:before\:block::before{
    content: var(--tw-content);
    display: block;
  }

  .lg\:after\:right-\[44\%\]::after{
    content: var(--tw-content);
    right: 44%;
  }
}

@media (min-width: 1280px){
  .xl\:flex-row{
    flex-direction: row;
  }

  .xl\:pl-0{
    padding-left: 0px;
  }
}

@media (min-width: 1320px){
  .\32xl\:bottom-6{
    bottom: 1.5rem;
  }

  .\32xl\:top-auto{
    top: auto;
  }

  .\32xl\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .\32xl\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .\32xl\:col-span-6{
    grid-column: span 6 / span 6;
  }

  .\32xl\:col-span-8{
    grid-column: span 8 / span 8;
  }

  .\32xl\:col-start-1{
    grid-column-start: 1;
  }

  .\32xl\:col-start-11{
    grid-column-start: 11;
  }

  .\32xl\:col-start-3{
    grid-column-start: 3;
  }

  .\32xl\:col-start-4{
    grid-column-start: 4;
  }

  .\32xl\:col-start-5{
    grid-column-start: 5;
  }

  .\32xl\:mt-0{
    margin-top: 0px;
  }

  .\32xl\:block{
    display: block;
  }

  .\32xl\:hidden{
    display: none;
  }

  .\32xl\:w-32{
    width: 8rem;
  }

  .\32xl\:w-\[initial\]{
    width: initial;
  }

  .\32xl\:self-end{
    align-self: flex-end;
  }
}
