/**
  * STYLES TABLE
  *
  * 1. SELECT
  * 2. COLOR BOX
  * 3. SIZE BOX
  * 4. TABLE SIZE
  * 5. BUTTON
  * 6. CUSTOM PRODUCT
  * 7. PRELOAD IMAGE
  * 8. ICON
  * 9. MODAL
  * 10. BASE
  **/

/* CSS VARIABLE */
:root {
  --tr-color-primary: #1e90ff;
  --tr-color-gray-100: #f3f4f6;
  --tr-color-gray-300: #d1d5db;
  --tr-color-gray-500: #6b7280;
}

/* 1. SELECT */
.tr-select-view {
  min-height: 15px;
  position: relative;
  background-color: var(--tr-color-gray-100);
  padding: 0.5rem 2.3rem 0.5rem 0.5rem;
  color: var(--tr-color-gray-500);
  text-rendering: auto;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  text-align: start;
  appearance: menulist;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  font: 400 13.3333px Arial;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  -webkit-writing-mode: horizontal-tb !important;
  cursor: pointer;
}

.tr-select-view::after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: var(--tr-color-gray-500) transparent transparent transparent;
  position: absolute;
  top: 13px;
  right: 14px;
}

.tr-select-view.tr-active:after {
  top: 4px;
  border-color: transparent transparent var(--tr-color-gray-500) transparent;
}

.tr-select-view div,
.tr-select-options li div {
  width: 100%;
  height: 15px;
  position: relative;
}

.tr-select-options {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  position: absolute;
  top: 100%;
  z-index: 9999;
  width: 100%;
  margin-top: 1px;
  background-color: var(--tr-color-gray-100);
}

.tr-select-options li {
  padding: 0.5rem;
  font-size: 13.333333px;
  line-height: normal;
  cursor: pointer;
}

.tr-select-options li:hover {
  background-color: var(--tr-color-gray-300);
}

