/* ===============================
=            Choices            =
=============================== */
.choices {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  font-size: 16px;
}
.choices:focus {
  outline: none;
}
.choices:last-child {
  margin-bottom: 0;
}
.choices.is-open {
  overflow: visible;
}
.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #eaeaea;
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
}
.choices.is-disabled .choices__item {
  cursor: not-allowed;
}
.choices [hidden] {
  display: none !important;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}
.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}
.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  margin: 0;
}
.choices[data-type*=select-one] .choices__button {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  padding: 0;
  background-size: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
	color: #000;
}
.choices[data-type*=select-one] .choices__button:hover, .choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}
.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0 0 0 2px #00bcd4;
}
.choices[data-type*=select-one] .choices__item[data-value=""] .choices__button {
  display: none;
}
.choices[data-type*=select-one]::after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}
.choices[data-type*=select-one].is-open::after {
  border-color: transparent transparent #333 transparent;
  margin-top: -7.5px;
}
.choices[data-type*=select-one][dir=rtl]::after {
  left: 11.5px;
  right: auto;
}
.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
  border-radius: 0;
}
.choices[data-type*=select-multiple] .choices__button:hover, .choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #ddd;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}
.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}
.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}
.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}
[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}
.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}
.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00bcd4;
  border: 1px solid #00a5bb;
  color: #fff;
  word-break: break-all;
  box-sizing: border-box;
}
.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}
[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}
.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}
.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown, .choices__list[aria-expanded] {
  visibility: hidden;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  will-change: visibility;
}
.is-active.choices__list--dropdown, .is-active.choices__list[aria-expanded] {
  visibility: visible;
}
.is-open .choices__list--dropdown, .is-open .choices__list[aria-expanded] {
  border-color: #b7b7b7;
}
.is-flipped .choices__list--dropdown, .is-flipped .choices__list[aria-expanded] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}
.choices__list--dropdown .choices__list, .choices__list[aria-expanded] .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}
[dir=rtl] .choices__list--dropdown .choices__item, [dir=rtl] .choices__list[aria-expanded] .choices__item {
  text-align: right;
}
@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable::after, [dir=rtl] .choices__list[aria-expanded] .choices__item--selectable::after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}
.choices__list--dropdown .choices__item--selectable.is-highlighted::after, .choices__list[aria-expanded] .choices__item--selectable.is-highlighted::after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
          user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
          appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}
.choices__input:focus {
  outline: 0;
}
.choices__input::-webkit-search-decoration, .choices__input::-webkit-search-cancel-button, .choices__input::-webkit-search-results-button, .choices__input::-webkit-search-results-decoration {
  display: none;
}
.choices__input::-ms-clear, .choices__input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/* =====  End of Choices  ====== */

.col {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 3rem
}
.flex-grid {
  box-sizing: border-box;
  --gutter: 3rem;
  display: flex !important;
  flex-wrap: wrap !important;
  margin-left: calc(var(--gutter)*-0.5) !important;
  margin-right: calc(var(--gutter)*-0.5) !important
}
.flex-grid-col {
  box-sizing: border-box;
  padding-left: calc(var(--gutter)*.5) !important;
  padding-right: calc(var(--gutter)*.5) !important
}
.wrap-xl {
  --width: 164rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width);
  position: relative
}
.wrap-xl._with-paddings {
  --gutter: 3rem;
  --width: 164rem;
  max-width: calc(var(--width) + var(--gutter)*2);
  padding-left: var(--gutter);
  padding-right: var(--gutter)
}
.wrap {
  --width: 134rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width);
  position: relative
}
.wrap._with-paddings {
  --gutter: 3rem;
  --width: 134rem;
  max-width: calc(var(--width) + var(--gutter)*2);
  padding-left: var(--gutter);
  padding-right: var(--gutter)
}
.wrap-md {
  --width: 114rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width);
  position: relative
}
.wrap-md._with-paddings {
  --gutter: 3rem;
  --width: 114rem;
  max-width: calc(var(--width) + var(--gutter)*2);
  padding-left: var(--gutter);
  padding-right: var(--gutter)
}
.wrap-sm {
  --width: 94rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width);
  position: relative
}
.wrap-sm._with-paddings {
  --gutter: 3rem;
  --width: 94rem;
  max-width: calc(var(--width) + var(--gutter)*2);
  padding-left: var(--gutter);
  padding-right: var(--gutter)
}
.wrap-xs {
  --width: 78rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--width);
  position: relative
}
.wrap-xs._with-paddings {
  --gutter: 3rem;
  --width: 78rem;
  max-width: calc(var(--width) + var(--gutter)*2);
  padding-left: var(--gutter);
  padding-right: var(--gutter)
}
html {
  font-size: 62.5%
}
@media (max-width: 1020px) {
  html {
    font-size: 52.5%
  }
}
@media (max-width: 480px) {
  html {
    font-size: 48%
  }
}
picture {
  display: flex;
  height: 100%
}
.container {
  width: 100%
}
.button {
  display: flex !important;
  height: 36px !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 5px !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(60 60 60 / var(--tw-bg-opacity)) !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  font-family: Gordita, sans-serif !important;
  font-size: 13.3px !important;
  letter-spacing: initial !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity)) !important;
  -webkit-text-decoration-line: none !important;
  text-decoration-line: none !important
}
.button._rounded-white {
  border-radius: 2.4rem !important;
  border-width: 2px !important;
  border-style: solid !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(70 19 160 / var(--tw-border-opacity)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity)) !important;
  padding-left: 4rem !important;
  padding-right: 4rem !important;
  font-size: 1.4rem !important;
  text-transform: uppercase !important;
  --tw-text-opacity: 1 !important;
  color: rgb(70 19 160 / var(--tw-text-opacity)) !important
}
.form-input {
  border-radius: 0.5rem;
  border-width: 1px;
  border-color: rgb(0 0 0 / 0.1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: Lexend Exa, sans-serif;
  font-size: 1.2rem;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px
}
.form-input::-moz-placeholder {
  --tw-text-opacity: 1;
  color: rgb(70 19 160 / var(--tw-text-opacity))
}
.form-input:-ms-input-placeholder {
  --tw-text-opacity: 1;
  color: rgb(70 19 160 / var(--tw-text-opacity))
}
.form-input::placeholder {
  --tw-text-opacity: 1;
  color: rgb(70 19 160 / var(--tw-text-opacity))
}
.form-input:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(249 249 249 / var(--tw-bg-opacity))
}
.form-select {
  max-width: 100%;
  cursor: pointer;
  border-radius: 0.5rem;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(70 19 160 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: Lexend Exa, sans-serif;
  font-size: 1.2rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px
}
.form-submit {
  cursor: pointer;
  border-radius: 0.5rem;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(60 60 60 / var(--tw-bg-opacity));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: Lexend Exa, sans-serif;
  font-size: 1.2rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  outline: 2px solid transparent;
  outline-offset: 2px
}
.taxonomy-product-card .woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: Lexend Exa, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(60 60 60 / var(--tw-text-opacity)) !important
}
.taxonomy-product-card .wcfm_dashboard_item_title {
  font-family: Lexend Exa, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(60 60 60 / var(--tw-text-opacity)) !important
}
.taxonomy-product-card .woocommerce ul.products li.product .price {
  margin-top: 1rem !important;
  width: 100% !important;
  text-align: left !important;
  font-family: Lexend Exa, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(120 120 120 / var(--tw-text-opacity)) !important
}
.choices, .choices * {
  box-sizing: border-box
}
.choices__list--dropdown .choices__item--selectable::after, .choices__list[aria-expanded] .choices__item--selectable::after {
  display: none
}
.choices__list--dropdown .choices__item--selectable, .choices__list[aria-expanded] .choices__item--selectable {
  padding-right: 0
}
.choices__list--dropdown .choices__item, .choices__list[aria-expanded] .choices__item {
  font-size: 12px;
  padding: 5px 10px
}
.choices__list--dropdown {
  z-index: 99999
}
.choices__inner {
  min-height: 36px !important;
  border-radius: 50px !important;
  background-color: #fff;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
  padding-left: 10px !important;
  padding-right: 32px !important;
  font-size: 12px !important;
  --tw-text-opacity: 1 !important;
  color: #742BD6;
border: 1px solid #333;
}
.choices__inner .choices__item {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.choices__placeholder {
  opacity: 1
}
.choices__list--single {
  padding: 0
}
[data-type=select-one] .choices__inner {
  display: flex;
  align-items: center
}
.choices[data-type=select-multiple] .choices__list--multiple .choices__item {
  border: none;
  border-radius: 2.5px;
  line-height: 1.1;
  padding: .5rem .5rem;
  background-color: #a979ff;
  color: #fff;
  display: inline-flex;
  align-items: center
}
.choices[data-type=select-multiple] .choices__input {
  width: 100% !important;
  border-radius: 2.5px;
  border: 1px solid #ccd4cb;
  padding: .5rem .5rem;
  margin-bottom: 0
}
.choices[data-type=select-multiple] .choices__button {
  border-left: none;
  margin-right: 0;
  padding: .5rem .8rem;
  margin-left: 0;
  display: inline-flex
}
.choices[data-type=select-multiple] .choices__inner {
  padding-left: 10px !important;
  padding-right: 10px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important
}
.choices__item.choices__item--selectable {
  justify-content: space-between
}
.visible {
  visibility: visible !important
}
.invisible {
  visibility: hidden !important
}
.static {
  position: static !important
}
.\ !static {
  position: static !important
}
.fixed {
  position: fixed !important
}
.absolute {
  position: absolute !important
}
.relative {
  position: relative !important
}
.top-0 {
  top: 0px !important
}
.left-0 {
  left: 0px !important
}
.-z-10 {
  z-index: -10 !important
}
.col-span-3 {
  grid-column: span 3 / span 3 !important
}
.m-0 {
  margin: 0px !important
}
.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important
}
.mt-0 {
  margin-top: 0px !important
}
.mt-\[60px\] {
  margin-top: 60px !important
}
.mb-\[40px\] {
  margin-bottom: 40px !important
}
.mb-0 {
  margin-bottom: 0px !important
}
.mb-8 {
  margin-bottom: 2rem !important
}
.mt-24 {
  margin-top: 6rem !important
}
.mb-\[3rem\] {
  margin-bottom: 3rem !important
}
.mb-\[20px\] {
  margin-bottom: 20px !important
}
.mr-\[20px\] {
  border-radius: 50px !important
}
.box-border {
  box-sizing: border-box !important
}
.block {
  display: block !important
}
.inline {
  display: inline !important
}
.flex {
  display: flex !important
}
.table {
  display: table !important
}
.grid {
  display: grid !important
}
.contents {
  display: contents !important
}
.hidden {
  display: none !important
}
.aspect-square {
  aspect-ratio: 1 / 1 !important
}
.h-full {
  height: 100% !important
}
.h-auto {
  height: auto !important
}
.h-\[36px\] {
  height: 36px !important
}
.min-h-\[300px\] {
  min-height: 300px !important
}
.w-\[52rem\] {
  width: 52rem !important
}
.w-1\/3 {
  width: 33.333333% !important
}
.w-1\/5 {
  width: 20% !important
}
.w-full {
  width: 100% !important
}
.min-w-\[200px\] {
  min-width: 200px !important
}
.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)) !important
}
.list-none {
  list-style-type: none !important
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important
}
.items-end {
  align-items: flex-end !important
}
.justify-end {
  justify-content: flex-end !important
}
.justify-center {
  justify-content: center !important
}
.gap-\[30px\] {
  gap: 30px !important
}
.gap-\[20px\] {
  gap: 20px !important
}
.overflow-visible {
  overflow: visible !important
}
.truncate {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important
}
.break-all {
  word-break: break-all !important
}
.rounded {
  border-radius: 0.25rem !important
}
.border {
  border-width: 1px !important
}
.border-0 {
  border-width: 0px !important
}
.border-\[1px\] {
  border-width: 1px !important
}
.border-t-\[1px\] {
  border-top-width: 1px !important
}
.border-solid {
  border-style: solid !important
}
.border-primary {
  --tw-border-opacity: 1 !important;
  border-color: rgb(70 19 160 / var(--tw-border-opacity)) !important
}
.object-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important
}
.object-center {
  -o-object-position: center !important;
  object-position: center !important
}
.p-0 {
  padding: 0px !important
}
.p-4 {
  padding: 1rem !important
}
.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important
}
.px-\[10px\] {
  padding-left: 10px !important;
  padding-right: 10px !important
}
.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important
}
.pt-\[60px\] {
  padding-top: 60px !important
}
.font-main {
  font-family: Lexend Exa, sans-serif !important
}
.text-5xl {
  font-size: 4.2rem !important
}
.text-md {
  font-size: 2rem !important
}
.uppercase {
  text-transform: uppercase !important
}
.lowercase {
  text-transform: lowercase !important
}
.capitalize {
  text-transform: capitalize !important
}
.ordinal {
  --tw-ordinal: ordinal !important;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important
}
.text-error {
  --tw-text-opacity: 1 !important;
  color: rgb(232 0 0 / var(--tw-text-opacity)) !important
}
.text-primary {
  --tw-text-opacity: 1 !important;
  color: rgb(70 19 160 / var(--tw-text-opacity)) !important
}
.underline {
  -webkit-text-decoration-line: underline !important;
  text-decoration-line: underline !important
}
.outline {
  outline-style: solid !important
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important
}
.invert {
  --tw-invert: invert(100%) !important;
  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) !important
}
.sepia {
  --tw-sepia: sepia(100%) !important;
  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) !important
}
.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) !important
}
.\[hostname\:port\] {
  hostname: port
}
.box-border-all, .box-border-all * {
  box-sizing: border-box
}
@media (max-width: 1020px) {
  .desktop\:col-span-4 {
    grid-column: span 4 / span 4 !important
  }
  .desktop\:w-full {
    width: 100% !important
  }
  .desktop\:w-1\/3 {
    width: 33.333333% !important
  }
  .desktop\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important
  }
}
@media (max-width: 768px) {
  .tablet\:col-span-6 {
    grid-column: span 6 / span 6 !important
  }
  .tablet\:w-full {
    width: 100% !important
  }
}
@media (max-width: 640px) {
  .phablet\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important
  }
}