.tr-d-select {
  /* styling */
  display: inline-block;
  font: 400 13.3333px Arial;
  padding: 0.5em 3.5em 0.5em 1em;
  color: var(--tr-color-gray-500);

  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tr-d-select {
  background-image: linear-gradient(
      45deg,
      transparent 50%,
      var(--tr-color-gray-300) 50%
    ),
    linear-gradient(135deg, var(--tr-color-gray-300) 50%, transparent 50%);
  background-position: calc(100% - 20px) 0.7rem, calc(100% - 15px) 0.7rem;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.tr-d-select:focus {
  background-image: linear-gradient(45deg, black 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, black 50%);
  background-position: calc(100% - 15px) 0.7rem, calc(100% - 20px) 0.7rem;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  border-color: black;
  outline: 0;
}

/* 2. COLOR BOX */
.tr-color-box,
.tr-color-box-md,
.tr-color-box-xl {
  position: relative;
}

.tr-color-box.tr-active::before,
.tr-color-box:hover::before,
.tr-color-box-md.tr-active::before,
.tr-color-box-md:hover::before,
.tr-color-box-xl.tr-active::before,
.tr-color-box-xl:hover::before {
  content: " ";
  position: absolute;
  border: 3px solid var(--tr-color-gray-300);
  right: 0;
}

.tr-color-box {
  width: 20px;
  height: 20px;
}

.tr-color-box.tr-active::before,
.tr-color-box:hover::before {
  width: 26px;
  height: 26px;
  border-radius: 50px;
  top: -0 ;
  left: 0;
}

.tr-color-box-md {
  width: 30px;
  height: 30px;
}

.tr-color-box-md.tr-active::before,
.tr-color-box-md:hover::before {
  width: 34px;
  height: 34px;
  border-radius: 50px;
  top: -2px;
  left: -2px;
}

.tr-color-box-xl {
  width: 37px;
  height: 37px;
}

.tr-color-box-xl::before {
  width: 41px;
  height: 41px;
  border-radius: 50px;
  top: -4px;
  left: -4px;
}

.tr-color-box-xl-inner {
  background: rgb(255, 3, 3);
  background: -moz-linear-gradient(
    90deg,
    rgba(255, 3, 3, 1) 0%,
    rgba(251, 255, 0, 1) 20%,
    rgba(16, 255, 0, 1) 40%,
    rgba(0, 251, 255, 1) 55%,
    rgba(0, 7, 255, 1) 70%,
    rgba(224, 0, 255, 1) 85%,
    rgba(255, 0, 0, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(255, 3, 3, 1) 0%,
    rgba(251, 255, 0, 1) 20%,
    rgba(16, 255, 0, 1) 40%,
    rgba(0, 251, 255, 1) 55%,
    rgba(0, 7, 255, 1) 70%,
    rgba(224, 0, 255, 1) 85%,
    rgba(255, 0, 0, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(255, 3, 3, 1) 0%,
    rgba(251, 255, 0, 1) 20%,
    rgba(16, 255, 0, 1) 40%,
    rgba(0, 251, 255, 1) 55%,
    rgba(0, 7, 255, 1) 70%,
    rgba(224, 0, 255, 1) 85%,
    rgba(255, 0, 0, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0303",endColorstr="#ff0000",GradientType=1);
}

/* 3. SIZE BOX */
.tr-size-box:hover,
.tr-size-box.active {
  border: none;
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  background-color: #0c7bb9;
  color: white;
}

/* 4. TABLE SIZE */
.tr-table-size thead th {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 0px;
  padding-right: 0px;
}

.tr-table-size tbody td {
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 0px;
  padding-right: 0px;
  border-bottom-color: rgba(209, 213, 219, 1);
  border-bottom-width: 0.5px;
  border-bottom-style: solid;
}

/* 5. BUTTON */
.tr-button {
  min-width: 190px;
}

/* 6. CUSTOM PRODUCT*/
.tr-product-type-list {
  margin-bottom: 0.5rem;
}

.tr-product-type-list-img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

.tr-product-type-list-img::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.tr-product-type-list:hover .tr-product-type-list-img::before,
.tr-product-type-list.tr-active .tr-product-type-list-img::before {
  position: absolute;
  content: " ";
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border: 2px solid #3e09ecf3;
  top: -4px;
  left: -4px;
}

/* 7. PRELOAD IMAGE */

.tr-spinner,
.tr-spinner::after,
.tr-spinner-md,
.tr-spinner-md:after,
.tr-spinner-sm,
.tr-spinner-sm:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.tr-spinner {
  margin: 60px auto;
  font-size: 10px;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid var(--tr-color-primary);
}

.tr-spinner {
  margin: 60px auto;
  font-size: 10px;
  border-top: 1.1em solid rgba(0, 0, 0, 0.2);
  border-right: 1.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 1.1em solid rgba(0, 0, 0, 0.2);
  border-left: 1.1em solid var(--tr-color-primary);
}

.tr-spinner-md {
  margin: 20px auto;
  font-size: 3px;
  border-top: 2.1em solid rgba(0, 0, 0, 0.2);
  border-right: 2.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 2.1em solid rgba(0, 0, 0, 0.2);
  border-left: 2.1em solid var(--tr-color-primary);
}

.tr-spinner-sm {
  margin: 10px auto;
  font-size: 2px;
  border-top: 2.1em solid rgba(0, 0, 0, 0.2);
  border-right: 2.1em solid rgba(0, 0, 0, 0.2);
  border-bottom: 2.1em solid rgba(0, 0, 0, 0.2);
  border-left: 2.1em solid var(--tr-color-primary);
}

.tr-spinner,
.tr-spinner-md,
.tr-spinner-sm {
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* 8. ICON */
.tr-icon-block {
  display: block;
}

.tr-icon-hidden {
  display: none;
}

.tr-icon:hover .tr-icon-block,
.tr-icon.tr-active .tr-icon-block {
  display: none;
}

.tr-icon:hover .tr-icon-hidden,
.tr-icon.tr-active .tr-icon-hidden {
  display: block;
}

.tr-icon:hover .tr-icon-text,
.tr-icon.tr-active .tr-icon-text {
  color: var(--tr-color-primary);
}

/* 9. MODAL */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .tr-modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .tr-modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .tr-modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .tr-modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .tr-modal-overlay {
  will-change: transform;
}

/* BASE */
.tr-min-height-160 {
  min-height: 160px;
}

.tr-h-346 {
  height: 346px;
}
@media (max-width: 608px) {
    .tr-h-346 {
        height: 250px;
    }
}
.tr-square::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

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

.tr-space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.tr-space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.tr-bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.tr-bg-red {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 59, 61, var(--tw-bg-opacity));
}

.tr-bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(244, 244, 245, var(--tw-bg-opacity));
}

.tr-bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(228, 228, 231, var(--tw-bg-opacity));
}

.tr-bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgba(12, 123, 185, var(--tw-bg-opacity));
}

.hover\:tr-bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(212, 212, 216, var(--tw-bg-opacity));
}

.hover\:tr-bg-primary_hover:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(12, 98, 146, var(--tw-bg-opacity));
}

.tr-bg-center {
  background-position: center;
}

.tr-bg-no-repeat {
  background-repeat: no-repeat;
}

.tr-bg-cover {
  background-size: cover;
}

.tr-border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.hover\:tr-border-gray-900:hover {
  --tw-border-opacity: 1;
  border-color: rgba(17, 24, 39, var(--tw-border-opacity));
}

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

.tr-rounded {
  border-radius: 0.25rem;
}

.tr-rounded-md {
  border-radius: 0.375rem;
}

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

.tr-border-solid {
  border-style: solid;
}

.tr-border-0 {
  border-width: 0px;
}

.tr-border {
  border-width: 1px;
}

.tr-box-border {
  box-sizing: border-box;
}

.tr-cursor-pointer {
  cursor: pointer;
}

.tr-flex {
  display: flex;
}

.tr-grid {
  display: grid;
}

.tr-hidden {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

.tr-flex-none {
  flex: none;
}

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

.tr-flex-shrink {
  flex-shrink: 1;
}

.tr-font-arial {
  font-family: Arial, sans-serif;
}

.tr-font-bold {
  font-weight: 700;
}

.tr-h-36 {
  height: 9rem;
}

.tr-h-full {
  height: 100%;
}

.tr-text-xs {
  font-size: 11px;
  line-height: 15px;
}

.tr-text-sm {
  font-size: 15px;
  line-height: 19px;
}

.tr-text-base {
  font-size: 1.75rem;
  line-height: 2rem;
}

.tr-text-lg {
  font-size: 2rem;
  line-height: 2.75rem;
}

.tr-text-xl {
  font-size: 2.25rem;
  line-height: 2.75rem;
}

.tr-leading-none {
  line-height: 1;
}

.tr-leading-normal {
  line-height: 1.5;
}

.tr-list-none {
  list-style-type: none;
}

.tr-m-0 {
  margin: 0px !important;
}

.tr-m-auto {
  margin: auto;
}

.tr-my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

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

.tr-my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.tr-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.tr-ml-8 {
  margin-left: 2rem;
}

.tr-mb-10 {
  margin-bottom: 2.5rem;
}

.tr-mb-12 {
  margin-bottom: 3rem;
}

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

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

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

.tr-overflow-hidden {
  overflow: hidden;
}

.tr-p-2 {
  padding: 0.5rem !important;
}

.tr-p-4 {
  padding: 1rem;
}

.tr-p-6 {
  padding: 1.5rem;
}

.tr-p-8 {
  padding: 2rem;
}

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

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

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

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

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

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

.tr-px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.tr-px-14 {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

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

.tr-pl-2 {
  padding-left: 0.5rem;
}

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

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

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

.tr-pr-8 {
  padding-right: 2rem;
}

.tr-pointer-events-none {
  pointer-events: none;
}

.tr-fixed {
  position: fixed;
}

.tr-absolute {
  position: absolute;
}

.tr-relative {
  position: relative;
}

.tr-inset-0 {
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

* {
  --tw-shadow: 0 0 #0000;
}

.tr-shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.tr-shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.tr-table-fixed {
  table-layout: fixed;
}

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

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

.tr-text-black {
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.tr-text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.tr-text-blue-500 {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.tr-text-orange {
  --tw-text-opacity: 1;
  color: rgba(255, 84, 0, var(--tw-text-opacity));
}

.tr-text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(113, 113, 122, var(--tw-text-opacity));
}

.tr-text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(63, 63, 70, var(--tw-text-opacity));
}

.tr-text-gray-800 {
  --tw-text-opacity: 1;
  color: rgba(39, 39, 42, var(--tw-text-opacity));
}

.tr-text-gray-900 {
  --tw-text-opacity: 1;
  color: rgba(24, 24, 27, var(--tw-text-opacity));
}

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

.tr-overflow-ellipsis {
  text-overflow: ellipsis;
}

.tr-no-underline {
  text-decoration: none;
}

.tr-w-16 {
  width: 4rem;
}

.tr-w-36 {
  width: 9rem;
}

.tr-w-auto {
  width: auto;
}

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

.tr-w-1\/4 {
  width: 25%;
}

.tr-w-3\/4 {
  width: 90%;
}

.tr-w-full {
  width: 100%;
}

.tr-w-max {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.tr-z-0 {
  z-index: 0;
}

.tr-gap-2 {
  gap: 0.5rem;
}

.tr-gap-4 {
  gap: 1rem;
}

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

@-webkit-keyframes tr-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes tr-spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes tr-ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes tr-ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes tr-pulse {
  50% {
    opacity: 0.5;
  }
}

@keyframes tr-pulse {
  50% {
    opacity: 0.5;
  }
}

@-webkit-keyframes tr-bounce {
  0%,
  100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes tr-bounce {
  0%,
  100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.tr-t-0 {
  top: 0px;
}

.tr-r-0 {
  right: 0px;
}

.tr-b-0 {
  bottom: 0px;
}

.tr-r-8 {
  right: 8px;
}

.tr-width-30 {
  width: 30px;
}

.tr-height-30 {
  height: 30px;
}

.tr-height-34 {
  height: 34px;
}

.tr-width-75 {
  width: 75px;
}

.tr-height-75 {
  height: 75px;
}

.tr-width-90 {
  width: 90px;
}

.tr-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tr-product-description{
    font-family: inherit;
}
.product__description__title {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2rem;
  margin-top: 0px;
  --tw-text-opacity: 1;
  color: rgba(24, 24, 27, var(--tw-text-opacity));
  margin-bottom: 1rem;
}

.selector-wrapper select{
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: block;
    width: 100%;
}
#addToCartBtn{
    width: 100%;
}
.pod__btn_addtocart{
        padding: 10px 20px;
    background: #4a6cf7;
    color:#fff;
    width: 100%;
    display: block;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
}



@media (min-width: 480px) {
  .sm\:tr-mr-4 {
    margin-right: 1rem;
  }

  .sm\:tr-w-20 {
    width: 5rem;
  }

  .sm\:tr-w-28 {
    width: 7rem;
  }

  .sm\:tr-w-32 {
    width: 8rem;
  }

  .sm\:tr-w-auto {
    width: auto;
  }

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

  .sm\:tr-w-3\/4 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .md\:tr-mr-8 {
    margin-right: 2rem;
  }

  .md\:tr-w-48 {
    width: 12rem;
  }

  /* additional css by maulvi */
  .md\:tr-w-50 {
    width: 18rem;
  }

  .md\:tr-w-1\/4 {
    width: 25%;
  }

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

  .md\:tr-gap-6 {
    gap: 1.5rem;
  }

  .md\:tr-grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (min-width: 840px) {
  .lg\:tr-mr-4 {
    margin-right: 1rem;
  }

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

  .lg\:tr-p-12 {
    padding: 3rem;
  }

  .lg\:tr-px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .lg\:tr-pb-8 {
    padding-bottom: 2rem;
  }

  .lg\:tr-w-20 {
    width: 5rem;
  }

  .lg\:tr-w-28 {
    width: 7rem;
  }

  .lg\:tr-w-auto {
    width: auto;
  }

  .lg\:tr-gap-8 {
    gap: 2rem;
  }

  .lg\:tr-grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:tr-sidebar {
    width: 390px;
  }

  .lg\:tr-editor-form {
    width: 300px;
  }

  .lg\:tr-edit-panel {
    min-height: 700px;
  }
}

@media (min-width: 1280px) {
  .xl\:tr-w-1\/4 {
    width: 25%;
  }
  .lg\:tr-sidebar {
    width: 450px;
  }
}

.micromodal-slide {
  z-index: 1060;
}

span.select2-container.select2-container--default.select2-container--open {
  z-index: 1099;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.tag {
    background-color: #f0f0f0;
    padding: 0px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    -webkit-user-select: none;
    line-height: 1.5rem;
}

.tag.active {
    background-color: #4a6cf7;
    color: white;
}
.select2-container .select2-selection--single .select2-selection__rendered{
    font-size: 15px;
}

.fs-15 { font-size: 15px; line-height: 19px; }
.fs-19 { font-size: 19px; line-height: 23px; }
.fs-23 { font-size: 23px; line-height: 27px; }
.fs-27 { font-size: 27px; line-height: 31px; }
.fs-30 { font-size: 30px; line-height: 34px; }
.btn-popup {width: 205px!important; }

.tagBox{
    height: 400px;
    overflow: auto;
    display: none;
    position: absolute;
    top: 150px;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 20px;
    padding: 20px;
    z-index: 1000;
    border-radius: 8px;
}

.only-mobile { display: none; }
.only-dekstop { display: none; }
.v-none {  visibility: hidden; height: 1px; }
.title-mobile { padding: 25px 0px 30px 25px; }

@media (min-width: 768px) {
    .tagBox{
         margin: 0 60px;
    }
}
@media (max-width: 608px) {
     .only-mobile { display: block!important; }
	 #addToCartBtn { position: fixed; bottom: 0px; left: 0px; z-index: 99999 }
	 #tr-featured-product { padding: 0px!important; }
}


@media (min-width: 1000px) {
	 .only-dekstop { display: block!important; }
}
