/* [project]/node_modules/react-toastify/dist/ReactToastify.css [app-client] (css) */
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74d3c;
  --toastify-color-transparent: #ffffffb3;
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-container-width: fit-content;
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(var(--toastify-toast-offset), env(safe-area-inset-top));
  --toastify-toast-right: max(var(--toastify-toast-offset), env(safe-area-inset-right));
  --toastify-toast-left: max(var(--toastify-toast-offset), env(safe-area-inset-left));
  --toastify-toast-bottom: max(var(--toastify-toast-offset), env(safe-area-inset-bottom));
  --toastify-toast-background: #fff;
  --toastify-toast-padding: 14px;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-toast-shadow: 0px 4px 12px #0000001a;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: .2;
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  width: var(--toastify-container-width);
  box-sizing: border-box;
  color: #fff;
  flex-direction: column;
  display: flex;
  position: fixed;
}

.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}

.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
  align-items: end;
}

.Toastify__toast {
  --y: 0;
  touch-action: none;
  width: var(--toastify-toast-width);
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  padding: var(--toastify-toast-padding);
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: var(--toastify-toast-shadow);
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  z-index: 0;
  word-break: break-word;
  flex: auto;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
  position: relative;
}

@media only screen and (width <= 480px) {
  .Toastify__toast-container {
    width: 100vw;
    left: env(safe-area-inset-left);
    margin: 0;
  }

  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: initial;
  }

  .Toastify__toast {
    --toastify-toast-width: 100%;
    border-radius: 0;
    margin-bottom: 0;
  }
}

.Toastify__toast-container[data-stacked="true"] {
  width: var(--toastify-toast-width);
}

.Toastify__toast--stacked {
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform .3s;
  position: absolute;
}

.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body, .Toastify__toast--stacked[data-collapsed] .Toastify__close-button {
  transition: opacity .1s;
}

.Toastify__toast--stacked[data-collapsed="false"] {
  overflow: visible;
}

.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > * {
  opacity: 0;
}

.Toastify__toast--stacked:after {
  content: "";
  height: calc(var(--g) * 1px);
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}

.Toastify__toast--stacked[data-pos="top"] {
  top: 0;
}

.Toastify__toast--stacked[data-pos="bot"] {
  bottom: 0;
}

.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before {
  transform-origin: top;
}

.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before {
  transform-origin: bottom;
}

.Toastify__toast--stacked:before {
  content: "";
  z-index: -1;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(3);
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast--close-on-click {
  cursor: pointer;
}

.Toastify__toast-icon {
  flex-shrink: 0;
  width: 22px;
  margin-inline-end: 10px;
  display: flex;
}

.Toastify--animate {
  animation-duration: .5s;
  animation-fill-mode: both;
}

.Toastify--animate-icon {
  animation-duration: .3s;
  animation-fill-mode: both;
}

.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--light, .Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  cursor: pointer;
  opacity: .7;
  z-index: 1;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  transition: all .3s;
  position: absolute;
  top: 6px;
  right: 6px;
}

.Toastify__toast--rtl .Toastify__close-button {
  left: 6px;
  right: unset;
}

.Toastify__close-button--light {
  color: #000;
  opacity: .3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  width: 14px;
  height: 16px;
}

.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  100% {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  z-index: 1;
  opacity: .7;
  transform-origin: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.Toastify__progress-bar--animated {
  animation: linear forwards Toastify__trackProgress;
}

.Toastify__progress-bar--controlled {
  transition: transform .2s;
}

.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: 100%;
  border-bottom-left-radius: initial;
}

.Toastify__progress-bar--wrp {
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.Toastify__progress-bar--wrp[data-hidden="true"] {
  opacity: 0;
}

.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}

.Toastify__spinner {
  box-sizing: border-box;
  border: 2px solid;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  border-radius: 100%;
  width: 20px;
  height: 20px;
  animation: .65s linear infinite Toastify__spin;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}

@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y)  - 10px), 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y)  + 20px), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y)  - 10px), 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y)  + 20px), 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    opacity: 0;
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, 90deg);
  }

  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px)rotate3d(1, 0, 0, -20deg);
  }

  60% {
    opacity: 1;
    transform: perspective(400px)rotate3d(1, 0, 0, 10deg);
  }

  80% {
    transform: perspective(400px)rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  from {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }

  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    visibility: visible;
    transform: translate3d(110%, 0, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInLeft {
  from {
    visibility: visible;
    transform: translate3d(-110%, 0, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInUp {
  from {
    visibility: visible;
    transform: translate3d(0, 110%, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideInDown {
  from {
    visibility: visible;
    transform: translate3d(0, -110%, 0);
  }

  to {
    transform: translate3d(0, var(--y), 0);
  }
}

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, var(--y), 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-duration: .3s;
  animation-timing-function: ease-in;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}


/* [project]/node_modules/swiper/swiper.css [app-client] (css) */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide, .swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow: auto;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-slide-shadow-bottom {
  pointer-events: none;
  z-index: 10;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-3d .swiper-slide-shadow {
  background: #00000026;
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, #00000080, #0000);
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(#00000080, #0000);
}

.swiper-lazy-preloader {
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-top-color: #0000;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  margin-left: -21px;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader, .swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: 1s linear infinite swiper-preloader-spin;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}


/* [project]/node_modules/swiper/modules/effect-fade.css [app-client] (css) */
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}


/* [project]/node_modules/swiper/modules/free-mode.css [app-client] (css) */
.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}


/* [project]/node_modules/swiper/modules/navigation.css [app-client] (css) */
:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev, .swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden, .swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev, .swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg, .swiper-button-next svg {
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  height: 100%;
}

.swiper-rtl .swiper-button-prev svg, .swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  text-transform: none !important;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}


/* [project]/node_modules/swiper/modules/pagination.css [app-client] (css) */
.swiper-pagination {
  text-align: center;
  z-index: 10;
  transition: opacity .3s;
  position: absolute;
  transform: translate3d(0, 0, 0);
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  width: 100%;
  left: 0;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
  display: inline-block;
}

button.swiper-pagination-bullet {
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  margin: 0;
  padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets, .swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  width: 8px;
  top: 50%;
  transform: translateY(-50%);
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, top .2s;
  display: inline-block;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, left .2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform .2s, right .2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, #00000040);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: 100% 0;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  top: 0;
  left: 0;
}

.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  top: 0;
  left: 0;
}

.swiper-pagination-lock {
  display: none;
}


/* [project]/node_modules/swiper/modules/thumbs.css [app-client] (css) */



/* [project]/public/assets/css/animate.css [app-client] (css) */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.swing {
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9)rotate(-3deg);
    transform: scale(.9)rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1)rotate(3deg);
    transform: scale(1.1)rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1)rotate(-3deg);
    transform: scale(1.1)rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1)rotate(0);
    transform: scale(1)rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(.9)rotate(-3deg);
    -ms-transform: scale(.9)rotate(-3deg);
    transform: scale(.9)rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1)rotate(3deg);
    -ms-transform: scale(1.1)rotate(3deg);
    transform: scale(1.1)rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1)rotate(-3deg);
    -ms-transform: scale(1.1)rotate(-3deg);
    transform: scale(1.1)rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1)rotate(0);
    -ms-transform: scale(1)rotate(0);
    transform: scale(1)rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%)rotate(-5deg);
    transform: translateX(-25%)rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%)rotate(3deg);
    transform: translateX(20%)rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%)rotate(-3deg);
    transform: translateX(-15%)rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%)rotate(2deg);
    transform: translateX(10%)rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%)rotate(-1deg);
    transform: translateX(-5%)rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%)rotate(-5deg);
    -ms-transform: translateX(-25%)rotate(-5deg);
    transform: translateX(-25%)rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%)rotate(3deg);
    -ms-transform: translateX(20%)rotate(3deg);
    transform: translateX(20%)rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%)rotate(-3deg);
    -ms-transform: translateX(-15%)rotate(-3deg);
    transform: translateX(-15%)rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%)rotate(2deg);
    -ms-transform: translateX(10%)rotate(2deg);
    transform: translateX(10%)rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%)rotate(-1deg);
    -ms-transform: translateX(-5%)rotate(-1deg);
    transform: translateX(-5%)rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

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

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

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

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
    transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
  }

  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
    transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
    transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
  }

  80% {
    -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
    transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
  }

  80%, 100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
    transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
    -ms-transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
    transform: perspective(400px)translateZ(0)rotateY(0)scale(1);
  }

  0%, 40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
    -ms-transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
    transform: perspective(400px)translateZ(150px)rotateY(170deg)scale(1);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
    -ms-transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
    transform: perspective(400px)translateZ(150px)rotateY(190deg)scale(1);
  }

  80% {
    -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
    -ms-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
    transform: perspective(400px)translateZ(0)rotateY(360deg)scale(.95);
  }

  80%, 100% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
    -ms-transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
    transform: perspective(400px)translateZ(0)rotateY(360deg)scale(1);
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -ms-backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateX(90deg);
    transform: perspective(400px)rotateX(90deg);
  }

  40% {
    -webkit-transform: perspective(400px)rotateX(-10deg);
    transform: perspective(400px)rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px)rotateX(10deg);
    transform: perspective(400px)rotateX(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateX(0);
    transform: perspective(400px)rotateX(0);
  }
}

@keyframes flipInX {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateX(90deg);
    -ms-transform: perspective(400px)rotateX(90deg);
    transform: perspective(400px)rotateX(90deg);
  }

  40% {
    -webkit-transform: perspective(400px)rotateX(-10deg);
    -ms-transform: perspective(400px)rotateX(-10deg);
    transform: perspective(400px)rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px)rotateX(10deg);
    -ms-transform: perspective(400px)rotateX(10deg);
    transform: perspective(400px)rotateX(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateX(0);
    -ms-transform: perspective(400px)rotateX(0);
    transform: perspective(400px)rotateX(0);
  }
}

.flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateY(90deg);
    transform: perspective(400px)rotateY(90deg);
  }

  40% {
    -webkit-transform: perspective(400px)rotateY(-10deg);
    transform: perspective(400px)rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px)rotateY(10deg);
    transform: perspective(400px)rotateY(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateY(0);
    transform: perspective(400px)rotateY(0);
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateY(90deg);
    -ms-transform: perspective(400px)rotateY(90deg);
    transform: perspective(400px)rotateY(90deg);
  }

  40% {
    -webkit-transform: perspective(400px)rotateY(-10deg);
    -ms-transform: perspective(400px)rotateY(-10deg);
    transform: perspective(400px)rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px)rotateY(10deg);
    -ms-transform: perspective(400px)rotateY(10deg);
    transform: perspective(400px)rotateY(10deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateY(0);
    -ms-transform: perspective(400px)rotateY(0);
    transform: perspective(400px)rotateY(0);
  }
}

.flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateX(0);
    transform: perspective(400px)rotateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateX(90deg);
    transform: perspective(400px)rotateX(90deg);
  }
}

@keyframes flipOutX {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateX(0);
    -ms-transform: perspective(400px)rotateX(0);
    transform: perspective(400px)rotateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateX(90deg);
    -ms-transform: perspective(400px)rotateX(90deg);
    transform: perspective(400px)rotateX(90deg);
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateY(0);
    transform: perspective(400px)rotateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateY(90deg);
    transform: perspective(400px)rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    opacity: 1;
    -webkit-transform: perspective(400px)rotateY(0);
    -ms-transform: perspective(400px)rotateY(0);
    transform: perspective(400px)rotateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: perspective(400px)rotateY(90deg);
    -ms-transform: perspective(400px)rotateY(90deg);
    transform: perspective(400px)rotateY(90deg);
  }
}

.flipOutY {
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%)skewX(-30deg);
    transform: translateX(100%)skewX(-30deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20%)skewX(30deg);
    transform: translateX(-20%)skewX(30deg);
  }

  80% {
    opacity: 1;
    -webkit-transform: translateX(0%)skewX(-15deg);
    transform: translateX(0%)skewX(-15deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%)skewX(0);
    transform: translateX(0%)skewX(0);
  }
}

@keyframes lightSpeedIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%)skewX(-30deg);
    -ms-transform: translateX(100%)skewX(-30deg);
    transform: translateX(100%)skewX(-30deg);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-20%)skewX(30deg);
    -ms-transform: translateX(-20%)skewX(30deg);
    transform: translateX(-20%)skewX(30deg);
  }

  80% {
    opacity: 1;
    -webkit-transform: translateX(0%)skewX(-15deg);
    -ms-transform: translateX(0%)skewX(-15deg);
    transform: translateX(0%)skewX(-15deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%)skewX(0);
    -ms-transform: translateX(0%)skewX(0);
    transform: translateX(0%)skewX(0);
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%)skewX(0);
    transform: translateX(0%)skewX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%)skewX(-30deg);
    transform: translateX(100%)skewX(-30deg);
  }
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%)skewX(0);
    -ms-transform: translateX(0%)skewX(0);
    transform: translateX(0%)skewX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%)skewX(-30deg);
    -ms-transform: translateX(100%)skewX(-30deg);
    transform: translateX(100%)skewX(-30deg);
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }

  0%, 100% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }

  0%, 100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: center;
    transform-origin: center;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 100% {
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 20%, 60% {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  40%, 80% {
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    opacity: 1;
    -webkit-transform: rotate(60deg)translateY(0);
    transform: rotate(60deg)translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  0%, 20%, 60% {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
  }

  40%, 80% {
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    opacity: 1;
    -webkit-transform: rotate(60deg)translateY(0);
    -ms-transform: rotate(60deg)translateY(0);
    transform: rotate(60deg)translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%)rotate(-120deg);
    transform: translateX(-100%)rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0)rotate(0);
    transform: translateX(0)rotate(0);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%)rotate(-120deg);
    -ms-transform: translateX(-100%)rotate(-120deg);
    transform: translateX(-100%)rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0)rotate(0);
    -ms-transform: translateX(0)rotate(0);
    transform: translateX(0)rotate(0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0)rotate(0);
    transform: translateX(0)rotate(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%)rotate(120deg);
    transform: translateX(100%)rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0)rotate(0);
    -ms-transform: translateX(0)rotate(0);
    transform: translateX(0)rotate(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%)rotate(120deg);
    -ms-transform: translateX(100%)rotate(120deg);
    transform: translateX(100%)rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes infiniteScrollRight {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes tf-ani-flash {
  50%, from, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes tf-ani-flash {
  50%, from, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

@keyframes rotate-360 {
  from {
    transform: rotate(0)scale(1);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes link-icon {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  49% {
    opacity: 0;
    transform: translateX(20px);
  }

  50% {
    opacity: 0;
    transform: translateX(-20px);
  }

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

@-webkit-keyframes tf-ani-tada {
  from, to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9)rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9)rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, -3deg);
  }
}

@keyframes tf-ani-tada {
  from, to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9)rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9)rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1)rotate3d(0, 0, 1, -3deg);
  }
}

.tf-ani-tada {
  -webkit-animation: 2s infinite tf-ani-tada;
  animation: 2s infinite tf-ani-tada;
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}


/* [project]/public/assets/css/bootstrap.min.css [app-client] (css) */
:root, [data-bs-theme="light"] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, #ffffff26, #fff0);
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: #212529bf;
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: #21252980;
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: #0000002d;
  --bs-border-radius: .375rem;
  --bs-border-radius-sm: .25rem;
  --bs-border-radius-lg: .5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 .5rem 1rem #00000026;
  --bs-box-shadow-sm: 0 .125rem .25rem #00000013;
  --bs-box-shadow-lg: 0 1rem 3rem #0000002d;
  --bs-box-shadow-inset: inset 0 1px 2px #00000013;
  --bs-focus-ring-width: .25rem;
  --bs-focus-ring-opacity: .25;
  --bs-focus-ring-color: #0d6efd40;
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme="dark"] {
  color-scheme: dark;
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: #dee2e6bf;
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: #dee2e680;
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: #ffffff26;
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
}

*, :after, :before {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
}

hr {
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: .25;
  margin: 1rem 0;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--bs-heading-color);
  margin-top: 0;
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h1, h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (width >= 1200px) {
  .h1, h1 {
    font-size: 2.5rem;
  }
}

.h2, h2 {
  font-size: calc(1.325rem + .9vw);
}

@media (width >= 1200px) {
  .h2, h2 {
    font-size: 2rem;
  }
}

.h3, h3 {
  font-size: calc(1.3rem + .6vw);
}

@media (width >= 1200px) {
  .h3, h3 {
    font-size: 1.75rem;
  }
}

.h4, h4 {
  font-size: calc(1.275rem + .3vw);
}

@media (width >= 1200px) {
  .h4, h4 {
    font-size: 1.5rem;
  }
}

.h5, h5 {
  font-size: 1.25rem;
}

.h6, h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
  text-decoration: underline dotted;
}

address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem;
}

ol, ul {
  padding-left: 2rem;
}

dl, ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ol ul, ul ol, ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: bolder;
}

.small, small {
  font-size: .875em;
}

.mark, mark {
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
  padding: .1875em;
}

sub, sup {
  vertical-align: baseline;
  font-size: .75em;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code, kbd, pre, samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: .875em;
  display: block;
  overflow: auto;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  color: var(--bs-code-color);
  word-wrap: break-word;
  font-size: .875em;
}

a > code {
  color: inherit;
}

kbd {
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: .25rem;
  padding: .1875rem .375rem;
  font-size: .875em;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img, svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  color: var(--bs-secondary-color);
  text-align: left;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody, td, tfoot, th, thead, tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button, select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type="button"], [type="reset"], [type="submit"], button {
  -webkit-appearance: button;
}

[type="button"]:not(:disabled), [type="reset"]:not(:disabled), [type="submit"]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

textarea {
  resize: vertical;
}

fieldset {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  float: left;
  width: 100%;
  font-size: calc(1.275rem + .3vw);
  line-height: inherit;
  margin-bottom: .5rem;
  padding: 0;
}

@media (width >= 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-fields-wrapper, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-text, ::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  cursor: pointer;
  display: list-item;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2;
}

@media (width >= 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.list-unstyled, .list-inline {
  padding-left: 0;
  list-style: none;
}

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

.list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.initialism {
  text-transform: uppercase;
  font-size: .875em;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  color: #6c757d;
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: .875em;
}

.blockquote-footer:before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  height: auto;
  padding: .25rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}

.figure-caption {
  color: var(--bs-secondary-color);
  font-size: .875em;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-left: auto;
  margin-right: auto;
}

@media (width >= 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (width >= 768px) {
  .container, .container-md, .container-sm {
    max-width: 720px;
  }
}

@media (width >= 992px) {
  .container, .container-lg, .container-md, .container-sm {
    max-width: 960px;
  }
}

@media (width >= 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}

@media (width >= 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1320px;
  }
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
  flex-wrap: wrap;
  display: flex;
}

.row > * {
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
  flex-shrink: 0;
}

.col {
  flex: 1 0;
}

.row-cols-auto > * {
  flex: none;
  width: auto;
}

.row-cols-1 > * {
  flex: none;
  width: 100%;
}

.row-cols-2 > * {
  flex: none;
  width: 50%;
}

.row-cols-3 > * {
  flex: none;
  width: 33.3333%;
}

.row-cols-4 > * {
  flex: none;
  width: 25%;
}

.row-cols-5 > * {
  flex: none;
  width: 20%;
}

.row-cols-6 > * {
  flex: none;
  width: 16.6667%;
}

.col-auto {
  flex: none;
  width: auto;
}

.col-1 {
  flex: none;
  width: 8.33333%;
}

.col-2 {
  flex: none;
  width: 16.6667%;
}

.col-3 {
  flex: none;
  width: 25%;
}

.col-4 {
  flex: none;
  width: 33.3333%;
}

.col-5 {
  flex: none;
  width: 41.6667%;
}

.col-6 {
  flex: none;
  width: 50%;
}

.col-7 {
  flex: none;
  width: 58.3333%;
}

.col-8 {
  flex: none;
  width: 66.6667%;
}

.col-9 {
  flex: none;
  width: 75%;
}

.col-10 {
  flex: none;
  width: 83.3333%;
}

.col-11 {
  flex: none;
  width: 91.6667%;
}

.col-12 {
  flex: none;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333%;
}

.offset-2 {
  margin-left: 16.6667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333%;
}

.offset-5 {
  margin-left: 41.6667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333%;
}

.offset-8 {
  margin-left: 66.6667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333%;
}

.offset-11 {
  margin-left: 91.6667%;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-1, .gx-1 {
  --bs-gutter-x: .25rem;
}

.g-1, .gy-1 {
  --bs-gutter-y: .25rem;
}

.g-2, .gx-2 {
  --bs-gutter-x: .5rem;
}

.g-2, .gy-2 {
  --bs-gutter-y: .5rem;
}

.g-3, .gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3, .gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4, .gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4, .gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5, .gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5, .gy-5 {
  --bs-gutter-y: 3rem;
}

@media (width >= 576px) {
  .col-sm {
    flex: 1 0;
  }

  .row-cols-sm-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-sm-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-sm-auto {
    flex: none;
    width: auto;
  }

  .col-sm-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-sm-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-sm-3 {
    flex: none;
    width: 25%;
  }

  .col-sm-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-sm-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-sm-6 {
    flex: none;
    width: 50%;
  }

  .col-sm-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-sm-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-sm-9 {
    flex: none;
    width: 75%;
  }

  .col-sm-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-sm-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-sm-12 {
    flex: none;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333%;
  }

  .offset-sm-2 {
    margin-left: 16.6667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333%;
  }

  .offset-sm-5 {
    margin-left: 41.6667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333%;
  }

  .offset-sm-8 {
    margin-left: 66.6667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333%;
  }

  .offset-sm-11 {
    margin-left: 91.6667%;
  }

  .g-sm-0, .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0, .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1, .gx-sm-1 {
    --bs-gutter-x: .25rem;
  }

  .g-sm-1, .gy-sm-1 {
    --bs-gutter-y: .25rem;
  }

  .g-sm-2, .gx-sm-2 {
    --bs-gutter-x: .5rem;
  }

  .g-sm-2, .gy-sm-2 {
    --bs-gutter-y: .5rem;
  }

  .g-sm-3, .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3, .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4, .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4, .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5, .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5, .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 768px) {
  .col-md {
    flex: 1 0;
  }

  .row-cols-md-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-md-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-md-auto {
    flex: none;
    width: auto;
  }

  .col-md-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-md-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-md-3 {
    flex: none;
    width: 25%;
  }

  .col-md-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-md-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-md-6 {
    flex: none;
    width: 50%;
  }

  .col-md-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-md-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-md-9 {
    flex: none;
    width: 75%;
  }

  .col-md-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-md-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-md-12 {
    flex: none;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333%;
  }

  .offset-md-2 {
    margin-left: 16.6667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333%;
  }

  .offset-md-5 {
    margin-left: 41.6667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333%;
  }

  .offset-md-8 {
    margin-left: 66.6667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333%;
  }

  .offset-md-11 {
    margin-left: 91.6667%;
  }

  .g-md-0, .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0, .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1, .gx-md-1 {
    --bs-gutter-x: .25rem;
  }

  .g-md-1, .gy-md-1 {
    --bs-gutter-y: .25rem;
  }

  .g-md-2, .gx-md-2 {
    --bs-gutter-x: .5rem;
  }

  .g-md-2, .gy-md-2 {
    --bs-gutter-y: .5rem;
  }

  .g-md-3, .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3, .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4, .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4, .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5, .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5, .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 992px) {
  .col-lg {
    flex: 1 0;
  }

  .row-cols-lg-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-lg-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-lg-auto {
    flex: none;
    width: auto;
  }

  .col-lg-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-lg-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-lg-3 {
    flex: none;
    width: 25%;
  }

  .col-lg-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-lg-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-lg-6 {
    flex: none;
    width: 50%;
  }

  .col-lg-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-lg-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-lg-9 {
    flex: none;
    width: 75%;
  }

  .col-lg-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-lg-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-lg-12 {
    flex: none;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333%;
  }

  .offset-lg-2 {
    margin-left: 16.6667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333%;
  }

  .offset-lg-5 {
    margin-left: 41.6667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333%;
  }

  .offset-lg-8 {
    margin-left: 66.6667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333%;
  }

  .offset-lg-11 {
    margin-left: 91.6667%;
  }

  .g-lg-0, .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0, .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1, .gx-lg-1 {
    --bs-gutter-x: .25rem;
  }

  .g-lg-1, .gy-lg-1 {
    --bs-gutter-y: .25rem;
  }

  .g-lg-2, .gx-lg-2 {
    --bs-gutter-x: .5rem;
  }

  .g-lg-2, .gy-lg-2 {
    --bs-gutter-y: .5rem;
  }

  .g-lg-3, .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3, .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4, .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4, .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5, .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5, .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 1200px) {
  .col-xl {
    flex: 1 0;
  }

  .row-cols-xl-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-xl-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-xl-auto {
    flex: none;
    width: auto;
  }

  .col-xl-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-xl-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-xl-3 {
    flex: none;
    width: 25%;
  }

  .col-xl-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-xl-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-xl-6 {
    flex: none;
    width: 50%;
  }

  .col-xl-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-xl-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-xl-9 {
    flex: none;
    width: 75%;
  }

  .col-xl-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-xl-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-xl-12 {
    flex: none;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333%;
  }

  .offset-xl-2 {
    margin-left: 16.6667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333%;
  }

  .offset-xl-5 {
    margin-left: 41.6667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333%;
  }

  .offset-xl-8 {
    margin-left: 66.6667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333%;
  }

  .offset-xl-11 {
    margin-left: 91.6667%;
  }

  .g-xl-0, .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0, .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1, .gx-xl-1 {
    --bs-gutter-x: .25rem;
  }

  .g-xl-1, .gy-xl-1 {
    --bs-gutter-y: .25rem;
  }

  .g-xl-2, .gx-xl-2 {
    --bs-gutter-x: .5rem;
  }

  .g-xl-2, .gy-xl-2 {
    --bs-gutter-y: .5rem;
  }

  .g-xl-3, .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3, .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4, .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4, .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5, .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5, .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (width >= 1400px) {
  .col-xxl {
    flex: 1 0;
  }

  .row-cols-xxl-auto > * {
    flex: none;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: none;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: none;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: none;
    width: 33.3333%;
  }

  .row-cols-xxl-4 > * {
    flex: none;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: none;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: none;
    width: 16.6667%;
  }

  .col-xxl-auto {
    flex: none;
    width: auto;
  }

  .col-xxl-1 {
    flex: none;
    width: 8.33333%;
  }

  .col-xxl-2 {
    flex: none;
    width: 16.6667%;
  }

  .col-xxl-3 {
    flex: none;
    width: 25%;
  }

  .col-xxl-4 {
    flex: none;
    width: 33.3333%;
  }

  .col-xxl-5 {
    flex: none;
    width: 41.6667%;
  }

  .col-xxl-6 {
    flex: none;
    width: 50%;
  }

  .col-xxl-7 {
    flex: none;
    width: 58.3333%;
  }

  .col-xxl-8 {
    flex: none;
    width: 66.6667%;
  }

  .col-xxl-9 {
    flex: none;
    width: 75%;
  }

  .col-xxl-10 {
    flex: none;
    width: 83.3333%;
  }

  .col-xxl-11 {
    flex: none;
    width: 91.6667%;
  }

  .col-xxl-12 {
    flex: none;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6667%;
  }

  .g-xxl-0, .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0, .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1, .gx-xxl-1 {
    --bs-gutter-x: .25rem;
  }

  .g-xxl-1, .gy-xxl-1 {
    --bs-gutter-y: .25rem;
  }

  .g-xxl-2, .gx-xxl-2 {
    --bs-gutter-x: .5rem;
  }

  .g-xxl-2, .gy-xxl-2 {
    --bs-gutter-y: .5rem;
  }

  .g-xxl-3, .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3, .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4, .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4, .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5, .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5, .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table {
  --bs-table-color-type: initial;
  --bs-table-bg-type: initial;
  --bs-table-color-state: initial;
  --bs-table-bg-state: initial;
  --bs-table-color: var(--bs-emphasis-color);
  --bs-table-bg: var(--bs-body-bg);
  --bs-table-border-color: var(--bs-border-color);
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: var(--bs-emphasis-color);
  --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), .05);
  --bs-table-active-color: var(--bs-emphasis-color);
  --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), .1);
  --bs-table-hover-color: var(--bs-emphasis-color);
  --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), .075);
  vertical-align: top;
  border-color: var(--bs-table-border-color);
  width: 100%;
  margin-bottom: 1rem;
}

.table > :not(caption) > * > * {
  color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));
  background-color: var(--bs-table-bg);
  border-bottom-width: var(--bs-border-width);
  box-shadow: inset 0 0 0 9999px var(--bs-table-bg-state, var(--bs-table-bg-type, var(--bs-table-accent-bg)));
  padding: .5rem;
}

.table > tbody {
  vertical-align: inherit;
}

.table > thead {
  vertical-align: bottom;
}

.table-group-divider {
  border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: .25rem;
}

.table-bordered > :not(caption) > * {
  border-width: var(--bs-border-width) 0;
}

.table-bordered > :not(caption) > * > * {
  border-width: 0 var(--bs-border-width);
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}

.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > *, .table-striped-columns > :not(caption) > tr > :nth-child(2n) {
  --bs-table-color-type: var(--bs-table-striped-color);
  --bs-table-bg-type: var(--bs-table-striped-bg);
}

.table-active {
  --bs-table-color-state: var(--bs-table-active-color);
  --bs-table-bg-state: var(--bs-table-active-bg);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-color-state: var(--bs-table-hover-color);
  --bs-table-bg-state: var(--bs-table-hover-bg);
}

.table-primary {
  --bs-table-color: #000;
  --bs-table-bg: #cfe2ff;
  --bs-table-border-color: #a6b5cc;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-secondary {
  --bs-table-color: #000;
  --bs-table-bg: #e2e3e5;
  --bs-table-border-color: #b5b6b7;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #cbccce;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #d1d2d4;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-success {
  --bs-table-color: #000;
  --bs-table-bg: #d1e7dd;
  --bs-table-border-color: #a7b9b1;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c1d6cc;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-info {
  --bs-table-color: #000;
  --bs-table-bg: #cff4fc;
  --bs-table-border-color: #a6c3ca;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #badce3;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfe2e9;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-warning {
  --bs-table-color: #000;
  --bs-table-bg: #fff3cd;
  --bs-table-border-color: #ccc2a4;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece1be;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-danger {
  --bs-table-color: #000;
  --bs-table-bg: #f8d7da;
  --bs-table-border-color: #c6acae;
  --bs-table-striped-bg: #eccccf;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5c7ca;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-light {
  --bs-table-color: #000;
  --bs-table-bg: #f8f9fa;
  --bs-table-border-color: #c6c7c8;
  --bs-table-striped-bg: #ecedee;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e5e6e7;
  --bs-table-hover-color: #000;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-dark {
  --bs-table-color: #fff;
  --bs-table-bg: #212529;
  --bs-table-border-color: #4d5154;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: var(--bs-table-color);
  border-color: var(--bs-table-border-color);
}

.table-responsive {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
}

@media (width <= 575.98px) {
  .table-responsive-sm {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 767.98px) {
  .table-responsive-md {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 991.98px) {
  .table-responsive-lg {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 1199.98px) {
  .table-responsive-xl {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

@media (width <= 1399.98px) {
  .table-responsive-xxl {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
  }
}

.form-label {
  margin-bottom: .5rem;
}

.col-form-label {
  padding-top: calc(.375rem + var(--bs-border-width));
  padding-bottom: calc(.375rem + var(--bs-border-width));
  font-size: inherit;
  margin-bottom: 0;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(.5rem + var(--bs-border-width));
  padding-bottom: calc(.5rem + var(--bs-border-width));
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(.25rem + var(--bs-border-width));
  padding-bottom: calc(.25rem + var(--bs-border-width));
  font-size: .875rem;
}

.form-text {
  color: var(--bs-secondary-color);
  margin-top: .25rem;
  font-size: .875em;
}

.form-control {
  width: 100%;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-clip: padding-box;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.form-control::-webkit-date-and-time-value {
  min-width: 85px;
  height: 1.5em;
  margin: 0;
}

.form-control::-webkit-datetime-edit {
  padding: 0;
  display: block;
}

.form-control::-moz-placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control::placeholder {
  color: var(--bs-secondary-color);
  opacity: 1;
}

.form-control:disabled {
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-control::-webkit-file-upload-button {
  -webkit-margin-end: .75rem;
  margin: -.375rem -.75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  margin-inline-end: .75rem;
  padding: .375rem .75rem;
  -webkit-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control::file-selector-button {
  -webkit-margin-end: .75rem;
  color: var(--bs-body-color);
  background-color: var(--bs-tertiary-bg);
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: var(--bs-border-width);
  border-radius: 0;
  margin: -.375rem -.75rem;
  margin-inline-end: .75rem;
  padding: .375rem .75rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }

  .form-control::file-selector-button {
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: var(--bs-secondary-bg);
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: var(--bs-secondary-bg);
}

.form-control-plaintext {
  width: 100%;
  color: var(--bs-body-color);
  border: solid #0000;
  border-width: var(--bs-border-width) 0;
  background-color: #0000;
  margin-bottom: 0;
  padding: .375rem 0;
  line-height: 1.5;
  display: block;
}

.form-control-plaintext:focus {
  outline: 0;
}

.form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm {
  padding-left: 0;
  padding-right: 0;
}

.form-control-sm {
  min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
  border-radius: var(--bs-border-radius-sm);
  padding: .25rem .5rem;
  font-size: .875rem;
}

.form-control-sm::-webkit-file-upload-button {
  -webkit-margin-end: .5rem;
  margin: -.25rem -.5rem;
  margin-inline-end: .5rem;
  padding: .25rem .5rem;
}

.form-control-sm::file-selector-button {
  -webkit-margin-end: .5rem;
  margin: -.25rem -.5rem;
  margin-inline-end: .5rem;
  padding: .25rem .5rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
  border-radius: var(--bs-border-radius-lg);
  padding: .5rem 1rem;
  font-size: 1.25rem;
}

.form-control-lg::-webkit-file-upload-button {
  -webkit-margin-end: 1rem;
  margin: -.5rem -1rem;
  margin-inline-end: 1rem;
  padding: .5rem 1rem;
}

.form-control-lg::file-selector-button {
  -webkit-margin-end: 1rem;
  margin: -.5rem -1rem;
  margin-inline-end: 1rem;
  padding: .5rem 1rem;
}

textarea.form-control {
  min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-sm {
  min-height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
}

textarea.form-control-lg {
  min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-control-color {
  width: 3rem;
  height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
  padding: .375rem;
}

.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}

.form-control-color::-moz-color-swatch {
  border-radius: var(--bs-border-radius);
  border: 0 !important;
}

.form-control-color::-webkit-color-swatch {
  border-radius: var(--bs-border-radius);
  border: 0 !important;
}

.form-control-color.form-control-sm {
  height: calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));
}

.form-control-color.form-control-lg {
  height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  width: 100%;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-position: right .75rem center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  padding: .375rem 2.25rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}

.form-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.form-select[multiple], .form-select[size]:not([size="1"]) {
  background-image: none;
  padding-right: .75rem;
}

.form-select:disabled {
  background-color: var(--bs-secondary-bg);
}

.form-select:-moz-focusring {
  color: #0000;
  text-shadow: 0 0 0 var(--bs-body-color);
}

.form-select-sm {
  border-radius: var(--bs-border-radius-sm);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.form-select-lg {
  border-radius: var(--bs-border-radius-lg);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

[data-bs-theme="dark"] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dee2e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.form-check {
  min-height: 1.5rem;
  margin-bottom: .125rem;
  padding-left: 1.5em;
  display: block;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-reverse {
  text-align: right;
  padding-left: 0;
  padding-right: 1.5em;
}

.form-check-reverse .form-check-input {
  float: right;
  margin-left: 0;
  margin-right: -1.5em;
}

.form-check-input {
  --bs-form-check-bg: var(--bs-body-bg);
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-form-check-bg);
  background-image: var(--bs-form-check-bg-image);
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
  print-color-adjust: exact;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: .25em;
}

.form-check-input[type="checkbox"] {
  border-radius: .25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  filter: brightness(90%);
}

.form-check-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:checked[type="checkbox"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: .5;
}

.form-check-input:disabled ~ .form-check-label, .form-check-input[disabled] ~ .form-check-label {
  cursor: default;
  opacity: .5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-image: var(--bs-form-switch-bg);
  background-position: 0;
  border-radius: 2em;
  width: 2em;
  margin-left: -2.5em;
  transition: background-position .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  background-position: 100%;
}

.form-switch.form-check-reverse {
  padding-left: 0;
  padding-right: 2.5em;
}

.form-switch.form-check-reverse .form-check-input {
  margin-left: 0;
  margin-right: -2.5em;
}

.form-check-inline {
  margin-right: 1rem;
  display: inline-block;
}

.btn-check {
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  position: absolute;
}

.btn-check:disabled + .btn, .btn-check[disabled] + .btn {
  pointer-events: none;
  filter: none;
  opacity: .65;
}

[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
  --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 0.25%29'/%3e%3c/svg%3e");
}

.form-range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #0000;
  width: 100%;
  height: 1.5rem;
  padding: 0;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40;
}

.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 .25rem #0d6efd40;
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  color: #0000;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: #0000;
  border-radius: 1rem;
  width: 100%;
  height: .5rem;
}

.form-range::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  width: 1rem;
  height: 1rem;
  -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  color: #0000;
  cursor: pointer;
  background-color: var(--bs-secondary-bg);
  border-color: #0000;
  border-radius: 1rem;
  width: 100%;
  height: .5rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: var(--bs-secondary-color);
}

.form-range:disabled::-moz-range-thumb {
  background-color: var(--bs-secondary-color);
}

.form-floating {
  position: relative;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  min-height: calc(3.5rem + calc(var(--bs-border-width) * 2));
  line-height: 1.25;
}

.form-floating > label {
  z-index: 2;
  text-align: start;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  border: var(--bs-border-width) solid transparent;
  transform-origin: 0 0;
  height: 100%;
  padding: 1rem .75rem;
  transition: opacity .1s ease-in-out, transform .1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 1rem .75rem;
}

.form-floating > .form-control-plaintext::-moz-placeholder, .form-floating > .form-control::-moz-placeholder {
  color: #0000;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: #0000;
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating > .form-control-plaintext:-webkit-autofill, .form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: .625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  color: rgba(var(--bs-body-color-rgb), .65);
  transform: scale(.85)translateY(-.5rem)translateX(.15rem);
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  color: rgba(var(--bs-body-color-rgb), .65);
  transform: scale(.85)translateY(-.5rem)translateX(.15rem);
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label:after {
  z-index: -1;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
  height: 1.5em;
  position: absolute;
  inset: 1rem .375rem;
}

.form-floating > .form-control-plaintext ~ label:after, .form-floating > .form-control:focus ~ label:after, .form-floating > .form-control:not(:placeholder-shown) ~ label:after, .form-floating > .form-select ~ label:after {
  z-index: -1;
  content: "";
  background-color: var(--bs-body-bg);
  border-radius: var(--bs-border-radius);
  height: 1.5em;
  position: absolute;
  inset: 1rem .375rem;
}

.form-floating > .form-control:-webkit-autofill ~ label {
  color: rgba(var(--bs-body-color-rgb), .65);
  transform: scale(.85)translateY(-.5rem)translateX(.15rem);
}

.form-floating > .form-control-plaintext ~ label {
  border-width: var(--bs-border-width) 0;
}

.form-floating > .form-control:disabled ~ label, .form-floating > :disabled ~ label {
  color: #6c757d;
}

.form-floating > .form-control:disabled ~ label:after, .form-floating > :disabled ~ label:after {
  background-color: var(--bs-secondary-bg);
}

.input-group {
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: relative;
}

.input-group > .form-control, .input-group > .form-floating, .input-group > .form-select {
  flex: auto;
  width: 1%;
  min-width: 0;
  position: relative;
}

.input-group > .form-control:focus, .input-group > .form-floating:focus-within, .input-group > .form-select:focus {
  z-index: 5;
}

.input-group .btn {
  z-index: 2;
  position: relative;
}

.input-group .btn:focus {
  z-index: 5;
}

.input-group-text {
  color: var(--bs-body-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-tertiary-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  align-items: center;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
}

.input-group-lg > .btn, .input-group-lg > .form-control, .input-group-lg > .form-select, .input-group-lg > .input-group-text {
  border-radius: var(--bs-border-radius-lg);
  padding: .5rem 1rem;
  font-size: 1.25rem;
}

.input-group-sm > .btn, .input-group-sm > .form-control, .input-group-sm > .form-select, .input-group-sm > .input-group-text {
  border-radius: var(--bs-border-radius-sm);
  padding: .25rem .5rem;
  font-size: .875rem;
}

.input-group-lg > .form-select, .input-group-sm > .form-select {
  padding-right: 3rem;
}

.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-control, .input-group:not(.has-validation) > .form-floating:not(:last-child) > .form-select, .input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating), .input-group.has-validation > .dropdown-toggle:nth-last-child(n+4), .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-control, .input-group.has-validation > .form-floating:nth-last-child(n+3) > .form-select, .input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: calc(var(--bs-border-width) * -1);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .form-floating:not(:first-child) > .form-control, .input-group > .form-floating:not(:first-child) > .form-select {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  width: 100%;
  color: var(--bs-form-valid-color);
  margin-top: .25rem;
  font-size: .875em;
  display: none;
}

.valid-tooltip {
  z-index: 5;
  color: #fff;
  background-color: var(--bs-success);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  margin-top: .1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  display: none;
  position: absolute;
  top: 100%;
}

.is-valid ~ .valid-feedback, .is-valid ~ .valid-tooltip, .was-validated :valid ~ .valid-feedback, .was-validated :valid ~ .valid-tooltip {
  display: block;
}

.form-control.is-valid, .was-validated .form-control:valid {
  border-color: var(--bs-form-valid-border-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: calc(1.5em + .75rem);
}

.form-control.is-valid:focus, .was-validated .form-control:valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  background-position: right calc(.375em + .1875rem) top calc(.375em + .1875rem);
  padding-right: calc(1.5em + .75rem);
}

.form-select.is-valid, .was-validated .form-select:valid {
  border-color: var(--bs-form-valid-border-color);
}

.form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"], .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right .75rem center, right 2.25rem center;
  background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: 4.125rem;
}

.form-select.is-valid:focus, .was-validated .form-select:valid:focus {
  border-color: var(--bs-form-valid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.form-control-color.is-valid, .was-validated .form-control-color:valid {
  width: calc(1.5em + 3.75rem);
}

.form-check-input.is-valid, .was-validated .form-check-input:valid {
  border-color: var(--bs-form-valid-border-color);
}

.form-check-input.is-valid:checked, .was-validated .form-check-input:valid:checked {
  background-color: var(--bs-form-valid-color);
}

.form-check-input.is-valid:focus, .was-validated .form-check-input:valid:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-success-rgb), .25);
}

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
  color: var(--bs-form-valid-color);
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em;
}

.input-group > .form-control:not(:focus).is-valid, .input-group > .form-floating:not(:focus-within).is-valid, .input-group > .form-select:not(:focus).is-valid, .was-validated .input-group > .form-control:not(:focus):valid, .was-validated .input-group > .form-floating:not(:focus-within):valid, .was-validated .input-group > .form-select:not(:focus):valid {
  z-index: 3;
}

.invalid-feedback {
  width: 100%;
  color: var(--bs-form-invalid-color);
  margin-top: .25rem;
  font-size: .875em;
  display: none;
}

.invalid-tooltip {
  z-index: 5;
  color: #fff;
  background-color: var(--bs-danger);
  border-radius: var(--bs-border-radius);
  max-width: 100%;
  margin-top: .1rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  display: none;
  position: absolute;
  top: 100%;
}

.is-invalid ~ .invalid-feedback, .is-invalid ~ .invalid-tooltip, .was-validated :invalid ~ .invalid-feedback, .was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  border-color: var(--bs-form-invalid-border-color);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right calc(.375em + .1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: calc(1.5em + .75rem);
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  background-position: right calc(.375em + .1875rem) top calc(.375em + .1875rem);
  padding-right: calc(1.5em + .75rem);
}

.form-select.is-invalid, .was-validated .form-select:invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"], .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"] {
  --bs-form-select-bg-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right .75rem center, right 2.25rem center;
  background-size: 16px 12px, calc(.75em + .375rem) calc(.75em + .375rem);
  padding-right: 4.125rem;
}

.form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
  border-color: var(--bs-form-invalid-border-color);
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

.form-control-color.is-invalid, .was-validated .form-control-color:invalid {
  width: calc(1.5em + 3.75rem);
}

.form-check-input.is-invalid, .was-validated .form-check-input:invalid {
  border-color: var(--bs-form-invalid-border-color);
}

.form-check-input.is-invalid:checked, .was-validated .form-check-input:invalid:checked {
  background-color: var(--bs-form-invalid-color);
}

.form-check-input.is-invalid:focus, .was-validated .form-check-input:invalid:focus {
  box-shadow: 0 0 0 .25rem rgba(var(--bs-danger-rgb), .25);
}

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
  color: var(--bs-form-invalid-color);
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em;
}

.input-group > .form-control:not(:focus).is-invalid, .input-group > .form-floating:not(:focus-within).is-invalid, .input-group > .form-select:not(:focus).is-invalid, .was-validated .input-group > .form-control:not(:focus):invalid, .was-validated .input-group > .form-floating:not(:focus-within):invalid, .was-validated .input-group > .form-select:not(:focus):invalid {
  z-index: 4;
}

.btn {
  --bs-btn-padding-x: .75rem;
  --bs-btn-padding-y: .375rem;
  --bs-btn-font-family: ;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-out-line-height: 1.5;
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 #ffffff26, 0 1px 1px #00000013;
  --bs-btn-disabled-opacity: .65;
  --bs-btn-focus-box-shadow: 0 0 0 .25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-out-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}

.btn:hover {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-check + .btn:hover {
  color: var(--bs-btn-color);
  background-color: var(--bs-btn-bg);
  border-color: var(--bs-btn-border-color);
}

.btn:focus-visible {
  color: var(--bs-btn-hover-color);
  background-color: var(--bs-btn-hover-bg);
  border-color: var(--bs-btn-hover-border-color);
  box-shadow: var(--bs-btn-focus-box-shadow);
  outline: 0;
}

.btn-check:focus-visible + .btn {
  border-color: var(--bs-btn-hover-border-color);
  box-shadow: var(--bs-btn-focus-box-shadow);
  outline: 0;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  color: var(--bs-btn-active-color);
  background-color: var(--bs-btn-active-bg);
  border-color: var(--bs-btn-active-border-color);
}

.btn-check:checked + .btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check) + .btn:active:focus-visible {
  box-shadow: var(--bs-btn-focus-box-shadow);
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}

.btn-secondary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #5c636a;
  --bs-btn-hover-border-color: #565e64;
  --bs-btn-focus-shadow-rgb: 130, 138, 145;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #565e64;
  --bs-btn-active-border-color: #51585e;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #6c757d;
  --bs-btn-disabled-border-color: #6c757d;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #157347;
  --bs-btn-hover-border-color: #146c43;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #146c43;
  --bs-btn-active-border-color: #13653f;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #198754;
  --bs-btn-disabled-border-color: #198754;
}

.btn-info {
  --bs-btn-color: #000;
  --bs-btn-bg: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #31d2f2;
  --bs-btn-hover-border-color: #25cff2;
  --bs-btn-focus-shadow-rgb: 11, 172, 204;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #3dd5f3;
  --bs-btn-active-border-color: #25cff2;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #0dcaf0;
  --bs-btn-disabled-border-color: #0dcaf0;
}

.btn-warning {
  --bs-btn-color: #000;
  --bs-btn-bg: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #bb2d3b;
  --bs-btn-hover-border-color: #b02a37;
  --bs-btn-focus-shadow-rgb: 225, 83, 97;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #b02a37;
  --bs-btn-active-border-color: #a52834;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #dc3545;
  --bs-btn-disabled-border-color: #dc3545;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #424649;
  --bs-btn-hover-border-color: #373b3e;
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #4d5154;
  --bs-btn-active-border-color: #373b3e;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #212529;
  --bs-btn-disabled-border-color: #212529;
}

.btn-outline-primary {
  --bs-btn-color: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0d6efd;
  --bs-btn-hover-border-color: #0d6efd;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #0d6efd;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0d6efd;
  --bs-gradient: none;
}

.btn-outline-secondary {
  --bs-btn-color: #6c757d;
  --bs-btn-border-color: #6c757d;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #6c757d;
  --bs-btn-hover-border-color: #6c757d;
  --bs-btn-focus-shadow-rgb: 108, 117, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #6c757d;
  --bs-btn-active-border-color: #6c757d;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #6c757d;
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: #198754;
  --bs-btn-border-color: #198754;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #198754;
  --bs-btn-hover-border-color: #198754;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #198754;
  --bs-btn-active-border-color: #198754;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #198754;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #198754;
  --bs-gradient: none;
}

.btn-outline-info {
  --bs-btn-color: #0dcaf0;
  --bs-btn-border-color: #0dcaf0;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #0dcaf0;
  --bs-btn-hover-border-color: #0dcaf0;
  --bs-btn-focus-shadow-rgb: 13, 202, 240;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #0dcaf0;
  --bs-btn-active-border-color: #0dcaf0;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #0dcaf0;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #0dcaf0;
  --bs-gradient: none;
}

.btn-outline-warning {
  --bs-btn-color: #ffc107;
  --bs-btn-border-color: #ffc107;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ffc107;
  --bs-btn-hover-border-color: #ffc107;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ffc107;
  --bs-btn-active-border-color: #ffc107;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #ffc107;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ffc107;
  --bs-gradient: none;
}

.btn-outline-danger {
  --bs-btn-color: #dc3545;
  --bs-btn-border-color: #dc3545;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #dc3545;
  --bs-btn-hover-border-color: #dc3545;
  --bs-btn-focus-shadow-rgb: 220, 53, 69;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #dc3545;
  --bs-btn-active-border-color: #dc3545;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #dc3545;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dc3545;
  --bs-gradient: none;
}

.btn-outline-light {
  --bs-btn-color: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #f8f9fa;
  --bs-btn-hover-border-color: #f8f9fa;
  --bs-btn-focus-shadow-rgb: 248, 249, 250;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #f8f9fa;
  --bs-btn-active-border-color: #f8f9fa;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #f8f9fa;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #f8f9fa;
  --bs-gradient: none;
}

.btn-out-line-dark {
  --bs-btn-color: #212529;
  --bs-btn-border-color: #212529;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #212529;
  --bs-btn-active-border-color: #212529;
  --bs-btn-active-shadow: inset 0 3px 5px #00000020;
  --bs-btn-disabled-color: #212529;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #212529;
  --bs-gradient: none;
}

.btn-link {
  --bs-btn-font-weight: 400;
  --bs-btn-color: var(--bs-link-color);
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--bs-link-hover-color);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--bs-link-hover-color);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: #6c757d;
  --bs-btn-disabled-border-color: transparent;
  --bs-btn-box-shadow: 0 0 0 #000;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  text-decoration: underline;
}

.btn-link:focus-visible {
  color: var(--bs-btn-color);
}

.btn-link:hover {
  color: var(--bs-btn-hover-color);
}

.btn-group-lg > .btn, .btn-lg {
  --bs-btn-padding-y: .5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}

.btn-group-sm > .btn, .btn-sm {
  --bs-btn-padding-y: .25rem;
  --bs-btn-padding-x: .5rem;
  --bs-btn-font-size: .875rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.fade {
  transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  transition: height .35s;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width .35s;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top-color: currentColor;
  border-bottom: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: .5rem;
  --bs-dropdown-spacer: .125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius)  - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: .5rem;
  --bs-dropdown-box-shadow: var(--bs-box-shadow);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--bs-body-color);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: .25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: .5rem;
  z-index: var(--bs-dropdown-zindex);
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  background-color: var(--bs-dropdown-bg);
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
  background-clip: padding-box;
  margin: 0;
  list-style: none;
  display: none;
  position: absolute;
}

.dropdown-menu[data-bs-popper] {
  margin-top: var(--bs-dropdown-spacer);
  top: 100%;
  left: 0;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  left: 0;
  right: auto;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  left: auto;
  right: 0;
}

@media (width >= 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }

  .dropdown-menu-sm-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }

  .dropdown-menu-sm-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }

  .dropdown-menu-md-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }

  .dropdown-menu-md-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }

  .dropdown-menu-lg-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }

  .dropdown-menu-lg-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }

  .dropdown-menu-xl-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }

  .dropdown-menu-xl-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

@media (width >= 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }

  .dropdown-menu-xxl-start[data-bs-popper] {
    left: 0;
    right: auto;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }

  .dropdown-menu-xxl-end[data-bs-popper] {
    left: auto;
    right: 0;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-bottom: var(--bs-dropdown-spacer);
  top: auto;
  bottom: 100%;
}

.dropup .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-top: 0;
  border-bottom-color: currentColor;
  margin-left: .255em;
  display: inline-block;
}

.dropup .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-left: var(--bs-dropdown-spacer);
  top: 0;
  left: 100%;
  right: auto;
}

.dropend .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  border: .3em solid #0000;
  border-left-color: currentColor;
  border-right: 0;
  margin-left: .255em;
  display: inline-block;
}

.dropend .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropend .dropdown-toggle:after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  margin-top: 0;
  margin-right: var(--bs-dropdown-spacer);
  top: 0;
  left: auto;
  right: 100%;
}

.dropstart .dropdown-toggle:after {
  vertical-align: .255em;
  content: "";
  margin-left: .255em;
  display: none;
}

.dropstart .dropdown-toggle:before {
  vertical-align: .255em;
  content: "";
  border-top: .3em solid #0000;
  border-bottom: .3em solid #0000;
  border-right: .3em solid;
  margin-right: .255em;
  display: inline-block;
}

.dropstart .dropdown-toggle:empty:after {
  margin-left: 0;
}

.dropstart .dropdown-toggle:before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: var(--bs-dropdown-divider-margin-y) 0;
  border-top: 1px solid var(--bs-dropdown-divider-bg);
  opacity: 1;
  overflow: hidden;
}

.dropdown-item {
  width: 100%;
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  clear: both;
  color: var(--bs-dropdown-link-color);
  text-align: inherit;
  white-space: nowrap;
  border-radius: var(--bs-dropdown-item-border-radius, 0);
  background-color: #0000;
  border: 0;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--bs-dropdown-link-hover-bg);
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  background-color: var(--bs-dropdown-link-active-bg);
  text-decoration: none;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: var(--bs-dropdown-link-disabled-color);
  pointer-events: none;
  background-color: #0000;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  padding: var(--bs-dropdown-header-padding-y) var(--bs-dropdown-header-padding-x);
  color: var(--bs-dropdown-header-color);
  white-space: nowrap;
  margin-bottom: 0;
  font-size: .875rem;
  display: block;
}

.dropdown-item-text {
  padding: var(--bs-dropdown-item-padding-y) var(--bs-dropdown-item-padding-x);
  color: var(--bs-dropdown-link-color);
  display: block;
}

.dropdown-menu-dark {
  --bs-dropdown-color: #dee2e6;
  --bs-dropdown-bg: #343a40;
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-box-shadow: ;
  --bs-dropdown-link-color: #dee2e6;
  --bs-dropdown-link-hover-color: #fff;
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-link-hover-bg: #ffffff26;
  --bs-dropdown-link-active-color: #fff;
  --bs-dropdown-link-active-bg: #0d6efd;
  --bs-dropdown-link-disabled-color: #adb5bd;
  --bs-dropdown-header-color: #adb5bd;
}

.btn-group, .btn-group-vertical {
  vertical-align: middle;
  display: inline-flex;
  position: relative;
}

.btn-group-vertical > .btn, .btn-group > .btn {
  flex: auto;
  position: relative;
}

.btn-group-vertical > .btn-check:checked + .btn, .btn-group-vertical > .btn-check:focus + .btn, .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:focus + .btn, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
  z-index: 1;
}

.btn-toolbar {
  flex-wrap: wrap;
  justify-content: flex-start;
  display: flex;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group {
  border-radius: var(--bs-border-radius);
}

.btn-group > .btn-group:not(:first-child), .btn-group > :not(.btn-check:first-child) + .btn {
  margin-left: calc(var(--bs-border-width) * -1);
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn.dropdown-toggle-split:first-child, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:nth-child(n+3), .btn-group > :not(.btn-check) + .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-left: .5625rem;
  padding-right: .5625rem;
}

.dropdown-toggle-split:after, .dropend .dropdown-toggle-split:after, .dropup .dropdown-toggle-split:after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split:before {
  margin-right: 0;
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
  padding-left: .375rem;
  padding-right: .375rem;
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
  padding-left: .75rem;
  padding-right: .75rem;
}

.btn-group-vertical {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn-group:not(:first-child), .btn-group-vertical > .btn:not(:first-child) {
  margin-top: calc(var(--bs-border-width) * -1);
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn ~ .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  --bs-nav-link-padding-x: 1rem;
  --bs-nav-link-padding-y: .5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-link-color);
  --bs-nav-link-hover-color: var(--bs-link-hover-color);
  --bs-nav-link-disabled-color: var(--bs-secondary-color);
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.nav-link {
  padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
  font-size: var(--bs-nav-link-font-size);
  font-weight: var(--bs-nav-link-font-weight);
  color: var(--bs-nav-link-color);
  background: none;
  border: 0;
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    transition: none;
  }
}

.nav-link:focus, .nav-link:hover {
  color: var(--bs-nav-link-hover-color);
}

.nav-link:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 .25rem #0d6efd40;
}

.nav-link.disabled, .nav-link:disabled {
  color: var(--bs-nav-link-disabled-color);
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  --bs-nav-tabs-border-width: var(--bs-border-width);
  --bs-nav-tabs-border-color: var(--bs-border-color);
  --bs-nav-tabs-border-radius: var(--bs-border-radius);
  --bs-nav-tabs-link-hover-border-color: var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);
  --bs-nav-tabs-link-active-color: var(--bs-emphasis-color);
  --bs-nav-tabs-link-active-bg: var(--bs-body-bg);
  --bs-nav-tabs-link-active-border-color: var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color);
}

.nav-tabs .nav-link {
  margin-bottom: calc(-1 * var(--bs-nav-tabs-border-width));
  border: var(--bs-nav-tabs-border-width) solid transparent;
  border-top-left-radius: var(--bs-nav-tabs-border-radius);
  border-top-right-radius: var(--bs-nav-tabs-border-radius);
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: var(--bs-nav-tabs-link-hover-border-color);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--bs-nav-tabs-link-active-color);
  background-color: var(--bs-nav-tabs-link-active-bg);
  border-color: var(--bs-nav-tabs-link-active-border-color);
}

.nav-tabs .dropdown-menu {
  margin-top: calc(-1 * var(--bs-nav-tabs-border-width));
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills {
  --bs-nav-pills-border-radius: var(--bs-border-radius);
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: #0d6efd;
}

.nav-pills .nav-link {
  border-radius: var(--bs-nav-pills-border-radius);
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: var(--bs-nav-pills-link-active-color);
  background-color: var(--bs-nav-pills-link-active-bg);
}

.nav-underline {
  --bs-nav-underline-gap: 1rem;
  --bs-nav-underline-border-width: .125rem;
  --bs-nav-underline-link-active-color: var(--bs-emphasis-color);
  gap: var(--bs-nav-underline-gap);
}

.nav-underline .nav-link {
  border-bottom: var(--bs-nav-underline-border-width) solid transparent;
  padding-left: 0;
  padding-right: 0;
}

.nav-underline .nav-link:focus, .nav-underline .nav-link:hover {
  border-bottom-color: currentColor;
}

.nav-underline .nav-link.active, .nav-underline .show > .nav-link {
  color: var(--bs-nav-underline-link-active-color);
  border-bottom-color: currentColor;
  font-weight: 700;
}

.nav-fill .nav-item, .nav-fill > .nav-link {
  text-align: center;
  flex: auto;
}

.nav-justified .nav-item, .nav-justified > .nav-link {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
}

.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  --bs-navbar-padding-x: 0;
  --bs-navbar-padding-y: .5rem;
  --bs-navbar-color: rgba(var(--bs-emphasis-color-rgb), .65);
  --bs-navbar-hover-color: rgba(var(--bs-emphasis-color-rgb), .8);
  --bs-navbar-disabled-color: rgba(var(--bs-emphasis-color-rgb), .3);
  --bs-navbar-active-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-padding-y: .3125rem;
  --bs-navbar-brand-margin-end: 1rem;
  --bs-navbar-brand-font-size: 1.25rem;
  --bs-navbar-brand-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-brand-hover-color: rgba(var(--bs-emphasis-color-rgb), 1);
  --bs-navbar-nav-link-padding-x: .5rem;
  --bs-navbar-toggler-padding-y: .25rem;
  --bs-navbar-toggler-padding-x: .75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), .15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: .25rem;
  --bs-navbar-toggler-transition: box-shadow .15s ease-in-out;
  padding: var(--bs-navbar-padding-y) var(--bs-navbar-padding-x);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar > .container, .navbar > .container-fluid, .navbar > .container-lg, .navbar > .container-md, .navbar > .container-sm, .navbar > .container-xl, .navbar > .container-xxl {
  flex-wrap: inherit;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.navbar-brand {
  padding-top: var(--bs-navbar-brand-padding-y);
  padding-bottom: var(--bs-navbar-brand-padding-y);
  margin-right: var(--bs-navbar-brand-margin-end);
  font-size: var(--bs-navbar-brand-font-size);
  color: var(--bs-navbar-brand-color);
  white-space: nowrap;
  text-decoration: none;
}

.navbar-brand:focus, .navbar-brand:hover {
  color: var(--bs-navbar-brand-hover-color);
}

.navbar-nav {
  --bs-nav-link-padding-x: 0;
  --bs-nav-link-padding-y: .5rem;
  --bs-nav-link-font-weight: ;
  --bs-nav-link-color: var(--bs-navbar-color);
  --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  display: flex;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: var(--bs-navbar-active-color);
}

.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  color: var(--bs-navbar-color);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.navbar-text a, .navbar-text a:focus, .navbar-text a:hover {
  color: var(--bs-navbar-active-color);
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
}

.navbar-toggler {
  padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
  font-size: var(--bs-navbar-toggler-font-size);
  color: var(--bs-navbar-color);
  border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
  border-radius: var(--bs-navbar-toggler-border-radius);
  transition: var(--bs-navbar-toggler-transition);
  background-color: #0000;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}

.navbar-toggler:hover {
  text-decoration: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width);
  outline: 0;
  text-decoration: none;
}

.navbar-toggler-icon {
  vertical-align: middle;
  background-image: var(--bs-navbar-toggler-icon-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 1.5em;
  height: 1.5em;
  display: inline-block;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (width >= 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-sm .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-sm .navbar-toggler {
    display: none;
  }

  .navbar-expand-sm .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-sm .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-sm .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-md .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-md .navbar-toggler {
    display: none;
  }

  .navbar-expand-md .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-md .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-md .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-lg .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-lg .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-lg .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xl .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xl .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-xl .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xl .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

@media (width >= 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }

  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: var(--bs-navbar-nav-link-padding-x);
    padding-left: var(--bs-navbar-nav-link-padding-x);
  }

  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }

  .navbar-expand-xxl .navbar-collapse {
    flex-basis: auto;
    display: flex !important;
  }

  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xxl .offcanvas {
    z-index: auto;
    flex-grow: 1;
    transition: none;
    position: static;
    visibility: visible !important;
    background-color: #0000 !important;
    border: 0 !important;
    width: auto !important;
    height: auto !important;
    transform: none !important;
  }

  .navbar-expand-xxl .offcanvas .offcanvas-header {
    display: none;
  }

  .navbar-expand-xxl .offcanvas .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
  }
}

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.navbar-expand .navbar-nav {
  flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: var(--bs-navbar-nav-link-padding-x);
  padding-left: var(--bs-navbar-nav-link-padding-x);
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  flex-basis: auto;
  display: flex !important;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-expand .offcanvas {
  z-index: auto;
  flex-grow: 1;
  transition: none;
  position: static;
  visibility: visible !important;
  background-color: #0000 !important;
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
}

.navbar-expand .offcanvas .offcanvas-header {
  display: none;
}

.navbar-expand .offcanvas .offcanvas-body {
  flex-grow: 0;
  padding: 0;
  display: flex;
  overflow-y: visible;
}

.navbar-dark, .navbar[data-bs-theme="dark"] {
  --bs-navbar-color: #ffffff8c;
  --bs-navbar-hover-color: #ffffffbf;
  --bs-navbar-disabled-color: #ffffff40;
  --bs-navbar-active-color: #fff;
  --bs-navbar-brand-color: #fff;
  --bs-navbar-brand-hover-color: #fff;
  --bs-navbar-toggler-border-color: #ffffff1a;
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

[data-bs-theme="dark"] .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: .5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: var(--bs-border-width);
  --bs-card-border-color: var(--bs-border-color-translucent);
  --bs-card-border-radius: var(--bs-border-radius);
  --bs-card-box-shadow: ;
  --bs-card-inner-border-radius: calc(var(--bs-border-radius)  - (var(--bs-border-width)));
  --bs-card-cap-padding-y: .5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), .03);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: var(--bs-body-bg);
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: .75rem;
  min-width: 0;
  height: var(--bs-card-height);
  color: var(--bs-body-color);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
  background-clip: border-box;
  flex-direction: column;
  display: flex;
  position: relative;
}

.card > hr {
  margin-left: 0;
  margin-right: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
  border-top-width: 0;
}

.card > .list-group:last-child {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
  border-bottom-width: 0;
}

.card > .card-header + .list-group, .card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
  flex: auto;
}

.card-title {
  margin-bottom: var(--bs-card-title-spacer-y);
  color: var(--bs-card-title-color);
}

.card-subtitle {
  margin-top: calc(-.5 * var(--bs-card-title-spacer-y));
  color: var(--bs-card-subtitle-color);
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: var(--bs-card-spacer-x);
}

.card-header {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  margin-bottom: 0;
}

.card-header:first-child {
  border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
}

.card-footer {
  padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
  color: var(--bs-card-cap-color);
  background-color: var(--bs-card-cap-bg);
  border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}

.card-footer:last-child {
  border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}

.card-header-tabs {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
  border-bottom: 0;
}

.card-header-tabs .nav-link.active {
  background-color: var(--bs-card-bg);
  border-bottom-color: var(--bs-card-bg);
}

.card-header-pills {
  margin-right: calc(-.5 * var(--bs-card-cap-padding-x));
  margin-left: calc(-.5 * var(--bs-card-cap-padding-x));
}

.card-img-overlay {
  padding: var(--bs-card-img-overlay-padding);
  border-radius: var(--bs-card-inner-border-radius);
  position: absolute;
  inset: 0;
}

.card-img, .card-img-bottom, .card-img-top {
  width: 100%;
}

.card-img, .card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.card-img, .card-img-bottom {
  border-bottom-right-radius: var(--bs-card-inner-border-radius);
  border-bottom-left-radius: var(--bs-card-inner-border-radius);
}

.card-group > .card {
  margin-bottom: var(--bs-card-group-margin);
}

@media (width >= 576px) {
  .card-group {
    flex-flow: wrap;
    display: flex;
  }

  .card-group > .card {
    flex: 1 0;
    margin-bottom: 0;
  }

  .card-group > .card + .card {
    border-left: 0;
    margin-left: 0;
  }

  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-header, .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }

  .card-group > .card:not(:last-child) .card-footer, .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }

  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-header, .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }

  .card-group > .card:not(:first-child) .card-footer, .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius)  - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform .2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem #0d6efd40;
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
  border: 0;
  border-radius: 0;
  align-items: center;
  font-size: 1rem;
  display: flex;
  position: relative;
}

.flat-spacing .accordion-item .accordion-header button {
  padding: 0;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed):after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-button:after {
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
  flex-shrink: 0;
  margin-left: auto;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button:after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
  outline: 0;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}

.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-left: 0;
  border-right: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme="dark"] .accordion-button:after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.breadcrumb {
  --bs-breadcrumb-padding-x: 0;
  --bs-breadcrumb-padding-y: 0;
  --bs-breadcrumb-margin-bottom: 1rem;
  --bs-breadcrumb-bg: ;
  --bs-breadcrumb-border-radius: ;
  --bs-breadcrumb-divider-color: var(--bs-secondary-color);
  --bs-breadcrumb-item-padding-x: .5rem;
  --bs-breadcrumb-item-active-color: var(--bs-secondary-color);
  padding: var(--bs-breadcrumb-padding-y) var(--bs-breadcrumb-padding-x);
  margin-bottom: var(--bs-breadcrumb-margin-bottom);
  font-size: var(--bs-breadcrumb-font-size);
  background-color: var(--bs-breadcrumb-bg);
  border-radius: var(--bs-breadcrumb-border-radius);
  flex-wrap: wrap;
  list-style: none;
  display: flex;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: var(--bs-breadcrumb-item-padding-x);
}

.breadcrumb-item + .breadcrumb-item:before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: var(--bs-breadcrumb-divider-color);
  content: var(--bs-breadcrumb-divider, "https://themesflat.co/");
}

.breadcrumb-item.active {
  color: var(--bs-breadcrumb-item-active-color);
}

.pagination {
  --bs-pagination-padding-x: .75rem;
  --bs-pagination-padding-y: .375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: var(--bs-border-radius);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 .25rem #0d6efd40;
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  padding-left: 0;
  list-style: none;
  display: flex;
}

.page-link {
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: var(--bs-pagination-color);
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  text-decoration: none;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: var(--bs-pagination-hover-color);
  background-color: var(--bs-pagination-hover-bg);
  border-color: var(--bs-pagination-hover-border-color);
}

.page-link:focus {
  z-index: 3;
  color: var(--bs-pagination-focus-color);
  background-color: var(--bs-pagination-focus-bg);
  box-shadow: var(--bs-pagination-focus-box-shadow);
  outline: 0;
}

.active > .page-link, .page-link.active {
  z-index: 3;
  color: var(--bs-pagination-active-color);
  background-color: var(--bs-pagination-active-bg);
  border-color: var(--bs-pagination-active-border-color);
}

.disabled > .page-link, .page-link.disabled {
  color: var(--bs-pagination-disabled-color);
  pointer-events: none;
  background-color: var(--bs-pagination-disabled-bg);
  border-color: var(--bs-pagination-disabled-border-color);
}

.page-item:not(:first-child) .page-link {
  margin-left: calc(var(--bs-border-width) * -1);
}

.page-item:first-child .page-link {
  border-top-left-radius: var(--bs-pagination-border-radius);
  border-bottom-left-radius: var(--bs-pagination-border-radius);
}

.page-item:last-child .page-link {
  border-top-right-radius: var(--bs-pagination-border-radius);
  border-bottom-right-radius: var(--bs-pagination-border-radius);
}

.pagination-lg {
  --bs-pagination-padding-x: 1.5rem;
  --bs-pagination-padding-y: .75rem;
  --bs-pagination-font-size: 1.25rem;
  --bs-pagination-border-radius: var(--bs-border-radius-lg);
}

.pagination-sm {
  --bs-pagination-padding-x: .5rem;
  --bs-pagination-padding-y: .25rem;
  --bs-pagination-font-size: .875rem;
  --bs-pagination-border-radius: var(--bs-border-radius-sm);
}

.badge {
  --bs-badge-padding-x: .65em;
  --bs-badge-padding-y: .35em;
  --bs-badge-font-size: .75em;
  --bs-badge-font-weight: 700;
  --bs-badge-color: #fff;
  --bs-badge-border-radius: var(--bs-border-radius);
  padding: var(--bs-badge-padding-y) var(--bs-badge-padding-x);
  font-size: var(--bs-badge-font-size);
  font-weight: var(--bs-badge-font-weight);
  color: var(--bs-badge-color);
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--bs-badge-border-radius);
  line-height: 1;
  display: inline-block;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  --bs-alert-bg: transparent;
  --bs-alert-padding-x: 1rem;
  --bs-alert-padding-y: 1rem;
  --bs-alert-margin-bottom: 1rem;
  --bs-alert-color: inherit;
  --bs-alert-border-color: transparent;
  --bs-alert-border: var(--bs-border-width) solid var(--bs-alert-border-color);
  --bs-alert-border-radius: var(--bs-border-radius);
  --bs-alert-link-color: inherit;
  padding: var(--bs-alert-padding-y) var(--bs-alert-padding-x);
  margin-bottom: var(--bs-alert-margin-bottom);
  color: var(--bs-alert-color);
  background-color: var(--bs-alert-bg);
  border: var(--bs-alert-border);
  border-radius: var(--bs-alert-border-radius);
  position: relative;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  color: var(--bs-alert-link-color);
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  z-index: 2;
  padding: 1.25rem 1rem;
  position: absolute;
  top: 0;
  right: 0;
}

.alert-primary {
  --bs-alert-color: var(--bs-primary-text-emphasis);
  --bs-alert-bg: var(--bs-primary-bg-subtle);
  --bs-alert-border-color: var(--bs-primary-border-subtle);
  --bs-alert-link-color: var(--bs-primary-text-emphasis);
}

.alert-secondary {
  --bs-alert-color: var(--bs-secondary-text-emphasis);
  --bs-alert-bg: var(--bs-secondary-bg-subtle);
  --bs-alert-border-color: var(--bs-secondary-border-subtle);
  --bs-alert-link-color: var(--bs-secondary-text-emphasis);
}

.alert-success {
  --bs-alert-color: var(--bs-success-text-emphasis);
  --bs-alert-bg: var(--bs-success-bg-subtle);
  --bs-alert-border-color: var(--bs-success-border-subtle);
  --bs-alert-link-color: var(--bs-success-text-emphasis);
}

.alert-info {
  --bs-alert-color: var(--bs-info-text-emphasis);
  --bs-alert-bg: var(--bs-info-bg-subtle);
  --bs-alert-border-color: var(--bs-info-border-subtle);
  --bs-alert-link-color: var(--bs-info-text-emphasis);
}

.alert-warning {
  --bs-alert-color: var(--bs-warning-text-emphasis);
  --bs-alert-bg: var(--bs-warning-bg-subtle);
  --bs-alert-border-color: var(--bs-warning-border-subtle);
  --bs-alert-link-color: var(--bs-warning-text-emphasis);
}

.alert-danger {
  --bs-alert-color: var(--bs-danger-text-emphasis);
  --bs-alert-bg: var(--bs-danger-bg-subtle);
  --bs-alert-border-color: var(--bs-danger-border-subtle);
  --bs-alert-link-color: var(--bs-danger-text-emphasis);
}

.alert-light {
  --bs-alert-color: var(--bs-light-text-emphasis);
  --bs-alert-bg: var(--bs-light-bg-subtle);
  --bs-alert-border-color: var(--bs-light-border-subtle);
  --bs-alert-link-color: var(--bs-light-text-emphasis);
}

.alert-dark {
  --bs-alert-color: var(--bs-dark-text-emphasis);
  --bs-alert-bg: var(--bs-dark-bg-subtle);
  --bs-alert-border-color: var(--bs-dark-border-subtle);
  --bs-alert-link-color: var(--bs-dark-text-emphasis);
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

.progress, .progress-stacked {
  --bs-progress-height: 1rem;
  --bs-progress-font-size: .75rem;
  --bs-progress-bg: var(--bs-secondary-bg);
  --bs-progress-border-radius: var(--bs-border-radius);
  --bs-progress-box-shadow: var(--bs-box-shadow-inset);
  --bs-progress-bar-color: #fff;
  --bs-progress-bar-bg: #0d6efd;
  --bs-progress-bar-transition: width .6s ease;
  height: var(--bs-progress-height);
  font-size: var(--bs-progress-font-size);
  background-color: var(--bs-progress-bg);
  border-radius: var(--bs-progress-border-radius);
  display: flex;
  overflow: hidden;
}

.progress-bar {
  color: var(--bs-progress-bar-color);
  text-align: center;
  white-space: nowrap;
  background-color: var(--bs-progress-bar-bg);
  transition: var(--bs-progress-bar-transition);
  flex-direction: column;
  justify-content: center;
  display: flex;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, #ffffff26 25%, #0000 25% 50%, #ffffff26 50% 75%, #0000 75%, #0000);
  background-size: var(--bs-progress-height) var(--bs-progress-height);
}

.progress-stacked > .progress {
  overflow: visible;
}

.progress-stacked > .progress > .progress-bar {
  width: 100%;
}

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  --bs-list-group-color: var(--bs-body-color);
  --bs-list-group-bg: var(--bs-body-bg);
  --bs-list-group-border-color: var(--bs-border-color);
  --bs-list-group-border-width: var(--bs-border-width);
  --bs-list-group-border-radius: var(--bs-border-radius);
  --bs-list-group-item-padding-x: 1rem;
  --bs-list-group-item-padding-y: .5rem;
  --bs-list-group-action-color: var(--bs-secondary-color);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-tertiary-bg);
  --bs-list-group-action-active-color: var(--bs-body-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-bg);
  --bs-list-group-disabled-color: var(--bs-secondary-color);
  --bs-list-group-disabled-bg: var(--bs-body-bg);
  --bs-list-group-active-color: #fff;
  --bs-list-group-active-bg: #0d6efd;
  --bs-list-group-active-border-color: #0d6efd;
  border-radius: var(--bs-list-group-border-radius);
  flex-direction: column;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.list-group-numbered {
  counter-reset: section;
  list-style-type: none;
}

.list-group-numbered > .list-group-item:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: var(--bs-list-group-action-color);
  text-align: inherit;
}

.list-group-item-action:focus, .list-group-item-action:hover {
  z-index: 1;
  color: var(--bs-list-group-action-hover-color);
  background-color: var(--bs-list-group-action-hover-bg);
  text-decoration: none;
}

.list-group-item-action:active {
  color: var(--bs-list-group-action-active-color);
  background-color: var(--bs-list-group-action-active-bg);
}

.list-group-item {
  padding: var(--bs-list-group-item-padding-y) var(--bs-list-group-item-padding-x);
  color: var(--bs-list-group-color);
  background-color: var(--bs-list-group-bg);
  border: var(--bs-list-group-border-width) solid var(--bs-list-group-border-color);
  text-decoration: none;
  display: block;
  position: relative;
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: var(--bs-list-group-disabled-color);
  pointer-events: none;
  background-color: var(--bs-list-group-disabled-bg);
}

.list-group-item.active {
  z-index: 2;
  color: var(--bs-list-group-active-color);
  background-color: var(--bs-list-group-active-bg);
  border-color: var(--bs-list-group-active-border-color);
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: calc(-1 * var(--bs-list-group-border-width));
  border-top-width: var(--bs-list-group-border-width);
}

.list-group-horizontal {
  flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: var(--bs-list-group-border-radius);
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: var(--bs-list-group-border-radius);
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: var(--bs-list-group-border-width);
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: calc(-1 * var(--bs-list-group-border-width));
  border-left-width: var(--bs-list-group-border-width);
}

@media (width >= 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }

  .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }

  .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }

  .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }

  .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

@media (width >= 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }

  .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: var(--bs-list-group-border-radius);
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: var(--bs-list-group-border-radius);
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: var(--bs-list-group-border-width);
    border-left-width: 0;
  }

  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: calc(-1 * var(--bs-list-group-border-width));
    border-left-width: var(--bs-list-group-border-width);
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 var(--bs-list-group-border-width);
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  --bs-list-group-color: var(--bs-primary-text-emphasis);
  --bs-list-group-bg: var(--bs-primary-bg-subtle);
  --bs-list-group-border-color: var(--bs-primary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-primary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-primary-border-subtle);
  --bs-list-group-active-color: var(--bs-primary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-primary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-primary-text-emphasis);
}

.list-group-item-secondary {
  --bs-list-group-color: var(--bs-secondary-text-emphasis);
  --bs-list-group-bg: var(--bs-secondary-bg-subtle);
  --bs-list-group-border-color: var(--bs-secondary-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-secondary-border-subtle);
  --bs-list-group-active-color: var(--bs-secondary-bg-subtle);
  --bs-list-group-active-bg: var(--bs-secondary-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-secondary-text-emphasis);
}

.list-group-item-success {
  --bs-list-group-color: var(--bs-success-text-emphasis);
  --bs-list-group-bg: var(--bs-success-bg-subtle);
  --bs-list-group-border-color: var(--bs-success-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-success-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-success-border-subtle);
  --bs-list-group-active-color: var(--bs-success-bg-subtle);
  --bs-list-group-active-bg: var(--bs-success-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-success-text-emphasis);
}

.list-group-item-info {
  --bs-list-group-color: var(--bs-info-text-emphasis);
  --bs-list-group-bg: var(--bs-info-bg-subtle);
  --bs-list-group-border-color: var(--bs-info-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-info-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-info-border-subtle);
  --bs-list-group-active-color: var(--bs-info-bg-subtle);
  --bs-list-group-active-bg: var(--bs-info-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-info-text-emphasis);
}

.list-group-item-warning {
  --bs-list-group-color: var(--bs-warning-text-emphasis);
  --bs-list-group-bg: var(--bs-warning-bg-subtle);
  --bs-list-group-border-color: var(--bs-warning-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-warning-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-warning-border-subtle);
  --bs-list-group-active-color: var(--bs-warning-bg-subtle);
  --bs-list-group-active-bg: var(--bs-warning-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-warning-text-emphasis);
}

.list-group-item-danger {
  --bs-list-group-color: var(--bs-danger-text-emphasis);
  --bs-list-group-bg: var(--bs-danger-bg-subtle);
  --bs-list-group-border-color: var(--bs-danger-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-danger-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-danger-border-subtle);
  --bs-list-group-active-color: var(--bs-danger-bg-subtle);
  --bs-list-group-active-bg: var(--bs-danger-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-danger-text-emphasis);
}

.list-group-item-light {
  --bs-list-group-color: var(--bs-light-text-emphasis);
  --bs-list-group-bg: var(--bs-light-bg-subtle);
  --bs-list-group-border-color: var(--bs-light-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-light-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-light-border-subtle);
  --bs-list-group-active-color: var(--bs-light-bg-subtle);
  --bs-list-group-active-bg: var(--bs-light-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-light-text-emphasis);
}

.list-group-item-dark {
  --bs-list-group-color: var(--bs-dark-text-emphasis);
  --bs-list-group-bg: var(--bs-dark-bg-subtle);
  --bs-list-group-border-color: var(--bs-dark-border-subtle);
  --bs-list-group-action-hover-color: var(--bs-emphasis-color);
  --bs-list-group-action-hover-bg: var(--bs-dark-border-subtle);
  --bs-list-group-action-active-color: var(--bs-emphasis-color);
  --bs-list-group-action-active-bg: var(--bs-dark-border-subtle);
  --bs-list-group-active-color: var(--bs-dark-bg-subtle);
  --bs-list-group-active-bg: var(--bs-dark-text-emphasis);
  --bs-list-group-active-border-color: var(--bs-dark-text-emphasis);
}

.btn-close {
  --bs-btn-close-color: #000;
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  --bs-btn-close-opacity: .5;
  --bs-btn-close-hover-opacity: .75;
  --bs-btn-close-focus-shadow: 0 0 0 .25rem #0d6efd40;
  --bs-btn-close-focus-opacity: 1;
  --bs-btn-close-disabled-opacity: .25;
  --bs-btn-close-white-filter: invert(1) grayscale(100%) brightness(200%);
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  color: var(--bs-btn-close-color);
  background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
  opacity: var(--bs-btn-close-opacity);
  border: 0;
  border-radius: .375rem;
  padding: .25em;
}

.btn-close:hover {
  color: var(--bs-btn-close-color);
  opacity: var(--bs-btn-close-hover-opacity);
  text-decoration: none;
}

.btn-close:focus {
  box-shadow: var(--bs-btn-close-focus-shadow);
  opacity: var(--bs-btn-close-focus-opacity);
  outline: 0;
}

.btn-close.disabled, .btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: var(--bs-btn-close-disabled-opacity);
}

.btn-close-white, [data-bs-theme="dark"] .btn-close {
  filter: var(--bs-btn-close-white-filter);
}

.toast {
  --bs-toast-zindex: 1090;
  --bs-toast-padding-x: .75rem;
  --bs-toast-padding-y: .5rem;
  --bs-toast-spacing: 1.5rem;
  --bs-toast-max-width: 350px;
  --bs-toast-font-size: .875rem;
  --bs-toast-color: ;
  --bs-toast-bg: rgba(var(--bs-body-bg-rgb), .85);
  --bs-toast-border-width: var(--bs-border-width);
  --bs-toast-border-color: var(--bs-border-color-translucent);
  --bs-toast-border-radius: var(--bs-border-radius);
  --bs-toast-box-shadow: var(--bs-box-shadow);
  --bs-toast-header-color: var(--bs-secondary-color);
  --bs-toast-header-bg: rgba(var(--bs-body-bg-rgb), .85);
  --bs-toast-header-border-color: var(--bs-border-color-translucent);
  width: var(--bs-toast-max-width);
  max-width: 100%;
  font-size: var(--bs-toast-font-size);
  color: var(--bs-toast-color);
  pointer-events: auto;
  background-color: var(--bs-toast-bg);
  border: var(--bs-toast-border-width) solid var(--bs-toast-border-color);
  box-shadow: var(--bs-toast-box-shadow);
  border-radius: var(--bs-toast-border-radius);
  background-clip: padding-box;
}

.toast.showing {
  opacity: 0;
}

.toast:not(.show) {
  display: none;
}

.toast-container {
  --bs-toast-zindex: 1090;
  z-index: var(--bs-toast-zindex);
  pointer-events: none;
  width: max-content;
  max-width: 100%;
  position: absolute;
}

.toast-container > :not(:last-child) {
  margin-bottom: var(--bs-toast-spacing);
}

.toast-header {
  padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
  color: var(--bs-toast-header-color);
  background-color: var(--bs-toast-header-bg);
  border-bottom: var(--bs-toast-border-width) solid var(--bs-toast-header-border-color);
  border-top-left-radius: calc(var(--bs-toast-border-radius)  - var(--bs-toast-border-width));
  border-top-right-radius: calc(var(--bs-toast-border-radius)  - var(--bs-toast-border-width));
  background-clip: padding-box;
  align-items: center;
  display: flex;
}

.toast-header .btn-close {
  margin-right: calc(-.5 * var(--bs-toast-padding-x));
  margin-left: var(--bs-toast-padding-x);
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: .5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg)  - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: .5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  z-index: var(--bs-modal-zindex);
  outline: 0;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden auto;
}

.modal-dialog {
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
  position: relative;
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  min-height: calc(100% - var(--bs-modal-margin) * 2);
  align-items: center;
  display: flex;
}

.modal-content {
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  background-clip: padding-box;
  outline: 0;
  flex-direction: column;
  display: flex;
  position: relative;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: .5;
  z-index: var(--bs-backdrop-zindex);
  background-color: var(--bs-backdrop-bg);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
  margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  line-height: var(--bs-modal-title-line-height);
  margin-bottom: 0;
}

.modal-body {
  padding: var(--bs-modal-padding);
  flex: auto;
  position: relative;
}

.modal-footer {
  padding: calc(var(--bs-modal-padding)  - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * .5);
}

@media (width >= 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }

  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-left: auto;
    margin-right: auto;
  }

  .modal-sm {
    --bs-modal-width: 300px;
  }
}

@media (width >= 992px) {
  .modal-lg, .modal-xl {
    --bs-modal-width: 800px;
  }
}

@media (width >= 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  border: 0;
  border-radius: 0;
  height: 100%;
}

.modal-fullscreen .modal-footer, .modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (width <= 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-sm-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-sm-down .modal-footer, .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-md-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-md-down .modal-footer, .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-lg-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-lg-down .modal-footer, .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xl-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-xl-down .modal-footer, .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}

@media (width <= 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxl-down .modal-content {
    border: 0;
    border-radius: 0;
    height: 100%;
  }

  .modal-fullscreen-xxl-down .modal-footer, .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

.tooltip {
  --bs-tooltip-zindex: 1080;
  --bs-tooltip-max-width: 200px;
  --bs-tooltip-padding-x: .5rem;
  --bs-tooltip-padding-y: .25rem;
  --bs-tooltip-margin: ;
  --bs-tooltip-font-size: .875rem;
  --bs-tooltip-color: var(--bs-body-bg);
  --bs-tooltip-bg: var(--bs-emphasis-color);
  --bs-tooltip-border-radius: var(--bs-border-radius);
  --bs-tooltip-opacity: .9;
  --bs-tooltip-arrow-width: .8rem;
  --bs-tooltip-arrow-height: .4rem;
  z-index: var(--bs-tooltip-zindex);
  margin: var(--bs-tooltip-margin);
  font-family: var(--bs-font-sans-serif);
  text-align: left;
  text-align: start;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: var(--bs-tooltip-font-size);
  word-wrap: break-word;
  opacity: 0;
  text-decoration: none;
  display: block;
}

.tooltip.show {
  opacity: var(--bs-tooltip-opacity);
}

.tooltip .tooltip-arrow {
  width: var(--bs-tooltip-arrow-width);
  height: var(--bs-tooltip-arrow-height);
  display: block;
}

.tooltip .tooltip-arrow:before {
  content: "";
  border-style: solid;
  border-color: #0000;
  position: absolute;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
  bottom: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow:before, .bs-tooltip-top .tooltip-arrow:before {
  border-width: var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-top-color: var(--bs-tooltip-bg);
  top: -1px;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
  left: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow:before, .bs-tooltip-end .tooltip-arrow:before {
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height) calc(var(--bs-tooltip-arrow-width) * .5) 0;
  border-right-color: var(--bs-tooltip-bg);
  right: -1px;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
  top: calc(-1 * var(--bs-tooltip-arrow-height));
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow:before, .bs-tooltip-bottom .tooltip-arrow:before {
  border-width: 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-bottom-color: var(--bs-tooltip-bg);
  bottom: -1px;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
  right: calc(-1 * var(--bs-tooltip-arrow-height));
  width: var(--bs-tooltip-arrow-height);
  height: var(--bs-tooltip-arrow-width);
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow:before, .bs-tooltip-start .tooltip-arrow:before {
  border-width: calc(var(--bs-tooltip-arrow-width) * .5) 0 calc(var(--bs-tooltip-arrow-width) * .5) var(--bs-tooltip-arrow-height);
  border-left-color: var(--bs-tooltip-bg);
  left: -1px;
}

.tooltip-inner {
  max-width: var(--bs-tooltip-max-width);
  padding: var(--bs-tooltip-padding-y) var(--bs-tooltip-padding-x);
  color: var(--bs-tooltip-color);
  text-align: center;
  background-color: var(--bs-tooltip-bg);
  border-radius: var(--bs-tooltip-border-radius);
}

.popover {
  --bs-popover-zindex: 1070;
  --bs-popover-max-width: 276px;
  --bs-popover-font-size: .875rem;
  --bs-popover-bg: var(--bs-body-bg);
  --bs-popover-border-width: var(--bs-border-width);
  --bs-popover-border-color: var(--bs-border-color-translucent);
  --bs-popover-border-radius: var(--bs-border-radius-lg);
  --bs-popover-inner-border-radius: calc(var(--bs-border-radius-lg)  - var(--bs-border-width));
  --bs-popover-box-shadow: var(--bs-box-shadow);
  --bs-popover-header-padding-x: 1rem;
  --bs-popover-header-padding-y: .5rem;
  --bs-popover-header-font-size: 1rem;
  --bs-popover-header-color: inherit;
  --bs-popover-header-bg: var(--bs-secondary-bg);
  --bs-popover-body-padding-x: 1rem;
  --bs-popover-body-padding-y: 1rem;
  --bs-popover-body-color: var(--bs-body-color);
  --bs-popover-arrow-width: 1rem;
  --bs-popover-arrow-height: .5rem;
  --bs-popover-arrow-border: var(--bs-popover-border-color);
  z-index: var(--bs-popover-zindex);
  max-width: var(--bs-popover-max-width);
  font-family: var(--bs-font-sans-serif);
  text-align: left;
  text-align: start;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  font-size: var(--bs-popover-font-size);
  word-wrap: break-word;
  background-color: var(--bs-popover-bg);
  border: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-radius: var(--bs-popover-border-radius);
  background-clip: padding-box;
  text-decoration: none;
  display: block;
}

.popover .popover-arrow {
  width: var(--bs-popover-arrow-width);
  height: var(--bs-popover-arrow-height);
  display: block;
}

.popover .popover-arrow:after, .popover .popover-arrow:before {
  content: "";
  border: 0 solid #0000;
  display: block;
  position: absolute;
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow, .bs-popover-top > .popover-arrow {
  bottom: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:before, .bs-popover-top > .popover-arrow:after, .bs-popover-top > .popover-arrow:before {
  border-width: var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:before, .bs-popover-top > .popover-arrow:before {
  border-top-color: var(--bs-popover-arrow-border);
  bottom: 0;
}

.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow:after, .bs-popover-top > .popover-arrow:after {
  bottom: var(--bs-popover-border-width);
  border-top-color: var(--bs-popover-bg);
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow, .bs-popover-end > .popover-arrow {
  left: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:before, .bs-popover-end > .popover-arrow:after, .bs-popover-end > .popover-arrow:before {
  border-width: calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height) calc(var(--bs-popover-arrow-width) * .5) 0;
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:before, .bs-popover-end > .popover-arrow:before {
  border-right-color: var(--bs-popover-arrow-border);
  left: 0;
}

.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow:after, .bs-popover-end > .popover-arrow:after {
  left: var(--bs-popover-border-width);
  border-right-color: var(--bs-popover-bg);
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow, .bs-popover-bottom > .popover-arrow {
  top: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:before, .bs-popover-bottom > .popover-arrow:after, .bs-popover-bottom > .popover-arrow:before {
  border-width: 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:before, .bs-popover-bottom > .popover-arrow:before {
  border-bottom-color: var(--bs-popover-arrow-border);
  top: 0;
}

.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow:after, .bs-popover-bottom > .popover-arrow:after {
  top: var(--bs-popover-border-width);
  border-bottom-color: var(--bs-popover-bg);
}

.bs-popover-auto[data-popper-placement^="bottom"] .popover-header:before, .bs-popover-bottom .popover-header:before {
  width: var(--bs-popover-arrow-width);
  margin-left: calc(-.5 * var(--bs-popover-arrow-width));
  content: "";
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-header-bg);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow, .bs-popover-start > .popover-arrow {
  right: calc(-1 * (var(--bs-popover-arrow-height))  - var(--bs-popover-border-width));
  width: var(--bs-popover-arrow-height);
  height: var(--bs-popover-arrow-width);
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:before, .bs-popover-start > .popover-arrow:after, .bs-popover-start > .popover-arrow:before {
  border-width: calc(var(--bs-popover-arrow-width) * .5) 0 calc(var(--bs-popover-arrow-width) * .5) var(--bs-popover-arrow-height);
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:before, .bs-popover-start > .popover-arrow:before {
  border-left-color: var(--bs-popover-arrow-border);
  right: 0;
}

.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow:after, .bs-popover-start > .popover-arrow:after {
  right: var(--bs-popover-border-width);
  border-left-color: var(--bs-popover-bg);
}

.popover-header {
  padding: var(--bs-popover-header-padding-y) var(--bs-popover-header-padding-x);
  font-size: var(--bs-popover-header-font-size);
  color: var(--bs-popover-header-color);
  background-color: var(--bs-popover-header-bg);
  border-bottom: var(--bs-popover-border-width) solid var(--bs-popover-border-color);
  border-top-left-radius: var(--bs-popover-inner-border-radius);
  border-top-right-radius: var(--bs-popover-inner-border-radius);
  margin-bottom: 0;
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: var(--bs-popover-body-padding-y) var(--bs-popover-body-padding-x);
  color: var(--bs-popover-body-color);
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-inner:after {
  clear: both;
  content: "";
  display: block;
}

.carousel-item {
  float: left;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  margin-right: -100%;
  transition: transform .6s ease-in-out;
  display: none;
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: block;
}

.active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
  transform: translateX(100%);
}

.active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s .6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
    transition: none;
  }
}

.carousel-control-next, .carousel-control-prev {
  z-index: 1;
  color: #fff;
  text-align: center;
  opacity: .5;
  background: none;
  border: 0;
  justify-content: center;
  align-items: center;
  width: 15%;
  padding: 0;
  transition: opacity .15s;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-next, .carousel-control-prev {
    transition: none;
  }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: #fff;
  opacity: .9;
  outline: 0;
  text-decoration: none;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 2rem;
  height: 2rem;
  display: inline-block;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  z-index: 2;
  justify-content: center;
  margin-bottom: 1rem;
  margin-left: 15%;
  margin-right: 15%;
  padding: 0;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  text-indent: -999px;
  cursor: pointer;
  opacity: .5;
  background-color: #fff;
  background-clip: padding-box;
  border: 10px solid #0000;
  border-left: 0;
  border-right: 0;
  flex: 0 auto;
  width: 30px;
  height: 3px;
  margin-left: 3px;
  margin-right: 3px;
  padding: 0;
  transition: opacity .6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  color: #fff;
  text-align: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  position: absolute;
  bottom: 1.25rem;
  left: 15%;
  right: 15%;
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
  filter: invert() grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000;
}

.carousel-dark .carousel-caption {
  color: #000;
}

[data-bs-theme="dark"] .carousel .carousel-control-next-icon, [data-bs-theme="dark"] .carousel .carousel-control-prev-icon, [data-bs-theme="dark"].carousel .carousel-control-next-icon, [data-bs-theme="dark"].carousel .carousel-control-prev-icon {
  filter: invert() grayscale(100);
}

[data-bs-theme="dark"] .carousel .carousel-indicators [data-bs-target], [data-bs-theme="dark"].carousel .carousel-indicators [data-bs-target] {
  background-color: #000;
}

[data-bs-theme="dark"] .carousel .carousel-caption, [data-bs-theme="dark"].carousel .carousel-caption {
  color: #000;
}

.spinner-border, .spinner-grow {
  width: var(--bs-spinner-width);
  height: var(--bs-spinner-height);
  vertical-align: var(--bs-spinner-vertical-align);
  animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
  border-radius: 50%;
  display: inline-block;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.spinner-border {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -.125em;
  --bs-spinner-border-width: .25em;
  --bs-spinner-animation-speed: .75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: #0000;
}

.spinner-border-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
  --bs-spinner-border-width: .2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: none;
  }
}

.spinner-grow {
  --bs-spinner-width: 2rem;
  --bs-spinner-height: 2rem;
  --bs-spinner-vertical-align: -.125em;
  --bs-spinner-animation-speed: .75s;
  --bs-spinner-animation-name: spinner-grow;
  opacity: 0;
  background-color: currentColor;
}

.spinner-grow-sm {
  --bs-spinner-width: 1rem;
  --bs-spinner-height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border, .spinner-grow {
    --bs-spinner-animation-speed: 1.5s;
  }
}

.offcanvas, .offcanvas-lg, .offcanvas-md, .offcanvas-sm, .offcanvas-xl, .offcanvas-xxl {
  --bs-offcanvas-zindex: 1045;
  --bs-offcanvas-width: 400px;
  --bs-offcanvas-height: 30vh;
  --bs-offcanvas-padding-x: 1rem;
  --bs-offcanvas-padding-y: 1rem;
  --bs-offcanvas-color: var(--bs-body-color);
  --bs-offcanvas-bg: var(--bs-body-bg);
  --bs-offcanvas-border-width: var(--bs-border-width);
  --bs-offcanvas-border-color: var(--bs-border-color-translucent);
  --bs-offcanvas-box-shadow: var(--bs-box-shadow-sm);
  --bs-offcanvas-transition: transform .3s ease-in-out;
  --bs-offcanvas-title-line-height: 1.5;
}

@media (width <= 575.98px) {
  .offcanvas-sm {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 575.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-sm {
    transition: none;
  }
}

@media (width <= 575.98px) {
  .offcanvas-sm.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-sm.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-sm.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-sm.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-sm.show:not(.hiding), .offcanvas-sm.showing {
    transform: none;
  }

  .offcanvas-sm.hiding, .offcanvas-sm.show, .offcanvas-sm.showing {
    visibility: visible;
  }
}

@media (width >= 576px) {
  .offcanvas-sm {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-sm .offcanvas-header {
    display: none;
  }

  .offcanvas-sm .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 767.98px) {
  .offcanvas-md {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 767.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-md {
    transition: none;
  }
}

@media (width <= 767.98px) {
  .offcanvas-md.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-md.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-md.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-md.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-md.show:not(.hiding), .offcanvas-md.showing {
    transform: none;
  }

  .offcanvas-md.hiding, .offcanvas-md.show, .offcanvas-md.showing {
    visibility: visible;
  }
}

@media (width >= 768px) {
  .offcanvas-md {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-md .offcanvas-header {
    display: none;
  }

  .offcanvas-md .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 991.98px) {
  .offcanvas-lg {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 991.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-lg {
    transition: none;
  }
}

@media (width <= 991.98px) {
  .offcanvas-lg.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-lg.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-lg.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-lg.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-lg.show:not(.hiding), .offcanvas-lg.showing {
    transform: none;
  }

  .offcanvas-lg.hiding, .offcanvas-lg.show, .offcanvas-lg.showing {
    visibility: visible;
  }
}

@media (width >= 992px) {
  .offcanvas-lg {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-lg .offcanvas-header {
    display: none;
  }

  .offcanvas-lg .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 1199.98px) {
  .offcanvas-xl {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 1199.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xl {
    transition: none;
  }
}

@media (width <= 1199.98px) {
  .offcanvas-xl.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-xl.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-xl.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-xl.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-xl.show:not(.hiding), .offcanvas-xl.showing {
    transform: none;
  }

  .offcanvas-xl.hiding, .offcanvas-xl.show, .offcanvas-xl.showing {
    visibility: visible;
  }
}

@media (width >= 1200px) {
  .offcanvas-xl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-xl .offcanvas-header {
    display: none;
  }

  .offcanvas-xl .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

@media (width <= 1399.98px) {
  .offcanvas-xxl {
    z-index: var(--bs-offcanvas-zindex);
    max-width: 100%;
    color: var(--bs-offcanvas-color);
    visibility: hidden;
    background-color: var(--bs-offcanvas-bg);
    transition: var(--bs-offcanvas-transition);
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }
}

@media (width <= 1399.98px) and (prefers-reduced-motion: reduce) {
  .offcanvas-xxl {
    transition: none;
  }
}

@media (width <= 1399.98px) {
  .offcanvas-xxl.offcanvas-start {
    width: var(--bs-offcanvas-width);
    border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .offcanvas-xxl.offcanvas-end {
    width: var(--bs-offcanvas-width);
    border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .offcanvas-xxl.offcanvas-top {
    height: var(--bs-offcanvas-height);
    border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
  }

  .offcanvas-xxl.offcanvas-bottom {
    height: var(--bs-offcanvas-height);
    border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
    max-height: 100%;
    left: 0;
    right: 0;
    transform: translateY(100%);
  }

  .offcanvas-xxl.show:not(.hiding), .offcanvas-xxl.showing {
    transform: none;
  }

  .offcanvas-xxl.hiding, .offcanvas-xxl.show, .offcanvas-xxl.showing {
    visibility: visible;
  }
}

@media (width >= 1400px) {
  .offcanvas-xxl {
    --bs-offcanvas-height: auto;
    --bs-offcanvas-border-width: 0;
    background-color: #0000 !important;
  }

  .offcanvas-xxl .offcanvas-header {
    display: none;
  }

  .offcanvas-xxl .offcanvas-body {
    flex-grow: 0;
    padding: 0;
    display: flex;
    overflow-y: visible;
    background-color: #0000 !important;
  }
}

.offcanvas {
  z-index: var(--bs-offcanvas-zindex);
  max-width: 100%;
  color: var(--bs-offcanvas-color);
  visibility: hidden;
  background-color: var(--bs-offcanvas-bg);
  transition: var(--bs-offcanvas-transition);
  background-clip: padding-box;
  outline: 0;
  flex-direction: column;
  display: flex;
  position: fixed;
  bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    transition: none;
  }
}

.offcanvas.offcanvas-start {
  width: var(--bs-offcanvas-width);
  border-right: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.offcanvas.offcanvas-end {
  width: var(--bs-offcanvas-width);
  border-left: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  top: 0;
  right: 0;
  transform: translateX(100%);
}

.offcanvas.offcanvas-top {
  height: var(--bs-offcanvas-height);
  border-bottom: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  max-height: 100%;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
}

.offcanvas.offcanvas-bottom {
  height: var(--bs-offcanvas-height);
  border-top: var(--bs-offcanvas-border-width) solid var(--bs-offcanvas-border-color);
  max-height: 100%;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.offcanvas.show:not(.hiding), .offcanvas.showing {
  transform: none;
}

.offcanvas.hiding, .offcanvas.show, .offcanvas.showing {
  visibility: visible;
}

.offcanvas-backdrop {
  z-index: 1040;
  background-color: #000;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-backdrop.show {
  opacity: .5;
}

.offcanvas-header {
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.offcanvas-header .btn-close {
  padding: calc(var(--bs-offcanvas-padding-y) * .5) calc(var(--bs-offcanvas-padding-x) * .5);
  margin-top: calc(-.5 * var(--bs-offcanvas-padding-y));
  margin-right: calc(-.5 * var(--bs-offcanvas-padding-x));
  margin-bottom: calc(-.5 * var(--bs-offcanvas-padding-y));
}

.offcanvas-title {
  line-height: var(--bs-offcanvas-title-line-height);
  margin-bottom: 0;
}

.offcanvas-body {
  padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
  flex-grow: 1;
  overflow-y: auto;
}

.placeholder {
  vertical-align: middle;
  cursor: wait;
  opacity: .5;
  background-color: currentColor;
  min-height: 1em;
  display: inline-block;
}

.placeholder.btn:before {
  content: "";
  display: inline-block;
}

.placeholder-xs {
  min-height: .6em;
}

.placeholder-sm {
  min-height: .8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  animation: 2s ease-in-out infinite placeholder-glow;
}

@keyframes placeholder-glow {
  50% {
    opacity: .2;
  }
}

.placeholder-wave {
  animation: 2s linear infinite placeholder-wave;
  -webkit-mask-image: linear-gradient(130deg, #000 55%, #000c 75%, #000 95%);
  mask-image: linear-gradient(130deg, #000 55%, #000c 75%, #000 95%);
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0;
    mask-position: -200% 0;
  }
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.text-bg-primary {
  color: #fff !important;
  background-color: RGBA(var(--bs-primary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-secondary {
  color: #fff !important;
  background-color: RGBA(var(--bs-secondary-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-success {
  color: #fff !important;
  background-color: RGBA(var(--bs-success-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-info {
  color: #000 !important;
  background-color: RGBA(var(--bs-info-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-warning {
  color: #000 !important;
  background-color: RGBA(var(--bs-warning-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-danger {
  color: #fff !important;
  background-color: RGBA(var(--bs-danger-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-light {
  color: #000 !important;
  background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1)) !important;
}

.text-bg-dark {
  color: #fff !important;
  background-color: RGBA(var(--bs-dark-rgb), var(--bs-bg-opacity, 1)) !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-primary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-primary:focus, .link-primary:hover {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(10, 88, 202, var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-secondary-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-secondary:focus, .link-secondary:hover {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(86, 94, 100, var(--bs-link-underline-opacity, 1)) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-success-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-success:focus, .link-success:hover {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(20, 108, 67, var(--bs-link-underline-opacity, 1)) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-info-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-info:focus, .link-info:hover {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(61, 213, 243, var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-warning-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-warning:focus, .link-warning:hover {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(255, 205, 57, var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-danger-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-danger:focus, .link-danger:hover {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(176, 42, 55, var(--bs-link-underline-opacity, 1)) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-light-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-light:focus, .link-light:hover {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(249, 250, 251, var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-dark-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-dark:focus, .link-dark:hover {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(26, 30, 33, var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-body-emphasis:focus, .link-body-emphasis:hover {
  color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-opacity, .75)) !important;
  -webkit-text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, .75)) !important;
  text-decoration-color: RGBA(var(--bs-emphasis-color-rgb), var(--bs-link-underline-opacity, .75)) !important;
}

.focus-ring:focus {
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0) var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width) var(--bs-focus-ring-color);
  outline: 0;
}

.icon-link {
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, .5));
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, .5));
  text-underline-offset: .25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  align-items: center;
  gap: .375rem;
  display: inline-flex;
}

.icon-link > .bi {
  fill: currentColor;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  transition: transform .2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    transition: none;
  }
}

.icon-link-hover:focus-visible > .bi, .icon-link-hover:hover > .bi {
  transform: var(--bs-icon-link-transform, translate3d(.25em, 0, 0));
}

.ratio {
  width: 100%;
  position: relative;
}

.ratio:before {
  padding-top: var(--bs-aspect-ratio);
  content: "";
  display: block;
}

.ratio > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571%;
}

.fixed-top {
  z-index: 1030;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.fixed-bottom {
  z-index: 1030;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.sticky-top {
  z-index: 1020;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sticky-bottom {
  z-index: 1020;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

@media (width >= 576px) {
  .sticky-sm-top {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .sticky-sm-bottom {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 768px) {
  .sticky-md-top {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .sticky-md-bottom {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 992px) {
  .sticky-lg-top {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .sticky-lg-bottom {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 1200px) {
  .sticky-xl-top {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .sticky-xl-bottom {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

@media (width >= 1400px) {
  .sticky-xxl-top {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }

  .sticky-xxl-bottom {
    z-index: 1020;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
  }
}

.hstack {
  flex-direction: row;
  align-self: stretch;
  align-items: center;
  display: flex;
}

.vstack {
  flex-direction: column;
  flex: auto;
  align-self: stretch;
  display: flex;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption), .visually-hidden:not(caption) {
  position: absolute !important;
}

.stretched-link:after {
  z-index: 1;
  content: "";
  position: absolute;
  inset: 0;
}

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

.vr {
  width: var(--bs-border-width);
  opacity: .25;
  background-color: currentColor;
  align-self: stretch;
  min-height: 1em;
  display: inline-block;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

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

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: .25 !important;
}

.opacity-50 {
  opacity: .5 !important;
}

.opacity-75 {
  opacity: .75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

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

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(var(--bs-primary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(var(--bs-secondary-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(var(--bs-success-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(var(--bs-warning-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(var(--bs-danger-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(var(--bs-light-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

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

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-primary-rgb), var(--bs-border-opacity)) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-secondary-rgb), var(--bs-border-opacity)) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-success-rgb), var(--bs-border-opacity)) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-warning-rgb), var(--bs-border-opacity)) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

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

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: .1;
}

.border-opacity-25 {
  --bs-border-opacity: .25;
}

.border-opacity-50 {
  --bs-border-opacity: .5;
}

.border-opacity-75 {
  --bs-border-opacity: .75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

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

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

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

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

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  flex: auto !important;
}

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

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

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

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

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

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

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

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

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

.align-items-baseline {
  align-items: baseline !important;
}

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

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

.align-self-end {
  align-self: flex-end !important;
}

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

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

.m-1 {
  margin: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: .25rem !important;
  margin-right: .25rem !important;
}

.mx-2 {
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: .25rem !important;
  margin-bottom: .25rem !important;
}

.my-2 {
  margin-top: .5rem !important;
  margin-bottom: .5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: .25rem !important;
}

.mt-2 {
  margin-top: .5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: .25rem !important;
}

.me-2 {
  margin-right: .5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: .25rem !important;
}

.mb-2 {
  margin-bottom: .5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: .25rem !important;
}

.ms-2 {
  margin-left: .5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

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

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: .25rem !important;
  padding-right: .25rem !important;
}

.px-2 {
  padding-left: .5rem !important;
  padding-right: .5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: .25rem !important;
  padding-bottom: .25rem !important;
}

.py-2 {
  padding-top: .5rem !important;
  padding-bottom: .5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: .25rem !important;
}

.pt-2 {
  padding-top: .5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: .25rem !important;
}

.pe-2 {
  padding-right: .5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: .25rem !important;
}

.pb-2 {
  padding-bottom: .5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: .25rem !important;
}

.ps-2 {
  padding-left: .5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: .25rem !important;
}

.gap-2 {
  gap: .5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: .25rem !important;
}

.row-gap-2 {
  row-gap: .5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.column-gap-0 {
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}

.column-gap-1 {
  -moz-column-gap: .25rem !important;
  column-gap: .25rem !important;
}

.column-gap-2 {
  -moz-column-gap: .5rem !important;
  column-gap: .5rem !important;
}

.column-gap-3 {
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + .9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + .6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + .3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

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

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: #00000080 !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: #ffffff80 !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: .25;
}

.text-opacity-50 {
  --bs-text-opacity: .5;
}

.text-opacity-75 {
  --bs-text-opacity: .75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10, .link-opacity-10-hover:hover {
  --bs-link-opacity: .1;
}

.link-opacity-25, .link-opacity-25-hover:hover {
  --bs-link-opacity: .25;
}

.link-opacity-50, .link-opacity-50-hover:hover {
  --bs-link-opacity: .5;
}

.link-opacity-75, .link-opacity-75-hover:hover {
  --bs-link-opacity: .75;
}

.link-opacity-100, .link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1, .link-offset-1-hover:hover {
  text-underline-offset: .125em !important;
}

.link-offset-2, .link-offset-2-hover:hover {
  text-underline-offset: .25em !important;
}

.link-offset-3, .link-offset-3-hover:hover {
  text-underline-offset: .375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-primary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-secondary-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-success-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-info-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-warning-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-danger-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-light-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
  text-decoration-color: rgba(var(--bs-dark-rgb), var(--bs-link-underline-opacity)) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
  text-decoration-color: rgba(var(--bs-link-color-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

.link-underline-opacity-0, .link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10, .link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: .1;
}

.link-underline-opacity-25, .link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: .25;
}

.link-underline-opacity-50, .link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: .5;
}

.link-underline-opacity-75, .link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: .75;
}

.link-underline-opacity-100, .link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: #0000 !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-tertiary-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: .1;
}

.bg-opacity-25 {
  --bs-bg-opacity: .25;
}

.bg-opacity-50 {
  --bs-bg-opacity: .5;
}

.bg-opacity-75 {
  --bs-bg-opacity: .75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1 {
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  border-top-left-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  border-top-left-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-end-1 {
  border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  border-top-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-end-pill {
  border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-bottom-1 {
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-start-1 {
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  border-bottom-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  border-top-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-start-pill {
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

@media (width >= 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: .25rem !important;
  }

  .m-sm-2 {
    margin: .5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-sm-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-sm-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-sm-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: .25rem !important;
  }

  .mt-sm-2 {
    margin-top: .5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: .25rem !important;
  }

  .me-sm-2 {
    margin-right: .5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: .25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: .5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: .25rem !important;
  }

  .ms-sm-2 {
    margin-left: .5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: .25rem !important;
  }

  .p-sm-2 {
    padding: .5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-sm-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-sm-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-sm-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: .25rem !important;
  }

  .pt-sm-2 {
    padding-top: .5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: .25rem !important;
  }

  .pe-sm-2 {
    padding-right: .5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: .25rem !important;
  }

  .ps-sm-2 {
    padding-left: .5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: .25rem !important;
  }

  .gap-sm-2 {
    gap: .5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .row-gap-sm-0 {
    row-gap: 0 !important;
  }

  .row-gap-sm-1 {
    row-gap: .25rem !important;
  }

  .row-gap-sm-2 {
    row-gap: .5rem !important;
  }

  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }

  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }

  .column-gap-sm-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-sm-1 {
    -moz-column-gap: .25rem !important;
    column-gap: .25rem !important;
  }

  .column-gap-sm-2 {
    -moz-column-gap: .5rem !important;
    column-gap: .5rem !important;
  }

  .column-gap-sm-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-sm-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-sm-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (width >= 768px) {
  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: .25rem !important;
  }

  .m-md-2 {
    margin: .5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-md-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-md-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-md-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: .25rem !important;
  }

  .mt-md-2 {
    margin-top: .5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: .25rem !important;
  }

  .me-md-2 {
    margin-right: .5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: .25rem !important;
  }

  .mb-md-2 {
    margin-bottom: .5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: .25rem !important;
  }

  .ms-md-2 {
    margin-left: .5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: .25rem !important;
  }

  .p-md-2 {
    padding: .5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-md-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-md-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-md-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: .25rem !important;
  }

  .pt-md-2 {
    padding-top: .5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: .25rem !important;
  }

  .pe-md-2 {
    padding-right: .5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: .25rem !important;
  }

  .pb-md-2 {
    padding-bottom: .5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: .25rem !important;
  }

  .ps-md-2 {
    padding-left: .5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: .25rem !important;
  }

  .gap-md-2 {
    gap: .5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .row-gap-md-0 {
    row-gap: 0 !important;
  }

  .row-gap-md-1 {
    row-gap: .25rem !important;
  }

  .row-gap-md-2 {
    row-gap: .5rem !important;
  }

  .row-gap-md-3 {
    row-gap: 1rem !important;
  }

  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-md-5 {
    row-gap: 3rem !important;
  }

  .column-gap-md-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-md-1 {
    -moz-column-gap: .25rem !important;
    column-gap: .25rem !important;
  }

  .column-gap-md-2 {
    -moz-column-gap: .5rem !important;
    column-gap: .5rem !important;
  }

  .column-gap-md-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-md-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-md-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (width >= 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: .25rem !important;
  }

  .m-lg-2 {
    margin: .5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-lg-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-lg-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-lg-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: .25rem !important;
  }

  .mt-lg-2 {
    margin-top: .5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: .25rem !important;
  }

  .me-lg-2 {
    margin-right: .5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: .25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: .5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: .25rem !important;
  }

  .ms-lg-2 {
    margin-left: .5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: .25rem !important;
  }

  .p-lg-2 {
    padding: .5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-lg-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-lg-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-lg-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: .25rem !important;
  }

  .pt-lg-2 {
    padding-top: .5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: .25rem !important;
  }

  .pe-lg-2 {
    padding-right: .5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: .25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: .5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: .25rem !important;
  }

  .ps-lg-2 {
    padding-left: .5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: .25rem !important;
  }

  .gap-lg-2 {
    gap: .5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .row-gap-lg-0 {
    row-gap: 0 !important;
  }

  .row-gap-lg-1 {
    row-gap: .25rem !important;
  }

  .row-gap-lg-2 {
    row-gap: .5rem !important;
  }

  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }

  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }

  .column-gap-lg-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-lg-1 {
    -moz-column-gap: .25rem !important;
    column-gap: .25rem !important;
  }

  .column-gap-lg-2 {
    -moz-column-gap: .5rem !important;
    column-gap: .5rem !important;
  }

  .column-gap-lg-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-lg-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-lg-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (width >= 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: .25rem !important;
  }

  .m-xl-2 {
    margin: .5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-xl-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-xl-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-xl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-xl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: .25rem !important;
  }

  .mt-xl-2 {
    margin-top: .5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: .25rem !important;
  }

  .me-xl-2 {
    margin-right: .5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: .25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: .5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: .25rem !important;
  }

  .ms-xl-2 {
    margin-left: .5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: .25rem !important;
  }

  .p-xl-2 {
    padding: .5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-xl-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-xl-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-xl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-xl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-xl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: .25rem !important;
  }

  .pt-xl-2 {
    padding-top: .5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: .25rem !important;
  }

  .pe-xl-2 {
    padding-right: .5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: .25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: .5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: .25rem !important;
  }

  .ps-xl-2 {
    padding-left: .5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: .25rem !important;
  }

  .gap-xl-2 {
    gap: .5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .row-gap-xl-0 {
    row-gap: 0 !important;
  }

  .row-gap-xl-1 {
    row-gap: .25rem !important;
  }

  .row-gap-xl-2 {
    row-gap: .5rem !important;
  }

  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }

  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }

  .column-gap-xl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-xl-1 {
    -moz-column-gap: .25rem !important;
    column-gap: .25rem !important;
  }

  .column-gap-xl-2 {
    -moz-column-gap: .5rem !important;
    column-gap: .5rem !important;
  }

  .column-gap-xl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-xl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-xl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (width >= 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: .25rem !important;
  }

  .m-xxl-2 {
    margin: .5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-xxl-1 {
    margin-left: .25rem !important;
    margin-right: .25rem !important;
  }

  .mx-xxl-2 {
    margin-left: .5rem !important;
    margin-right: .5rem !important;
  }

  .mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-xxl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: .25rem !important;
    margin-bottom: .25rem !important;
  }

  .my-xxl-2 {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: .25rem !important;
  }

  .mt-xxl-2 {
    margin-top: .5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: .25rem !important;
  }

  .me-xxl-2 {
    margin-right: .5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: .25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: .5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: .25rem !important;
  }

  .ms-xxl-2 {
    margin-left: .5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: .25rem !important;
  }

  .p-xxl-2 {
    padding: .5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-xxl-1 {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
  }

  .px-xxl-2 {
    padding-left: .5rem !important;
    padding-right: .5rem !important;
  }

  .px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-xxl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
  }

  .py-xxl-2 {
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: .25rem !important;
  }

  .pt-xxl-2 {
    padding-top: .5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: .25rem !important;
  }

  .pe-xxl-2 {
    padding-right: .5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: .25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: .5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: .25rem !important;
  }

  .ps-xxl-2 {
    padding-left: .5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: .25rem !important;
  }

  .gap-xxl-2 {
    gap: .5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }

  .row-gap-xxl-1 {
    row-gap: .25rem !important;
  }

  .row-gap-xxl-2 {
    row-gap: .5rem !important;
  }

  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }

  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }

  .column-gap-xxl-0 {
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-xxl-1 {
    -moz-column-gap: .25rem !important;
    column-gap: .25rem !important;
  }

  .column-gap-xxl-2 {
    -moz-column-gap: .5rem !important;
    column-gap: .5rem !important;
  }

  .column-gap-xxl-3 {
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-xxl-4 {
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-xxl-5 {
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

@media (width >= 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-inline-grid {
    display: inline-grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}


/* [project]/public/assets/css/drift-basic.min.css [app-client] (css) */
@keyframes a {
  0% {
    opacity: 0;
    transform: scale(1.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes b {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  15% {
    opacity: 1;
    transform: scale(1.1);
  }

  to {
    opacity: 0;
    transform: scale(.5);
  }
}

@keyframes c {
  0% {
    transform: translate(-50%, -50%)rotate(0);
  }

  50% {
    transform: translate(-50%, -50%)rotate(-180deg);
  }

  to {
    transform: translate(-50%, -50%)rotate(-1turn);
  }
}

@keyframes d {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.2)translateX(6px);
  }

  25% {
    transform: scale(1.3)translateX(8px);
  }

  40% {
    transform: scale(1.2)translateX(6px);
  }

  50% {
    transform: scale(1);
  }

  60% {
    transform: scale(.8)translateX(6px);
  }

  75% {
    transform: scale(.7)translateX(8px);
  }

  90% {
    transform: scale(.8)translateX(6px);
  }

  to {
    transform: scale(1);
  }
}

@keyframes e {
  0% {
    transform: scale(1);
  }

  10% {
    transform: scale(1.2)translateX(-6px);
  }

  25% {
    transform: scale(1.3)translateX(-8px);
  }

  40% {
    transform: scale(1.2)translateX(-6px);
  }

  50% {
    transform: scale(1);
  }

  60% {
    transform: scale(.8)translateX(-6px);
  }

  75% {
    transform: scale(.7)translateX(-8px);
  }

  90% {
    transform: scale(.8)translateX(-6px);
  }

  to {
    transform: scale(1);
  }
}

.drift-zoom-pane {
  background: #00000080;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.drift-zoom-pane.drift-opening {
  -webkit-animation: .18s ease-out a;
  animation: .18s ease-out a;
}

.drift-zoom-pane.drift-closing {
  -webkit-animation: .21s ease-in b;
  animation: .21s ease-in b;
}

.drift-zoom-pane.drift-inline {
  border-radius: 75px;
  width: 150px;
  height: 150px;
  position: absolute;
  box-shadow: 0 6px 18px #0000004d;
}

.drift-loading .drift-zoom-pane-loader {
  width: 66px;
  height: 20px;
  -webkit-animation: 1.8s linear infinite c;
  animation: 1.8s linear infinite c;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.drift-zoom-pane-loader:after, .drift-zoom-pane-loader:before {
  content: "";
  background: #ffffffe6;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  display: block;
  position: absolute;
  top: 50%;
}

.drift-zoom-pane-loader:before {
  -webkit-animation: 1.8s linear infinite d;
  animation: 1.8s linear infinite d;
  left: 0;
}

.drift-zoom-pane-loader:after {
  -webkit-animation: 1.8s linear -.9s infinite e;
  animation: 1.8s linear -.9s infinite e;
  right: 0;
}

.drift-bounding-box {
  background-color: #0006;
}


/* [project]/public/assets/css/image-compare-viewer.min.css [app-client] (css) */
.icv {
  cursor: row-resize;
  position: relative;
  overflow: hidden;
}

.icv__icv--vertical {
  cursor: row-resize;
}

.icv__icv--horizontal {
  cursor: col-resize;
}

.icv__img {
  pointer-events: none;
  -o-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  max-width: none;
  display: block;
  top: 0;
  border: 0 !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.icv__is--fluid .icv__img {
  display: none;
}

.icv__img-a {
  z-index: 1;
  height: auto;
  position: static;
  left: 0;
}

.icv__img-b {
  z-index: 2;
  width: auto;
  height: 100%;
  position: absolute;
  left: auto;
  right: 0;
}

.icv__icv--vertical .icv__img-b {
  width: 100%;
  height: auto;
}

.icv__imposter {
  z-index: 4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.icv__wrapper {
  z-index: 3;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.icv__is--fluid .icv__wrapper, .icv__icv--vertical .icv__wrapper {
  width: 100% !important;
}

.icv__is--fluid .icv__wrapper, .icv__icv--horizontal .icv__wrapper {
  height: 100% !important;
}

.icv__fluidwrapper {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.icv__control {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 5;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
}

.icv__icv--vertical .icv__control {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  left: 0;
}

.icv__control-line {
  z-index: 6;
  width: 2px;
  height: 50%;
}

.icv__icv--vertical .icv__control-line {
  width: 50%;
}

.icv__theme-wrapper {
  z-index: 5;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
}

.icv__icv--vertical .icv__theme-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.icv__arrow-wrapper {
  justify-content: center;
  align-items: center;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.icv__arrow-a {
  filter: drop-shadow(0 -3px 5px #00000054);
  width: 20px;
  height: 20px;
  -webkit-transform: scale(1.5)rotateZ(180deg);
  transform: scale(1.5)rotateZ(180deg);
}

.icv__arrow-b {
  filter: drop-shadow(0 3px 5px #00000054);
  width: 20px;
  height: 20px;
  -webkit-transform: scale(1.5)rotateZ(0);
  transform: scale(1.5)rotateZ(0);
}

.icv__circle {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 999px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.icv__label {
  z-index: 12;
  color: #fff;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #00000054;
  border-radius: 3px;
  padding: .5rem .75rem;
  font-size: .85rem;
  position: absolute;
  bottom: 1rem;
}

.icv__label.vertical {
  bottom: auto;
  left: 1rem;
}

.icv__label.on-hover {
  -webkit-transition: all .25s cubic-bezier(.68, .26, .58, 1.22);
  transition: all .25s cubic-bezier(.68, .26, .58, 1.22);
  -webkit-transform: scale(0);
  transform: scale(0);
}

.icv:hover .icv__label.on-hover {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.icv__label-before {
  left: 1rem;
}

.icv__label-after {
  right: 1rem;
}

.icv__label-before.vertical {
  top: 1rem;
}

.icv__label-after.vertical {
  bottom: 1rem;
  right: auto;
}

.icv__body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


/* [project]/public/assets/css/bootstrap-select.min.css [app-client] (css) */
@-webkit-keyframes bs-notify-fadeOut {
  0% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

@-o-keyframes bs-notify-fadeOut {
  0% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

@keyframes bs-notify-fadeOut {
  0% {
    opacity: .9;
  }

  100% {
    opacity: 0;
  }
}

.bootstrap-select > select.bs-select-hidden, select.bs-select-hidden, select.selectpicker {
  display: none !important;
}

.bootstrap-select {
  width: 220px�;
  vertical-align: middle;
}

.bootstrap-select > .dropdown-toggle {
  text-align: right;
  white-space: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}

.bootstrap-select > .dropdown-toggle:after {
  margin-top: -1px;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #999;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-danger:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-dark:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-info:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-primary:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-secondary:hover, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:active, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder.btn-success:hover {
  color: #ffffff80;
}

.bootstrap-select > select {
  border: none;
  bottom: 0;
  left: 50%;
  opacity: 0 !important;
  z-index: 0 !important;
  width: .5px !important;
  height: 100% !important;
  padding: 0 !important;
  display: block !important;
  position: absolute !important;
}

.bootstrap-select > select.mobile-device {
  top: 0;
  left: 0;
  z-index: 2 !important;
  width: 100% !important;
  display: block !important;
}

.bootstrap-select.is-invalid .dropdown-toggle, .error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle, .was-validated .bootstrap-select select:invalid + .dropdown-toggle {
  border-color: #b94a48;
}

.bootstrap-select.is-valid .dropdown-toggle, .was-validated .bootstrap-select select:valid + .dropdown-toggle {
  border-color: #28a745;
}

.bootstrap-select.fit-width {
  width: auto !important;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 220px;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline-offset: -2px;
  outline: thin dotted #333 !important;
  outline: 5px auto -webkit-focus-ring-color !important;
}

.bootstrap-select.form-control {
  border: none;
  height: auto;
  margin-bottom: 0;
  padding: 0;
}

:not(.input-group) > .bootstrap-select.form-control:not([class*="col-"]) {
  width: 100%;
}

.bootstrap-select.form-control.input-group-btn {
  float: none;
  z-index: auto;
}

.form-inline .bootstrap-select, .form-inline .bootstrap-select.form-control:not([class*="col-"]) {
  width: auto;
}

.bootstrap-select:not(.input-group-btn), .bootstrap-select[class*="col-"] {
  float: none;
  margin-left: 0;
  display: inline-block;
}

.bootstrap-select.dropdown-menu-right, .bootstrap-select[class*="col-"].dropdown-menu-right, .row .bootstrap-select[class*="col-"].dropdown-menu-right {
  float: right;
}

.form-group .bootstrap-select, .form-horizontal .bootstrap-select, .form-inline .bootstrap-select {
  margin-bottom: 0;
}

.form-group-lg .bootstrap-select.form-control, .form-group-sm .bootstrap-select.form-control {
  padding: 0;
}

.form-group-lg .bootstrap-select.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.form-control .dropdown-toggle {
  height: 100%;
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}

.bootstrap-select.form-control-lg .dropdown-toggle, .bootstrap-select.form-control-sm .dropdown-toggle {
  font-size: inherit;
  line-height: inherit;
  border-radius: inherit;
}

.bootstrap-select.form-control-sm .dropdown-toggle {
  padding: .25rem .5rem;
}

.bootstrap-select.form-control-lg .dropdown-toggle {
  padding: .5rem 1rem;
}

.form-inline .bootstrap-select .form-control {
  width: 100%;
}

.bootstrap-select.disabled, .bootstrap-select > .disabled {
  cursor: not-allowed;
}

.bootstrap-select.disabled:focus, .bootstrap-select > .disabled:focus {
  outline: 0 !important;
}

.bootstrap-select.bs-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 0 !important;
  padding: 0 !important;
}

.bootstrap-select.bs-container .dropdown-menu {
  z-index: 1060;
}

.bootstrap-select .dropdown-toggle .filter-option {
  float: left;
  text-align: left;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  width: 100%;
  height: 100%;
  position: static;
  top: 0;
  left: 0;
  overflow: hidden;
}

.bs3.bootstrap-select .dropdown-toggle .filter-option {
  padding-right: inherit;
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option {
  padding-top: inherit;
  padding-bottom: inherit;
  padding-left: inherit;
  float: none;
  position: absolute;
}

.input-group .bs3-has-addon.bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  padding-right: inherit;
}

.bootstrap-select .dropdown-toggle .filter-option-inner-inner {
  overflow: hidden;
}

.bootstrap-select .dropdown-toggle .filter-expand {
  float: left;
  overflow: hidden;
  opacity: 0 !important;
  width: 0 !important;
}

.bootstrap-select .dropdown-toggle .caret {
  vertical-align: middle;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  right: 12px;
}

.input-group .bootstrap-select.form-control .dropdown-toggle {
  border-radius: inherit;
}

.bootstrap-select[class*="col-"] .dropdown-toggle {
  width: 100%;
}

.bootstrap-select .dropdown-menu {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 100%;
}

.bootstrap-select .dropdown-menu > .inner:focus {
  outline: 0 !important;
}

.bootstrap-select .dropdown-menu.inner {
  float: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  margin: 0;
  padding: 0;
  position: static;
}

.bootstrap-select .dropdown-menu li {
  position: relative;
}

.bootstrap-select .dropdown-menu li.active small {
  color: #ffffff80 !important;
}

.bootstrap-select .dropdown-menu li.disabled a {
  cursor: not-allowed;
}

.bootstrap-select .dropdown-menu li a {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bootstrap-select .dropdown-menu li a.opt {
  padding-left: 2.25em;
  position: relative;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
  display: none;
}

.bootstrap-select .dropdown-menu li a span.text {
  display: inline-block;
}

.bootstrap-select .dropdown-menu li small {
  padding-left: .5em;
}

.bootstrap-select .dropdown-menu .notify {
  pointer-events: none;
  opacity: .9;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #f5f5f5;
  border: 1px solid #e3e3e3;
  width: 96%;
  min-height: 26px;
  margin: 0 2%;
  padding: 3px 5px;
  position: absolute;
  bottom: 5px;
  -webkit-box-shadow: inset 0 1px 1px #0000000d;
  box-shadow: inset 0 1px 1px #0000000d;
}

.bootstrap-select .dropdown-menu .notify.fadeOut {
  -webkit-animation: .3s linear .75s forwards bs-notify-fadeOut;
  -o-animation: .3s linear .75s forwards bs-notify-fadeOut;
  animation: .3s linear .75s forwards bs-notify-fadeOut;
}

.bootstrap-select .no-results {
  white-space: nowrap;
  background: #f5f5f5;
  margin: 0 5px;
  padding: 3px;
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option {
  padding: 0;
  display: inline;
  position: static;
}

.bootstrap-select.fit-width .dropdown-toggle .filter-option-inner, .bootstrap-select.fit-width .dropdown-toggle .filter-option-inner-inner {
  display: inline;
}

.bootstrap-select.fit-width .dropdown-toggle .bs-caret:before {
  content: " ";
}

.bootstrap-select.fit-width .dropdown-toggle .caret {
  margin-top: -1px;
  position: static;
  top: auto;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  display: inline-block;
  position: absolute;
  top: 5px;
  right: 15px;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-right: 34px;
}

.bootstrap-select .bs-ok-default:after {
  content: "";
  border-style: solid;
  border-width: 0 .26em .26em 0;
  width: .5em;
  height: 1em;
  display: block;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle {
  z-index: 1061;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:before {
  content: "";
  border-bottom: 7px solid #ccc3;
  border-left: 7px solid #0000;
  border-right: 7px solid #0000;
  display: none;
  position: absolute;
  bottom: -4px;
  left: 9px;
}

.bootstrap-select.show-menu-arrow .dropdown-toggle .filter-option:after {
  content: "";
  border-bottom: 6px solid #fff;
  border-left: 6px solid #0000;
  border-right: 6px solid #0000;
  display: none;
  position: absolute;
  bottom: -4px;
  left: 10px;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:before {
  border-top: 7px solid #ccc3;
  border-bottom: 0;
  top: -4px;
  bottom: auto;
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle .filter-option:after {
  border-top: 6px solid #fff;
  border-bottom: 0;
  top: -4px;
  bottom: auto;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:before {
  left: auto;
  right: 12px;
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle .filter-option:after {
  left: auto;
  right: 13px;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle .filter-option:before, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:after, .bootstrap-select.show-menu-arrow.show > .dropdown-toggle .filter-option:before {
  display: block;
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
  padding: 4px 8px;
}

.bs-actionsbox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.bs-actionsbox .btn-group button {
  width: 50%;
}

.bs-donebutton {
  float: left;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.bs-donebutton .btn-group button {
  width: 100%;
}

.bs-searchbox + .bs-actionsbox {
  padding: 0 8px 4px;
}

.bs-searchbox .form-control {
  float: none;
  width: 100%;
  margin-bottom: 0;
}


/* [project]/public/assets/css/styles.css [app-client] (css) */
:root {
  --primary: #ff6f61;
  --primary-2: #ff9a90;
  --primary-3: #ffc5c0;
  --primary-4: #fff1ef;
  --primary-green: #39ae52;
  --secondary: #4b4ded;
  --secondary-2: #4b4dedbf;
  --secondary-3: #4b4ded80;
  --secondary-4: #efeffd;
  --dark: #000;
  --dark-2: #101828;
  --dark-3: #282828;
  --dark-4: #1c1c1c;
  --white: #fff;
  --white-2: #edeae5;
  --purple: #9148ff;
  --purple-2: #f6efff;
  --violet: #a83fff;
  --violet-2: #a474ff;
  --success: #31d0aa;
  --success-2: #31d0aabf;
  --success-3: #31d0aa80;
  --success-4: #31d0aa1a;
  --light-green: #00ba00;
  --text: #545454;
  --text-2: #393939;
  --text-3: #667085;
  --text-4: #757575;
  --line: #ebebeb;
  --line-2: #f2f4f7;
  --line-3: #c9c9c9;
  --line-4: #e4e7ec;
  --line-5: #7e7e7e33;
  --surface: #f5f5f5;
  --surface-2: #f7f7f7;
  --surface-3: #f3f3f3;
  --shadow-1: 0px 4px 20px 0px #0000001a;
  --gradient-1: linear-gradient(180deg, #fff0 0%, #fff 100%);
  --gradient-2: linear-gradient(180deg, #e7ecd200 0%, #e7ecd2 100%);
  --backdrop: #0006;
  --bg-scrollbar-track: #f1f1f1;
  --bg-scrollbar-thumb: #c1c1c1;
  --rgba-white: #fffc;
  --rgba-dark: #0009;
  --rgba-dark-2: #000c;
  --rgba-dark-3: #0003;
  --yellow: #ffc108;
  --yellow-2: #ff9a00;
  --brown: #8f5252;
  --red: #e21b1b;
}

.primary-2 {
  --primary: #39ae52;
}

.primary-3 {
  --primary: #d62c2c;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  scroll-behavior: smooth;
  margin-right: 0 !important;
}

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

body {
  background-color: var(--white);
  color: var(--dark);
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

img {
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  max-width: 100%;
  height: auto;
  transform: scale(1);
}

.row {
  margin-left: -12px;
  margin-right: -12px;
}

.row > * {
  padding-left: 12px;
  padding-right: 12px;
}

ul, li {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1488px;
}

.container-2 {
  max-width: 1436px;
}

.container-3 {
  max-width: 1560px;
}

.container-4 {
  max-width: 1688px;
}

.container-5 {
  max-width: 1728px;
}

.container-6 {
  max-width: 1288px;
}

.container-7 {
  max-width: 1268px;
}

.container-7, .container-6, .container-5, .container-4, .container-3, .container-2, .container {
  width: 100%;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.container-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.slider-layout-right {
  width: calc(50vw + 737px);
  margin-right: unset;
  max-width: 100%;
  margin-left: auto;
  padding: 0 15px;
}

.slider-layout-right .swiper:not(.tf-sw-right) {
  margin-right: -15px;
}

.container-6 .wg-cls.style-circle {
  gap: 16px;
}

svg path {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"] {
  border: 1px solid var(--line);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: var(--white);
  width: 100%;
  color: var(--rgba-dark-2);
  -o-transition: all .3s ease-in-out;
  border-radius: 6px;
  outline: 0;
  height: 50px;
  padding: 14px 20px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

textarea:hover, textarea:focus, input[type="text"]:hover, input[type="text"]:focus, input[type="password"]:hover, input[type="password"]:focus, input[type="datetime"]:hover, input[type="datetime"]:focus, input[type="datetime-local"]:hover, input[type="datetime-local"]:focus, input[type="date"]:hover, input[type="date"]:focus, input[type="month"]:hover, input[type="month"]:focus, input[type="time"]:hover, input[type="time"]:focus, input[type="week"]:hover, input[type="week"]:focus, input[type="number"]:hover, input[type="number"]:focus, input[type="email"]:hover, input[type="email"]:focus, input[type="url"]:hover, input[type="url"]:focus, input[type="search"]:hover, input[type="search"]:focus, input[type="tel"]:hover, input[type="tel"]:focus, input[type="color"]:hover, input[type="color"]:focus {
  border-color: var(--rgba-dark-2);
}

textarea.style-2, input[type="text"].style-2, input[type="password"].style-2, input[type="datetime"].style-2, input[type="datetime-local"].style-2, input[type="date"].style-2, input[type="month"].style-2, input[type="time"].style-2, input[type="week"].style-2, input[type="number"].style-2, input[type="email"].style-2, input[type="url"].style-2, input[type="search"].style-2, input[type="tel"].style-2, input[type="color"].style-2 {
  padding-left: 12px;
  padding-right: 12px;
}

textarea::placeholder, input[type="text"]::placeholder, input[type="password"]::placeholder, input[type="datetime"]::placeholder, input[type="datetime-local"]::placeholder, input[type="date"]::placeholder, input[type="month"]::placeholder, input[type="time"]::placeholder, input[type="week"]::placeholder, input[type="number"]::placeholder, input[type="email"]::placeholder, input[type="url"]::placeholder, input[type="search"]::placeholder, input[type="tel"]::placeholder, input[type="color"]::placeholder {
  color: #667085cc;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

textarea {
  resize: none;
  height: 160px;
}

select {
  outline: 0;
}

::-webkit-input-placeholder {
  color: var(--text-3);
}

:-moz-placeholder-shown {
  color: var(--text-3);
}

::-moz-placeholder {
  color: var(--text-3);
  opacity: 1;
}

button {
  -o-transition: all .3s ease-in-out;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  color: var(--white);
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-flex;
}

button .icon {
  font-size: 22px;
}

button:focus-within, button:focus-visible, button:focus {
  outline: none;
}

:-ms-placeholder-shown {
  color: var(--secondary-2);
}

h1, h2, h3, h4, h5, h6 {
  text-rendering: optimizeLegibility;
  color: var(--dark);
  font-weight: 500;
}

h1, .display-2xl {
  letter-spacing: -.02em;
  font-size: 72px;
  line-height: 90px;
}

.display-2xl-2 {
  font-size: 69px;
  line-height: 79px;
}

.display-xl-2 {
  font-size: 64px;
  line-height: 76.8px;
}

h2, .display-xl {
  letter-spacing: -.02em;
  font-size: 60px;
  line-height: 72px;
}

h3, .display-lg {
  letter-spacing: -.02em;
  font-size: 48px;
  line-height: 60px;
}

.display-lg-2 {
  font-size: 40px;
  line-height: 48px;
}

.display-lg-3 {
  letter-spacing: -.02em;
  font-size: 48px;
  line-height: 57.6px;
}

.display-lg-4 {
  font-size: 39px;
  line-height: 49px;
}

.display-lg-5 {
  font-size: 49px;
  line-height: 59px;
}

h4, .display-md {
  letter-spacing: -.02em;
  font-size: 36px;
  line-height: 44px;
}

.display-md-2 {
  font-size: 32px;
  line-height: 38px;
}

.display-md-3 {
  font-size: 34px;
  line-height: 44px;
}

h5, .display-sm {
  font-size: 30px;
  line-height: 38px;
}

h6, .display-xs {
  font-size: 24px;
  line-height: 32px;
}

.text-xl {
  font-size: 20px;
  line-height: 30px;
}

.text-xl-2 {
  font-size: 20px;
  line-height: 24px;
}

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

.text-lg {
  font-size: 18px;
  line-height: 28px;
}

.text-md {
  font-size: 16px;
  line-height: 24px;
}

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

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

.text-xxs {
  font-size: 10px;
  line-height: 14px;
}

.text-caption {
  font-size: 12px;
  line-height: 15.72px;
}

.fs-84 {
  font-size: 84px;
  line-height: 84px;
}

.body-text {
  font-size: 16px;
  line-height: 25.6px;
}

.body-text-2 {
  font-size: 16px;
  line-height: 19.2px;
}

.fs-7 {
  font-size: 7px !important;
}

.fs-8 {
  font-size: 8px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.font-main {
  font-family: Poppins, sans-serif;
}

.font-2 {
  font-family: Albert Sans, sans-serif !important;
}

.font-3 {
  font-family: Playfair Display, serif !important;
}

.font-4 {
  font-family: DM Sans, sans-serif !important;
}

.font-5 {
  font-family: Nunito, sans-serif !important;
}

.font-6 {
  font-family: Be Vietnam Pro, serif !important;
}

.font-7 {
  font-family: Oswald, sans-serif !important;
}

.font-8 {
  font-family: Grandstander, cursive !important;
}

.font-9 {
  font-family: Jost, sans-serif !important;
}

.font-10 {
  font-family: Agbalumo, sans-serif !important;
}

.font-11 {
  font-family: Manrope, sans-serif !important;
}

.font-12 {
  font-family: Open Sans, sans-serif !important;
}

b, strong {
  font-weight: bolder;
}

video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.text-primary {
  color: var(--primary) !important;
}

.text-primary-2 {
  color: var(--primary-2) !important;
}

.text-primary-3 {
  color: var(--primary-3) !important;
}

.text-primary-4 {
  color: var(--primary-4) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-secondary-2 {
  color: var(--secondary-2) !important;
}

.text-secondary-3 {
  color: var(--secondary-3) !important;
}

.text-secondary-4 {
  color: var(--secondary-4) !important;
}

.text-dark {
  color: var(--dark) !important;
}

.text-dark-1 {
  color: var(--rgba-dark) !important;
}

.text-dark-2 {
  color: var(--dark-2) !important;
}

.text-dark-3 {
  color: var(--dark-3) !important;
}

.text-dark-4 {
  color: var(--rgba-dark-2) !important;
}

.text-dark-5 {
  color: var(--dark-4) !important;
}

.text-dark-6 {
  color: #222 !important;
}

.text-dark-7 {
  color: #1f1f1f !important;
}

.text-dark-8 {
  color: #252525 !important;
}

.text-white {
  color: var(--white) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-success-2 {
  color: var(--success-2) !important;
}

.text-success-3 {
  color: var(--success-3) !important;
}

.text-success-4 {
  color: var(--success-4) !important;
}

.text-success-5 {
  color: #39b44b !important;
}

.text-main {
  color: var(--text) !important;
}

.text-main-2 {
  color: var(--text-2) !important;
}

.text-main-3 {
  color: #504545 !important;
}

.text-main-4 {
  color: #818181 !important;
}

.text-grey {
  color: #acacac !important;
}

.text-grey-2 {
  color: #747474 !important;
}

.text-grey-3 {
  color: #777 !important;
}

.text-grey-4 {
  color: #fff9 !important;
}

.text-grey-5 {
  color: #a9a9a9 !important;
}

.text-grey-6 {
  color: #494949 !important;
}

.text-green {
  color: #98ab23 !important;
}

.text-green-2 {
  color: #496048 !important;
}

.text-green-3 {
  color: #073c4e !important;
}

.text-green-4 {
  color: #108bb4 !important;
}

.text-yellow-2 {
  color: var(--yellow-2) !important;
}

.text-yellow-3 {
  color: #a48829 !important;
}

.text-yellow-4 {
  color: #ffc108 !important;
}

.text-brown {
  color: var(--brown) !important;
}

.text-line-3 {
  color: var(--line-3) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-red-2 {
  color: #ff4a2f !important;
}

.text-red-3 {
  color: #c22f21 !important;
}

.text-blue {
  color: #4378ff !important;
}

.text-dark-orange {
  color: #f6620c !important;
}

.text-dark-purple {
  color: #5135af !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-primary-2 {
  background-color: var(--primary-2) !important;
}

.bg-primary-3 {
  background-color: var(--primary-3) !important;
}

.bg-primary-4 {
  background-color: var(--primary-4) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-secondary-2, .bg-secondary-3, .bg-secondary-4 {
  background-color: var(--secondary-2) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-dark-2 {
  background-color: var(--dark-2) !important;
}

.bg-dark-3 {
  background-color: #292929 !important;
}

.bg-dark-4 {
  background-color: #2c2c2c !important;
}

.bg-dark-5 {
  background-color: #313030 !important;
}

.bg-dark-6 {
  background-color: #55514d !important;
}

.bg-dark-7 {
  background-color: #222 !important;
}

.bg-grey {
  background-color: #acacac !important;
}

.bg-grey-2 {
  background-color: #f2f4f7 !important;
}

.bg-grey-3 {
  background-color: #546176 !important;
}

.bg-grey-4 {
  background-color: #d9d9d9 !important;
}

.bg-grey-5 {
  background-color: #dad9d4 !important;
}

.bg-grey-6 {
  background-color: #57627b !important;
}

.bg-grey-7 {
  background-color: #edefed !important;
}

.bg-grey-8 {
  background-color: #f4f4f4 !important;
}

.bg-grey-9 {
  background-color: #fbfbfbcc !important;
}

.bg-light-grey {
  background-color: #f3f2ee !important;
}

.bg-light-grey-2 {
  background-color: #f0f0f0 !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-surface {
  background-color: var(--surface) !important;
}

.bg-surface-2 {
  background-color: var(--surface-2) !important;
}

.bg-surface-3 {
  background-color: #fffcf6 !important;
}

.bg-surface-4 {
  background-color: #f3f2ee !important;
}

.bg-surface-5 {
  background-color: #fffcfa !important;
}

.bg-line {
  background-color: var(--line) !important;
}

.bg-pink {
  background-color: #ffb8b8 !important;
}

.bg-pink-2 {
  background-color: #9d6e84 !important;
}

.bg-pink-3 {
  background-color: #ffe7e5 !important;
}

.bg-pink-4 {
  background-color: #ffe8e8 !important;
}

.bg-light-pink {
  background-color: #ff6969 !important;
}

.bg-light-pink-2 {
  background-color: #d47b62 !important;
}

.bg-light-pink-3 {
  background-color: #dcd3d4 !important;
}

.bg-light-pink-4 {
  background-color: #ffa3e8 !important;
}

.bg-light-pink-5 {
  background-color: #fddcc6 !important;
}

.bg-light-pink-6 {
  background-color: #ffa9a9 !important;
}

.bg-light-pink-7 {
  background-color: #f7d8d3 !important;
}

.bg-light-pink-8 {
  background-color: #ffa6a6 !important;
}

.bg-light-pink-9 {
  background-color: #fc9999 !important;
}

.bg-light-pink-10 {
  background-color: #facde3 !important;
}

.bg-light-pink-11 {
  background-color: #ffe1e1 !important;
}

.bg-light-pink-12 {
  background-color: #fee9ff !important;
}

.bg-dark-pink {
  background-color: #c3466d !important;
}

.bg-light-green {
  background-color: #7c8c47 !important;
}

.bg-light-green-2 {
  background-color: #74da30 !important;
}

.bg-light-green-3 {
  background-color: #c4c9b3 !important;
}

.bg-light-green-4 {
  background-color: #c1c285 !important;
}

.bg-light-green-5 {
  background-color: #e1ece4 !important;
}

.bg-light-green-6 {
  background-color: #c2ffc8 !important;
}

.bg-light-green-7 {
  background-color: #e9ffe4 !important;
}

.bg-light-green-8 {
  background-color: #89aa87 !important;
}

.bg-light-green-9 {
  background-color: #a0d57d !important;
}

.bg-light-green-10 {
  background-color: #e7ecd2 !important;
}

.bg-light-green-11 {
  background-color: #d9ffde !important;
}

.bg-green {
  background-color: #3f7b25 !important;
}

.bg-green-2 {
  background-color: #39b44b !important;
}

.bg-green-3 {
  background-color: #3bd336 !important;
}

.bg-green-4 {
  background-color: #409724 !important;
}

.bg-dark-green {
  background-color: #185136 !important;
}

.bg-dark-green-2 {
  background-color: #2d613d !important;
}

.bg-dark-green-3 {
  background-color: #526821 !important;
}

.bg-dark-green-4 {
  background-color: #253321 !important;
}

.bg-dark-green-5 {
  background-color: #5e6f5e !important;
}

.bg-dark-green-6 {
  background-color: #2a4529 !important;
}

.bg-olive-green {
  background-color: #808f65 !important;
}

.bg-violet {
  background-color: var(--violet) !important;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.bg-purple-2 {
  background-color: #7c727b !important;
}

.bg-purple-3 {
  background-color: #aa88c5 !important;
}

.bg-purple-4 {
  background-color: #c79cff !important;
}

.bg-purple-5 {
  background-color: #f0e5ff !important;
}

.bg-violet-2 {
  background-color: var(--violet-2) !important;
}

.bg-blue {
  background-color: #c2d5ff !important;
}

.bg-blue-2 {
  background-color: #386373 !important;
}

.bg-sky-blue {
  background-color: #3080a2 !important;
}

.bg-teal-blue {
  background-color: #4597a4 !important;
}

.bg-light-purple {
  background-color: #8f4a58 !important;
}

.bg-light-purple-2 {
  background-color: #a95354 !important;
}

.bg-light-purple-3 {
  background-color: #ded3de !important;
}

.bg-light-purple-6 {
  background-color: #fee9ff !important;
}

.bg-light-purple-7 {
  background-color: #e5e3ff !important;
}

.bg-light-purple-8 {
  background-color: #e3e6ff !important;
}

.bg-light-purple-9 {
  background-color: #ebe9ff !important;
}

.bg-light-purple-10 {
  background-color: #f2e8ff !important;
}

.bg-light-purple-11 {
  background-color: #f6efff !important;
}

.bg-light-blue {
  background-color: #5192f4 !important;
}

.bg-light-blue-2 {
  background-color: #add8e6 !important;
}

.bg-light-blue-3 {
  background-color: #d9e7fc !important;
}

.bg-light-blue-4 {
  background-color: #e8efff !important;
}

.bg-brown {
  background-color: #7e6449 !important;
}

.bg-brown-2 {
  background-color: #65552d !important;
}

.bg-brown-3 {
  background-color: #bf9332 !important;
}

.bg-brown-4 {
  background-color: #dab2b2 !important;
}

.bg-brown-5 {
  background-color: #a46c67 !important;
}

.bg-brown-6 {
  background-color: #603d38 !important;
}

.bg-brown-7 {
  background-color: #b58e68 !important;
}

.bg-brown-8 {
  background-color: #784e39 !important;
}

.bg-brown-9 {
  background-color: #968c83 !important;
}

.bg-brown-10 {
  background-color: #776041 !important;
}

.bg-brown-11 {
  background-color: #866022 !important;
}

.bg-brown-12 {
  background-color: #eee7da !important;
}

.bg-brown-13 {
  background-color: #8c320e !important;
}

.bg-brown-14 {
  background-color: #bb8f60 !important;
}

.bg-brown-15 {
  background-color: #a47551 !important;
}

.bg-brown-16 {
  background-color: #bab1b2 !important;
}

.bg-reddish-brown {
  background-color: #b06563 !important;
}

.bg-terra-cotta {
  background-color: #ac6664 !important;
}

.bg-yellow {
  background-color: #bbb355 !important;
}

.bg-yellow-2 {
  background-color: #ece093 !important;
}

.bg-yellow-3 {
  background-color: #f1ca41 !important;
}

.bg-yellow-4 {
  background-color: #fb9a10 !important;
}

.bg-yellow-5 {
  background-color: #f3ca54 !important;
}

.bg-yellow-6 {
  background-color: #fff8eb !important;
}

.bg-yellow-7 {
  background-color: #e9e4dc !important;
}

.bg-light-orange {
  background-color: #fb9a74 !important;
}

.bg-light-orange-2 {
  background-color: #f59c11 !important;
}

.bg-light-orange-3 {
  background-color: #ffdcc2 !important;
}

.bg-light-orange-4 {
  background-color: #f5e1c7 !important;
}

.bg-light-orange-5 {
  background-color: #f5a55f !important;
}

.bg-beige {
  background-color: #e3d7c6 !important;
}

.bg-beige-2 {
  background-color: #ddcfb7 !important;
}

.bg-light-beige {
  background-color: #e8dcd0 !important;
}

.bg-light-beige-2 {
  background-color: #e0d8d4 !important;
}

.bg-light-beige-3 {
  background-color: #fff5dd !important;
}

.bg-red {
  background-color: #ff4848 !important;
}

.bg-red-2 {
  background-color: #c4212a !important;
}

.bg-orange {
  background-color: #ffdec8 !important;
}

.bg-orange-2 {
  background-color: #ff9760 !important;
}

.bg-orange-3 {
  background-color: #ff4a2f !important;
}

.bg-gradient-2 {
  background: var(--gradient-2);
}

.bg-gradient-3 {
  background: linear-gradient(270deg, #edd1ff 0%, #fff4d1 100%);
}

.bg-gradient-4 {
  background: linear-gradient(270deg, #6adf80 0%, #b3de3c 100%);
}

.bg-gradient-5 {
  background: linear-gradient(143.24deg, #71bc87 0%, #108ab4 85.26%) !important;
}

.bg-gradient-6 {
  background: linear-gradient(90deg, #497e4a 0%, #b17739 100%) !important;
}

.bg-gradient-7 {
  background: linear-gradient(#00b0e9 0%, #004055 100%);
}

.bg-gradient-8 {
  background: linear-gradient(90deg, #ffecd4 0%, #e5e1ff 100%);
}

a {
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  color: var(--dark);
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

a:focus, a:hover {
  -o-transition: all .3s ease-in-out;
  outline: 0;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.link {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.link:hover {
  color: var(--primary) !important;
}

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

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.grid-6 {
  grid-template-columns: repeat(6, 1fr);
  display: grid;
}

.line {
  border: 1px solid var(--line) !important;
}

.line-2 {
  border: 1px solid var(--line-5) !important;
}

.line-3 {
  border-top: 1px solid #a4a4a44d !important;
}

.line-bt {
  border-bottom: 1px solid var(--line) !important;
}

.line-top {
  border-top: 1px solid var(--line) !important;
}

.line-black {
  border: 1px solid var(--dark) !important;
}

.line-primary {
  border: 1px solid var(--primary) !important;
}

.line-purple {
  border: 1px solid var(--purple) !important;
}

.o-hidden {
  overflow: hidden !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-21 {
  gap: 21px !important;
}

.gap-48 {
  gap: 15px 48px !important;
}

.px_15 {
  padding-left: 15px;
  padding-right: 15px;
}

.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.pt-24 {
  padding-top: 24px;
}

.box-center {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

.mt_5 {
  margin-top: 5px !important;
}

.mt_10 {
  margin-top: 10px !important;
}

.mt_15 {
  margin-top: 15px !important;
}

.mt_18 {
  margin-top: 18px !important;
}

.mt_40 {
  margin-top: 40px;
}

.mb_4 {
  margin-bottom: 4px;
}

.mb_6 {
  margin-bottom: 6px;
}

.mb_8 {
  margin-bottom: 8px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_12 {
  margin-bottom: 12px;
}

.mb_15 {
  margin-bottom: 15px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mx_40 {
  margin-left: 40px;
  margin-right: 40px;
}

.my_24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.my_20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pt_0 {
  padding-top: 0 !important;
}

.pb_0 {
  padding-bottom: 0 !important;
}

[data-grid="grid-1"] {
  grid-template-columns: 1fr;
  gap: 30px;
  display: grid;
}

[data-grid="grid-2"] {
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  display: grid;
}

[data-grid="grid-3"] {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  display: grid;
}

[data-grid="grid-4"] {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  display: grid;
}

[data-grid="grid-5"] {
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  display: grid;
}

[data-grid="grid-6"] {
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  display: grid;
}

[data-grid="grid-7"] {
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  display: grid;
}

.tf-row-flex {
  flex-direction: row;
  gap: 30px;
  display: flex;
}

.tf-grid-layout {
  gap: 24px 12px;
  display: grid;
}

.tf-grid-layout.tf-col-2 {
  grid-template-columns: 1fr 1fr;
}

.tf-grid-layout.tf-col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.tf-grid-layout.tf-col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tf-grid-layout.tf-col-5 {
  grid-template-columns: repeat(5, 1fr);
}

.tf-grid-layout.tf-col-6 {
  grid-template-columns: repeat(6, 1fr);
}

.tf-grid-layout.tf-col-7 {
  grid-template-columns: repeat(7, 1fr);
}

.tf-grid-layout .wg-pagination {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 16px;
}

.tf-grid-layout .wd-load {
  grid-column: 1 / -1;
}

.sticky-top {
  z-index: 50;
  transition: all .2s ease-out;
  position: sticky;
  top: 15px;
}

.wmax {
  width: max-content !important;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.cursor-auto {
  cursor: auto;
}

.text-highlight {
  -webkit-text-stroke: 1px #000;
  flex-direction: row-reverse;
  color: #0000 !important;
}

.text-line-clamp-1 {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-line-clamp-2 {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.text-line-clamp-4 {
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.asp-ratio-1 {
  aspect-ratio: 1;
}

.asp-ratio-0 {
  aspect-ratio: 0 !important;
}

.initial-child-container {
  flex-direction: row;
  flex: none;
  align-items: center;
  min-width: auto;
  display: flex;
}

.line-top-container {
  position: relative;
}

.line-top-container:before {
  content: "";
  background-color: var(--line);
  width: 100%;
  max-width: 1440px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.line-bottom-container {
  position: relative;
}

.line-bottom-container:after {
  content: "";
  background-color: var(--line);
  width: 100%;
  max-width: 1440px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#scroll-top {
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
  z-index: 100;
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  line-height: 50px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: fixed;
  bottom: 92px;
  right: 20px;
  overflow: hidden;
}

#scroll-top.show {
  opacity: 1;
  visibility: visible;
}

#scroll-top.type-1 {
  bottom: 140px;
}

#scroll-top:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

.preload-container {
  background: var(--white);
  z-index: 2147483647;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
}

.spinner {
  border: 3px solid #0000;
  border-top: 3px solid var(--line);
  border-right: 3px solid var(--line);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  margin: auto;
  animation: .8s linear infinite spin;
  position: absolute;
  inset: 0;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.flat-spacing {
  padding-top: 100px;
  padding-bottom: 100px;
}

.flat-spacing-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.flat-spacing-3 {
  padding-top: 120px;
  padding-bottom: 120px;
}

.flat-spacing-4 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.flat-spacing-5 {
  padding-top: 43px;
  padding-bottom: 43px;
}

.flat-spacing-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.flat-spacing-7 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.flat-spacing-8 {
  padding-top: 80px;
  padding-bottom: 60px;
}

.flat-spacing-9 {
  padding-top: 68px;
  padding-bottom: 68px;
}

.flat-spacing-10 {
  padding-top: 60px;
  padding-bottom: 70px;
}

.flat-spacing-11 {
  padding-top: 80px;
  padding-bottom: 127px;
}

.flat-spacing-12 {
  padding-top: 80px;
  padding-bottom: 44px;
}

.flat-spacing-13 {
  padding-top: 64px;
  padding-bottom: 100px;
}

.flat-spacing-14 {
  padding-top: 83px;
  padding-bottom: 98px;
}

.flat-spacing-15 {
  padding-top: 176px;
  padding-bottom: 176px;
}

.flat-spacing-16 {
  padding-top: 120px;
  padding-bottom: 80px;
}

.flat-spacing-17 {
  padding-top: 80px;
  padding-bottom: 120px;
}

.flat-spacing-18 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.flat-spacing-19 {
  padding-top: 87px;
  padding-bottom: 143px;
}

.flat-spacing-20 {
  padding-top: 86px;
  padding-bottom: 86px;
}

.flat-spacing-21 {
  padding-top: 116px;
  padding-bottom: 116px;
}

.flat-spacing-22 {
  padding-top: 182px;
  padding-bottom: 120px;
}

.flat-spacing-23 {
  padding-top: 136px;
  padding-bottom: 136px;
}

.flat-spacing-24 {
  padding-top: 64px;
  padding-bottom: 80px;
}

.flat-spacing-25 {
  padding-top: 80px;
  padding-bottom: 100px;
}

.flat-spacing-26 {
  padding-top: 126px;
  padding-bottom: 80px;
}

.flat-spacing-27 {
  padding-top: 145px;
  padding-bottom: 120px;
}

.flat-spacing-28 {
  padding-top: 120px;
  padding-bottom: 80px;
}

.flat-spacing-29 {
  padding-top: 80px;
  padding-bottom: 94px;
}

.flat-spacing-30 {
  padding-top: 100px;
  padding-bottom: 58px;
}

.flat-spacing-31 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.tf-overlay {
  position: absolute;
  inset: 0;
}

.radius-40 {
  border-radius: 40px !important;
}

.radius-16 {
  border-radius: 16px !important;
}

.radius-20 {
  border-radius: 20px !important;
}

.radius-8 {
  border-radius: 8px !important;
}

.radius-6 {
  border-radius: 6px !important;
}

.w-max-content {
  width: max-content !important;
}

.border-transparent {
  border-color: #0000 !important;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.letter-0 {
  letter-spacing: 0 !important;
}

.w-1209 {
  width: 100%;
  max-width: 1209px;
}

.mw-1 {
  width: 100%;
  max-width: 1326px;
}

.text-delivered {
  color: #008a00;
}

.text-on-the-way, .text-pending {
  color: #ff4848;
}

.gap10 {
  gap: 10px !important;
}

.justify-items-left {
  justify-items: left !important;
}

.justify-items-right {
  justify-items: right !important;
}

.justify-items-center {
  justify-items: center !important;
}

#goTop {
  background: var(--white);
  color: #000;
  text-align: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  width: 38px;
  height: 38px;
  box-shadow: var(--shadow-1);
  z-index: 1000;
  border: none;
  border-radius: 3px;
  padding: 0;
  font-size: 20px;
  line-height: 50px;
  transition: opacity .3s;
  position: fixed;
  bottom: 90px;
  right: 40px;
}

#whatsAap {
  background: var(--white);
  color: #000;
  text-align: center;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  width: 38px;
  height: 38px;
  box-shadow: var(--shadow-1);
  z-index: 1000;
  border: none;
  border-radius: 3px;
  padding: 0;
  font-size: 20px;
  line-height: 50px;
  transition: opacity .3s;
  position: fixed;
  bottom: 90px;
  left: 40px;
}

#goTop .border-progress, #whatsAap .border-progress {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  mask-image: conic-gradient(#000 var(--progress-angle, 0deg), transparent 0);
  -webkit-mask-image: conic-gradient(#000 var(--progress-angle, 0deg), transparent 0);
  content: "";
  z-index: 1;
  -o-transition: all .3s ease-in-out;
  border: 1px solid #000;
  border-radius: 3px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  top: -1px;
  left: -1px;
}

#goTop.show {
  opacity: 1;
  visibility: visible;
}

#goTop .icon {
  -o-transition: all .3s ease-in-out;
  font-size: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#whatsAap .icon {
  -o-transition: all .3s ease-in-out;
  font-size: 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

#goTop .icon-arrow-right, #whatsAap .icon-arr-right {
  transform: rotate(-90deg);
}

#goTop.pos1, #whatsAap.pos1 {
  bottom: 140px;
  right: 15px;
}

.obj-contain {
  object-fit: contain !important;
}

.text-transform-none {
  text-transform: none !important;
}

.px-30 {
  padding-left: 15px;
  padding-right: 15px;
}

.text-clip {
  background: linear-gradient(0deg, #fff, #fff) 0 0 / 100% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: .6px #5a5a5a;
  -webkit-background-clip: text;
}

.text-clip-1 {
  background: linear-gradient(0deg, #fff, #fff) 0 0 / 100% 100%;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: .6px #073c4e;
  -webkit-background-clip: text;
}

.box-shadow1 {
  box-shadow: 0 1px 6px #9e9e9e40;
}

.h-46 {
  height: 46px !important;
}

.sib-form {
  position: relative;
  padding: 0 !important;
  font-family: Poppins, sans-serif !important;
}

.sib-form .tf-btn {
  font-size: 16px;
  line-height: 24px;
}

.sib-form #sib-container {
  background-color: unset;
  padding: 0;
  display: block;
}

.sib-form .sib-form-block {
  padding: 0;
}

.sib-form .sib-optin {
  display: none;
}

.sib-form .sib-input .entry__field {
  background-color: unset;
  border: 0;
  margin: 0;
  box-shadow: none !important;
}

.sib-form .sib-form-message-panel {
  border: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
}

.sib-form .sib-form-message-panel .sib-form-message-panel__text {
  justify-content: center;
  padding: 0;
}

.sib-form .sib-form-container .input {
  border: 1px solid var(--line);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  background: var(--white);
  width: 100%;
  color: var(--rgba-dark-2);
  box-sizing: border-box;
  -o-transition: all .3s ease-in-out;
  border-radius: 6px;
  outline: 0;
  height: 50px;
  padding: 14px 20px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sib-form .sib-form-container .input:hover, .sib-form .sib-form-container .input:focus {
  border-color: var(--rgba-dark-2);
}

.sib-form .sib-form-container .input::placeholder {
  color: #667085cc;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.sib-form .entry__specification, .sib-form .entry__error, .entry__specification, .entry__label {
  margin: 0 !important;
}

#error-message {
  color: var(--red);
}

#success-message {
  color: var(--success);
}

.sib-form-block__button .clickable__icon {
  display: none;
}

.sib-form .form-newsletter fieldset .input {
  border-color: var(--line);
  border-radius: 49px;
  padding: 14px 20px;
  font-weight: 400;
}

.sib-form .form-newsletter fieldset .input::placeholder {
  color: #a5a5a5;
  font-weight: 400;
}

.sib-form .form-newsletter .button-submit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.sib-form .form-newsletter .subscribe-content {
  position: relative;
}

.sib-form .form-newsletter .entry__error {
  display: none !important;
}

.footer-default .sib-form .sib-form-message-panel .sib-form-message-panel__text {
  justify-content: flex-start;
}

.tf-btn {
  -o-transition: all .3s ease-in-out;
  background-color: var(--dark);
  border: 1px solid var(--dark);
  color: var(--white);
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-flex;
}

.tf-btn .icon {
  font-size: 16px;
}

.tf-btn.hover-icon:hover .icon {
  animation: .3s linear link-icon;
}

.tf-btn.hover-icon-2 {
  gap: 0;
}

.tf-btn.hover-icon-2 .icon {
  -o-transition: all .3s ease-in-out;
  color: var(--white);
  width: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  transform: scale(0);
}

.tf-btn.hover-icon-2:hover .icon {
  width: 14px;
  margin-left: 10px;
  transform: scale(1);
}

.tf-btn.hover-icon-2.btn-cls .icon {
  font-size: 12px;
}

.tf-btn.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tf-btn.btn-out-line-primary {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #0000;
}

.tf-btn.btn-out-line-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tf-btn.btn-out-line-white {
  border-color: var(--white);
  color: var(--white);
  background-color: #0000;
}

.tf-btn.btn-out-line-white:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tf-btn.btn-out-line-dark {
  border-color: var(--dark);
  color: var(--dark);
  background-color: #0000;
}

.tf-btn.btn-out-line-dark:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.tf-btn.btn-out-line-dark-2 {
  border-color: var(--dark-2);
  color: var(--dark-2);
  background-color: #0000;
}

.tf-btn.btn-out-line-dark-2:hover {
  background-color: var(--dark-2);
  color: var(--white);
  border-color: var(--dark-2);
}

.tf-btn.btn-out-line-green {
  color: #108066;
  background-color: #0000;
  border-color: #108066;
}

.tf-btn.btn-out-line-green:hover {
  color: var(--white);
  background-color: #16423c;
  border-color: #16423c;
}

.tf-btn.btn-out-line-yellow {
  color: #b99f4a;
  background-color: #0000;
  border-color: #b99f4a;
}

.tf-btn.btn-out-line-yellow:hover {
  color: var(--white);
  background-color: #b99f4a;
  border-color: #b99f4a;
}

.tf-btn.btn-white {
  color: var(--dark);
  background-color: var(--white);
  border-color: var(--white);
}

.tf-btn.btn-yellow {
  color: var(--white);
  background-color: #b99f4a;
  border-color: #b99f4a;
}

.tf-btn.btn-green {
  color: var(--white);
  background-color: #496048;
  border-color: #496048;
}

.tf-btn.btn-green-2 {
  color: var(--white);
  background-color: #16423c;
  border-color: #16423c;
}

.tf-btn.btn-blue {
  color: var(--dark);
  background-color: #cae0e8;
  border-color: #cae0e8;
}

.tf-btn.btn-blue-2 {
  color: var(--white);
  background-color: #4378ff;
  border-color: #4378ff;
}

.tf-btn.btn-orange {
  color: var(--white);
  background-color: #ca790b;
  border-color: #ca790b;
}

.tf-btn.btn-orange-2 {
  color: var(--white);
  background-color: #f77904;
  border-color: #f77904;
}

.tf-btn.btn-orange-3 {
  color: var(--white);
  background-color: #fa7827;
  border-color: #fa7827;
}

.tf-btn.btn-outline-orange {
  color: #fa7827;
  background-color: #0000;
  border: 1px solid #fa7827;
}

.tf-btn.btn-outline-orange:hover {
  color: var(--white);
  background-color: #fa7827;
  border-color: #fa7827;
}

.tf-btn.hover-primary:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.tf-btn.hover-dark:hover {
  background-color: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.tf-btn.hover-green:hover {
  color: var(--white);
  background-color: #b99f4a;
  border-color: #b99f4a;
}

.tf-btn.btn-line {
  color: var(--dark);
  justify-content: unset;
  background: none;
  border: none;
  gap: 6px;
  width: max-content;
  padding: 0;
  position: relative;
}

.tf-btn.btn-line .icon {
  display: flex;
}

.tf-btn.btn-line i {
  font-size: 12px;
}

.tf-btn.btn-line:hover {
  color: var(--primary);
}

.tf-btn.btn-line:hover:after {
  width: 100%;
  left: 0;
  right: auto;
}

.tf-btn.btn-line:after {
  content: "";
  background-color: var(--primary);
  -o-transition: all .3s ease-in-out;
  width: 0%;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 2px;
  left: auto;
  right: 0;
}

.tf-btn.btn-line-dark {
  color: var(--dark);
  justify-content: unset;
  background: none;
  border: none;
  gap: 6px;
  width: max-content;
  padding: 0;
  position: relative;
}

.tf-btn.btn-line-dark .icon {
  display: flex;
}

.tf-btn.btn-line-dark i {
  font-size: 12px;
}

.tf-btn.btn-line-dark:hover {
  color: var(--primary);
}

.tf-btn.btn-line-dark:hover:after {
  background-color: var(--primary);
}

.tf-btn.btn-line-dark:after {
  content: "";
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  width: 100%;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}

.tf-btn.btn-line-white {
  color: var(--white);
  justify-content: unset;
  background: none;
  border: none;
  gap: 6px;
  width: max-content;
  padding: 0;
  position: relative;
}

.tf-btn.btn-line-white .icon {
  display: flex;
}

.tf-btn.btn-line-white i {
  font-size: 12px;
}

.tf-btn.btn-line-white:hover {
  color: var(--primary);
}

.tf-btn.btn-line-white:hover:after {
  background-color: var(--primary);
}

.tf-btn.btn-line-white:after {
  content: "";
  background-color: var(--white);
  -o-transition: all .3s ease-in-out;
  width: 100%;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: auto;
}

.tf-btn.btn-outline-brown {
  color: #a47551;
  background-color: #0000;
  border: 1px solid #a47551;
}

.tf-btn.btn-outline-brown:hover {
  color: var(--white);
  background-color: #252525;
  border-color: #252525;
}

.tf-btn.hover-shadow:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #0000004d;
}

.tf-btn.btn-out-line-dark2 {
  border: 1px solid var(--dark-2);
  color: var(--dark-2);
  background-color: #0000;
}

.tf-btn.btn-out-line-dark2:hover {
  background-color: var(--dark-2);
  color: var(--white);
}

.tf-btn.btn-dark2 {
  background-color: var(--dark-2);
  color: var(--white);
  border: 1px solid var(--dark-2);
}

.tf-btn.btn-dark3 {
  background-color: var(--text-2);
  color: var(--white);
  border: 1px solid var(--text-2);
}

.tf-btn.btn-red {
  color: var(--white);
  background-color: #df3c01;
  border: 1px solid #df3c01;
}

.tf-btn.btn-sold-out {
  opacity: .8;
}

.tf-btn.btn-small {
  padding: 9px 27px;
}

.tf-btn.btn-space1 {
  gap: 16px;
  padding-left: 30px;
  padding-right: 15px;
}

.tf-btn.btn-space1 .icon {
  font-size: 20px;
}

.btn-out-stock {
  opacity: .5;
}

.animate-btn {
  position: relative;
  overflow: hidden;
}

.animate-btn:hover:after {
  animation: 1s forwards shine-reverse;
}

.animate-btn:after {
  content: "";
  opacity: .6;
  background-image: linear-gradient(120deg, #fff0 30%, #fffc, #fff0 70%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
}

button.animate-btn:after, .animate-btn.tf-btn:after {
  background-image: linear-gradient(120deg, #0000 20%, #fff6, #0000 70%);
}

.animate-btn.animate-dark:after {
  background-image: linear-gradient(90deg, #0000, #00000040, #0000);
}

@keyframes shine-forward {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes shine-reverse {
  0% {
    left: 100%;
  }

  100% {
    left: -100%;
  }
}

.effect-flash {
  position: relative;
  overflow: hidden;
}

.effect-flash:after {
  background-image: linear-gradient(90deg, transparent, var(--white), transparent);
  content: "";
  opacity: .7;
  width: 200%;
  animation: 3s cubic-bezier(.01, .56, 1, 1) infinite erFlashEffect;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 150%;
  transform: skew(-20deg);
}

@keyframes erFlashEffect {
  100%, 20% {
    left: -200%;
  }
}

.btn-sidebar {
  z-index: 100;
  width: max-content;
  display: none;
  position: fixed;
  top: 30%;
}

.btn-sidebar.left {
  left: 0;
}

.btn-sidebar.right {
  right: 0;
}

.btn-sidebar button {
  background-color: var(--white);
  width: 48px;
  height: 48px;
  box-shadow: var(--shadow-1);
  border: 0;
  border-radius: 0 4px 4px 0;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  display: flex;
}

.btn-sidebar button .icon {
  color: var(--dark);
  font-size: 20px;
}

.btn-sidebar .type-hover {
  gap: 10px;
  width: 40px;
}

.btn-sidebar .type-hover .text {
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  display: none;
}

.btn-sidebar .type-hover:hover {
  width: max-content;
}

.btn-sidebar .type-hover:hover .text {
  display: block;
}

.tf-loading {
  width: auto;
  min-width: 118px;
  height: 42px;
  padding: 10px;
  font-size: 14px;
  line-height: 20px;
}

.tf-loading.loadmore .spinner-circle {
  display: none;
}

.tf-loading.loadmore.loading .spinner-circle {
  display: block;
}

.tf-loading.loadmore.loading .text {
  display: none;
}

.tf-loading.loadmore:hover .spinner-child:before {
  background-color: var(--white);
}

.tf-loading.loadmore .spinner-child:before {
  background-color: var(--dark);
}

.spinner-circle {
  width: 24px;
  height: 24px;
  position: relative;
}

.spinner-circle .spinner-child {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.spinner-circle .spinner-child:before {
  content: "";
  background-color: var(--white);
  border-radius: 100%;
  width: 20%;
  height: 20%;
  margin: 0 auto;
  -webkit-animation: 1s ease-in-out infinite both spinner-circleBounceDelay;
  animation: 1s ease-in-out infinite both spinner-circleBounceDelay;
  display: block;
}

.spinner-circle .spinner-circle2 {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
}

.spinner-circle .spinner-circle2:before {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s;
}

.spinner-circle .spinner-circle3 {
  -webkit-transform: rotate(80deg);
  -ms-transform: rotate(80deg);
  transform: rotate(80deg);
}

.spinner-circle .spinner-circle3:before {
  -webkit-animation-delay: -.8s;
  animation-delay: -.8s;
}

.spinner-circle .spinner-circle4 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}

.spinner-circle .spinner-circle4:before {
  -webkit-animation-delay: -.7s;
  animation-delay: -.7s;
}

.spinner-circle .spinner-circle5 {
  -webkit-transform: rotate(160deg);
  -ms-transform: rotate(160deg);
  transform: rotate(160deg);
}

.spinner-circle .spinner-circle5:before {
  -webkit-animation-delay: -.6s;
  animation-delay: -.6s;
}

.spinner-circle .spinner-circle6 {
  -webkit-transform: rotate(200deg);
  -ms-transform: rotate(200deg);
  transform: rotate(200deg);
}

.spinner-circle .spinner-circle6:before {
  -webkit-animation-delay: -.5s;
  animation-delay: -.5s;
}

.spinner-circle .spinner-circle7 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}

.spinner-circle .spinner-circle7:before {
  -webkit-animation-delay: -.4s;
  animation-delay: -.4s;
}

.spinner-circle .spinner-circle8 {
  -webkit-transform: rotate(280deg);
  -ms-transform: rotate(280deg);
  transform: rotate(280deg);
}

.spinner-circle .spinner-circle8:before {
  -webkit-animation-delay: -.3s;
  animation-delay: -.3s;
}

.spinner-circle .spinner-circle9 {
  -webkit-transform: rotate(320deg);
  -ms-transform: rotate(320deg);
  transform: rotate(320deg);
}

.spinner-circle .spinner-circle9:before {
  -webkit-animation-delay: -.2s;
  animation-delay: -.2s;
}

@-webkit-keyframes spinner-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes spinner-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.btn-underline {
  color: var(--dark);
  -o-transition: all .3s ease-in-out;
  background: linear-gradient(to right, var(--primary) 50%, var(--dark) 50%);
  -webkit-text-fill-color: transparent;
  background-position: 100%;
  background-size: 200% 100%;
  -webkit-background-clip: text;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  -webkit-transition: background-position .3s linear;
  -moz-transition: background-position .3s linear;
  -ms-transition: background-position .3s linear;
  transition: background-position .3s linear;
  position: relative;
}

.btn-underline:hover {
  background-position: 0;
}

.btn-underline:hover:before {
  width: 100%;
}

.btn-underline:after {
  content: "";
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
}

.btn-underline:before {
  content: "";
  background-color: var(--primary);
  z-index: 1;
  width: 0;
  height: 1px;
  transition: width .3s linear;
  position: absolute;
  bottom: 4px;
  left: 0;
}

.tf-btn-icon {
  -o-transition: all .3s ease-in-out;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-btn-icon i {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-btn-icon:hover i {
  transform: rotate(45deg);
}

.avatar.round {
  border-radius: 50%;
  overflow: hidden;
}

.avatar img {
  object-fit: cover;
  width: 100%;
  min-width: 100%;
  height: 100%;
}

.avt-40 {
  width: 40px;
  min-width: 40px;
  height: 40px;
}

.avt-56 {
  width: 56px;
  min-width: 56px;
  height: 56px;
}

.avt-60 {
  width: 60px;
  min-width: 60px;
  height: 60px;
}

.avt-100 {
  width: 100px;
  min-width: 100px;
  height: 100px;
}

.hover-img .img-style {
  overflow: hidden;
}

.hover-img .img-style > img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18);
  transition: opacity .5s, transform 2s cubic-bezier(0, 0, .44, 1.18);
}

.hover-img:hover .img-style > img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.hover-img .img-style2 {
  border-radius: 10px;
  overflow: hidden;
}

.hover-img .img-style2 .img-hv {
  object-fit: cover;
  width: 100%;
  -webkit-transition: transform .5s;
  transition: transform .5s;
}

.hover-shine {
  overflow: hidden;
}

.hover-shine .shine-item {
  position: relative;
  overflow: hidden;
}

.hover-shine .shine-item:after {
  content: "";
  z-index: 1;
  background-color: #ffffff4d;
  width: 200%;
  height: 0%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)rotate(-45deg);
}

.hover-shine:hover .shine-item:after {
  background-color: #0000;
  height: 250%;
  transition: all .6s linear;
}

.hover-tooltip {
  position: relative;
}

.hover-tooltip .tooltip {
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  height: 23px;
  color: var(--white);
  background-color: var(--dark);
  z-index: 100;
  text-align: center;
  border-radius: 4px;
  width: max-content;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 500;
  line-height: 23px;
  transition: opacity .3s, visibility .3s, -webkit-transform .3s cubic-bezier(.71, 1.7, .77, 1.24), transform .3s cubic-bezier(.71, 1.7, .77, 1.24);
  position: absolute;
  bottom: calc(100% + 8px);
  transform: translateY(8px);
}

.hover-tooltip .tooltip:before {
  content: "";
  background: var(--dark);
  z-index: -1;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%)rotate(45deg);
}

.hover-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transition-delay: .1s;
  transform: none;
}

.hover-tooltip.tooltip-bot .tooltip {
  top: calc(100% + 8px);
  bottom: auto;
}

.hover-tooltip.tooltip-bot .tooltip:before {
  top: -2px;
}

.hover-tooltip.tooltip-left .tooltip {
  bottom: auto;
  right: 100%;
  transform: translateX(0);
}

.hover-tooltip.tooltip-left .tooltip:before {
  top: 50%;
  left: auto;
  right: -2px;
  transform: translateY(-50%)rotate(45deg);
}

.hover-tooltip.tooltip-left:hover .tooltip {
  transform: translateX(-8px);
}

.hover-tooltip.tooltip-right .tooltip {
  bottom: auto;
  left: 100%;
  transform: translateX(0);
}

.hover-tooltip.tooltip-right .tooltip:before {
  top: 50%;
  left: -2px;
  right: auto;
  transform: translateY(-50%)rotate(45deg);
}

.hover-tooltip.tooltip-right:hover .tooltip {
  transform: translateX(8px);
}

.hover-overlay {
  position: relative;
}

.hover-overlay:before {
  z-index: 2;
  content: "";
  opacity: 0;
  visibility: hidden;
  background-color: #0000001a;
  width: 100%;
  height: 100%;
  transition: all .4s .1s;
  position: absolute;
  top: 0;
  left: 0;
}

.hover-overlay:hover:before {
  opacity: 1;
  visibility: visible;
}

.hover-overlay-2 .img-hv-overlay {
  position: relative;
}

.hover-overlay-2 .img-hv-overlay:before {
  content: "";
  background-color: var(--dark);
  opacity: .1;
  z-index: 2;
  -o-transition: all .3s ease-in-out;
  width: 50%;
  height: 0%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.hover-overlay-2 .img-hv-overlay:after {
  content: "";
  background-color: var(--dark);
  opacity: .1;
  z-index: 2;
  -o-transition: all .3s ease-in-out;
  width: 50%;
  height: 0%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 0;
  right: 0;
}

.hover-overlay-2:hover .img-hv-overlay:before {
  height: 100%;
}

.hover-overlay-2:hover .img-hv-overlay:after {
  height: 100%;
  transition-delay: .2s;
}

.tf-check {
  cursor: pointer;
  -webkit-appearance: none;
  border: 1px solid var(--rgba-dark-3);
  background: none;
  border-radius: 3px;
  outline: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  position: relative;
}

.tf-check:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}

.tf-check:checked:before {
  opacity: 1;
  transform: scale(1);
}

.tf-check:before {
  content: "";
  color: var(--white);
  opacity: 0;
  -o-transition: all .3s ease-in-out;
  font-family: icomoon;
  font-size: 7px;
  font-weight: 500;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  transform: scale(0);
}

.tf-check-rounded {
  cursor: pointer;
  -webkit-appearance: none;
  background: none;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  outline: 0;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  display: flex;
  position: relative;
}

.tf-check-rounded:before {
  content: "";
  background-color: var(--primary);
  opacity: 0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
}

.tf-check-rounded:checked {
  border-color: var(--primary);
}

.tf-check-rounded:checked:before {
  opacity: 1;
}

.tf-select {
  position: relative;
}

.tf-select select {
  border: 1px solid var(--line);
  -webkit-appearance: none;
  appearance: none;
  -o-transition: all .3s ease-in-out;
  width: 100%;
  color: var(--text);
  background-color: #0000;
  border-radius: 999px;
  padding: 9px 24px 9px 12px;
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-select:after {
  content: "";
  z-index: -1;
  font-family: icomoon;
  font-size: 10px;
  font-weight: 400;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.tf-select:hover select {
  border-color: var(--rgba-dark-2);
}

.tf-select.select-square select {
  color: var(--text-3);
  opacity: .8;
  border-radius: 6px;
  height: 50px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 20px;
}

.tf-field {
  position: relative;
}

.tf-field .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field .tf-input:focus ~ .tf-field-label {
  color: var(--rgba-dark-2);
  background-color: #f2f2f2;
  border-radius: 3px;
  padding: 0 8px;
  font-size: 12px;
  top: 0;
}

.tf-field .tf-input::placeholder {
  color: #0000;
}

.tf-field .tf-field-label {
  cursor: text;
  color: #667085cc;
  font-size: 14px;
  line-height: 20px;
  transition: all .1s;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.tf-field.style-2 .tf-input {
  height: 50px;
  padding: 24px 20px 6px;
}

.tf-field.style-2 .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field.style-2 .tf-input:focus ~ .tf-field-label {
  color: #667085cc;
  background-color: #0000;
  padding: 0;
  font-size: 12px;
  line-height: 18px;
  top: 6px;
  left: 20px;
  transform: none;
}

.tf-field.style-3 .tf-input {
  padding-left: 12px;
  padding-right: 12px;
}

.tf-field.style-3 .tf-input:not(:placeholder-shown) ~ .tf-field-label, .tf-field.style-3 .tf-input:focus ~ .tf-field-label, .tf-field.style-3 .tf-field-label {
  left: 12px;
}

.form-search {
  position: relative;
}

.form-search input {
  border-color: #0003;
}

.form-search input::placeholder {
  color: #989898;
}

.form-search button {
  color: var(--dark);
  background-color: #0000;
  border: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.form-search button .icon {
  font-size: 24px;
}

.form-search .btn-search {
  background-color: var(--dark);
  color: var(--white);
  padding: 7px 22px;
  right: 6px;
}

.form-search .btn-search .icon {
  font-size: 24px;
}

.form-search .btn-search:hover {
  background-color: var(--primary);
  color: var(--white);
}

.tf-form-search {
  position: relative;
}

.tf-form-search .search-suggests-results {
  z-index: 1000;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
  max-width: 100%;
  height: auto;
  box-shadow: var(--shadow-1);
  pointer-events: none;
  border-radius: 10px;
  transition: all .1s ease-in-out;
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
}

.tf-form-search .search-suggests-results .search-suggests-results-inner {
  max-height: calc(95vh - 183px);
  padding: 20px;
  overflow: hidden auto;
}

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar {
  border-radius: 5px;
  width: 5px;
}

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-track {
  background-color: var(--line);
}

.tf-form-search .search-suggests-results .search-suggests-results-inner::-webkit-scrollbar-thumb {
  background: var(--line-3);
  border-radius: 10px;
}

.tf-form-search:hover .search-suggests-results {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.tf-form-search .search-suggests-results-inner .search-result-item {
  gap: 15px;
  display: flex;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content {
  flex-grow: 1;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .title {
  color: var(--dark);
  text-align: start;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .price {
  color: var(--dark);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  display: flex;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .old-price {
  color: var(--rgba-dark);
  text-decoration: line-through;
}

.tf-form-search .search-suggests-results-inner .search-result-item .box-content .new-price {
  color: var(--primary);
}

.tf-form-search .search-suggests-results-inner .search-result-item .img-box {
  width: 60px;
  height: auto;
}

.tf-form-search .search-suggests-results-inner .search-result-item .img-box img {
  width: 100%;
  height: 100%;
}

.tf-form-search .search-suggests-results-inner li:not(:last-child) .search-result-item {
  border-bottom: solid 1px var(--line);
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.tf-form-search.style-2 {
  border: 1px solid var(--line);
  border-radius: 99px;
  align-items: center;
  max-width: 631px;
  display: flex;
}

.tf-form-search.style-2 .tf-select {
  border-right: 1px solid var(--line);
}

.tf-form-search.style-2 .tf-select select {
  border: 0;
  width: 166px;
  padding: 0 24px 0 20px;
}

.tf-form-search.style-2 .form-search {
  flex-grow: 1;
}

.tf-form-search.style-2 .form-search input {
  border: 0;
}

.tf-form-search.style-2 .form-search:hover .search-suggests-results {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.tf-form-search.style-2:hover .search-suggests-results {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-newsletter fieldset input {
  border-color: var(--line);
  border-radius: 49px;
  padding: 14px 20px;
  font-weight: 400;
}

.form-newsletter fieldset input::placeholder {
  color: #a5a5a5;
  font-weight: 400;
}

.form-newsletter .button-submit {
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}

.form-newsletter .subscribe-content {
  position: relative;
}

.form-default .cols {
  gap: 24px;
  margin-bottom: 24px;
  display: flex;
}

.form-default .cols > * {
  width: 100%;
}

.form-default fieldset label {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
}

.form-default fieldset input {
  border-color: var(--line);
  color: var(--dark);
  border-radius: 45px;
}

.form-default fieldset textarea {
  border-color: var(--line);
  border-radius: 16px;
  height: 228px;
}

.form-default fieldset textarea:hover {
  border-color: var(--dark);
}

.form-default .notice {
  margin-bottom: 42px;
}

.form-default .button-submit {
  justify-content: center;
  display: flex;
}

.form-default .button-submit .tf-btn {
  min-width: 176px;
  padding: 11px 28px;
  font-family: DM Sans, sans-serif;
}

.wd-form-address {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.wd-form-address .cols {
  margin-bottom: 15px;
}

.wd-form-address fieldset input {
  border-radius: 6px;
}

.wd-form-address .tf-cart-checkbox {
  cursor: pointer;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  display: flex;
}

.wd-form-address .box-btn {
  gap: 12px;
  display: flex;
}

.show-form-address, .edit-form-address {
  display: none;
}

.edit-form-address {
  margin-top: 24px;
}

.account-address .title-account {
  margin-bottom: 23px;
}

.cols {
  gap: 15px 10px;
  display: flex;
}

.cols > * {
  width: 100%;
}

.form-ask-question .text {
  color: #5d5d5d;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.form-ask-question textarea {
  height: 149px;
}

.form-ask-question button {
  letter-spacing: -.03em;
  margin-top: 42px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.2px;
}

.flat-alert {
  margin-bottom: 10px;
}

.flat-alert.msg-success {
  color: var(--success);
  font-weight: 500;
}

.flat-alert.msg-error {
  color: var(--red);
  font-weight: 500;
}

#subscribe-msg, #subscribe-msg .notification_ok {
  color: var(--success);
}

#subscribe-msg .notification_error {
  color: var(--red);
  margin-top: 15px;
}

.image-select.style-default {
  display: flex;
  width: unset !important;
}

.image-select.style-default > select {
  display: none !important;
}

.image-select.style-default > .dropdown-toggle {
  color: var(--dark);
  gap: 6px;
  padding: 0 14px 0 0;
  background-color: #0000 !important;
  border: 0 !important;
  outline: none !important;
}

.image-select.style-default > .dropdown-toggle:after {
  content: "";
  color: var(--dark);
  border: 0;
  margin-top: 2px;
  font-family: icomoon;
  font-size: 10px;
  position: absolute;
  right: 0;
}

.image-select.style-default .filter-option-inner-inner {
  color: var(--dark);
  justify-content: start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  display: flex;
}

.image-select.style-default .filter-option-inner-inner img {
  border-radius: 50%;
  width: 14px;
  height: 14px;
}

.image-select.style-default > .dropdown-menu {
  background-color: var(--white);
  box-shadow: var(--shadow-1);
  border: 0;
  border-radius: 8px;
  padding: 15px 20px;
  overflow: unset !important;
  margin-top: 17px !important;
  margin-bottom: 17px !important;
}

.image-select.style-default > .dropdown-menu a {
  padding: 5px 0;
}

.image-select.style-default > .dropdown-menu a .text {
  justify-content: start;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  display: flex;
}

.image-select.style-default > .dropdown-menu a .text img {
  border-radius: 50%;
  width: 14px;
  height: 14px;
}

.image-select.style-default > .dropdown-menu a:hover, .image-select.style-default > .dropdown-menu a:active, .image-select.style-default > .dropdown-menu a.active {
  color: var(--primary);
  background-color: unset;
}

.image-select.style-default > .dropdown-menu:after {
  content: "";
  background-color: var(--white);
  z-index: 2;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%)rotate(45deg);
}

.image-select.style-default > .dropdown-menu[data-popper-placement="top-start"]:after {
  display: none;
}

.image-select.style-default > .dropdown-menu[data-popper-placement="top-start"]:before {
  content: "";
  background-color: var(--white);
  z-index: 2;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 50%)rotate(45deg);
}

.image-select.type-currencies > .dropdown-menu {
  min-width: 215px;
}

.image-select.type-languages > .dropdown-menu {
  min-width: 100px;
}

.image-select.color-secondary-2 > .dropdown-toggle, .image-select.color-secondary-2 > .dropdown-toggle:after, .image-select.color-secondary-2 > .dropdown-toggle .filter-option .filter-option-inner {
  color: var(--secondary-2);
}

.image-select.color-white > .dropdown-toggle, .image-select.color-white > .dropdown-toggle:after, .image-select.color-white > .dropdown-toggle .filter-option .filter-option-inner {
  color: var(--white);
}

.tf-variant-dropdown {
  border: 1px solid var(--line-2);
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  border-radius: 6px;
  min-width: 100px;
  padding: 10px 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.tf-variant-dropdown .btn-select {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.tf-variant-dropdown .btn-select .icon {
  font-size: 7px;
}

.tf-variant-dropdown .text-sort-value {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  color: var(--rgba-dark-2);
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  overflow: hidden;
}

.tf-variant-dropdown .dropdown-menu {
  box-shadow: var(--shadow-1);
  isolation: isolate;
  overscroll-behavior-y: contain;
  border: 0;
  border-radius: 6px;
  min-width: 180px;
  max-height: 68vh;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow-y: auto;
  margin: 5px !important;
}

.tf-variant-dropdown .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.tf-variant-dropdown .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.tf-variant-dropdown .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.tf-variant-dropdown .select-item {
  text-transform: capitalize;
  color: var(--text);
  -o-transition: all .3s ease-in-out;
  width: 100%;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.tf-variant-dropdown .select-item:after {
  content: "";
  z-index: 2;
  background-color: var(--white);
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 3px;
}

.tf-variant-dropdown .select-item:before {
  content: "";
  z-index: 1;
  background-color: var(--line);
  border-radius: 0 3px 3px 0;
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tf-variant-dropdown .select-item.active {
  background-color: var(--line);
  color: var(--dark);
}

.tf-variant-dropdown .select-item.active:before {
  background-color: var(--dark);
}

.tf-variant-dropdown .select-item:hover {
  background-color: var(--line);
  color: var(--dark);
}

.tf-variant-dropdown:hover {
  border-color: var(--dark);
}

.tf-variant-dropdown.full .dropdown-menu {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.tf-variant-dropdown.full .select-item {
  line-height: 40px;
}

.tf-variant-dropdown.has-color .select-item {
  align-items: center;
  gap: 6px;
  display: flex;
}

.tf-variant-dropdown.has-color .box-color {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: inline-block;
}

.tf-dropdown-sort {
  border: 1px solid var(--line);
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  border-radius: 27px;
  min-width: 100px;
  padding: 8px 14px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-dropdown-sort .icon {
  -o-transition: all .3s ease-in-out;
  margin-top: 2px;
  font-size: 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.tf-dropdown-sort .btn-select {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 20px;
  display: flex;
  overflow: hidden;
}

.tf-dropdown-sort.show .btn-select .icon {
  transform: rotate(180deg);
}

.tf-dropdown-sort .text-sort-value {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
}

.tf-dropdown-sort .dropdown-menu {
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
  isolation: isolate;
  overscroll-behavior-y: contain;
  z-index: 99;
  border-radius: 8px;
  min-width: 180px;
  max-height: 68vh;
  padding: 10px 5px;
  overflow-y: auto;
  margin: 5px !important;
}

.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.tf-dropdown-sort .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.tf-dropdown-sort .select-item {
  text-transform: capitalize;
  color: var(--dark);
  -o-transition: all .3s ease-in-out;
  width: 100%;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.tf-dropdown-sort .select-item:hover, .tf-dropdown-sort .select-item.active {
  color: var(--dark);
  background-color: var(--line);
}

.tf-dropdown-sort:hover {
  border-color: var(--dark);
}

.dropdown-filter .dropdown-toggle {
  border: 1px solid var(--line);
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  border-radius: 27px;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  min-width: 91px;
  padding: 8px 14px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.dropdown-filter .dropdown-toggle:after {
  display: none;
}

.dropdown-filter .dropdown-toggle.show .icon {
  transform: rotate(180deg);
}

.dropdown-filter .dropdown-toggle:hover {
  border-color: var(--dark);
}

.dropdown-filter .icon {
  -o-transition: all .3s ease-in-out;
  margin-top: 2px;
  font-size: 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.dropdown-filter .text-value {
  text-wrap: nowrap;
  text-overflow: ellipsis;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
}

.dropdown-filter .dropdown-menu {
  min-width: 200px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--line);
  isolation: isolate;
  overscroll-behavior-y: contain;
  z-index: 99;
  border-radius: 8px;
  max-height: 68vh;
  padding: 15px 10px;
  overflow-y: auto;
  margin-top: -2px !important;
}

.dropdown-filter .dropdown-menu::-webkit-scrollbar {
  width: 5px;
}

.dropdown-filter .dropdown-menu::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.dropdown-filter .dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.dropdown-filter .dropdown-menu .widget-price {
  gap: 8px;
}

.dropdown-filter .dropdown-menu .widget-price .box-value-price {
  margin-top: 6px;
}

.dropdown-filter .filter-color-box, .dropdown-filter .filter-size-box {
  gap: 8px;
}

.swiper {
  --swiper-theme-color: var(--primary);
  --swiper-pagination-progressbar-bg-color: #d9d9d9;
}

.swiper-pagination-progressbar {
  border-radius: 34px;
  overflow: hidden;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.sw-dots {
  gap: 10px;
  display: flex;
}

.sw-dots .swiper-pagination-bullet {
  opacity: 1;
  -khtml-transition: all .25s cubic-bezier(0, 0, .76, 1);
  -o-transition: all .25s cubic-bezier(0, 0, .76, 1);
  background: #e9e5e5;
  -webkit-transition: all .25s cubic-bezier(0, 0, .76, 1);
  -moz-transition: all .25s cubic-bezier(0, 0, .76, 1);
  -ms-transition: all .25s cubic-bezier(0, 0, .76, 1);
  transition: all .25s cubic-bezier(0, 0, .76, 1);
  position: relative;
}

.sw-dots .swiper-pagination-bullet:after {
  content: "";
  -khtml-transition: all .25s cubic-bezier(0, 0, .76, 1);
  -o-transition: all .25s cubic-bezier(0, 0, .76, 1);
  opacity: 0;
  border: 1px solid #ff4747;
  border-top-color: #0000;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  -webkit-transition: all .25s cubic-bezier(0, 0, .76, 1);
  -moz-transition: all .25s cubic-bezier(0, 0, .76, 1);
  -ms-transition: all .25s cubic-bezier(0, 0, .76, 1);
  transition: all .25s cubic-bezier(0, 0, .76, 1);
  animation: 1.5s linear infinite spin-border;
  position: absolute;
  top: 50%;
  left: 50%;
}

.sw-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
  margin: 0 10px;
}

.sw-dots .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
  transform: translate(-50%, -50%)rotate(45deg);
}

.sw-dots.style-dark .swiper-pagination-bullet:after {
  border: 1px solid var(--dark);
  border-top-color: #0000;
}

.sw-dots.style-white .swiper-pagination-bullet {
  background: var(--white);
}

.sw-dots.style-white .swiper-pagination-bullet:after {
  border-color: #0000 #cacaca #cacaca;
}

.sw-dots.style-white.border-red .swiper-pagination-bullet:after {
  border: 1px solid #ff4747;
  border-top-color: #0000;
}

.sw-dots.style-grey .swiper-pagination-bullet {
  background: #b4b4b4;
}

.sw-dots.style-grey .swiper-pagination-bullet:after {
  border: 1px solid var(--white);
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
}

.sw-dots.style-grey .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
  border-color: var(--white);
  margin: 0 4px;
}

.sw-dots.style-2 {
  gap: 12px;
}

.sw-dots.style-2 .swiper-pagination-bullet {
  background-color: #1b1b1b;
}

.sw-dots.style-2 .swiper-pagination-bullet:after {
  border: unset;
  border: 5px solid var(--primary-3);
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.sw-dots.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  margin: 0 5px !important;
}

.sw-dots.style-2.type-2 {
  gap: 10px;
}

.sw-dots.style-2.type-2 .swiper-pagination-bullet {
  background-color: #bababa;
}

.sw-dots.style-2.type-2 .swiper-pagination-bullet:after {
  border: unset;
  border: 9px solid #eeeeeeb2;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%);
}

.sw-dots.style-2.type-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--dark);
  margin: 0 9px !important;
}

.sw-dots.dot-white .swiper-pagination-bullet {
  background: var(--white);
}

.sw-dots.border-white .swiper-pagination-bullet:after {
  border: 1px solid var(--white);
}

.sw-dots.small {
  align-items: center;
  height: 15px;
}

.sw-dots.small .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}

.sw-dots.small .swiper-pagination-bullet:after {
  animation: unset;
}

.sw-dots.small .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  width: 15px;
  height: 15px;
}

.sw-dot-default {
  gap: 4px;
  margin-top: 20px;
  display: flex;
}

.sw-dot-default .swiper-pagination-bullet {
  -o-transition: all .3s ease-in-out;
  opacity: 1;
  background-color: #0000;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.sw-dot-default .swiper-pagination-bullet:before {
  content: "";
  -o-transition: all .3s ease-in-out;
  background-color: #b1b1b1;
  border-radius: 999px;
  width: 6px;
  height: 6px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.sw-dot-default .swiper-pagination-bullet-active {
  border-color: var(--dark);
}

.sw-dot-default .swiper-pagination-bullet-active:before {
  background-color: var(--dark);
}

.sw-dot-default.style-white .swiper-pagination-bullet:before {
  background-color: var(--white);
}

.sw-dot-default.style-white .swiper-pagination-bullet-active {
  border-color: var(--white);
}

.sw-dot-default.style-white .swiper-pagination-bullet-active:before {
  background-color: var(--white);
}

.sw-dot-default.style-sm {
  gap: 2px;
}

.sw-dot-default.style-sm .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}

.sw-dot-default.style-sm .swiper-pagination-bullet:before {
  width: 4px;
  height: 4px;
}

.sw-auto .swiper-wrapper {
  align-items: center;
}

.sw-auto .swiper-slide {
  width: auto;
  transition-timing-function: linear;
}

.sw-auto.tf-sw-iconbox-row .swiper-wrapper {
  justify-content: space-between;
}

.nav-swiper {
  background-color: var(--white);
  -o-transition: all .3s ease-in-out;
  border: 1px solid var(--line);
  width: 44px;
  height: 44px;
  color: var(--dark);
  cursor: pointer;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.nav-swiper:after {
  color: var(--dark);
  -o-transition: all .3s ease-in-out;
  font-size: 12px;
  font-weight: 600;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nav-swiper:hover {
  background-color: var(--rgba-dark-2);
  border-color: var(--rgba-dark-2);
}

.nav-swiper:hover:after {
  color: var(--white);
}

.nav-swiper.style-1 {
  width: 48px;
  height: 48px;
  background-color: #0000 !important;
  border: 0 !important;
}

.nav-swiper.style-1.swiper-button-prev {
  transform: rotate(180deg);
}

.nav-swiper.style-1.swiper-button-prev:after, .nav-swiper.style-1.swiper-button-next:after {
  content: "";
  font-family: icomoon;
  font-size: 18px;
  font-weight: 400;
}

.nav-swiper.style-1:hover:after {
  color: var(--primary) !important;
}

.nav-swiper.swiper-button-disabled {
  cursor: text;
  background-color: #0006;
  border-color: #0000;
}

.nav-swiper.arrow-1.swiper-button-prev {
  transform: rotate(180deg);
}

.nav-swiper.arrow-1.swiper-button-prev:after, .nav-swiper.arrow-1.swiper-button-next:after {
  content: "";
  font-family: icomoon;
  font-weight: 400;
}

.nav-swiper.size-30 {
  width: 30px;
  height: 30px;
}

.nav-swiper.size-30:after {
  font-size: 10px;
}

.nav-swiper.size-36 {
  width: 36px;
  height: 36px;
}

.nav-swiper.size-36:after {
  font-size: 10px;
}

.nav-swiper.style-line {
  border-color: var(--dark);
  color: var(--dark);
  background-color: #0000;
}

.nav-swiper.style-line:after {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nav-swiper.style-line:hover:not(.swiper-button-disabled) {
  background-color: var(--dark);
  border-color: var(--dark);
}

.nav-swiper.style-line.swiper-button-disabled {
  cursor: text;
  border-color: #0006;
}

.nav-swiper.style-line.swiper-button-disabled:after {
  color: #0006;
}

.nav-swiper.line-white {
  border-color: var(--white);
  background-color: #0000;
}

.nav-swiper.line-white:after {
  color: var(--white);
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.nav-swiper.line-white:hover:not(.swiper-button-disabled) {
  background-color: var(--white);
  border-color: var(--white);
}

.nav-swiper.line-white:hover:not(.swiper-button-disabled):after {
  color: var(--dark);
}

.nav-swiper.line-white.swiper-button-disabled {
  cursor: text;
  border-color: #fff6;
}

.nav-swiper.line-white.swiper-button-disabled:after {
  color: #fff6;
}

.hover-sw-nav, .fl-control-sw {
  position: relative;
}

.fl-control-sw .nav-swiper {
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fl-control-sw.pos1 .nav-swiper {
  top: 45%;
}

.fl-control-sw.pos2 .nav-swiper {
  top: 38%;
}

.fl-control-sw.pos3 .nav-swiper {
  top: 43%;
}

.fl-control-sw2 {
  position: relative;
}

.fl-control-sw2 .nav-swiper {
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
}

.fl-control-sw2.pos1 .nav-swiper {
  top: 42%;
}

.fl-control-sw2.pos2 .nav-swiper {
  top: 38%;
}

.wrap-pos-nav {
  position: relative;
}

.wrap-pos-nav .nav-swiper {
  margin-top: 3px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.wrap-pos-nav.sw-over-product .nav-swiper {
  margin-top: -10px;
}

.box-nav-swiper {
  gap: 8px;
  display: flex;
}

.box-nav-swiper .nav-swiper {
  position: unset;
  margin: 0;
}

.box-nav-swiper.style-2 {
  gap: 12px;
}

.tab-content .swiper-pagination-progressbar {
  margin-top: 30px;
}

.sw-height .swiper-slide {
  height: auto;
}

.sw-height .swiper-slide .tf-icon-box, .sw-height .swiper-slide .card-product {
  width: 100%;
  height: 100%;
}

.offcanvas {
  color: var(--dark);
  z-index: 1600;
  border: none !important;
}

.offcanvas .icon-close-popup {
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  color: var(--dark);
  z-index: 10;
  background: none;
  border: none;
  padding: 10px;
  font-size: 16px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.offcanvas .icon-close-popup:hover {
  color: var(--primary);
}

.offcanvas .offcanvas-content {
  height: 100%;
}

.offcanvas-backdrop {
  background-color: var(--backdrop);
  z-index: 1500;
  cursor: url("../media/cursor-close.243a80bb.svg"), auto;
}

.offcanvas-backdrop.show {
  opacity: 1;
}

.overflow-x-auto::-webkit-scrollbar, .overflow-y-auto::-webkit-scrollbar {
  width: 0;
}

.modal-backdrop {
  background-color: var(--backdrop);
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-dialog-centered {
  min-height: calc(100% - 60px);
}

.modal {
  cursor: url("../media/cursor-close.243a80bb.svg"), auto;
}

.modal .icon-close, .modal .icon-close-popup {
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  z-index: 10;
  color: var(--dark);
  background: none;
  border: none;
  padding: 10px;
  font-size: 16px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.modal .icon-close:hover, .modal .icon-close-popup:hover {
  color: var(--primary);
}

.modal.fullRight .modal-dialog {
  min-width: 100%;
  height: 100%;
  margin: 0;
  transition: transform 1s ease-out;
  transform: translate(100%);
}

.modal.fullRight .modal-dialog .modal-content {
  border: 0;
  border-radius: 0;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.modal.fullRight .modal-dialog .modal-content .modal-body {
  padding: 0 0 30px;
  overflow: auto;
}

.modal.fullRight.show .modal-dialog {
  transition: transform .4s ease-out;
  transform: none;
}

.modal.fullLeft .modal-dialog {
  min-width: 100%;
  height: 100%;
  margin: 0;
  transition: all .3s !important;
  transform: translate(-100%) !important;
}

.modal.fullLeft .modal-dialog .modal-content {
  border: 0;
  border-radius: 0;
  margin: auto;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.modal.fullLeft .modal-dialog .modal-content .modal-body {
  padding: 0 0 30px;
  overflow: auto;
}

.modal.fullLeft.show .modal-dialog {
  transform: translate(0) !important;
}

.modal.fullBottom .modal-dialog {
  min-width: 100%;
  height: 100%;
  max-height: unset;
  margin: 0;
  transform: translate(0, 100%);
  transition: transform .3s linear !important;
}

.modal.fullBottom .modal-dialog .modal-content {
  border: 0;
  border-radius: 0;
  max-height: max-content;
  margin: auto;
  padding: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}

.modal.fullBottom .modal-dialog .modal-content .modal-body {
  padding: 0 0 30px;
  overflow: auto;
}

.modal.fullBottom.show .modal-dialog {
  transform: translate(0);
}

.modal.fade:not(.show) {
  opacity: 0;
}

.modal .modal-content {
  cursor: default;
  border: 0;
  border-radius: 16px;
  overflow: hidden;
}

.modalCentered .modal-dialog {
  margin: 30px auto;
  padding-left: 15px;
  padding-right: 15px;
}

.modalDemo .demo-title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 44px;
  font-weight: 500;
}

.modalDemo .modal-dialog {
  max-width: 1540px;
  height: calc(100vh - 16px);
  margin-top: 8px;
  margin-bottom: 8px;
}

.modalDemo .modal-content {
  background-color: var(--white);
  cursor: default;
  border: 0;
  border-radius: 20px;
  width: 100%;
  max-height: calc(100vh - 60px);
  margin: 0 30px;
  padding: 0 50px 40px;
  overflow: hidden;
}

.modalDemo .mega-menu {
  overscroll-behavior-y: contain;
  padding: 0 32px;
  overflow-y: auto;
}

.modalDemo .mega-menu::-webkit-scrollbar {
  width: 6px;
}

.modalDemo .mega-menu::-webkit-scrollbar:hover {
  width: 12px;
  height: 12px;
}

.modalDemo .mega-menu::-webkit-scrollbar-thumb {
  background: var(--line);
  transition: all .3s;
}

.modalDemo .header {
  position: relative;
}

.modalDemo .header .icon-close-popup {
  position: absolute;
  top: 18px;
  right: 0;
}

.tf-product-modal .modal-dialog {
  max-width: min(625px, 90vw);
}

.tf-product-modal .modal-dialog .modal-content {
  border: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 38px 36px 40px;
}

.tf-product-modal .modal-dialog .modal-content .header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.tf-product-modal .modal-dialog .modal-content .header .demo-title {
  text-align: start;
  margin: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
}

.tf-product-modal .modal-dialog .modal-content .header span {
  position: unset;
  color: var(--dark);
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-product-modal .modal-dialog .modal-content .header span:hover {
  color: var(--primary);
}

.tf-product-modal .modal-dialog .modal-content h6 {
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 24px;
}

.tf-product-modal .modal-dialog .modal-content .title {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

.tf-product-modal .modal-dialog .modal-content p {
  margin-top: 15px;
  margin-bottom: 20px;
}

.tf-product-modal .tf-social-icon .box-icon {
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: 999px;
  font-size: 16px;
}

.tf-product-modal .tf-social-icon .box-icon.social-x {
  background: var(--twitter-cl);
  font-size: 12px;
}

.tf-product-modal .tf-social-icon .box-icon.social-facebook {
  background: var(--facebook-cl);
}

.tf-product-modal .tf-social-icon .box-icon.social-instagram {
  background: var(--instagram-cl);
}

.tf-product-modal .tf-social-icon .box-icon.social-tiktok {
  background: var(--tiktok-cl);
}

.tf-product-modal .tf-social-icon .box-icon.social-pinterest {
  background: var(--pinterest-cl);
}

.tf-product-modal .form-share {
  margin-top: 20px;
  position: relative;
}

.tf-product-modal .form-share .button-submit {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.tf-product-modal .form-share .button-submit .tf-btn {
  padding: 10px 18px;
}

.tf-product-modal .form-share input {
  padding-right: 80px;
}

#ask_question fieldset {
  margin-bottom: 15px;
}

#ask_question fieldset label {
  color: var(--text);
  margin-bottom: 5px;
  font-weight: 400;
}

#ask_question fieldset input {
  height: 50px;
}

#ask_question textarea {
  height: 176px;
}

#ask_question button {
  border-radius: 4px;
}

#delivery_return .tf-product-popup-delivery .title {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
}

#delivery_return .tf-product-popup-delivery p {
  color: #868686;
  margin-bottom: 10px;
  line-height: 22.4px;
}

#delivery_return .tf-product-popup-delivery p a {
  color: #868686;
  text-underline-offset: 3px;
  text-decoration: underline;
}

#delivery_return .tf-product-popup-delivery p a:hover {
  color: var(--dark);
  text-decoration-thickness: 2px;
}

#delivery_return .tf-product-popup-delivery:not(:last-child) {
  margin-bottom: 20px;
}

.canvas-wrapper {
  isolation: isolate;
  grid-auto-rows: auto minmax(0, 1fr) auto;
  align-content: start;
  width: 100%;
  height: 100%;
  max-height: none;
  padding: 0;
  display: grid;
}

.canvas-body {
  background-color: var(--white);
  overscroll-behavior-y: contain;
  padding: 15px 20px;
}

.canvas-body::-webkit-scrollbar {
  width: 5px;
}

.canvas-body::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.canvas-body::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.canvas-sidebar {
  width: 100%;
  max-width: 320px;
}

.canvas-sidebar .canvas-header {
  text-transform: capitalize;
  color: var(--dark);
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
  position: relative;
}

.canvas-sidebar .canvas-header .icon-close-popup {
  cursor: pointer;
  justify-content: end;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 12px;
  display: flex;
}

.canvas-sidebar .canvas-header:after {
  content: "";
  background-color: var(--line);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
}

.canvas-sidebar .list-icon-box .tf-icon-box:not(:last-child) {
  margin-bottom: 24px;
}

.canvas-sidebar .list-recent li:not(:last-child) {
  margin-bottom: 20px;
}

.canvas-sidebar .mega-box:not(:last-child) {
  margin-bottom: 32px;
}

.canvas-compare {
  z-index: 5000;
  height: max-content !important;
}

.canvas-compare .close-popup {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 16px;
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
}

.canvas-compare .canvas-body {
  padding: 28px 0;
}

.popup-quickadd .modal-content {
  padding: 30px 15px;
}

.popup-quickadd .main-product-quickadd .item-product-info {
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding: 0;
  display: flex;
}

.popup-quickadd .main-product-quickadd .price-wrap {
  gap: 6px;
  display: flex;
}

.popup-quickadd .main-product-quickadd .price-new {
  margin-right: 0;
  font-weight: 500;
}

.popup-quickadd .main-product-quickadd .product-img {
  border-radius: 6px;
  flex-shrink: 0;
  max-width: 112px;
  overflow: hidden;
}

.popup-quickadd .main-product-quickadd .content-box {
  gap: 8px;
  display: grid;
}

.popup-quickadd .main-product-quickadd .price-show-badge {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.popup-quickadd .main-product-quickadd .quickadd-variant-color {
  margin-bottom: 24px;
}

.popup-quickadd .main-product-quickadd .variant-label {
  margin-bottom: 12px;
  font-family: DM Sans, sans-serif;
}

.popup-quickadd .main-product-quickadd .variant-value {
  text-transform: capitalize;
  font-weight: 600;
}

.popup-quickadd .main-product-quickadd .list-size {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.popup-quickadd .main-product-quickadd .size-btn {
  background-color: var(--white);
  border: 1px solid var(--line);
  width: 38px;
  height: 38px;
  color: var(--dark);
  border-radius: 50%;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
}

.popup-quickadd .main-product-quickadd .size-btn.active {
  border: 1px solid var(--dark);
}

.popup-quickadd .main-product-quickadd .item-product-variant {
  margin-bottom: 24px;
}

.main-product-quickadd .item-product-quantity {
  margin-bottom: 32px;
}

.main-product-quickadd .item-product-quantity .label {
  margin-bottom: 10px;
  font-family: DM Sans, sans-serif;
}

.main-product-quickadd .wg-quantity {
  display: inline-flex;
}

.main-product-quickadd .item-product-group-btn {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px 12px;
  margin-bottom: 32px;
  display: flex;
}

.main-product-quickadd .item-product-group-btn .atc {
  flex-grow: 1;
}

.main-product-quickadd .item-product-group-btn .box-icon {
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  padding: 12px;
  font-size: 14px;
}

.main-product-quickadd .payment-link {
  color: var(--text);
  justify-content: center;
  margin: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  display: flex;
}

.main-product-quickadd .payment-link:after {
  background-color: var(--text);
}

.modal-quick-view .modal-dialog {
  max-width: 1130px;
}

.modal-quick-view .modal-content {
  border-radius: 16px;
}

.modal-quick-view .tf-product-media-wrap {
  padding: 0;
}

.modal-quick-view .tf-product-media-wrap .item {
  aspect-ratio: .703704;
  width: 100%;
  height: 100%;
}

.modal-quick-view .tf-product-media-wrap .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modal-quick-view .tf-product-info-wrap {
  flex: 1 0 auto;
  max-width: 100%;
  margin: 0;
  position: relative;
}

.modal-quick-view .tf-product-info-wrap .tf-product-info-inner {
  padding: 15px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-info-inner::-webkit-scrollbar {
  width: 6px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-info-inner::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.modal-quick-view .tf-product-info-wrap .tf-product-info-inner::-webkit-scrollbar-track {
  background: var(--line);
}

.modal-quick-view .tf-product-info-wrap .tf-product-heading {
  border: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.modal-quick-view .tf-product-info-wrap .tf-product-heading .product-name {
  margin-bottom: 14px;
  line-height: 29px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-heading .product-price {
  gap: 6px;
  margin-bottom: 14px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-heading .product-price .price-old, .modal-quick-view .tf-product-info-wrap .tf-product-heading .product-price .price-new {
  line-height: 29px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-heading .text {
  font-size: 14px;
  line-height: 22.4px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-variant {
  gap: 20px;
  margin-bottom: 30px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-variant .variant-picker-label {
  letter-spacing: -.03em;
  margin-bottom: 12px;
  font-family: DM Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.2px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-variant .variant-picker-label-value {
  font-weight: 700;
}

.modal-quick-view .tf-product-info-wrap .tf-product-variant .color-btn {
  width: 34px !important;
  height: 34px !important;
}

.modal-quick-view .tf-product-info-wrap .tf-product-variant .color-btn .check-color {
  width: 28px !important;
  height: 28px !important;
}

.modal-quick-view .tf-product-info-wrap .tf-btn {
  letter-spacing: -.03em;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-total-quantity {
  margin-bottom: 30px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-total-quantity .group-btn {
  margin-bottom: 17px;
}

.modal-quick-view .tf-product-info-wrap .tf-product-total-quantity .more-choose-payment {
  margin-top: 7px;
}

.modal-quick-view .tf-product-info-wrap .view-details {
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  display: inline-flex;
}

.modal-quick-view .tf-product-info-wrap .view-details .icon {
  font-size: 12px;
}

.modal-find-size .modal-dialog {
  max-width: 780px;
}

.modal-find-size .modal-dialog .modal-content {
  padding: 24px 15px;
}

.modal-find-size .header {
  border-bottom: 1px solid #a1a1a133;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 10px;
  display: flex;
}

.modal-find-size .header .heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.modal-find-size .header span {
  font-size: 16px;
}

.modal-find-size .title {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.modal-find-size .tf-sizeguide-table {
  border: 1px solid var(--line);
  border-radius: 5px;
  width: 100%;
  margin-bottom: 24px;
}

.modal-find-size .tf-sizeguide-table th {
  border: 1px solid var(--line);
  padding: 10px;
  font-weight: 500;
  line-height: 17px;
}

.modal-find-size .tf-sizeguide-table td {
  border: 1px solid var(--line);
  border-width: 0 1px 1px 0;
  padding: 10px;
  line-height: 17px;
}

.modal-find-size .tf-page-size-chart-content ul {
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
  display: flex;
}

.modal-find-size .tf-page-size-chart-content ul .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.popup-pickup-available .pickup-available-list {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.popup-pickup-available .pickup-available-item .title {
  margin-bottom: 8px;
}

.popup-pickup-available .pickup-available-item .desc {
  margin-bottom: 12px;
}

.popup-pickup-available .pickup-available-item ul {
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
  display: flex;
}

.popup-pickup-available .pickup-available-item a {
  align-items: center;
  gap: 8px;
  display: flex;
}

.popup-pickup-available .pickup-available-item a .icon {
  font-size: 10px;
}

.modal-before-you-leave .modal-content {
  max-width: 485px;
}

.modal-before-you-leave .modal-inner {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.modal-before-you-leave .modal-inner .icon-close {
  font-size: 16px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal-before-you-leave .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modal-before-you-leave .content {
  border-bottom: 1px solid var(--line);
  margin: 0 32px 32px;
  padding: 32px 0;
}

.modal-before-you-leave .content > .heading {
  margin-bottom: 24px;
}

.modal-before-you-leave .content > p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
}

.modal-before-you-leave .content > p span {
  font-size: 24px;
  font-weight: 500;
  line-height: 28.8px;
}

.modal-before-you-leave .content .wrap-code {
  margin-bottom: 24px;
}

.modal-before-you-leave .tf-mini-cart-sroll {
  padding: 0 32px 32px;
}

.modal-before-you-leave .tf-mini-cart-sroll .tf-minicart-recommendations-title {
  margin-bottom: 18px;
}

.wrap-code {
  display: flex;
}

.wrap-code .text {
  place-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
}

.wrap-code .coppyText {
  color: var(--primary);
  margin-left: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.wrap-code .btn-coppy-text {
  color: #868686;
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  margin-left: 4px;
  font-size: 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wrap-code .btn-coppy-text:hover {
  color: var(--primary) !important;
}

.wrap-code.style-1 {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 112px 14px 11px;
  display: block;
  position: relative;
}

.wrap-code.style-1 .coppyText {
  color: #667085;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  overflow-x: auto;
}

.wrap-code.style-1 .coppyText::-webkit-scrollbar {
  height: 0;
}

.wrap-code.style-1 .coppyText::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.wrap-code.style-1 .coppyText::-webkit-scrollbar-track {
  background: var(--line);
}

.wrap-code.style-1 .btn-coppy-text {
  cursor: pointer;
  color: var(--white);
  border-radius: 3px;
  padding: 12px 33.5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  position: absolute;
  top: 3px;
  bottom: 3px;
  right: 3px;
}

.popup-style-1 {
  max-width: 340px;
  width: 100% !important;
}

.popup-style-1 .modal-content {
  cursor: default;
  max-width: 520px;
}

.popup-style-1 .popup-header {
  text-transform: capitalize;
  color: var(--dark);
  border-bottom: 0;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  display: flex;
  position: relative;
}

.popup-style-1 .popup-header:after {
  content: "";
  background-color: var(--line);
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 32px;
  right: 32px;
}

.popup-style-1 .popup-inner {
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  display: flex;
  overflow-y: auto;
}

.form-login {
  flex-direction: column;
  gap: 32px;
  display: flex;
}

.form-login .text {
  margin-bottom: 24px;
}

.form-login .button-wrap {
  gap: 10px;
  display: flex;
}

.form-login .bot a {
  text-decoration: underline;
}

.form-login .bot a:hover {
  color: var(--primary) !important;
}

.popup-login {
  width: 100%;
}

.popup-login .other-login p {
  margin-bottom: 24px;
}

.popup-login .other-login .nsm7Bb-HzV7m-LgbsSe {
  text-align: center;
  height: 50px;
  color: var(--dark);
  border: 1px solid var(--dark);
  background-color: #fff;
  border-radius: 99px;
  padding: 0 32px;
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}

.popup-login .other-login .nsm7Bb-HzV7m-LgbsSe:hover {
  color: var(--white);
  background-color: #000;
}

.popup-login .other-login .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-BPrWId {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.popup-login .other-login .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c {
  align-items: center;
  width: 25px;
  height: 50px;
  display: flex;
}

.popup-login .other-login .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c svg {
  font-size: 30px;
  font-weight: 500;
}

.popup-login .other-login a .icon {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.modal-dialog-centered .icon-close {
  z-index: 123;
  padding: 15px;
  font-size: 14px;
  position: absolute;
  top: 0;
  right: 0;
}

.modal-newsletter .modal-dialog {
  max-width: 674px;
}

.modal-newsletter .modal-content {
  border-radius: 16px;
}

.modal-newsletter .modal-content .form-newsletter input {
  border-color: var(--line);
  background-color: #0000;
  border-radius: 49px;
  padding-left: 66px;
  padding-right: 20px;
  font-weight: 400;
}

.modal-newsletter .modal-top img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modal-newsletter .modal-bottom {
  max-width: 448px;
  margin: 0 auto;
  padding: 32px;
}

.modal-newsletter .modal-bottom .title {
  margin-bottom: 10px;
}

.modal-newsletter .modal-bottom .text {
  margin-bottom: 32px;
}

.modal-newsletter .modal-bottom .form-newsletter, .modal-newsletter .modal-bottom .tf-social-icon {
  margin-bottom: 20px;
}

.modal-newsletter.style-absolute .modal-dialog {
  max-width: 1030px;
}

.modal-newsletter.style-absolute .modal-bottom {
  width: 100%;
  max-width: 450px;
  padding: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-newsletter.style-row .modal-dialog {
  max-width: 1030px;
}

.modal-newsletter.style-row .modal-top {
  flex-shrink: 0;
  width: 44.8%;
}

.modal-newsletter.style-row .modal-bottom {
  width: 55.2%;
  max-width: unset;
  place-content: center;
}

.modal-newsletter.style-row .modal-content {
  border-radius: 20px;
}

.modal-newsletter .form-newsletter fieldset input {
  padding-left: 66px;
}

.sib-form .form__entry {
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.modal-newsletter .form-newsletter fieldset .icon {
  font-size: 17px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.popup-search .header {
  z-index: 50;
  background-color: var(--white);
  justify-content: flex-end;
  padding: 8px 15px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.popup-search .modal-content {
  border-radius: 0;
  height: 100%;
  padding: 68px 0;
  overflow-y: auto;
}

.popup-search .looking-for-wrap {
  text-align: center;
  margin-bottom: 50px;
}

.popup-search .heading {
  margin-bottom: 42px;
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
}

.popup-search .form-search {
  margin-bottom: 32px;
}

.popup-search .form-search input {
  border-radius: 99px;
  font-size: 16px;
  line-height: 120%;
}

.popup-search .form-search input::placeholder {
  color: #000;
}

.popup-search .form-search button {
  right: 20px;
}

.popup-search .popular-searches {
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  line-height: 120%;
  display: flex;
}

.popup-search .popular-searches ul {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.popup-search .popular-searches ul a {
  background-color: #f9f9f9;
  border: 1px solid #a1a1a133;
  border-radius: 10px;
  padding: 9px 19px;
}

.popup-search .featured-product .featured-product-heading {
  margin-bottom: 30px;
}

.popup-search.type-search-product .top-title {
  border-bottom: 1px solid #a1a1a133;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 42px;
  padding-bottom: 10px;
  display: flex;
}

.popup-search.type-search-product .top-title .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.popup-search.type-search-product .top-title a {
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
  text-decoration-line: underline;
}

.popup-search.type-search-product .wrapper-shop {
  row-gap: 42px;
}

.popup-search.type-search-product .list-articals {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.popup-search.type-search-product .list-articals .item {
  gap: 11px;
  display: flex;
}

.popup-search.type-search-product .list-articals .item .img-box {
  border-radius: 8px;
  flex-shrink: 0;
  width: 128px;
  height: 128px;
  overflow: hidden;
}

.popup-search.type-search-product .list-articals .item .content {
  flex-direction: column;
  gap: 6px;
  display: flex;
}

.popup-search.type-search-product .list-articals .item .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
}

.popup-search.type-search-product .list-articals .item .date-post {
  font-size: 14px;
  line-height: 16.8px;
}

.modal-compare .modal-dialog {
  max-width: 1194px;
}

.modal-compare .modal-content {
  border-radius: 16px;
  padding: 48px 30px 29px;
}

.modal-compare .title {
  margin-bottom: 45px;
  line-height: 29px;
}

.modal-compare .tf-compare-inner {
  margin-bottom: 22px;
  padding-bottom: 20px;
  overflow-x: auto;
}

.modal-compare .tf-compare-inner::-webkit-scrollbar {
  height: 8px;
}

.modal-compare .tf-compare-inner::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.modal-compare .tf-compare-inner::-webkit-scrollbar-track {
  background: var(--line);
}

.modal-compare .tf-compare-list {
  gap: 24px;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.modal-compare .tf-compare-item {
  flex-direction: column;
  gap: 10px;
  width: 232px;
  min-width: 232px;
  padding: 0;
  display: flex;
  position: relative;
}

.modal-compare .tf-compare-item .icon-close {
  z-index: 5;
  border: 1px solid var(--line);
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: 12px;
  right: 12px;
}

.modal-compare .tf-compare-item .image {
  border-radius: 16px;
  max-height: 328px;
  overflow: hidden;
}

.modal-compare .tf-compare-item .content {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.modal-compare .tf-compare-item .content .text-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.modal-compare .tf-compare-item .content .price-wrap {
  font-size: 16px;
  font-weight: 500;
}

.modal-compare .tf-compare-buttons {
  gap: 20px;
  display: flex;
}

.modal-compare .tf-compare-buttons .tf-btn {
  width: 100%;
  max-width: 190px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.modal-share-social .wrap-code {
  margin-bottom: 32px;
}

.popup-style-2 .modal-dialog {
  max-width: 596px;
}

.popup-style-2 .modal-content {
  padding: 32px 32px 41px;
}

.popup-style-2 .modal-header {
  margin-bottom: 32px;
  padding: 0 0 10px;
}

.popup-style-2 .modal-header .icon-close {
  font-size: 16px;
}

.modal-order-detail .modal-dialog {
  max-width: 1226px;
}

.modal-order-detail .modal-dialog .modal-content {
  padding: 24px 15px;
}

.modal-order-detail .header {
  border-bottom: 1px solid #a1a1a133;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 10px;
  display: flex;
}

.modal-order-detail .header .heading {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.modal-order-detail .header .icon-close {
  position: unset;
  align-items: center;
  padding: 0 15px;
  font-size: 16px;
  display: flex;
}

.modal-order-detail .list-infor {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 24px;
  margin-bottom: 44px;
  display: flex;
}

.modal-order-detail .list-infor li {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}

.modal-order-detail .list-infor li:not(:last-child) {
  padding-right: 24px;
  position: relative;
}

.modal-order-detail .list-infor li:not(:last-child):after {
  content: "";
  background-color: var(--line);
  width: 1px;
  height: 100%;
  display: block;
  position: absolute;
  top: 1.5px;
  bottom: 1.5px;
  right: 0;
}

.modal-order-detail table {
  text-align: center;
  margin-bottom: 42px;
}

.modal-order-detail table td, .modal-order-detail table th {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.modal-order-detail table thead, .modal-order-detail table th {
  padding: 15px 0;
}

.modal-order-detail table thead tr {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.modal-order-detail table tbody {
  overflow: auto;
}

.modal-order-detail table tbody::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.modal-order-detail table tbody::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 999px;
}

.modal-order-detail table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.modal-order-detail table td:first-child, .modal-order-detail table th:first-child {
  text-align: start;
}

.modal-order-detail table .infor-content {
  align-items: center;
  gap: 10px;
  padding: 30px 0;
  display: flex;
}

.modal-order-detail table .infor-content .image {
  border-radius: 4px;
  width: 98px;
  height: 130px;
  overflow: hidden;
}

.modal-order-detail table .infor-content .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modal-order-detail table .infor-content .size {
  color: #0009;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.modal-order-detail table .subtotal-text, .modal-order-detail table .subtotal-price {
  padding: 30px 15px;
}

.modal-order-detail .tb-order-detail {
  margin-bottom: 42px;
}

.modal-order-detail .tb-order-detail .title {
  padding: 15px 0;
}

.modal-order-detail .tb-order-detail .item {
  text-align: center;
  width: 225px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

.modal-order-detail .tb-order-detail .item:first-child {
  width: unset;
  text-align: start;
  flex-grow: 1;
}

.modal-order-detail .tb-order-detail .top {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.modal-order-detail .tb-order-detail .order-detail-item {
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  display: flex;
}

.modal-order-detail .tb-order-detail .order-detail-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.modal-order-detail .tb-order-detail .tb-content {
  height: 461px;
  overflow: auto;
}

.modal-order-detail .tb-order-detail .tb-content::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.modal-order-detail .tb-order-detail .tb-content::-webkit-scrollbar-thumb {
  background: #b4b4b4;
  border-radius: 999px;
}

.modal-order-detail .tb-order-detail .tb-content .subtotal {
  background-color: var(--white);
  padding: 0;
  position: sticky;
  bottom: 0;
}

.modal-order-detail .tb-order-detail .infor-content {
  align-items: center;
  gap: 10px;
  display: flex;
}

.modal-order-detail .tb-order-detail .infor-content .image {
  border-radius: 4px;
  width: 98px;
  height: 130px;
  overflow: hidden;
}

.modal-order-detail .tb-order-detail .infor-content .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.modal-order-detail .tb-order-detail .infor-content a {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.modal-order-detail .tb-order-detail .infor-content .size {
  color: #0009;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.modal-order-detail .tb-order-detail .subtotal-text, .modal-order-detail .tb-order-detail .subtotal-price {
  padding: 30px 15px;
}

.modal-order-detail .bottom {
  font-size: 16px;
  line-height: 19px;
}

.cookie-banner {
  background-color: var(--dark);
  z-index: 1000;
  border-radius: 20px;
  max-width: 368px;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.cookie-banner .overplay {
  background-color: #0006;
  position: fixed;
  inset: 0;
}

.cookie-banner .content {
  padding: 20px;
  position: relative;
}

.cookie-banner p {
  color: var(--white);
  margin-bottom: 20px;
}

.cookie-banner .button-group {
  align-items: center;
  gap: 10px;
  display: flex;
}

.cookie-banner .button-group .tf-btn {
  width: 100%;
  padding: 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.tf-toolbar-bottom {
  z-index: 200;
  background-color: var(--white);
  border-top: 1px solid #eee;
  padding: 11px 15px 12px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 20px #a3a3a347;
}

.tf-toolbar-bottom .toolbar-item {
  flex: 1 0 20%;
  position: relative;
}

.tf-toolbar-bottom .toolbar-item a {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.tf-toolbar-bottom .toolbar-item a .toolbar-icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.tf-toolbar-bottom .toolbar-item a .toolbar-count {
  background-color: var(--primary);
  width: 16px;
  height: 16px;
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  display: flex;
  position: absolute;
  top: -6px;
  right: -6px;
}

.tf-toolbar-bottom .toolbar-item a .toolbar-label {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
}

.popup-product .modal-dialog {
  max-width: 1243px;
}

.popup-product .modal-content {
  padding: 24px 15px 32px;
}

.popup-product .modal-header {
  border: 0;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  padding: 0;
}

.popup-product .modal-header .countdown__timer {
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.popup-product .modal-header .countdown__timer .countdown__value {
  color: var(--primary);
  margin-right: 6px;
}

.popup-product .modal-header .countdown__timer .countdown__item:first-child {
  display: none;
}

.popup-product .modal-body {
  padding: 0;
}

.popup-product .box-hurry-up {
  align-items: center;
  gap: 8px;
  display: flex;
}

.popup-product .tf-swiper .sw-dot-default {
  margin-top: 5px;
}

.box-icon {
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.box-icon .icon-cart2 {
  margin-top: -2px;
}

.tf-social-icon {
  --facebook-cl: #3b5998;
  --twitter-cl: #555;
  --instagram-cl: linear-gradient(#8a3ab9, #e95950, #fccc63);
  --threads-cl: #e03566;
  --youtube-cl: #cd201f;
  --tiktok-cl: linear-gradient(#25f4ee, #000, #fe2c55);
  --tiktok-cl2: #fe2c55;
  --pinterest-cl: #cb2027;
  --tumblr-cl: #37455c;
  --vimeo-cl: #1ab7ea;
  --snapchat-cl: #fd0;
  --whatsapp-cl: #00e676;
  --linked_in-cl: #176aff;
  --wechat-cl: #1aad18;
  --reddit-cl: #ff4500;
  --line-cl: #00c34d;
  --spotify-cl: #1e7d60;
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.tf-social-icon .social-item {
  width: 28px;
  height: 28px;
  color: var(--dark);
  border: 1px solid var(--dark);
  background-color: var(--white);
  -o-transition: all .3s ease-in-out;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-social-icon .social-facebook:hover {
  color: var(--facebook-cl);
  border-color: var(--facebook-cl);
  background-color: #0000;
}

.tf-social-icon .social-instagram:hover {
  color: var(--threads-cl);
  border-color: var(--threads-cl);
  background-color: #0000;
}

.tf-social-icon .social-x {
  font-size: 10px;
}

.tf-social-icon .social-x:hover {
  color: var(--twitter-cl);
  border-color: var(--twitter-cl);
  background-color: #0000;
}

.tf-social-icon .social-snapchat:hover {
  color: var(--snapchat-cl);
  border-color: var(--snapchat-cl);
  background-color: #0000;
}

.tf-social-icon .social-youtube:hover {
  color: var(--youtube-cl);
  border-color: var(--youtube-cl);
  background-color: #0000;
}

.tf-social-icon .social-linkedin:hover {
  color: var(--linked_in-cl);
  border-color: var(--linked_in-cl);
  background-color: #0000;
}

.tf-social-icon.style-fill .social-item {
  background-color: var(--line);
  border: none;
}

.tf-social-icon.style-fill .social-facebook:hover {
  background: var(--facebook-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-x:hover {
  background: var(--twitter-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-instagram:hover {
  background: var(--instagram-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-tiktok:hover {
  background: var(--tiktok-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-pinterest:hover {
  background: var(--pinterest-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-amazon:hover {
  background: var(--dark);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-youtube:hover {
  background: var(--youtube-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-fill .social-linkedin {
  background: var(--linked_in-cl);
  color: var(--white);
  border: none;
}

.tf-social-icon.style-large {
  gap: 15px;
}

.tf-social-icon.style-large .social-item {
  border-color: var(--line);
  color: #383d38;
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.tf-social-icon.style-large .social-facebook {
  font-size: 18px;
}

.tf-social-icon.style-large .social-facebook:hover {
  background: var(--facebook-cl);
  color: var(--white);
  border: #0000;
}

.tf-social-icon.style-large .social-x:hover {
  background: var(--twitter-cl);
  color: var(--white);
  border: #0000;
}

.tf-social-icon.style-large .social-instagram:hover {
  background: var(--instagram-cl);
  color: var(--white);
  border: #0000;
}

.tf-social-icon.style-large .social-snapchat:hover {
  background-color: var(--snapchat-cl);
  color: var(--white);
  border: #0000;
}

.tf-social-icon.style-large .social-linkedin:hover {
  background: var(--linked_in-cl);
  color: var(--white);
  border: #0000;
}

.tf-social-icon.style-default {
  gap: 20px;
}

.tf-social-icon.style-default a {
  font-size: 16px;
  display: flex;
}

.tf-social-icon.style-1 a {
  border: 2px solid #cacaca;
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.tf-social-icon.style-white li a {
  color: #1f1f1f;
  border: 0;
  width: 47px;
  height: 47px;
  font-size: 12px;
  background-color: var(--white) !important;
}

.tf-social-icon.style-white li a:hover {
  color: var(--white);
  background-color: #1f1f1f !important;
}

.tf-icon-box {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  display: flex;
}

.tf-icon-box .icon {
  font-size: 28px;
}

.tf-icon-box .content {
  gap: 8px;
  display: grid;
}

.tf-icon-box .content .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}

.tf-icon-box .content .desc {
  color: var(--text);
  font-size: 15px;
  line-height: 24px;
}

.tf-icon-box.style-2 {
  border: 0;
  padding: 0;
}

.tf-icon-box.style-2 .box-icon {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 64px;
  height: 64px;
}

.tf-icon-box.style-2 .title {
  font-size: 18px;
  line-height: 18px;
}

.tf-icon-box.style-3 {
  text-align: left;
  border: 0;
  flex-direction: row;
  padding: 0;
}

.tf-icon-box.style-3 .title {
  font-size: 18px;
  line-height: 18px;
}

.tf-icon-box.style-3 .box-icon {
  border: 1px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.tf-icon-box.style-3 .content {
  gap: 12px;
}

.tf-icon-box.style-4 {
  border: 0;
  padding: 24px;
}

.tf-icon-box.style-4 .title {
  font-size: 18px;
  line-height: 18px;
}

.tf-icon-box.style-4 .content {
  gap: 12px;
}

.tf-icon-box.style-border .box-icon {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 74px;
  height: 74px;
}

.tf-icon-box.style-lg {
  border-radius: 16px;
}

.tf-icon-box.style-lg .title {
  font-size: 18px;
  line-height: 18px;
}

.tf-icon-box-v2 {
  align-items: center;
  gap: 12px;
  display: flex;
}

.tf-icon-box-v2 .icon {
  color: #ff8e8e;
  font-size: 24px;
}

.tf-icon-box-v2 .title {
  letter-spacing: -.02em;
  font-size: 16px;
  line-height: 20.8px;
}

.flat-wrapper-iconbox {
  border: 1px solid #2a4528;
  border-radius: 20px;
  padding: 77px 30px 49px;
  position: relative;
}

.flat-wrapper-iconbox > .title {
  z-index: 1;
  text-align: center;
  text-wrap: nowrap;
  background-color: #fffcf6;
  padding: 0 20px;
  position: absolute;
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
}

.flat-wrapper-iconbox .tf-icon-box .box-icon {
  border: 1px solid #4d8036;
}

.flat-wrapper-iconbox .tf-icon-box .title {
  font-size: 20px;
  line-height: 26px;
}

.flat-animate-tab .tab-content {
  position: relative;
}

.flat-animate-tab .tab-pane {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition-duration: .2s;
  transition-timing-function: ease-in;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}

.flat-animate-tab .tab-pane.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition-duration: .3s;
  transition-delay: .3s;
  transition-timing-function: ease-out;
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.tab-vertical-product-desc {
  grid-template-columns: 2fr 10fr;
  gap: 30px;
  display: grid;
}

.tab-vertical-product-desc .menu-tab {
  border-left: 1px solid var(--line);
  height: max-content;
}

.tab-vertical-product-desc .tab-link {
  padding: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: block;
  position: relative;
}

.tab-vertical-product-desc .tab-link:after {
  content: "";
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  width: 1px;
  height: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
}

.tab-vertical-product-desc .tab-link.active:after {
  height: 100%;
}

.tab-vertical-product-desc .tab-content {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.tab-vertical-product-desc .wd-product-descriptions {
  height: 100%;
  padding: 30px 64px;
}

.tab-vertical-product-desc .wd-vertical-addInformation {
  padding-top: 65px;
  padding-bottom: 65px;
}

.tab-vertical-product-desc .wd-vertical-review {
  padding: 42px 40px;
}

.tab-product-desc {
  padding-bottom: 5px;
  overflow: hidden;
}

.tab-product-desc .menu-tab {
  border-bottom: 1px solid var(--line);
  align-items: center;
  display: flex;
  overflow: auto;
}

.tab-product-desc .tab-link {
  text-align: center;
  white-space: nowrap;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: block;
  position: relative;
}

.tab-product-desc .tab-link:after {
  content: "";
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  width: 0;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.tab-product-desc .tab-link.active:after {
  width: 100%;
}

.tab-product-desc .tab-content {
  margin-top: 30px;
}

.flat-title-tab-categories {
  gap: 20px;
  margin-bottom: 30px;
  display: grid;
}

.flat-title-tab {
  gap: 20px;
  margin-bottom: 32px;
  display: grid;
}

.flat-title-tab .box-title {
  gap: 10px;
  display: grid;
}

.flat-title-tab .menu-tab-line .tab-link {
  color: #00000063;
}

.flat-title-tab-2 {
  margin-bottom: 32px;
}

.menu-tab-line {
  gap: 12px;
  display: flex;
  overflow: auto hidden;
}

.menu-tab-line .tab-link {
  color: var(--text);
  white-space: nowrap;
  padding: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  display: block;
  position: relative;
}

.menu-tab-line .tab-link:hover, .menu-tab-line .tab-link.active {
  color: var(--primary);
}

.menu-tab-line .tab-link:hover:after, .menu-tab-line .tab-link.active:after {
  width: 100%;
}

.menu-tab-line .tab-link:after {
  content: "";
  background-color: var(--primary);
  -o-transition: all .3s ease-in-out;
  width: 0;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.menu-tab-line.style-lg .tab-link {
  font-size: 24px;
  line-height: 27.2px;
}

.menu-tab-line.style-lg2 .tab-link {
  color: #727272;
  padding: 0 !important;
}

.menu-tab-line.style-lg2 .tab-link:after {
  background-color: #df3c01;
}

.menu-tab-line.style-lg2 .tab-link:hover, .menu-tab-line.style-lg2 .tab-link.active {
  color: #df3c01;
}

.menu-tab-line.style-md2 .tab-link {
  padding: 4px 0;
  font-weight: 500;
}

.menu-tab-line.style2 .tab-link {
  color: var(--text);
  font-weight: 500;
}

.menu-tab-line.style2 .tab-link:after {
  content: none;
}

.menu-tab-line.style2 .tab-link:hover, .menu-tab-line.style2 .tab-link.active {
  color: var(--primary);
}

.menu-tab-line.type-active-1 {
  border-bottom: 1px solid #25252533;
  width: max-content;
}

.menu-tab-line.type-active-1 .tab-link {
  color: #252525;
}

.menu-tab-line.type-active-1 .tab-link:after {
  background-color: #bb8f60;
}

.menu-tab-line.type-active-1 .tab-link:hover, .menu-tab-line.type-active-1 .tab-link.active {
  color: #bb8f60;
}

.menu-tab-fill {
  display: flex;
  overflow: auto hidden;
}

.menu-tab-fill .tab-link {
  min-width: 120px;
  color: var(--rgba-dark);
  border-radius: 33px;
  padding: 10px 24px;
  font-weight: 500;
}

.menu-tab-fill .tab-link.active {
  color: var(--white);
  background-color: #92a9ff;
}

.menu-tab-fill .item-slide-effect {
  background-color: #92a9ff;
}

.menu-tab-fill.style-primary .tab-link {
  min-width: 100%;
}

.menu-tab-fill.style-primary .tab-link.active, .menu-tab-fill.style-primary .item-slide-effect {
  background-color: var(--primary);
}

.menu-tab-fill-lg {
  gap: 20px;
  display: flex;
  overflow: auto hidden;
}

.menu-tab-fill-lg .tab-link {
  color: var(--text);
  white-space: nowrap;
  font-weight: 500;
}

.menu-tab-fill-lg .tab-link.active {
  color: var(--primary);
}

.item-slide-effect {
  z-index: -1;
  background-color: var(--primary);
  border-radius: 33px;
  height: 100%;
  -webkit-transition: all .5s;
  -ms-transition: all .5s;
  transition: all .5s;
  position: absolute;
  left: 0%;
}

.tab-slide .menu-tab-fill, .flat-controltab-nav {
  position: relative;
}

.flat-controltab-nav .box-nav-swiper {
  position: absolute;
  top: -90px;
  right: 0;
  transform: none;
}

.widget-accordion {
  border-bottom: 1px solid var(--line);
}

.widget-accordion .accordion-title {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

.widget-accordion .accordion-title .icon {
  font-size: 8px;
  transition: transform .35s linear;
}

.widget-accordion .accordion-title:not(.collapsed) .icon {
  transform: rotate(180deg);
}

.widget-accordion .accordion-body {
  padding: 10px 0 20px;
}

.widget-accordion:first-child {
  border-top: 1px solid var(--line);
}

.tf-topbar {
  border-bottom: 1px solid var(--line);
  padding: 7px 0;
}

.tf-topbar .marquee-wrapper {
  align-items: center;
  transition: animation-duration .3s;
  animation: 20s linear infinite infiniteScroll;
  display: flex;
}

.tf-topbar .marquee-wrapper:hover {
  animation-play-state: paused;
}

.tf-topbar .marquee-wrapper .marquee-child-item {
  color: var(--dark);
  margin: 0 10px;
  display: flex;
}

.tf-topbar .marquee-wrapper .marquee-child-item p {
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 18px;
}

.tf-topbar .marquee-wrapper .marquee-child-item .dot {
  background-color: var(--dark);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.tf-topbar .marquee-wrapper .marquee-child-item.mx-20 {
  margin: 0 20px;
}

.tf-topbar .topbar-right {
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  display: flex;
}

.tf-topbar .type-languages > .dropdown-menu {
  margin-left: -20px !important;
}

.tf-topbar.topbar-bg {
  border: none;
}

.tf-topbar.topbar-bg .marquee-child-item {
  color: var(--white);
}

.tf-topbar.topbar-bg .marquee-child-item .dot {
  background-color: var(--white);
}

.tf-topbar.topbar-bg .tf-social-icon .social-item {
  border-color: var(--line);
  color: var(--white);
  background-color: #0000;
}

.tf-topbar.topbar-bg .tf-social-icon .social-item:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.tf-topbar.topbar-bg .image-select .filter-option-inner-inner {
  color: var(--white-2);
}

.tf-topbar.topbar-bg .image-select > .dropdown-menu {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.tf-topbar.topbar-bg .image-select > .dropdown-toggle:after {
  color: var(--white-2);
}

.tf-topbar .overflow-hidden {
  position: relative;
}

.tf-topbar .overflow-hidden:before, .tf-topbar .overflow-hidden:after {
  content: "";
  z-index: 5;
  pointer-events: none;
  width: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.tf-topbar .overflow-hidden:before {
  background: linear-gradient(to right, #fff, #0000);
  left: 0;
}

.tf-topbar .overflow-hidden:after {
  background: linear-gradient(to left, #fff, #0000);
  right: 0;
}

.tf-topbar.bg-dark-5 .overflow-hidden:before {
  background: linear-gradient(to right, #313030, #0000);
  left: 0;
}

.tf-topbar.bg-dark-5 .overflow-hidden:after {
  background: linear-gradient(to left, #313030, #0000);
  right: 0;
}

.tf-topbar.bg-light-green .overflow-hidden:before {
  background: linear-gradient(to right, #7c8c47, #0000);
}

.tf-topbar.bg-light-green .overflow-hidden:after {
  background: linear-gradient(to left, #7c8c47, #0000);
}

.tf-topbar.bg-light-purple .overflow-hidden:before {
  background: linear-gradient(to right, #8f4a58, #0000);
}

.tf-topbar.bg-light-purple .overflow-hidden:after {
  background: linear-gradient(to left, #8f4a58, #0000);
}

.tf-topbar.bg-light-pink-2 .overflow-hidden:before {
  background: linear-gradient(to right, #d47b62, #0000);
}

.tf-topbar.bg-light-pink-2 .overflow-hidden:after {
  background: linear-gradient(to left, #d47b62, #0000);
}

.tf-topbar.bg-light-purple-2 .overflow-hidden:before {
  background: linear-gradient(to right, #a95354, #0000);
}

.tf-topbar.bg-light-purple-2 .overflow-hidden:after {
  background: linear-gradient(to left, #a95354, #0000);
}

.tf-topbar.bg-green .overflow-hidden:before {
  background: linear-gradient(to right, #3f7b25, #0000);
}

.tf-topbar.bg-green .overflow-hidden:after {
  background: linear-gradient(to left, #3f7b25, #0000);
}

.tf-topbar.bg-light-blue .overflow-hidden:before {
  background: linear-gradient(to right, #5192f4, #0000);
}

.tf-topbar.bg-light-blue .overflow-hidden:after {
  background: linear-gradient(to left, #5192f4, #0000);
}

.tf-topbar.bg-dark .overflow-hidden:before {
  background: linear-gradient(to right, #000, #0000);
}

.tf-topbar.bg-dark .overflow-hidden:after {
  background: linear-gradient(to left, #000, #0000);
}

.topbar-wraper {
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  display: flex;
}

.topbar-wraper .tf-social-icon {
  flex-wrap: nowrap;
}

.marquee-topbar {
  padding: 12px 0;
  overflow: hidden;
}

.marquee-topbar .marquee-wrapper p {
  text-transform: uppercase;
  font-weight: 600;
}

.marquee-sale {
  padding: 15px 0;
  overflow: hidden;
}

.marquee-sale.marquee-border {
  border-top: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.marquee-sale .marquee-wrapper {
  align-items: center;
  transition: animation-duration .3s;
  animation: 20s linear infinite infiniteScroll;
  display: flex;
}

.marquee-sale .marquee-wrapper:hover {
  animation-play-state: paused;
}

.marquee-sale .marquee-wrapper.scrollRight {
  animation: 20s linear infinite infiniteScrollRight;
}

.marquee-sale .marquee-wrapper.scrollRight:hover {
  animation-play-state: paused;
}

.marquee-sale .marquee-child-item {
  color: var(--dark);
  margin: 0 20px;
  display: flex;
}

.marquee-sale .icon-flash-star {
  font-size: 20px;
}

.marquee-sale.bg-dark .marquee-child-item {
  color: var(--white);
}

.header-default .wrapper-header {
  min-height: 64px;
}

.header-default .box-nav-menu {
  justify-content: center;
  align-items: center;
  gap: 32px;
  display: flex;
}

.header-default .box-nav-menu .item-link {
  -o-transition: all .3s ease-in-out;
  color: var(--dark);
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.header-default .box-nav-menu .item-link .icon {
  -o-transition: all .3s ease-in-out;
  font-size: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.header-default .box-nav-menu .item-link:after {
  content: "";
  background: none;
  width: calc(100% + 40px);
  height: 86px;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header-default .box-nav-menu .menu-item {
  padding: 33px 0;
}

.header-default .box-nav-menu .menu-item.active .item-link, .header-default .box-nav-menu .menu-item:hover .item-link, .header-default .box-nav-menu .menu-item.active .menu-link-text.active {
  color: var(--primary);
}

.header-default .box-nav-menu .menu-item:hover .item-link .icon {
  color: var(--primary);
  transform: rotate(180deg);
}

.header-default .box-nav-menu .menu-item:hover .item-link:after {
  display: block;
}

.header-default .box-nav-menu .menu-item .label {
  height: 17px;
  color: var(--white);
  border-radius: 5px;
  margin-left: 6px;
  padding: 0 8px;
  font-size: 11px;
  line-height: 17px;
}

.header-default .box-nav-menu .menu-item .label.hot {
  background-color: #ff4a5f;
}

.header-default .box-nav-menu .menu-item .label.new {
  background-color: #3eb516;
}

.header-default .nav-icon {
  gap: 16px;
}

.header-default .nav-icon .nav-icon-item {
  align-items: center;
  font-size: 24px;
  display: inline-flex;
  position: relative;
}

.header-default .nav-icon .nav-icon-item:hover {
  color: var(--primary);
}

.header-default .nav-icon .nav-icon-item .count-box {
  z-index: 2;
  width: 16px;
  height: 16px;
  color: var(--white);
  background-color: var(--primary);
  text-align: center;
  white-space: nowrap;
  border-radius: 50%;
  margin-top: 3px;
  margin-right: 3px;
  padding: 0 5px;
  font-family: Poppins, sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 16px;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.header-default .nav-icon .nav-icon-item .text {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.header-default .nav-icon .nav-icon-item.value-box {
  background-color: var(--surface-3);
  border-radius: 4px;
  padding: 6px 10px;
}

.header-default .nav-icon {
  position: relative;
}

.header-default .nav-account {
  align-items: center;
  padding: 33px 0;
  font-size: 24px;
  display: inline-flex;
}

.header-default .profile-menu {
  pointer-events: none;
  background-color: var(--white);
  z-index: 999;
  visibility: hidden;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  min-width: 150px;
  box-shadow: var(--shadow1);
  -o-transition: all .3s ease-in-out;
  border-radius: 16px;
  padding: 20px 30px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 20%;
  transform: translateX(0)translateY(10px);
  box-shadow: 0 4px 20px #0000001a;
}

.header-default .nav-account:hover > .profile-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0)translateY(0);
}

.header-default .profile-menu .profile-link-text {
  width: 100%;
  color: var(--dark);
  text-align: start;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
}

.header-default .profile-menu li:first-child .profile-link-text {
  border-bottom: 1px solid #a1a1a133;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.header-default .nav-icon .nav-wishlist .count-box {
  padding-left: 4px;
}

.header-default .nav-icon .nav-wishlist.style-2 .count-box {
  position: unset;
  background-color: #4a7e4b;
  justify-content: center;
  align-items: center;
  width: 21px;
  height: 21px;
  margin: 0;
  padding: 0;
  display: flex;
  transform: none;
}

.header-default .nav-icon .nav-cart.pl .count-box {
  padding-left: 5px;
}

.header-default .mobile-menu {
  display: inline-flex;
}

.header-default .mobile-menu .icon {
  font-size: 24px;
}

.header-default .header-language {
  gap: 16px;
  display: flex;
}

.header-default .header-bottom .menu-item {
  padding: 22px 0;
}

.header-default .header-bottom .item-link:after {
  height: 64px;
}

.header-default .box-phone {
  align-items: center;
  gap: 4px;
  display: flex;
}

.header-default .box-phone .icon {
  color: var(--dark);
  font-size: 20px;
}

.header-default .box-phone .phone {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.header-default .box-phone .box-icon {
  background-color: var(--primary-green);
  border-radius: 50%;
  width: 48px;
  height: 48px;
}

.header-default .box-phone .box-icon .icon {
  color: var(--white);
  font-size: 24px;
}

.header-default.header-style-2 .header-bottom .menu-item {
  padding: 36px 0;
}

.header-default.header-style-2 .header-bottom .item-link:after {
  height: 94px;
}

.header-search .tf-form-search {
  max-width: 413px;
  margin: auto auto auto 70px;
  position: relative;
}

.header-search .tf-form-search input {
  border-radius: 42px;
}

.header-search .tf-form-search .search-suggests-results:after {
  content: "";
  background-color: #0000;
  height: 15px;
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
}

.header-absolute {
  z-index: 999;
  background-color: #0000;
  margin-bottom: -64px;
}

.header-absolute-2 {
  z-index: 999;
  background-color: #0000;
  margin-bottom: -70px;
}

.header-absolute-2 .menu-item, .header-absolute-2 .menu-item .item-link, .header-absolute-2 .menu-item .item-link .icon {
  color: var(--white);
}

.header-absolute-2 .menu-item.active .icon {
  color: var(--primary) !important;
}

.header-absolute-2 .header-bottom .menu-item {
  padding: 24px 0;
}

.header-absolute-2.header-bg .menu-item .item-link, .header-absolute-2.header-bg .menu-item .item-link .icon {
  color: var(--dark);
}

.header-absolute-2 .logo-header .logo-white {
  display: none;
}

.header-lg .box-nav-menu .item-link {
  font-size: 16px;
  line-height: 100%;
}

.wrapper-header-left {
  align-items: center;
  display: flex;
}

.wrapper-header-left .box-navigation {
  padding-left: 40px;
}

.wrapper-header-bottom {
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  display: flex;
}

.wrapper-header-bottom .inner-left {
  align-items: center;
  display: flex;
}

.wrapper-header-bottom .inner-right {
  align-items: center;
  gap: 8px;
  display: flex;
}

.wrapper-header-bottom .call-us {
  color: #9148ff;
  border-bottom: 1px solid #9148ff;
  align-items: center;
  gap: 4px;
  display: flex;
}

.wrapper-header-bottom .call-us .icon {
  font-size: 10px;
}

.wrapper-header-bottom .tf-mega-categories {
  position: relative;
}

.wrapper-header-bottom .tf-mega-categories .categories-title {
  background-color: var(--purple);
  min-width: 294px;
  height: 54px;
  color: var(--white);
  text-transform: uppercase;
  border-radius: 8px;
  align-items: center;
  gap: 4px;
  margin-right: 42px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
}

.wrapper-header-bottom .tf-mega-categories .categories-title .icon {
  margin-top: -2px;
  font-size: 20px;
}

.wrapper-header-bottom .tf-mega-categories .mega-categories {
  background-color: var(--white);
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  min-width: 294px;
  box-shadow: var(--shadow-1);
  pointer-events: none;
  border-radius: 16px;
  transition: all .4s .1s;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(15px);
}

.wrapper-header-bottom .tf-mega-categories:hover .mega-categories {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: none;
}

.wrapper-header-bottom .tf-mega-categories.style-market .categories-title {
  background-color: var(--primary-green);
}

.wrapper-header-bottom .tf-mega-categories.style-market .cate-item:hover, .wrapper-header-bottom .tf-mega-categories.style-market .cate-item.active {
  background-color: #39ae5233;
}

.header-white .mobile-menu, .header-white .nav-icon .nav-icon-item, .header-white .box-nav-menu .item-link {
  color: var(--white);
}

.header-white.header-bg {
  background-color: var(--dark);
}

.header-uppercase .box-nav-menu .item-link {
  text-transform: uppercase;
}

.slider-fashion-2 {
  margin-top: 13px;
  padding: 0 15px;
}

.logo-header img {
  width: 128px;
}

.header-medium .header-bottom .menu-item {
  padding: 20px 0;
}

.header-medium .image-select.style-default .filter-option-inner-inner, .header-medium .image-select.style-default .dropdown-menu a .text {
  font-size: 12px;
  line-height: 18px;
}

.box-nav-menu .sub-menu {
  pointer-events: none;
  background-color: var(--white);
  z-index: 999;
  visibility: hidden;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  min-width: 300px;
  box-shadow: var(--shadow1);
  -o-transition: all .3s ease-in-out;
  border-radius: 16px;
  padding: 32px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateX(0)translateY(10px);
  box-shadow: 0 4px 20px #0000001a;
}

.box-nav-menu .mega-menu {
  background-color: var(--white);
  max-height: calc(100vh - 71px);
  margin: auto;
  left: 24px;
  right: 24px;
  overflow: hidden auto;
}

.box-nav-menu .menu-heading {
  color: var(--dark);
  text-transform: uppercase;
  text-align: start;
  border-bottom: 1px solid #a1a1a133;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22.4px;
}

.box-nav-menu .mega-menu.mega-tab {
  padding: 0;
}

.box-nav-menu .mega-menu.mega-tab .tab-content {
  flex-grow: 1;
}

.box-nav-menu .mega-home {
  max-width: 1440px;
  max-height: calc(100vh - 70px);
}

.box-nav-menu .mega-home::-webkit-scrollbar {
  width: 5px;
}

.box-nav-menu .mega-home::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.box-nav-menu .mega-home::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.box-nav-menu .mega-shop {
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1763px;
  display: grid;
}

.box-nav-menu .mega-shop .wrapper-sub-menu {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display: grid;
}

.box-nav-menu .mega-shop .wrapper-sub-collection {
  width: 100%;
  min-width: 0;
}

.box-nav-menu .mega-shop .wg-cls {
  border-radius: 20px;
}

.box-nav-menu .mega-shop .wg-cls .image {
  aspect-ratio: 1;
}

.box-nav-menu .mega-shop .wg-cls .cls-btn {
  bottom: 32px;
}

.box-nav-menu .mega-shop .wg-cls .tf-btn {
  padding: 8px 30px;
  font-size: 20px;
  line-height: 24px;
}

.box-nav-menu .mega-product {
  gap: 24px;
  max-width: 1720px;
  display: flex;
}

.box-nav-menu .mega-product .wrapper-sub-menu {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 67%;
  display: grid;
}

.box-nav-menu .mega-product .wrapper-sub-product {
  width: 33%;
}

.box-nav-menu .mega-product .sw-dot-default {
  margin-top: 10px;
}

.box-nav-menu .card-product .box-icon {
  width: 36px;
  height: 36px;
}

.box-nav-menu .card-product .card-product-wrapper {
  aspect-ratio: .783784;
}

.box-nav-menu .mega-tab {
  gap: 24px;
  max-width: 1440px;
  min-height: 500px;
  display: flex;
}

.box-nav-menu .mega-tab .menu-tab {
  border-right: 1px solid var(--line);
  flex-shrink: 0;
  max-width: 235px;
  height: 100%;
}

.box-nav-menu .mega-tab .tab-link {
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
}

.box-nav-menu .mega-tab .tab-link .icon {
  font-size: 14px;
}

.box-nav-menu .mega-tab .tab-link.active, .box-nav-menu .mega-tab .tab-link:hover {
  color: var(--white);
  background-color: var(--primary);
}

.box-nav-menu .mega-tab .wrapper-sub-menu-tab {
  width: 62%;
  display: flex;
}

.box-nav-menu .mega-tab .wrapper-sub-menu-tab .tab-pane {
  pointer-events: none;
  gap: 40px;
  padding: 32px;
  display: flex;
  transform: translateY(15px);
}

.box-nav-menu .mega-tab .wrapper-sub-menu-tab .tab-pane.active {
  transform: none;
}

.box-nav-menu .mega-tab .wrapper-sub-product {
  width: 38%;
  padding: 32px 32px 32px 0;
}

.box-nav-menu .menu-item:hover > .sub-menu {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0)translateY(0);
}

.box-nav-menu .menu-item:hover .wrapper-sub-menu-tab .tab-pane.active {
  pointer-events: all;
}

.box-nav-menu .menu-list li:not(:last-child) {
  margin-bottom: 10px;
}

.box-nav-menu .menu-list .menu-link-text {
  color: #5d5d5d;
  text-align: start;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  display: flex;
}

.box-nav-menu .menu-list .menu-link-text .demo-label {
  color: var(--white);
  background-color: #62d15e;
  border-radius: 4px;
  margin-left: 4px;
  padding: 0 8px;
  font-size: 10px;
  line-height: 15px;
  display: inline-block;
}

.box-nav-menu .sub-menu-style-2 {
  gap: 25px;
  min-width: 200px;
  display: flex;
  left: -30px;
}

.box-nav-menu .sub-menu-style-color-2 {
  max-height: 360px;
}

.box-nav-menu .sub-menu-style-2 .menu-list {
  width: 100%;
  overflow: hidden auto;
}

.menu-list::-webkit-scrollbar {
  width: 0;
}

.box-nav-menu .sub-menu-style-3 {
  gap: 25px;
  min-width: 552px;
  padding: 16px 24px 40px 32px;
  display: flex;
  left: -100px;
}

.box-nav-menu .sub-menu-style-3 .menu-list {
  width: 45%;
  margin-top: 16px;
}

.box-nav-menu .sub-menu-style-3 .menu-heading {
  color: var(--dark);
  text-align: start;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.box-nav-menu .list-recent-blog .item {
  gap: 12px;
  display: flex;
}

.box-nav-menu .list-recent-blog .item:not(:last-child) {
  margin-bottom: 16px;
}

.box-nav-menu .list-recent-blog .item .img-box {
  border-radius: 4px;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.box-nav-menu .list-recent-blog .item .content {
  text-align: start;
  align-content: flex-start;
  gap: 4px;
  display: grid;
}

.mega-menu .box-search {
  gap: 10px;
  max-width: 635px;
  margin: 0 auto 20px;
  display: flex;
}

.mega-menu .box-search .tf-select select {
  min-width: 192px;
  height: 48px;
  padding: 12px 32px 12px 20px;
}

.mega-menu .box-search .tf-select:after {
  right: 20px;
}

.mega-menu .box-search .form-search {
  flex-grow: 1;
  width: 100%;
}

.mega-menu .box-search .form-search input {
  height: 48px;
  color: var(--text);
  border-color: var(--line);
  border-radius: 43px;
  padding: 12px 42px 12px 20px;
  font-size: 16px;
  line-height: 24px;
}

.mega-menu .box-search .form-search input::placeholder {
  color: var(--text);
}

.mega-menu .box-search .form-search input:focus {
  border-color: var(--dark);
}

.mega-menu .box-search .form-search .icon {
  font-size: 24px;
}

.mega-menu .box-search .form-search button {
  right: 20px;
}

.mega-menu .row-demo {
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  display: grid;
}

.mega-menu .demo-item {
  text-align: center;
  gap: 15px;
  display: grid;
}

.mega-menu .demo-item .demo-name {
  font-size: 14px;
  line-height: 21px;
}

.mega-menu .demo-item .demo-image {
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.mega-menu .demo-item .demo-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mega-menu .demo-item .demo-label {
  gap: 5px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.mega-menu .demo-item .demo-label span {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 4px;
  padding: 0 8px;
  font-size: 10px;
  line-height: 15px;
}

.mega-menu .demo-item .demo-label .demo-hot {
  background-color: #62d15e;
}

.mega-menu .demo-item:hover .demo-image {
  border-color: var(--primary);
}

.mega-menu .view-all-demo {
  margin-top: 32px;
}

header {
  -o-transition: .2s ease-out;
  z-index: 888;
  background-color: var(--white);
  font-family: Poppins, sans-serif;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

header.header-bg {
  background-color: var(--white);
  box-shadow: 0 1px 3px #0000001a;
}

.canvas-mb {
  max-width: min(90%, 320px);
  font-family: Poppins, sans-serif;
  border-right: 0 !important;
  width: 100% !important;
}

.canvas-mb .mb-canvas-content {
  isolation: isolate;
  grid-auto-rows: minmax(0, 1fr) auto;
  align-content: start;
  width: 100%;
  min-width: 100%;
  max-width: min(90%, 320px);
  height: 100%;
  padding-top: 60px;
  display: grid;
}

.canvas-mb .mb-body {
  border-bottom: 1px solid var(--line);
  overscroll-behavior-y: contain;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  overflow-y: auto;
}

.canvas-mb .icon-close-popup {
  z-index: 3;
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: var(--dark);
  background-color: #0000;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 7px;
  font-size: 16px;
  display: inline-flex;
  position: absolute;
  top: 15px;
  left: 15px;
}

.canvas-mb .mb-bottom .site-nav-icon {
  margin-bottom: 18px;
}

.canvas-mb .mb-bottom .bottom-bar-language {
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  min-height: 40px;
  display: grid;
}

.canvas-mb .mb-bottom .bottom-bar-language .image-select.type-currencies > .dropdown-menu {
  min-width: 100px;
  margin-left: 0 !important;
}

.canvas-mb .mb-bottom .bottom-bar-language .image-select > .dropdown-menu {
  margin: 0 !important;
}

.canvas-mb .mb-bottom .bottom-bar-language .image-select > .dropdown-menu:before {
  display: none;
}

.canvas-mb .mb-bottom .bottom-bar-language .tf-currencies, .canvas-mb .mb-bottom .bottom-bar-language .tf-languages {
  justify-content: center;
  align-items: center;
  display: flex;
}

.canvas-mb .mb-bottom .bottom-bar-language .tf-currencies {
  border-right: 1px solid var(--line);
}

.canvas-mb .mb-bottom .bottom-bar-language button.dropdown-toggle {
  padding: 12px 20px;
}

.canvas-mb .site-nav-icon {
  border: solid 1px var(--line);
  background-color: var(--line);
  color: var(--dark);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  display: inline-flex;
}

.canvas-mb .site-nav-icon .icon {
  font-size: 18px;
}

.canvas-mb .site-nav-icon:hover {
  color: var(--white);
  background-color: var(--dark);
  border-color: var(--dark);
}

.canvas-mb .mb-other-content .group-icon {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 20px;
  display: flex;
}

.canvas-mb .mb-other-content .text-need {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.canvas-mb .mb-other-content .mb-info li {
  color: var(--text);
  align-items: center;
  gap: 4px;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.canvas-mb .mb-other-content .mb-info li:not(:last-child) {
  margin-bottom: 8px;
}

.canvas-mb .mb-other-content .mb-contact {
  gap: 8px;
  margin-bottom: 12px;
  display: grid;
}

.canvas-mb .mb-other-content .mb-contact p {
  color: var(--text);
  font-size: 14px;
  line-height: 22px;
}

.canvas-mb .form-search {
  margin-bottom: 8px;
  position: relative;
}

.canvas-mb .form-search input {
  color: var(--dark-2);
  padding-right: 44px;
}

.nav-ul-mb .nav-mb-item {
  padding: 2px 0;
}

.nav-ul-mb .nav-mb-item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.nav-ul-mb .nav-mb-item .mb-menu-link {
  min-height: 40px;
  color: var(--dark);
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  display: flex;
}

.nav-ul-mb .nav-mb-item .mb-menu-link:not(.collapsed) .btn-open-sub:before {
  transform: rotate(90deg);
}

.nav-ul-mb .nav-mb-item.active .mb-menu-link {
  color: var(--primary);
}

.nav-ul-mb .nav-mb-item.active .mb-menu-link .btn-open-sub:after, .nav-ul-mb .nav-mb-item.active .mb-menu-link .btn-open-sub:before {
  background-color: var(--primary);
}

.nav-ul-mb .nav-mb-item.active .sub-nav-link.active {
  color: var(--primary);
}

.nav-ul-mb .nav-mb-item.active .sub-nav-link.active .btn-open-sub:after, .nav-ul-mb .nav-mb-item.active .sub-nav-link.active .btn-open-sub:before {
  background-color: var(--primary);
}

.nav-ul-mb .btn-open-sub {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 30px;
  display: inline-flex;
  position: relative;
}

.nav-ul-mb .btn-open-sub:after, .nav-ul-mb .btn-open-sub:before {
  content: "";
  z-index: 1;
  background-color: var(--dark);
  margin: auto;
  transition: all .4s .1s;
  position: absolute;
  inset: 0;
}

.nav-ul-mb .btn-open-sub:before {
  width: 2px;
  height: 12px;
}

.nav-ul-mb .btn-open-sub:after {
  width: 12px;
  height: 2px;
}

.nav-ul-mb .demo-label {
  color: var(--white);
  background-color: #62d15e;
  border-radius: 4px;
  padding: 0 8px;
  font-size: 10px;
  line-height: 15px;
  position: absolute;
  top: -5px;
  left: calc(100% + 2px);
}

.nav-ul-mb .sub-nav-menu {
  margin-bottom: 15px;
  padding-left: 10px;
}

.nav-ul-mb .sub-menu-level-2 {
  margin-bottom: 5px;
}

.nav-ul-mb .sub-menu-level-2 .sub-nav-link {
  max-width: max-content;
  position: relative;
}

.nav-ul-mb .sub-nav-link {
  min-height: 32px;
  color: var(--dark);
  text-transform: capitalize;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

.nav-ul-mb .sub-nav-link:not(.collapsed) .btn-open-sub:before {
  transform: rotate(90deg);
}

.nav-ul-mb .sub-nav-link .btn-open-sub:after, .nav-ul-mb .sub-nav-link .btn-open-sub:before {
  background-color: var(--dark);
}

.nav-ul-mb .sub-nav-link.line-clamp {
  display: inline-flex;
  position: relative;
}

.nav-ul-mb .sub-nav-link.line-clamp .demo-label {
  top: -5px;
  right: -38px;
}

.footer-default {
  color: var(--text);
  background-color: var(--white);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.footer-default a {
  color: var(--text);
}

.footer-default .form-newsletter {
  max-width: 401px;
  position: relative;
}

.footer-default .form-newsletter .subscribe-button {
  border-radius: 50%;
  padding: 13px;
  display: inline-flex;
}

.footer-default .form-newsletter .subscribe-button .icon {
  font-size: 17px;
}

.footer-default .footer-bottom {
  border-top: 1px solid var(--line);
}

.footer-default .footer-top {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.footer-default .footer-top-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  display: flex;
}

.footer-default .footer-top-wrap .tf-social-icon {
  gap: 8px;
}

.footer-default .footer-body {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-default .collapse {
  display: block !important;
}

.footer-default .btn-line-dark {
  color: #444;
}

.footer-default .btn-line-dark:after {
  background-color: #444;
}

.footer-logo {
  width: 100%;
  max-width: 157px;
}

.footer-logo > a {
  width: 100%;
  display: block;
}

.footer-logo > a img {
  width: 100%;
}

.footer-wrap {
  border-top: 1px solid var(--line);
}

.footer-info {
  gap: 15px;
  margin-bottom: 15px;
  display: grid;
}

.footer-info a.infor_address {
  font-weight: 400;
}

.footer-info a.infor_address span {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.footer-info a.infor_address:hover {
  color: inherit;
}

.footer-info .item {
  color: #0d0d0d;
  align-items: center;
  gap: 10px;
  display: flex;
}

.footer-info .item a {
  color: #0d0d0d;
}

.footer-info .item a:hover {
  color: var(--primary);
}

.footer-info .box-icon {
  border: 1px solid var(--line);
  width: 32px;
  height: 32px;
  color: var(--dark);
  background-color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 14px;
}

.footer-info .box-icon:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.footer-info .box-icon:hover svg path {
  fill: var(--white);
}

.footer-heading {
  color: #0d0d0d;
  margin-bottom: 15px;
}

.footer-menu-list {
  gap: 15px;
  display: grid;
}

.footer-menu-list a:hover {
  color: var(--primary);
}

.footer-newsletter {
  gap: 20px;
  display: grid;
}

.footer-bottom-wrap {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 32px 0;
  display: flex;
  position: relative;
}

.footer-bottom-wrap a:hover {
  color: var(--primary) !important;
}

.footer-bottom-wrap p, .footer-bottom-wrap a {
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom-wrap .image-select.style-default {
  padding: 8px 10px;
  border: 1px solid #2e2e2e26 !important;
  border-radius: 4px !important;
  width: 184px !important;
}

.footer-bottom-wrap .image-select.style-default .filter-option-inner-inner {
  color: var(--dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.footer-bottom-wrap .image-select.style-default > .dropdown-toggle {
  border: 1px solid var(--line);
  color: var(--dark);
  position: relative;
  background-color: #0000 !important;
  outline: none !important;
}

.footer-bottom-wrap .image-select.style-default > .dropdown-toggle:after {
  display: none;
}

.footer-bottom-wrap .image-select.style-default > .dropdown-toggle:before {
  content: "";
  font-family: icomoon;
  font-size: 6px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.footer-bottom-wrap .image-select.style-default > .dropdown-menu a .text {
  font-size: 14px;
  line-height: 20px;
}

.footer-bottom-wrap .tf-payment {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.footer-bottom-wrap .tf-payment .item {
  max-width: 40px;
}

.footer-bottom-wrap .box-right {
  align-items: center;
  gap: 30px;
  display: flex;
}

.footer-default .subscribe-email, .footer-default .tf-social-icon .social-item {
  background-color: #0000;
}

.footer-style-2 {
  margin: 0 12px 80px;
}

.footer-style-2 .footer-bottom-wrap {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.footer-style-2 .footer-info {
  gap: 10px;
}

.footer-style-2 .footer-logo {
  max-width: 108px;
  margin-bottom: 28px;
}

.footer-pb-2 {
  padding-bottom: 100px;
}

.footer-bg {
  color: var(--white);
}

.footer-bg .footer-top {
  border-color: #7f7f7f;
  border-top-style: none;
  border-top-width: 0;
}

.footer-bg .row-footer .s1, .footer-bg .row-footer .s2, .footer-bg .footer-bottom {
  border-color: #7f7f7f;
}

.footer-bg .tf-social-icon .social-item:not(:hover) {
  color: var(--white);
  border-color: #989898;
}

.footer-bg .footer-info .box-icon {
  border-color: #0000;
}

.footer-bg a, .footer-bg .item, .footer-bg .item a, .footer-bg .footer-heading {
  color: var(--white);
}

.footer-bg .subscribe-email {
  background-color: var(--white);
  border-color: var(--white) !important;
}

.footer-bg .footer-heading-mobile:before, .footer-bg .footer-heading-mobile:after {
  background-color: var(--white);
}

.cloud-footer {
  margin-bottom: -2px;
}

.cloud-footer img {
  width: 100%;
  height: auto;
  animation: 5s ease-in-out infinite alternate floating;
}

.footer-cloud {
  background-color: #d1d6ff;
  position: relative;
}

.footer-cloud .footer-top {
  border-top: 0;
  border-color: var(--white);
}

.footer-cloud .footer-top .social-item, .footer-cloud .row-footer .s1, .footer-cloud .row-footer .s2 {
  border-color: var(--white);
}

.footer-cloud .row-footer .form-newsletter input {
  background-color: var(--white);
  border-color: var(--white);
}

.footer-cloud .row-footer .form-newsletter input:focus {
  border-color: var(--dark);
}

.footer-cloud .footer-bottom {
  border-color: var(--white);
}

.footer-cloud .footer-info .box-icon {
  border-color: var(--white);
  background-color: #0000;
}

.blog-item {
  gap: 24px;
  display: grid;
}

.blog-item .entry_image {
  border-radius: 16px;
  overflow: hidden;
}

.blog-item .entry_image a {
  height: 100%;
  display: block;
}

.blog-item .blog-content {
  gap: 15px;
  display: grid;
}

.blog-item .entry-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  display: flex;
}

.blog-item .br-line {
  background-color: var(--line);
  width: 1px;
  height: 16px;
}

.blog-item .entry_author {
  align-items: center;
  gap: 10px;
  display: flex;
}

.blog-item .avatar {
  border-radius: 50%;
  max-width: 38px;
  overflow: hidden;
}

.blog-item.style-2 {
  gap: 24px;
  display: flex;
}

.blog-item.style-2 .entry_image {
  flex-shrink: 0;
  width: 100%;
  max-width: 342px;
}

.blog-item.style-2 .blog-content {
  flex-direction: column;
  gap: 15px;
  display: flex;
}

.entry-tag {
  align-items: center;
  gap: 15px;
  display: flex;
}

.entry-tag > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.entry-tag .style-list {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.entry-tag .style-list a {
  border: 1px solid var(--line);
  background-color: #0000;
  border-radius: 22px;
  padding: 9px 23px;
  font-weight: 500;
  line-height: 17px;
  display: inline-block;
}

.entry-tag .style-list a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.entry-tag .style-list .type-life {
  background-color: #ffe1e1;
  border-color: #ffe1e1;
}

.entry-tag .style-list .type-design {
  background-color: #ede2ff;
  border-color: #ede2ff;
}

.entry-tag .style-list .type-bag {
  background-color: #c5ffbb;
  border-color: #c5ffbb;
}

.entry-tag .style-list .type-trick {
  background-color: #c3dbff;
  border-color: #c3dbff;
}

.recent-blog-list {
  gap: 24px;
  display: grid;
}

.recent-blog-list li {
  gap: 20px;
  display: flex;
}

.recent-blog-list .image {
  border-radius: 8px;
  width: 100%;
  max-width: 98px;
  overflow: hidden;
}

.recent-blog-list .post-content {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.sidebar-blog {
  gap: 32px;
  display: grid;
}

.sidebar-blog .sb-title {
  margin-bottom: 24px;
}

.sidebar-blog .sb-content {
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}

.sb-banner {
  position: relative;
}

.sb-banner .image {
  border-radius: 16px;
  overflow: hidden;
}

.sb-banner .title {
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
  line-height: 33.2px;
}

.sb-banner .banner-content {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 84px;
  left: 20px;
  right: 20px;
}

.sb-banner .tf-btn {
  letter-spacing: -.03em;
  width: max-content;
  padding: 12px 33px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
  line-height: 19px;
}

.wg-pagination {
  grid-column: 1 / -1;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 18px;
  display: flex;
}

.wg-pagination button:focus {
  box-shadow: none;
}

.wg-pagination .pagination-item {
  border: 1px solid var(--rgba-dark-3);
  width: 44px;
  height: 44px;
  color: var(--dark);
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  display: flex;
  border-radius: 50% !important;
}

.wg-pagination .pagination-item:hover, .wg-pagination .active .pagination-item {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.category-blog-list {
  gap: 5px;
  display: grid;
}

.leave-comment-wrap .title {
  color: var(--dark);
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 500;
  line-height: 38px;
}

.blog-item-v2 {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.blog-item-v2 .image-box, .blog-item-v2 .img-style {
  display: block;
}

.blog-item-v2 .entry-image {
  position: relative;
}

.blog-item-v2 .entry-tag {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.blog-item-v2 .tag {
  background-color: var(--white);
  color: var(--dark);
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 14px;
  line-height: 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.blog-item-v2 .tag:hover {
  background-color: var(--primary);
  color: var(--white);
}

.blog-item-v2 .entry-content {
  padding: 12px;
}

.blog-item-v2 .entry-content .info-box {
  gap: 10px;
  margin-bottom: 20px;
  display: grid;
}

.blog-item-v2 .entry-content .meta-list {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.blog-item-v2 .entry-content .meta-list .item {
  color: var(--text);
  padding: 4px 0 4px 14px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  position: relative;
}

.blog-item-v2 .entry-content .meta-list .item:before {
  content: "";
  background-color: var(--text);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.blog-item-v2 .entry-content .btn-readmore {
  color: #404cb7;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
}

.blog-item-v2 .entry-content .btn-readmore .icon {
  font-size: 15px;
}

.s-blog-single {
  padding-top: 100px;
  padding-bottom: 60px;
}

.s-blog-single .leave-comment-wrap {
  max-width: 952px;
  margin: auto;
}

.sec-blog {
  padding-top: 80px;
  padding-bottom: 176px;
}

.sec-blog.space-blog {
  padding-top: 56px;
}

.slider-default {
  position: relative;
}

.slider-default .swiper-slide {
  height: auto;
}

.slider-default .swiper-slide > * {
  height: 100%;
}

.slider-default .swiper-slide .slider-wrap {
  height: 500px;
}

.slider-default .box-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.slider-default .box-title-slider {
  gap: 10px;
  display: grid;
}

.slider-default .content-slider {
  gap: 34px;
  display: grid;
}

.slider-default .content-slider.style-2 {
  background-color: var(--white);
  border-radius: 16px;
  padding: 30px 15px;
  overflow: hidden;
}

.slider-default .slider-wrap .image {
  height: 100%;
}

.slider-default .slider-wrap img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider-default .slider-wrap.bg-type-1 {
  background: linear-gradient(256.55deg, #ffd1bb 0%, #fffedb 100%);
}

.slider-default .slider-wrap.bg-type-2 {
  background: linear-gradient(256.55deg, #f4e7fb 0%, #ffe9e9 25%, #ffedec 50%, #ffe9fd 100%);
}

.slider-default .slider-wrap.bg-type-3 {
  background: linear-gradient(256.55deg, #dcfaff 0%, #dbe3ff 100%);
}

.slider-default .slider-wrap.bg-type-4 {
  background: #d4edff;
}

.slider-default .slider-wrap.bg-type-5 {
  background: #eef0ff;
}

.slider-default .slider-wrap.bg-type-6 {
  background: #fff0f6;
}

.slider-default .slider-wrap.bg-type-7 {
  background: linear-gradient(-90deg, #ffe8e6 0%, #fff7d6 100%);
}

.slider-default .slider-wrap.bg-type-8 {
  background: linear-gradient(-90deg, #e6f4ff 0%, #ffecd6 100%);
}

.slider-default .slider-wrap.bg-type-9 {
  background: linear-gradient(-90deg, #f5e6ff 0%, #f1ffec 100%);
}

.tf-slideshow {
  position: relative;
  overflow: hidden;
}

.tf-slideshow .wrap-pagination {
  z-index: 1;
  position: absolute;
  bottom: 41px;
  left: 0;
  right: 0;
}

.slider-style-2 .slider-wrap {
  display: flex;
}

.slider-style-2 .image {
  width: 50%;
  margin-left: auto;
}

.slider-style-2 .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.slider-style-2 .box-content-left {
  background: #ba9272;
  display: flex;
  position: absolute;
  inset: 0 50% 0 0;
}

.slider-style-2 .box-btn-slider {
  justify-content: center;
  display: flex;
}

.slider-style-2 .box-title-slider {
  gap: 15px;
  display: grid;
}

.slider-style-2 .content-slider {
  gap: 36px;
  display: grid;
}

.slider-style-2 .wrap-pagination {
  bottom: 30px;
}

.slider-style-3 .slider-wrap {
  border-radius: 20px;
  overflow: hidden;
}

.slider-style-3 .wrap-pagination {
  margin-top: 30px;
}

.slider-effect-fade .swiper-slide .fade-item {
  opacity: 0;
  visibility: hidden;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  transform: translateY(100px);
}

.slider-effect-fade .swiper-slide .fade-item.fade-box {
  transition-delay: .4s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-1 {
  transition-delay: .5s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-2 {
  transition-delay: .6s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-3 {
  transition-delay: .7s;
}

.slider-effect-fade .swiper-slide .fade-item.fade-item-4 {
  transition-delay: .8s;
}

.slider-effect-fade .swiper-slide.swiper-slide-active .fade-item {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.slider-fashion-1 .image img {
  width: unset;
}

.slider-fashion-1 .slider-wrap.bg-type-2 .image {
  justify-content: end;
  display: flex;
}

.slider-fashion-1 .slider-wrap.bg-type-2 .image img {
  height: unset;
}

@keyframes spin-border {
  0% {
    transform: translate(-50%, -50%)rotate(0);
  }

  100% {
    transform: translate(-50%, -50%)rotate(360deg);
  }
}

.slider-fashion-2 .fs-cls {
  background-color: var(--surface);
  height: 100%;
}

.slider-fashion-2 .image {
  height: 100%;
}

.slider-electronic .slider-wrap.type-image-right {
  justify-content: end;
  align-items: center;
  display: flex;
}

.slider-electronic .box-title-slider {
  gap: 16px;
}

.slider-electronic .content-slider {
  gap: 32px;
}

.slider-fashion-3 .box-title-slider {
  gap: 17px;
}

.slider-fashion-3 .content-slider {
  gap: 40px;
}

.slider-fashion-3 .type {
  letter-spacing: -.02em;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.slider-fashion-3 .wrap-pagination {
  bottom: 33px;
}

.slider-skincare .box-title-slider {
  gap: 10px;
}

.slider-skincare .content-slider {
  gap: 40px;
}

.slider-skincare .wrap-pagination {
  bottom: 31px;
}

.slider-bicycle .box-title-slider {
  gap: 16px;
}

.slider-bicycle .box-content {
  top: unset;
  transform: unset;
  bottom: 40px;
}

.slider-phonecase {
  border-radius: 16px;
  margin: 27px 15px 0;
}

.slider-phonecase .wrap-pagination {
  bottom: 25px;
}

.slider-phonecase .tf-btn .icon {
  font-size: 12px;
}

.slider-phonecase .content-slider {
  gap: 40px;
}

.slider-pet .wrap-pagination {
  bottom: 25px;
}

.slider-electric-access .swiper {
  border-radius: 16px;
}

.slider-electric-access .wrap-pagination {
  bottom: 29px;
}

.slider-electric-access .box-title-slider {
  gap: 16px;
}

.slider-electric-access .content-slider {
  gap: 32px;
}

.slider-baby .wrap-pagination {
  bottom: 29px;
}

.slider-baby .content-slider {
  gap: 40px;
}

.slider-baby .box-title-slider {
  gap: 24px;
}

.slider-baby .box-content {
  top: 44%;
}

.slider-baby .clouds {
  z-index: 1;
  width: 100%;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.slider-baby .clouds img {
  width: 100%;
  height: auto;
  animation: 5s ease-in-out infinite alternate floating;
  right: 0;
}

@keyframes floating {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(20px);
  }
}

.slider-pod .box-title-slider {
  gap: 24px;
}

.slider-pod .content-slider {
  gap: 42px;
  max-width: 300px;
  margin: auto;
}

.slider-btn-thumbs {
  justify-content: center;
  align-items: center;
  gap: 42px;
  display: flex;
}

.slider-btn-thumbs .btn-thumbs {
  opacity: .2;
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.slider-btn-thumbs .btn-thumbs:hover, .slider-btn-thumbs .btn-thumbs.active {
  opacity: 1;
}

.slider-thumb-wrap {
  flex-direction: column;
  gap: 30px;
  display: flex;
}

.tes-jewelry-wrap {
  max-width: 994px;
  margin: 0 auto;
}

.slider-effect-zoom {
  position: relative;
}

.slider-effect-zoom img {
  -khtml-transition: all 15s linear;
  -o-transition: all 15s linear;
  object-fit: cover;
  -webkit-transition: all 15s linear;
  -moz-transition: all 15s linear;
  -ms-transition: all 15s linear;
  transition: all 15s linear;
}

.slider-effect-zoom .swiper-slide-active img {
  transform: scale(1.25);
}

.slider-default .parallax-wrap {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}

.slider-default .parallax-wrap .box-content {
  position: unset;
  transform: none;
}

.banner-group-img {
  display: block;
  position: relative;
}

.banner-group-img .banner-img {
  object-fit: cover;
  width: 100%;
  height: 350px;
}

.banner-group-img .box-content {
  background-color: var(--white);
  z-index: 5;
  max-width: 638px;
  margin: auto;
  padding: 30px 15px;
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}

.banner-group-img .box-content .subheading {
  margin-bottom: 12px;
  display: block;
}

.banner-group-img .box-content .heading {
  margin-bottom: 20px;
}

.banner-group-img .box-content .tf-btn {
  margin-top: 32px;
}

.slider-jewelry {
  padding-left: 30px;
  padding-right: 30px;
}

.slider-jewelry .heading {
  text-transform: capitalize;
  font-size: 80px;
  font-weight: 400;
  line-height: 110%;
}

.grid-cls {
  gap: 12px;
  display: grid;
}

.grid-cls-v1 {
  grid-template-columns: 1fr;
}

.grid-cls-v2 {
  grid-template-columns: 1fr 1fr;
}

.grid-cls-v4 {
  grid-template-columns: 1fr;
}

.grid-cls-v5 {
  grid-template-columns: 1fr 1fr;
}

.wg-cls {
  gap: 20px;
  display: grid;
  position: relative;
}

.wg-cls .cls-content {
  gap: 4px;
  display: grid;
}

.wg-cls.style-circle {
  width: 100%;
}

.wg-cls.style-circle .image {
  aspect-ratio: 1;
  border-radius: 5%;
}

.wg-cls.style-circle-md {
  gap: 16px;
  width: 100%;
}

.wg-cls.style-circle-md .image {
  border-radius: 50%;
  width: 99px;
  height: 99px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.wg-cls.style-circle-md .shop-all {
  border: 1px solid var(--dark);
  justify-content: center;
  align-items: center;
  display: flex;
}

.wg-cls.style-circle-md .shop-all img {
  width: 64px;
  height: 17px;
}

.wg-cls.style-circle2 {
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}

.wg-cls.style-square {
  width: 100%;
}

.wg-cls.style-square .image {
  background-color: var(--surface);
  border-radius: 8px;
}

.wg-cls.style-abs {
  border-radius: 16px;
  overflow: hidden;
}

.wg-cls.style-abs .cls-content, .wg-cls.style-abs .cls-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

.wg-cls.style-abs .cls-content {
  gap: 12px;
  display: grid;
}

.wg-cls.style-abs2 {
  gap: 10px;
}

.wg-cls.style-abs2 .image-wrap {
  position: relative;
  overflow: hidden;
}

.wg-cls.style-abs2 .image {
  border-radius: 20px;
  overflow: hidden;
}

.wg-cls.style-abs2 .cls-btn {
  text-align: center;
  z-index: 2;
  opacity: 0;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  transform: translateY(30px);
}

.wg-cls.style-abs2 .tf-btn {
  padding: 12px 25px;
  font-size: 14px;
  line-height: 17px;
}

.wg-cls.style-abs2 .tf-overlay {
  background: var(--dark);
  opacity: 0;
  -o-transition: all .3s ease-in-out;
  border-radius: 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wg-cls.style-abs2:hover .cls-btn {
  opacity: 1;
  transform: translateY(0);
}

.wg-cls.style-abs2:hover .tf-overlay {
  opacity: .2;
}

.wg-cls.style-abs2 .cls-content {
  gap: 5px;
  display: grid;
}

.wg-cls.style-abs2.style-lg {
  gap: 20px;
}

.wg-cls.style-02 .btn-cls {
  justify-content: space-between;
  align-items: center;
  padding-right: 3px;
  font-size: 18px;
  line-height: 100%;
  display: flex;
}

.wg-cls.style-02 .btn-cls .icon {
  -o-transition: all .3s ease-in-out;
  color: var(--dark);
  font-size: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.wg-cls.style-02 .btn-cls span {
  position: relative;
}

.wg-cls.style-02 .btn-cls span:after {
  content: "";
  background-color: var(--primary);
  -o-transition: all .3s ease-in-out;
  width: 0%;
  height: 1px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 2px;
  left: auto;
  right: 0;
}

.wg-cls.style-02 .btn-cls:hover .icon {
  color: var(--primary);
  transform: rotate(45deg);
}

.wg-cls.style-02 .btn-cls:hover span:after {
  width: 100%;
  left: 0;
  right: auto;
}

.wg-cls.asp-1 .image {
  aspect-ratio: .900971;
}

.wg-cls-2 {
  gap: 24px;
  display: grid;
}

.wg-cls-2 .img-box {
  border-radius: 16px;
  display: block;
  overflow: hidden;
}

.wg-cls-2 .box-title {
  gap: 8px;
  margin-bottom: 20px;
  display: grid;
}

.wg-cls-2 .content {
  text-align: center;
}

.cls-video {
  border-radius: 16px;
  height: 449px;
  font-family: Poppins, sans-serif;
  position: relative;
  overflow: hidden;
}

.cls-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.cls-video .poster {
  object-fit: cover;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  height: 100%;
  transition: opacity .5s;
  position: absolute;
  top: 0;
  left: 0;
}

.cls-video .poster.hide {
  opacity: 0;
  pointer-events: none;
}

.cls-video video {
  cursor: pointer;
  border-radius: 16px;
}

.cls-video .hover-video {
  height: 449px;
}

.cls-video:hover video {
  pointer-events: auto;
}

.cls-video .cls-content {
  z-index: 3;
  -o-transition: all .3s ease-in-out;
  background-color: #3f3f3fcc;
  border-radius: 61px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 10px;
  right: 10px;
}

.cls-video .box-product {
  align-items: center;
  gap: 12px;
  display: flex;
}

.cls-video .box-product .price-old {
  color: #9e9e9399;
}

.cls-video .box-product .price-old:after {
  background-color: #9e9e9399;
}

.cls-video .img-product {
  border-radius: 50%;
  max-width: 78px;
  overflow: hidden;
}

.cls-video .icon {
  background-color: var(--white);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 17px;
  display: flex;
}

.cls-video .info-product {
  gap: 10px;
  display: grid;
}

.cls-video .price-wrap {
  align-items: center;
  gap: 6px;
  display: flex;
}

.btn-cls-shop {
  align-items: center;
  gap: 8px;
  display: flex;
}

.btn-cls-shop:hover {
  color: var(--primary) !important;
}

.fs-cls .content {
  justify-content: center;
  display: flex;
  position: absolute;
  bottom: 24px;
  left: 12px;
  right: 12px;
}

.grid-jewelry .wg-cls .tf-btn {
  font-size: 18px;
  line-height: 22px;
}

.wg-cls-text {
  background-color: #e9e4dc;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 40px;
  display: flex;
}

.wg-cls-text .heading {
  margin-bottom: 16px;
}

.banner-shop {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.banner-shop .img-style {
  width: 100%;
  height: 100%;
  display: block;
}

.banner-shop .img-style img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-shop .tag {
  background-color: #ff7676;
  border-radius: 45px;
  padding: 10px 20px;
}

.banner-shop.style-left-center .content {
  justify-items: start;
  gap: 24px;
  display: grid;
  position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}

.banner-shop.style-left-center .box-title {
  justify-items: start;
  gap: 12px;
  display: grid;
}

.banner-shop.style-left-center .box-title .title {
  font-weight: 500;
}

.banner-shop.style-left-center .box-title .box-price {
  align-items: center;
  gap: 6px;
  display: flex;
}

.banner-shop.style-left-center .box-title .price-old {
  color: var(--rgba-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: line-through;
}

.banner-shop.style-bottom .content {
  justify-items: center;
  gap: 24px;
  display: grid;
  position: absolute;
  bottom: 24px;
  left: 12px;
  right: 12px;
}

.banner-shop.style-bottom .box-title {
  gap: 8px;
  display: grid;
}

.banner-shop.style-top .content {
  gap: 16px;
  display: grid;
  position: absolute;
  top: 30px;
  left: 15px;
  right: 15px;
}

.banner-shop.style-top .box-title {
  gap: 10px;
  display: grid;
}

.banner-shop .box {
  padding: 20px;
  right: auto !important;
}

.s-cls {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.s-cls .offer {
  border-radius: 22px;
  padding: 5px 12px;
  display: inline-block;
}

.s-cls .box-title {
  gap: 8px;
  display: grid;
}

.s-cls.style-absolute .content {
  gap: 24px;
  display: grid;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

.s-cls.abs-left-center .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-cls.abs-left-center .content {
  right: unset;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  bottom: unset !important;
}

.s-cls.abs-left-bottom .content {
  bottom: 15px;
  left: 15px;
}

.grid-mega .image {
  width: 100%;
  height: 100%;
}

.grid-mega .item1 {
  min-height: 400px;
}

.grid-mega .item2, .grid-mega .item3 {
  min-height: 287px;
}

.grid-vegetable .image {
  width: 100%;
  height: 100%;
}

.grid-vegetable .item3 {
  min-height: 400px;
}

.grid-vegetable .item3 .content {
  max-width: 351px;
}

.grid-vegetable .item1, .grid-vegetable .item2 {
  min-height: 287px;
}

.section-cls-tabs {
  gap: 64px;
  display: flex;
}

.section-cls-tabs .left {
  width: 43%;
}

.section-cls-tabs .right {
  border: 1px solid #252525;
  border-radius: 40px;
  width: 52.7%;
  padding: 78px 72px;
}

.section-cls-tabs .tab-content .tab-pane {
  height: 100%;
}

.section-cls-tabs .tab-content img {
  object-fit: cover;
  border-radius: 40px;
  width: 100%;
  height: 100%;
}

.section-cls-tabs .menu-tab-line {
  overflow: unset;
  flex-direction: column;
  gap: 0;
}

.section-cls-tabs .nav-tab-item {
  border-bottom: 1px solid #ebebeb;
}

.section-cls-tabs .nav-tab-item .tab-link {
  color: #1f1f1f99;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  font-size: 40px;
  line-height: 34px;
  display: flex;
}

.section-cls-tabs .nav-tab-item .tab-link .icon {
  width: 90px;
  height: 60px;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  -o-transition: all .3s ease-in-out;
  background-color: #f3ca54;
  border-radius: 99px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.section-cls-tabs .nav-tab-item .tab-link .icon:hover {
  color: var(--dark);
}

.section-cls-tabs .nav-tab-item .tab-link:after {
  background-color: #282828;
}

.section-cls-tabs .nav-tab-item .tab-link:hover, .section-cls-tabs .nav-tab-item .tab-link.active {
  color: #073c4e;
}

.section-cls-tabs .nav-tab-item .tab-link:hover .icon, .section-cls-tabs .nav-tab-item .tab-link.active .icon {
  opacity: 1;
  visibility: visible;
}

.flat-single-product {
  padding: 0 0 100px;
}

.stagger-wrap .stagger-item {
  opacity: 0;
  transition: all .3s ease-in-out;
  transform: scale(.5)rotate(90deg)skew(15deg);
}

.stagger-wrap .stagger-item.stagger-finished {
  opacity: 1;
  transform: scale(1)rotate(0)skew(0deg);
}

.slider-scroll, .product-thumbs-slider {
  gap: 10px;
  display: flex;
}

.thumbs-bottom {
  flex-direction: column;
}

.thumbs-bottom .tf-product-media-thumbs {
  order: 1;
  width: 100%;
}

.thumbs-bottom .flat-wrap-media-product {
  width: 100%;
}

.thumbs-bottom .flat-wrap-media-product .tf-product-media-main .item {
  max-height: none;
}

.tf-product-media-thumbs {
  flex-shrink: 0;
  width: 122px;
  max-height: 758px;
}

.tf-product-media-thumbs .swiper-slide {
  width: auto;
  height: max-content;
}

.tf-product-media-thumbs .swiper-slide .item {
  height: 100%;
  position: relative;
}

.tf-product-media-thumbs .swiper-slide .item img {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.tf-product-media-thumbs .swiper-slide .item:after {
  content: "";
  -o-transition: all .3s ease-in-out;
  border: 1px solid #0000;
  border-radius: 8px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  inset: 0;
}

.tf-product-media-thumbs .swiper-slide:not(.swiper-slide-thumb-active) .item {
  opacity: .6;
}

.tf-product-media-thumbs .swiper-slide.swiper-slide-thumb-active .item:after {
  border-color: #0006;
}

.wrap-btn-viewer {
  background-color: var(--white);
  z-index: 5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrap-btn-viewer .icon {
  font-size: 20px;
}

.tf-model-viewer-ui-button .wrap-btn-viewer {
  width: 44px;
  height: 44px;
}

.flat-wrap-media-product {
  width: calc(100% - 132px);
  position: relative;
}

.flat-wrap-media-product .tf-product-media-main {
  border-radius: 12px;
  height: 100%;
}

.flat-wrap-media-product .tf-product-media-main .item {
  width: 100%;
  height: 100%;
  max-height: 758px;
  display: flex;
  overflow: hidden;
}

.flat-wrap-media-product .tf-product-media-main .item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flat-wrap-media-product .tf-product-media-main .slide-3d, .flat-wrap-media-product .tf-product-media-main .slide-video {
  height: auto;
}

.tf-product-info-wrap {
  gap: 32px;
  display: grid;
}

.tf-product-info-wrap .tf-product-info-list {
  gap: 24px;
  display: grid;
}

.tf-product-info-wrap .tf-product-heading {
  border-bottom: 1px solid var(--line);
  gap: 12px;
  padding-bottom: 24px;
  display: grid;
}

.tf-product-info-wrap .brand-product {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.tf-product-info-wrap .product-rate {
  align-items: center;
  display: flex;
}

.tf-product-info-wrap .product-rate .list-star {
  align-items: center;
  margin-right: 6px;
  display: flex;
}

.tf-product-info-wrap .product-rate .icon {
  color: #98ab23;
  font-size: 16px;
}

.tf-product-info-wrap .product-rate .icon:not(:last-child) {
  margin-right: 5px;
}

.tf-product-info-wrap .product-rate .count-review {
  letter-spacing: -3%;
  color: var(--text);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
}

.tf-product-info-wrap .product-price {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  display: flex;
}

.tf-product-info-wrap .product-price .price-new {
  color: var(--primary);
}

.tf-product-info-wrap .product-price .price-old {
  color: var(--rgba-dark);
  text-decoration: line-through;
}

.tf-product-info-wrap .badge-sale {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 22px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.tf-product-info-wrap .product-stock {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  display: flex;
}

.tf-product-info-wrap .product-stock .icon {
  animation: 2s infinite tf-ani-flash;
}

.tf-product-info-wrap .product-stock .stock {
  border-radius: 5px;
  margin-right: 8px;
  padding: 5px 10px;
  font-weight: 500;
}

.tf-product-info-wrap .product-stock .in-stock {
  color: #1d770b;
  background-color: #2ca3151a;
}

.tf-product-info-wrap .product-stock .out-stock {
  color: #252525;
  background-color: #2525251a;
}

.tf-product-info-wrap .progress-sold {
  background-color: var(--line-4);
  border-radius: 5px;
  width: 100%;
  height: 5px;
  position: relative;
}

.tf-product-info-wrap .progress-sold .value {
  background-color: var(--primary);
  border-radius: 5px;
  height: 100%;
  transition: width 2s;
  position: relative;
}

.tf-product-info-wrap .product-progress-sale {
  margin-top: 8px;
}

.tf-product-info-wrap .product-progress-sale .title-hurry-up {
  color: var(--dark);
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 14.4px;
}

.tf-product-info-wrap .product-progress-sale .count {
  color: var(--primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.tf-product-info-wrap .tf-product-variant {
  gap: 24px;
  display: grid;
}

.tf-product-info-wrap .tf-product-variant .variant-picker-label {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
}

.tf-product-info-wrap .tf-product-variant .variant-picker-label-value {
  text-transform: capitalize;
  margin-left: 4px;
  font-weight: 500;
}

.tf-product-info-wrap .variant-color .variant-picker-values {
  gap: 12px;
  display: flex;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item) {
  text-align: center;
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  border: 1px solid #0000;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item) .check-color {
  -o-transition: all .3s ease-in-out;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-product-info-wrap .variant-color .color-btn:not(.select-item).active {
  border-color: var(--dark-2);
}

.tf-product-info-wrap .variant-color .color-btn.style-image {
  border: 1px solid var(--line);
  width: 56px;
  height: 56px;
  padding: 5px;
}

.tf-product-info-wrap .variant-color .color-btn.style-image .img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tf-product-info-wrap .variant-color .color-btn.style-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tf-product-info-wrap .variant-color .color-btn.style-image-square {
  border: 1px solid var(--line);
  border-radius: 6px;
  width: 80px;
  height: 100px;
  padding: 6px;
}

.tf-product-info-wrap .variant-color .color-btn.style-image-square .img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tf-product-info-wrap .variant-color .color-btn.style-image-square img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tf-product-info-wrap .variant-size .variant-picker-label {
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  display: flex;
}

.tf-product-info-wrap .variant-size .size-guide {
  font-size: 14px;
  line-height: 16.8px;
  text-decoration: underline;
}

.tf-product-info-wrap .variant-size .variant-picker-values {
  flex-wrap: wrap;
  gap: 16px;
  display: flex;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item) {
  border: 1px solid var(--line);
  width: 48px;
  height: 48px;
  color: var(--dark);
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-product-info-wrap .variant-size .size-btn:not(.select-item).active {
  border-color: var(--dark);
}

.tf-product-info-wrap .product-info-countdown {
  border: 1px solid var(--primary);
  border-radius: 8px;
  width: max-content;
  margin-top: 8px;
  padding: 20px;
  display: inline-block;
}

.tf-product-info-wrap .product-info-countdown .countdown-title {
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
  display: flex;
}

.tf-product-info-wrap .product-info-countdown .countdown__timer {
  gap: 12px;
  display: flex;
}

.tf-product-info-wrap .product-info-countdown .countdown__item {
  width: 48px;
  height: 32px;
  color: var(--white);
  background-color: var(--primary);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 24px;
  display: inline-flex;
  position: relative;
}

.tf-product-info-wrap .product-info-countdown .countdown__item:not(:last-child):after {
  content: ":";
  color: var(--dark);
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
}

.tf-product-info-wrap .product-info-countdown.type-1 {
  min-width: 276px;
}

.tf-product-info-wrap .product-info-countdown.type-1 .countdown__timer {
  justify-content: center;
}

.tf-product-info-wrap .product-info-countdown.type-1 .countdown__item {
  width: unset;
  color: #e83524;
  background-color: #0000;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
}

.tf-product-info-wrap .product-info-countdown.type-1 .countdown__item:after {
  color: #e83524;
}

.tf-product-info-wrap .tf-product-total-quantity .group-btn {
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  display: flex;
}

.tf-product-info-wrap .tf-product-total-quantity .group-btn .tf-btn {
  flex-grow: 1;
}

.tf-product-info-wrap .tf-product-total-quantity .group-btn .product-btns {
  color: #252525;
  border: 1px solid #ebebeb;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  font-size: 15px;
  display: flex;
}

.tf-product-info-wrap .tf-product-total-quantity .group-btn .product-btns:hover {
  color: var(--white);
  background-color: #252525;
}

.tf-product-info-wrap .tf-product-total-quantity .tf-btn {
  text-transform: none;
}

.tf-product-info-wrap .tf-product-total-quantity .btn-out-stock {
  background-color: var(--text);
  border-color: var(--text);
  cursor: not-allowed;
}

.tf-product-info-wrap .tf-product-total-quantity .more-choose-payment {
  text-align: center;
  margin-top: 12px;
  text-decoration: underline;
  display: block;
}

.tf-product-info-wrap .tf-product-extra-link {
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  display: flex;
}

.tf-product-info-wrap .tf-product-extra-link .product-extra-icon {
  align-items: center;
  gap: 6px;
  font-weight: 500;
  display: flex;
}

.tf-product-info-wrap .tf-product-extra-link .product-extra-icon .icon {
  font-size: 18px;
}

.tf-product-info-wrap .tf-product-trust-seal .list-card {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  display: flex;
}

.tf-product-info-wrap .tf-product-trust-seal .card-item {
  border: 1px solid #d9d9d9;
  border-radius: 2.5px;
  width: 45px;
  height: 32px;
}

.tf-product-info-wrap .tf-product-delivery-return {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
}

.tf-product-info-wrap .tf-product-delivery-return .product-delivery {
  text-align: center;
  gap: 10px;
  padding: 0 25px;
  display: grid;
}

.tf-product-info-wrap .tf-product-delivery-return .product-delivery .icon {
  color: var(--dark);
  font-size: 23px;
}

.tf-product-info-wrap .tf-product-delivery-return .product-delivery:not(:last-child) {
  border-right: 1px solid var(--line);
}

.tf-product-info-wrap .tf-product-pickup-available {
  gap: 8px;
  margin: 8px 0;
  display: flex;
}

.tf-product-info-wrap .tf-product-pickup-available .icon {
  color: var(--light-green);
  font-size: 21px;
}

.tf-product-info-wrap .tf-product-pickup-available .content {
  gap: 4px;
  display: grid;
}

.tf-product-info-wrap .tf-product-pickup-available .check-availability {
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
  text-decoration: underline;
}

.tf-product-info-wrap .form-group-product {
  margin-bottom: 8px;
}

.btn-add-wishlist .added, .btn-add-wishlist.added-wishlist .add {
  display: none;
}

.btn-add-wishlist.added-wishlist .added {
  display: block;
}

.wg-quantity {
  background-color: #f1f1f1;
  border-radius: 43px;
  justify-content: space-between;
  display: flex;
  overflow: hidden;
}

.wg-quantity .quantity-product {
  text-align: center;
  width: 42px;
  height: 42px;
  color: var(--dark);
  pointer-events: none;
  background-color: #0000;
  border: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
}

.wg-quantity .btn-quantity {
  color: #011624;
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  background-color: #0000;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 22px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.wg-quantity .btn-quantity:hover {
  color: var(--primary);
}

.wg-quantity.small .btn-quantity, .wg-quantity.small .quantity-product {
  width: 30px;
  height: 30px;
  font-size: 18px;
}

.wg-quantity.small .quantity-product {
  letter-spacing: -.03em;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
}

.tf-product-fbt {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.tf-product-fbt .title {
  margin-bottom: 16px;
}

.tf-product-fbt .tf-bundle-product-item {
  padding: 16.35px 0;
}

.tf-product-fbt .tf-product-form-bundle {
  gap: 24px;
  display: grid;
}

.tf-product-fbt .btn-submit-total {
  text-transform: none;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.tf-product-fbt .bundle-total-submit {
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  display: flex;
}

.tf-product-fbt .bundle-total-submit .text {
  margin-right: 10px;
}

.tf-product-fbt .bundle-total-submit .total-price {
  color: var(--primary);
  margin-right: 5px;
}

.tf-product-fbt .bundle-total-submit .total-price-old {
  color: var(--line-3);
  text-decoration: line-through;
}

.tf-product-fbt-wrap {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 15px;
}

.tf-product-fbt-wrap .list-fbt {
  align-items: center;
  gap: 25px;
  min-width: 100%;
  display: flex;
  overflow-x: auto;
}

.tf-product-fbt-wrap .list-fbt::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.tf-product-fbt-wrap .list-fbt::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.tf-product-fbt-wrap .list-fbt::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.tf-product-fbt-wrap .fbt-image {
  border-radius: 8px;
  width: 129px;
  min-width: 129px;
  overflow: hidden;
}

.tf-product-fbt-wrap .fbt-swatches {
  gap: 8px;
  display: grid;
}

.tf-product-fbt-wrap .fbt-info {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.tf-product-fbt-wrap .fbt-info .bundle-variant, .tf-product-fbt-wrap .fbt-info .bundle-title {
  margin-right: 10px;
}

.tf-product-fbt-wrap .fbt-info .bundle-price {
  gap: 6px;
  display: flex;
}

.tf-product-fbt-wrap .fbt-info .new-price {
  color: var(--primary);
}

.tf-product-fbt-wrap .fbt-info .old-price {
  color: #bfbfbf;
}

.tf-product-fbt-wrap .tf-product-form-fbt {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.tf-product-fbt-wrap .list-fbt {
  margin-bottom: 15px;
}

.tf-product-fbt-wrap .fbt-total-price {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.tf-product-fbt-wrap .fbt-total-price .price-new {
  color: var(--primary);
}

.tf-product-fbt-wrap .fbt-total-price .price-old {
  color: #bfbfbf;
  margin-left: 5px;
  font-size: 14px;
  line-height: 22.4px;
  text-decoration: line-through;
}

.tf-bundle-product-item {
  gap: 20px;
  display: flex;
}

.tf-bundle-product-item .bundle-check {
  align-self: center;
}

.tf-bundle-product-item .bundle-image {
  border-radius: 8px;
  width: 129px;
  min-width: 129px;
  overflow: hidden;
}

.tf-bundle-product-item .bundle-image img {
  width: 100%;
  height: 100%;
}

.tf-bundle-product-item .bundle-info {
  align-content: flex-start;
  gap: 8px;
  display: grid;
}

.tf-bundle-product-item .bundle-price .new-price {
  color: var(--primary);
}

.tf-bundle-product-item .bundle-price .old-price {
  color: var(--rgba-dark);
  text-decoration: line-through;
}

.tf-bundle-product-item .tf-select {
  width: max-content;
}

.item-has-checkbox {
  opacity: .4;
}

.item-has-checkbox.check {
  opacity: 1;
}

.wd-product-descriptions .item .title {
  margin-bottom: 5px;
}

.wd-product-descriptions .item:not(:last-child) {
  margin-bottom: 20px;
}

.wd-product-descriptions .item p, .wd-product-descriptions .item li {
  font-size: 14px;
  line-height: 22.4px;
}

.wd-product-descriptions .item ul li {
  padding-left: 20px;
  position: relative;
}

.wd-product-descriptions .item ul li:before {
  content: "";
  background-color: var(--dark);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
}

.wd-product-descriptions .list-policies {
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  display: flex;
}

.wd-product-descriptions .accordion-body {
  padding: 10px 0 30px;
}

.tf-product-side-accordions {
  margin-bottom: 42px;
}

.tf-product-side-accordions .wd-customer-review {
  flex-direction: column;
  gap: 42px;
}

.flat-single-grid {
  width: 100%;
}

.flat-single-grid .tf-product-media-main .item {
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: block;
  overflow: hidden;
}

.recent-blog-item {
  gap: 20px;
  display: flex;
}

.recent-blog-item .img-product {
  border-radius: 4px;
  width: 75px;
  height: 112px;
  display: block;
  overflow: hidden;
}

.recent-blog-item .img-product img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.recent-blog-item .content {
  align-content: flex-start;
  gap: 8px;
  display: grid;
}

.recent-blog-item .content .old-price {
  color: #5c5c5c;
  margin-left: 6px;
}

.recent-blog-item .content .new-price {
  color: var(--primary);
}

.flat-wrap-frequently-bought-together .product-thumbs-slider {
  margin-bottom: 30px;
}

.tf-product-volume-discount {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 15px;
}

.tf-product-volume-discount .title-discount {
  margin-bottom: 24px;
}

.tf-product-volume-discount .tf-btn {
  margin-top: 42px;
}

.list-volume-discount .volume-discount-item {
  border: 1px solid var(--line);
  -o-transition: all .3s ease-in-out;
  border-radius: 8px;
  align-items: center;
  gap: 14px;
  padding: 15px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.list-volume-discount .volume-discount-item:not(:last-child) {
  margin-bottom: 16px;
}

.list-volume-discount .volume-discount-item .content-discount {
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  display: flex;
}

.list-volume-discount .volume-discount-item .name span {
  color: var(--primary);
}

.list-volume-discount .volume-discount-item .info-discount, .list-volume-discount .volume-discount-item .discount-price {
  opacity: .8;
}

.list-volume-discount .volume-discount-item .check {
  background-color: #0000;
  border: 1px solid #9a9a9a;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 12px;
  height: 12px;
  display: inline-flex;
}

.list-volume-discount .volume-discount-item .check span {
  background-color: var(--white);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  display: block;
}

.list-volume-discount .volume-discount-item .discount-price {
  align-items: center;
  gap: 4px;
  display: flex;
}

.list-volume-discount .volume-discount-item .discount-price .price-new {
  color: var(--primary);
}

.list-volume-discount .volume-discount-item .discount-price .price-old {
  color: var(--text);
  font-size: 12px;
  line-height: 18px;
  text-decoration: line-through;
}

.list-volume-discount .volume-discount-item .tag-shipping {
  color: #22ae45cc;
  text-transform: uppercase;
  -o-transition: all .3s ease-in-out;
  border: 1px solid #22ae45;
  border-radius: 4px;
  padding: 4px 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.list-volume-discount .volume-discount-item .tag-sale {
  color: var(--rgba-white);
  border-radius: 4px;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  animation: 1s infinite pulse-rotate;
  display: flex;
  position: absolute;
  top: -2px;
  right: -15px;
}

.list-volume-discount .volume-discount-item .tag-sale .icon {
  color: var(--white);
  font-size: 14px;
}

.list-volume-discount .volume-discount-item .tag-sale.pos2 {
  animation-delay: .5s;
  right: -15px;
}

.list-volume-discount .volume-discount-item.active, .list-volume-discount .volume-discount-item:hover {
  background-color: #22ae45;
  border-color: #22ae45;
}

.list-volume-discount .volume-discount-item.active .check, .list-volume-discount .volume-discount-item:hover .check {
  border-color: var(--white);
}

.list-volume-discount .volume-discount-item.active .discount-price .price-new, .list-volume-discount .volume-discount-item.active .discount-price .price-old, .list-volume-discount .volume-discount-item.active .info-discount, .list-volume-discount .volume-discount-item.active span, .list-volume-discount .volume-discount-item:hover .discount-price .price-new, .list-volume-discount .volume-discount-item:hover .discount-price .price-old, .list-volume-discount .volume-discount-item:hover .info-discount, .list-volume-discount .volume-discount-item:hover span {
  color: var(--white);
}

.list-volume-discount .volume-discount-item.active .tag-shipping, .list-volume-discount .volume-discount-item:hover .tag-shipping {
  border-color: var(--white);
  color: var(--white);
}

.tf-product-volume-discount-thumbnail {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 15px 30px;
  overflow-x: auto;
}

.tf-product-volume-discount-thumbnail .title-discount {
  margin-bottom: 30px;
}

.tf-product-volume-discount-thumbnail .list-volume-discount-thumbnail {
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.list-volume-discount-thumbnail {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: -15px;
  padding-top: 15px;
  display: grid;
  overflow-x: auto;
}

.list-volume-discount-thumbnail::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.list-volume-discount-thumbnail::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-track);
}

.list-volume-discount-thumbnail::-webkit-scrollbar-thumb {
  background: var(--bg-scrollbar-thumb);
  border-radius: 4px;
}

.volume-discount-thumbnail-item {
  -o-transition: all .3s ease-in-out;
  border: 2px solid var(--line);
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.volume-discount-thumbnail-item .content-discount {
  text-align: center;
}

.volume-discount-thumbnail-item .content-discount .price-new, .volume-discount-thumbnail-item .content-discount .price-old, .volume-discount-thumbnail-item .content-discount .count {
  opacity: .8;
}

.volume-discount-thumbnail-item .content-discount .price-new {
  color: var(--primary);
  font-weight: 500;
}

.volume-discount-thumbnail-item .content-discount .price-old {
  color: #b0b0b0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.volume-discount-thumbnail-item .content-discount .tag-sold {
  height: 20px;
  color: var(--white);
  background-color: #ff9148;
  border-radius: 4px;
  margin-left: 4px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
}

.volume-discount-thumbnail-item .image-box {
  border-radius: 8px;
  width: 140px;
  height: 160px;
}

.volume-discount-thumbnail-item:hover, .volume-discount-thumbnail-item.active {
  background-color: #e9ffee;
  border-color: #22ae45;
}

.volume-discount-thumbnail-item .tag-sale {
  color: var(--rgba-white);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: -15px;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  animation: 1s infinite pulse2;
  display: flex;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
}

.volume-discount-thumbnail-item .tag-sale .icon {
  color: var(--white);
  font-size: 14px;
}

@keyframes pulse-rotate {
  0% {
    transform: scale(1)rotate(12deg);
  }

  50% {
    transform: scale(1.05)rotate(12deg);
  }

  100% {
    transform: scale(1)rotate(12deg);
  }
}

.card-product.style-wishlist {
  position: relative;
}

.card-product.style-wishlist > .icon {
  z-index: 25;
  background-color: var(--white);
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  border: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
}

.card-product.style-wishlist > .icon:hover {
  color: var(--primary);
}

.card-product.style-wishlist .list-product-btn {
  bottom: 24px !important;
}

.card-product.style-2 .list-product-btn {
  top: unset;
  right: unset;
  flex-direction: row;
  gap: 0;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
}

.card-product.style-2 .list-product-btn li {
  transition-delay: unset !important;
}

.card-product.style-2 .list-product-btn li:first-child .box-icon {
  border: 1px solid var(--line);
  border-radius: 30px 0 0 30px;
}

.card-product.style-2 .list-product-btn li:last-child .box-icon {
  border-radius: 0 30px 30px 0;
}

.card-product.style-2 .list-product-btn li:not(:first-child) .box-icon {
  border: 1px solid var(--line);
  border-left-color: var(--white);
}

.card-product.style-2 .list-product-btn .box-icon {
  border-radius: unset;
}

.card-product.style-2 .list-product-btn .box-icon:hover {
  border-color: var(--dark) !important;
}

.card-product.style-2 .list-product-btn .box-icon .icon-cart2 {
  margin-left: 2px;
}

.card-product.style-3 .list-product-btn {
  top: unset;
  right: unset;
  flex-direction: row;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}

.card-product.style-3 .list-product-btn .box-icon:hover {
  border-color: var(--dark) !important;
}

.card-product.out-of-stock .card-product-info {
  opacity: .6;
}

.card-product.out-of-stock .card-product-wrapper:before {
  content: "Sold Out";
  background-color: var(--dark);
  width: 92px;
  height: 92px;
  color: var(--white);
  opacity: 1;
  z-index: 5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-product.out-of-stock .card-product-wrapper > * {
  opacity: .6;
}

.card-product:not(.style-list) .size-box {
  z-index: 3;
  pointer-events: none;
  background: #929292b5;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px;
  transition: all .3s ease-out;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.card-product .product-btn-main {
  z-index: 5;
  -o-transition: all .3s ease-in-out;
  gap: 4px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-flex;
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
}

.card-product .product-btn-main .btn-main-product {
  background-color: var(--white);
  border-radius: 54px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px;
  display: flex;
}

.card-product .product-btn-main .btn-main-product:hover {
  background-color: var(--dark);
  color: var(--white);
}

.card-product .product-btn-main .btn-main-product.add-to-cart {
  -webkit-line-clamp: 1;
  white-space: nowrap;
  text-align: center;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.card-product .product-btn-main .btn-main-product.quickview {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: none;
}

.card-product .product-btn-main .icon {
  font-size: 17px;
}

.card-product .list-product-btn {
  bottom: 10px;
}

.card-product .on-sale-wrap {
  z-index: 5;
  gap: 6px;
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
}

.card-product .on-sale-wrap.pos2 {
  top: 10px;
  left: 10px;
  right: 10px;
}

.card-product .on-sale-wrap.type-2 .on-sale-item {
  width: max-content;
}

.card-product .on-sale-item {
  word-break: break-word;
  text-align: center;
  text-transform: capitalize;
  background-color: var(--primary);
  width: max-content;
  min-width: 50px;
  height: 26px;
  color: var(--white);
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  display: inline-flex;
  position: relative;
}

.card-product .on-sale-item.trending {
  background-color: #a474ff;
}

.card-product .on-sale-item.limited {
  background-color: #ff9c39;
}

.card-product .on-sale-item.new {
  background-color: #00bc29;
}

.card-product .price-wrap {
  color: var(--dark);
  font-size: 16px;
  line-height: 24px;
}

.card-product .price-wrap .price-new {
  color: var(--primary);
  margin-right: 2px;
}

.card-product .card-product-wrapper {
  aspect-ratio: .703704;
  z-index: 20;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.card-product .card-product-wrapper img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transition-duration: .7s;
  display: block;
}

.card-product .card-product-wrapper:hover .product-img .img-product {
  opacity: 0;
}

.card-product .card-product-wrapper:hover .product-img .img-hover {
  z-index: 1;
  opacity: 1;
  display: block;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.card-product .product-img {
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.card-product .product-img .img-hover {
  opacity: 0;
  position: absolute;
  inset: 0;
}

.card-product .list-product-btn {
  z-index: 6;
  flex-flow: column;
  align-items: center;
  gap: 8px;
  display: flex;
  position: absolute;
  top: 8px;
  right: 8px;
}

.card-product .box-icon {
  background-color: var(--white);
  width: 35px;
  height: 35px;
  color: var(--dark);
  border-radius: 50%;
  position: relative;
}

.card-product .box-icon .icon {
  font-size: 14px;
}

.card-product .box-icon svg {
  width: 18px;
}

.card-product .box-icon svg path {
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.card-product .box-icon:hover {
  color: var(--white);
  border-color: var(--dark);
  background-color: var(--dark) !important;
}

.card-product .countdown-box {
  z-index: 3;
  pointer-events: none;
  text-align: center;
  background-color: var(--white);
  width: max-content;
  max-height: 40px;
  color: var(--primary);
  border-radius: 22px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 10px 20px;
  transition: all .3s ease-out;
  display: none;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  overflow: hidden;
}

.card-product .countdown-box .countdown__timer {
  gap: 4px;
  display: flex;
}

.card-product .countdown-box .countdown__item {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
}

.card-product .countdown-box.style-2 {
  background-color: #ffeded;
}

.card-product .countdown-box.style-3 {
  background-color: var(--primary);
  color: var(--white);
  gap: 10px;
  padding: 10px 30px;
}

.card-product .countdown-box.style-3 .icon {
  font-size: 18px;
}

.card-product .countdown-box.pos1 {
  bottom: 16px;
}

.card-product .card-product-info {
  gap: 6px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: grid;
}

.card-product .card-product-info .inner-info-product {
  gap: 6px;
  display: grid;
}

.card-product .card-product-info .list-infor {
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
  padding-top: 24px;
  display: flex;
}

.card-product .card-product-info .list-infor .item {
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.card-product .name-product {
  -webkit-line-clamp: 2;
  text-transform: capitalize;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.card-product .list-color-product {
  margin-top: 2px;
}

.card-product .marquee-product {
  -o-transition: all .3s ease-in-out;
  z-index: 5;
  backdrop: blur(4px);
  background-color: #957127;
  flex-direction: row;
  width: 100%;
  padding: 5px 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  transform: none;
}

.card-product .marquee-product .infiniteslide {
  gap: 24px;
}

.card-product .marquee-product .infiniteslide .brand-item {
  height: unset;
  opacity: 1 !important;
}

.card-product.style-list {
  gap: 12px;
  display: flex;
}

.card-product.style-list .product-img {
  max-width: 342px;
}

.card-product.style-list .card-product-info {
  flex-shrink: 0;
  align-content: flex-start;
  gap: 12px;
  width: 60%;
  padding: 0;
  display: grid;
}

.card-product.style-list .info-list {
  gap: 8px;
  width: 100%;
  display: grid;
}

.card-product.style-list .list-product-btn {
  position: unset;
  flex-direction: unset;
  justify-content: flex-start;
  gap: 10px;
  display: flex;
}

.card-product.style-list .btn-main-product.add-to-cart {
  text-transform: none;
  width: 100%;
  max-width: 331px;
}

.card-product.style-list .box-icon {
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.card-product.style-list .box-icon:hover {
  border-color: var(--line);
}

.card-product.style-list .size-box {
  gap: 8px;
  display: flex;
}

.card-product.style-center {
  background-color: var(--white);
  border-radius: 16px;
}

.card-product.style-center .card-product-wrapper {
  aspect-ratio: .95;
}

.card-product.style-center .card-product-info {
  padding: 20px 12px;
}

.card-product.style-center .list-color-product {
  margin-top: 5px;
}

.card-product.style-center .countdown-box {
  bottom: 0;
}

.card-product.style-center .swatch-value:before {
  content: "";
  border: 1px solid #dcdcdc;
  border-radius: 50%;
  position: absolute;
  inset: 1px;
}

.card-product .product-progress-sale {
  gap: 6px;
  margin-top: 5px;
  display: grid;
}

.card-product .product-progress-sale .box-quantity {
  gap: 4px;
}

.card-product .product-progress-sale .box-quantity .text-sold {
  text-align: left;
}

.card-product .product-progress-sale .box-quantity .text-avaiable {
  text-align: right;
}

.card-product .progress-sold {
  background-color: var(--line);
  border-radius: 6px;
  width: 100%;
  height: 6px;
  position: relative;
}

.card-product .progress-bar {
  background-color: var(--primary);
  border-radius: 5px;
  height: 100%;
  transition: width 2s;
  position: relative;
}

.card-product.style-4 .card-product-info {
  padding: 20px 12px;
}

.card-product.style-4 .list-color-product {
  gap: 4px;
  margin-top: 4px;
}

.card-product.style-3 .product-btn-main .icon {
  margin-top: -3px;
}

.card-product .stock {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  overflow: hidden;
}

.card-product .stock .dot {
  border-radius: 50%;
  width: 10px;
  height: 10px;
  display: inline-block;
  position: relative;
}

.card-product .stock .dot:after {
  content: "";
  z-index: 2;
  border-radius: 50%;
  position: absolute;
  inset: 2px;
}

.card-product .stock.in-stock {
  color: #59a33b;
}

.card-product .stock.in-stock .dot {
  background-color: #78cb5757;
}

.card-product .stock.in-stock .dot:after {
  background-color: #78cb57;
}

.card-product .stock.out-stock {
  color: #ef5757;
}

.card-product .stock.out-stock .dot {
  background-color: #cb575757;
}

.card-product .stock.out-stock .dot:after {
  background-color: #ef5757;
}

.card-product .list-capacity-product .list-color-item {
  width: unset;
  height: unset;
  border: 1px solid #8e8e8e33;
  border-radius: 35px;
}

.card-product .list-capacity-product .list-color-item .text-quantity {
  padding: 2px 12px;
}

.card-product .list-capacity-product .list-color-item.active {
  border-color: var(--dark);
}

.card-product.style-5 {
  background-color: var(--white);
  border-radius: 16px;
}

.card-product.style-5 .card-product-info {
  padding: 20px 12px 22px;
}

.card-product.style-5 .card-product-info .tf-btn {
  width: 100%;
}

.card-product.style-5 .btn-addcart, .card-product.style-5 .stock {
  margin-top: 10px;
}

.card-product.style-border {
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
}

.card-product.style-border .card-product-wrapper {
  padding: 20px 12px;
}

.card-product.style-border .card-product-wrapper img {
  height: auto;
}

.card-product.style-border .card-product-wrapper .list-product-btn, .card-product.style-border .countdown-box {
  bottom: 16px;
}

.card-product.style-border .card-product-info {
  padding: 0 12px 20px;
}

.card-product.style-border .card-product-info .type {
  opacity: .6;
}

.card-product.style-border-2 {
  border: 1px solid var(--line);
  border-radius: 16px;
}

.card-product.style-border-2 .card-product-wrapper {
  padding: 12px 12px 20px;
}

.card-product.style-border-2 .product-img {
  border-radius: 16px;
  overflow: hidden;
}

.card-product.style-border-2 .card-product-info {
  padding: 0 12px 20px;
}

.card-product.style-border-2 .product-progress-sale {
  margin: 6px 0;
}

.card-product.style-border-2 .countdown-box {
  bottom: 12px;
}

.card-product.style-border-2.border-type-3 .tf-btn {
  margin-top: 8px;
}

.card-product.style-border-2.border-type-4 .card-product-wrapper {
  padding: 12px 11px 8px;
}

.card-product.style-border-2.border-type-4 .card-product-info {
  padding: 0 12px 16px;
}

.card-product.style-border-2.border-type-4 .list-product-btn {
  bottom: 8px;
}

.card-product.style-border-2.border-type-4 .list-product-btn .box-icon:hover {
  background-color: var(--purple) !important;
  border-color: var(--purple) !important;
}

.card-product.style-border-2.border-type-4 .tooltip, .card-product.style-border-2.border-type-4 .tooltip:before {
  background-color: var(--purple) !important;
}

.card-product.style-border-2.border-type-5 .product-progress-sale {
  margin: 0;
}

.card-product.style-border-2.border-type-5 .card-product-info {
  gap: 12px;
}

.card-product.style-border-2.style-box-bg .list-product-btn {
  bottom: 14px;
}

.card-product.style-border-2.style-box-bg .list-product-btn .box-icon:hover {
  background-color: var(--purple) !important;
  border-color: var(--purple) !important;
}

.card-product.style-border-2.style-box-bg .tooltip, .card-product.style-border-2.style-box-bg .tooltip:before {
  background-color: var(--purple) !important;
}

.card-product.line-purple .countdown-box {
  bottom: 14px;
}

.card-product.style-space .card-product-wrapper {
  padding: 12px 10px 20px;
}

.card-product.style-space .card-product-info {
  padding: 0 10px 20px;
}

.card-product.style-space-2 .card-product-wrapper {
  padding: 12px 10px 20px;
}

.card-product.style-space-2 .card-product-info {
  padding: 0 10px 20px;
}

.list-color-product {
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
  display: flex;
}

.list-color-product .list-color-item {
  -o-transition: all .4s ease-in-out;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  display: flex;
  position: relative;
}

.list-color-product .list-color-item .swatch-value {
  border: 2px solid var(--white);
  -o-transition: all .3s ease-in-out;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.list-color-product .list-color-item img {
  visibility: hidden;
  width: 18px;
  height: 18px;
  position: absolute;
}

.list-color-product .list-color-item.style-img {
  width: 40px;
  height: 40px;
}

.list-color-product .list-color-item.style-img .swatch-value {
  border: 0;
  width: 32px;
  height: 32px;
}

.list-color-product .list-color-item.style-img .swatch-value:before {
  display: none;
}

.list-color-product .list-color-item.style-img .swatch-value .swatch-img {
  position: unset;
  object-fit: cover;
  visibility: visible;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.list-color-product .list-color-item.style-img.active, .list-color-product .list-color-item.style-img:hover {
  border-color: var(--white) !important;
}

.list-color-product .list-color-item.line {
  border: 1px solid #0000 !important;
}

.list-color-product .list-color-item.line .swatch-value {
  position: relative;
}

.list-color-product .list-color-item.line .swatch-value:before {
  content: "";
  border: 1px solid var(--rgba-dark-3);
  z-index: 1;
  -o-transition: all .3s ease-in-out;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.list-color-product .list-color-item.active, .list-color-product .list-color-item:hover {
  border-color: var(--dark) !important;
}

.list-color-product .list-color-item.active .swatch-value, .list-color-product .list-color-item:hover .swatch-value {
  border-color: var(--white);
}

.list-color-product .list-color-item.active .swatch-value:before, .list-color-product .list-color-item:hover .swatch-value:before {
  border-color: var(--line);
}

.list-color-product .list-color-item.active.border-color-black, .list-color-product .list-color-item:hover.border-color-black {
  border-color: #252525 !important;
}

.list-color-product.style-2 .list-color-item.active .swatch-value, .list-color-product.style-2 .list-color-item:hover .swatch-value {
  border-color: #e7ecd2;
}

.list-color-product.style-2 .swatch-value {
  border: 2px solid #e7ecd2;
}

.price-wrap .price-old {
  color: var(--dark);
  opacity: .6;
  position: relative;
}

.price-wrap .price-old:after {
  content: "";
  background-color: var(--dark);
  opacity: .6;
  width: 100%;
  height: .5px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.price-wrap .price-old.old-line {
  color: var(--line-3);
  opacity: 1;
}

.price-wrap .price-old.old-line:after {
  background-color: var(--line-3);
}

.tf-sticky-btn-atc {
  z-index: 70;
  background-color: var(--white);
  width: 100%;
  transition: all .3s linear;
  position: fixed;
  bottom: 0;
  transform: translateY(100%);
  box-shadow: 4px -4px 5px #00000008;
}

.tf-sticky-btn-atc .tf-height-observer {
  column-gap: 5px;
  padding: 14px 0;
}

.tf-sticky-btn-atc .tf-sticky-atc-product {
  flex: 1 0;
  gap: 15px;
}

.tf-sticky-btn-atc .tf-sticky-atc-img {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
}

.tf-sticky-btn-atc .tf-sticky-atc-img img {
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.tf-sticky-btn-atc .tf-sticky-atc-variant-price {
  min-width: 249px;
}

.tf-sticky-btn-atc .tf-sticky-atc-title {
  font-size: 16px;
  line-height: 19px;
}

.tf-sticky-btn-atc .tf-sticky-atc-btns, .tf-sticky-btn-atc .tf-sticky-atc-infos form {
  align-items: center;
  gap: 12px;
  display: flex;
}

.tf-sticky-btn-atc .tf-btn {
  min-width: 190px;
}

.tf-sticky-btn-atc.show {
  transform: translateY(0);
}

.product-skincare .tf-product-media-thumbs-1 .swiper-slide, .product-skincare .tf-product-media-thumbs-1 img {
  width: 109px !important;
  height: 109px !important;
}

.form-group-product .tf-product-total-quantity {
  gap: 12px;
  display: grid;
}

.form-group-product .table-group-product {
  margin-bottom: 24px;
  overflow: auto;
}

.form-group-product .item-product {
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  display: flex;
}

.form-group-product .item-product:not(:last-child) {
  margin-bottom: 16px;
}

.form-group-product .item-product .img-product {
  border-radius: 4px;
  width: 83px;
  height: 83px;
}

.form-group-product .item-product .item-product-name {
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 265px;
  display: flex;
}

.form-group-product .item-product .item-product-content {
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  display: flex;
}

.form-group-product .item-product .item-product-price {
  flex-shrink: 0;
  width: 100%;
  max-width: 150px;
}

.form-group-product .item-product .price-new {
  color: var(--primary);
}

.form-group-product .item-product .price-old {
  color: var(--rgba-dark);
  text-decoration: line-through;
}

.form-group-product .item-product .note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 18px;
}

.form-group-product .item-product .available {
  color: var(--primary);
}

.form-group-product .item-product .in-stock {
  color: #34a853;
}

.form-group-product .item-product .tf-btn, .form-group-product .item-product .wg-quantity {
  flex-shrink: 0;
}

.form-group-product .item-product .item-product-action {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.tf-product-cate-sku {
  gap: 12px;
  display: grid;
}

.tf-product-cate-sku .item-cate-sku {
  align-items: center;
  gap: 10px;
  display: flex;
}

.tf-product-cate-sku .label {
  color: var(--text);
}

.tf-product-heading .btn-out-stock {
  margin-top: 8px;
}

.form-out-stock {
  border: 1px solid var(--dark);
  border-radius: 10px;
  gap: 24px;
  padding: 30px 15px;
  display: grid;
}

.form-out-stock .box-title-out-stock {
  gap: 12px;
  display: grid;
}

.form-out-stock .group-form-field {
  gap: 15px;
  display: grid;
}

.tf-product-payment-shipping {
  gap: 24px;
  display: grid;
}

.form-buyX-getY {
  border: 1px solid #272727;
  border-radius: 16px;
  padding: 30px 20px;
}

.form-buyX-getY .title-buyX-getY {
  text-align: center;
  margin-bottom: 32px;
}

.form-buyX-getY .tf-btn {
  width: 100%;
}

.form-buyX-getY .item-product {
  text-align: center;
  border: 1px solid var(--line);
  -o-transition: all .3s ease-in-out;
  border-radius: 10px;
  padding: 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.form-buyX-getY .item-product:hover {
  box-shadow: 0 4px 20px #0000001a;
}

.form-buyX-getY .item-product img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.form-buyX-getY .item-product .img-product {
  border-radius: 8px;
  overflow: hidden;
}

.form-buyX-getY .item-product select {
  color: #667085cc;
  border-radius: 6px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 20px;
}

.form-buyX-getY .item-product .info-product {
  padding-top: 20px;
}

.form-buyX-getY .item-product .name-product {
  margin-bottom: 10px;
  display: block;
}

.form-buyX-getY .item-product .price-product {
  gap: 6px;
  display: inline-flex;
}

.form-buyX-getY .item-product .variant-product {
  margin-top: 14px;
}

.form-buyX-getY .item-product .new-price {
  color: var(--primary);
}

.form-buyX-getY .item-product .old-price {
  color: #0009;
  text-decoration: line-through;
}

.form-buyX-getY .item-product .ribbon {
  color: var(--white);
  text-transform: uppercase;
  clip-path: polygon(100% 0%, 86% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
  z-index: 2;
  background-color: #a78bfa;
  padding: 5px 28px 5px 14px;
  font-weight: 500;
  position: absolute;
  top: -7px;
  left: -7px;
}

.form-buyX-getY .item-product:before {
  content: "";
  -webkit-transform: rotate(45deg);
  border-top: 7px solid #7154b4;
  border-right: 7px solid #0000;
  position: absolute;
  top: 26px;
  left: -7px;
  transform: rotate(90deg);
}

.form-buyX-getY .group-item-product {
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
  display: flex;
}

.form-buyX-getY .group-item-product .arrow {
  width: 52px;
  height: 52px;
  margin-left: -12px;
}

.tb-info-product {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  box-shadow: 0 0 0 1px var(--line);
  color: #1f1f1f;
  border-style: hidden;
  border-radius: 5px;
}

.tb-info-product tr {
  border: 1px solid var(--line);
  vertical-align: middle;
}

.tb-info-product tr th {
  border-right: 1px solid var(--line);
  background-color: #f3f3f3;
  padding: 10px 20px;
  font-weight: 500;
}

.tb-info-product tr td {
  padding: 10px 20px;
}

.wd-customer-review {
  align-items: flex-start;
  gap: 32px;
  display: flex;
}

.wd-customer-review .review-heading {
  justify-items: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 289px;
  display: grid;
}

.wd-customer-review .review-heading .icon-star {
  color: #ff6f61;
  font-size: 15px;
}

.wd-customer-review .box-rate-review {
  gap: 16px;
  width: 100%;
  display: grid;
}

.wd-customer-review .rating-summary {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.wd-customer-review .rating-summary .list-star {
  align-items: center;
  gap: 5px;
  display: flex;
}

.wd-customer-review .rating-breakdown-item {
  align-items: center;
  gap: 10px;
  display: flex;
}

.wd-customer-review .rating-breakdown-item:not(:last-child) {
  margin-bottom: 6px;
}

.wd-customer-review .rating-breakdown-item .rating-score {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 34px;
  display: flex;
}

.wd-customer-review .rating-breakdown-item .rating-bar {
  background-color: var(--line);
  width: 100%;
  height: 4px;
}

.wd-customer-review .rating-breakdown-item .value {
  background-color: var(--dark);
  height: 100%;
}

.wd-customer-review .review-section {
  flex-grow: 1;
}

.wd-customer-review .review-item {
  gap: 15px;
  display: flex;
}

.wd-customer-review .review-item:not(:last-child) {
  margin-bottom: 24px;
}

.wd-customer-review .review-item .review-avt {
  border-radius: 50%;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.wd-customer-review .review-item .review-avt img {
  width: 100%;
  height: 100%;
}

.wd-customer-review .review-item .review-content {
  gap: 15px;
  display: grid;
}

.wd-customer-review .review-item .review-meta {
  align-items: center;
  gap: 10px;
  display: flex;
}

.wd-customer-review .review-item .review-info {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.wd-customer-review .review-item .review-author {
  padding-right: 10px;
  position: relative;
}

.wd-customer-review .review-item .review-author:after {
  content: "";
  background-color: var(--line);
  width: 1px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.wd-customer-review .review-item .list-star {
  align-items: center;
  gap: 5px;
  display: flex;
}

.wd-customer-review .review-item .list-star .icon {
  color: var(--dark);
  font-size: 15px;
}

.wd-customer-review .review-item .star-4 .icon {
  color: #d2d2d2;
}

.wd-customer-review .review-item .star-4 .icon:first-child, .wd-customer-review .review-item .star-4 .icon:nth-child(2), .wd-customer-review .review-item .star-4 .icon:nth-child(3), .wd-customer-review .review-item .star-4 .icon:nth-child(4) {
  color: var(--dark);
}

.wd-customer-review .review-item .star-3 .icon {
  color: #d2d2d2;
}

.wd-customer-review .review-item .star-3 .icon:first-child, .wd-customer-review .review-item .star-3 .icon:nth-child(2), .wd-customer-review .review-item .star-3 .icon:nth-child(3) {
  color: var(--dark);
}

.wd-customer-review .review-item .star-2 .icon {
  color: #d2d2d2;
}

.wd-customer-review .review-item .star-2 .icon:first-child, .wd-customer-review .review-item .star-2 .icon:nth-child(2) {
  color: var(--dark);
}

.wd-customer-review .review-item .star-1 .icon {
  color: #d2d2d2;
}

.wd-customer-review .review-item .star-1 .icon:first-child {
  color: var(--dark);
}

.wd-customer-review .review-list {
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
  padding-bottom: 32px;
}

.form-review .box-rating {
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  display: flex;
}

.form-review .note, .form-review .title {
  margin-bottom: 24px;
}

.form-review .group-2-ip {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
  display: grid;
}

.form-review .check-save {
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  display: flex;
}

.form-review .tf-btn {
  width: 100%;
  max-width: 171px;
  margin-top: 32px;
}

.list-rating-check {
  flex-direction: row-reverse;
  justify-content: left;
  gap: 5px;
  display: flex;
}

.list-rating-check:not(:checked) > input {
  opacity: 0;
  position: absolute;
}

.list-rating-check:not(:checked) > label {
  cursor: pointer;
  white-space: nowrap;
  color: #d2d2d2;
  width: 15px;
  font-size: 15px;
  transition: all .2s ease-in-out;
}

.list-rating-check:not(:checked) > label:before {
  content: "";
  font-family: icomoon;
}

.list-rating-check > input:checked ~ label, .list-rating-check:not(:checked) > label:hover, .list-rating-check:not(:checked) > label:hover ~ label, .list-rating-check > input:checked + label:hover, .list-rating-check > input:checked + label:hover ~ label, .list-rating-check > input:checked ~ label:hover, .list-rating-check > input:checked ~ label:hover ~ label, .list-rating-check > label:hover ~ input:checked ~ label {
  color: var(--dark);
}

.wg-testimonial {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.wg-testimonial .content-top {
  gap: 10px;
  padding: 12px;
  display: grid;
}

.wg-testimonial .br-line {
  background-color: var(--line);
  width: 100%;
  height: 1px;
}

.wg-testimonial .box-avt {
  align-items: center;
  gap: 6px;
  padding: 12px;
  display: flex;
}

.wg-testimonial .box-avt .avatar {
  border-radius: 50%;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.wg-testimonial .box-avt .name-item {
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  display: flex;
}

.wg-testimonial .box-author {
  align-items: center;
  gap: 8px;
  display: flex;
}

.wg-testimonial .box-price {
  gap: 3px;
  display: grid;
}

.wg-testimonial.style-row {
  display: flex;
}

.wg-testimonial.style-row .image {
  flex-shrink: 0;
  width: 30%;
}

.wg-testimonial.style-2 .box-author .avt {
  border-radius: 50%;
  max-width: 28px;
  overflow: hidden;
}

.wg-testimonial.style-2 .box-avt .avatar {
  width: 72px;
  height: 72px;
}

.wg-testimonial.style-2 .list-star-default i {
  color: #edcb23;
}

.wg-testimonial.style-2.type-2 {
  padding: 20px;
}

.wg-testimonial.style-2.type-2 .br-line {
  margin: 15px 0;
}

.wg-testimonial.style-2.type-2 .content-top, .wg-testimonial.style-2.type-2 .box-avt {
  padding: 0;
}

.wg-testimonial.style-2.type-2 .bot {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.wg-testimonial.style-2 .box-btn .icon {
  font-size: 12px;
}

.box-verified {
  align-items: center;
  gap: 4px;
  display: flex;
}

.list-star-default {
  align-items: center;
  gap: 5px;
  display: flex;
}

.list-star-default i {
  color: #98ab23;
  font-size: 14px;
}

.wrapper-thumbs-tes {
  background-color: #b99272;
  border-radius: 16px;
  overflow: hidden;
}

.wrapper-thumbs-tes .box-right {
  place-content: center;
  padding: 24px;
}

.wrapper-thumbs-tes .box-left {
  display: none;
}

.wrapper-thumbs-tes .box-testimonial-main .list-star-default i {
  color: #e3ff34;
}

.flat-thumbs-tes .img-sw-thumb, .flat-thumbs-tes .tf-thumb-tes {
  height: 100%;
}

.flat-thumbs-tes .img-sw-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flat-thumbs-tes .sw-dot-default, .flat-thumbs-tes .box-nav-swiper {
  margin-top: 24px;
}

.flat-thumbs-tes .box-left .img-sw-thumb {
  background-color: var(--white);
}

.wrapper-thumbs-tes-2 .box-right {
  display: none;
}

.wrapper-thumbs-tes-2 .box-left {
  place-content: center;
}

.wrapper-thumbs-tes-2 .img-sw-thumb {
  border-radius: 16px;
  overflow: hidden;
}

.wrapper-thumbs-tes-4 .box-left {
  display: none;
}

.wrapper-thumbs-tes-4 .box-right {
  place-content: center;
}

.wrapper-thumbs-tes-4 .img-sw-thumb {
  border-radius: 16px;
  overflow: hidden;
}

.wrapper-thumbs-tes-4 .box-testimonial-main .box-content {
  gap: 12px;
  display: grid;
}

.wrapper-thumbs-tes-3 .box-right {
  display: none;
}

.wrapper-thumbs-tes-3 .box-left {
  place-content: center;
}

.wrapper-thumbs-tes-3 .img-sw-thumb {
  border-radius: 16px;
  overflow: hidden;
}

.box-testimonial-main {
  gap: 24px;
  display: grid;
}

.box-testimonial-main .content {
  gap: 20px;
  display: grid;
}

.box-testimonial-main .content .title-review {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.box-testimonial-main .box-author {
  align-items: center;
  gap: 12px;
  display: flex;
}

.box-testimonial-main .box-author .img {
  border-radius: 10px;
  flex-shrink: 0;
  width: 70px;
  height: 74px;
  overflow: hidden;
}

.box-testimonial-main .box-author .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.box-testimonial-main .box-author .info {
  gap: 4px;
  display: grid;
}

.box-testimonial-main .quote {
  font-size: 32px;
}

.wrapper-thumbs-tes-3 .box-testimonial-main .list-star-default .icon-star {
  color: #ffaa47;
}

.wrapper-thumbs-tes-3 .box-testimonial-main .text-review {
  font-size: 20px;
  line-height: 32px;
}

.wg-testimonial-2 .icon {
  font-size: 40px;
}

.wg-testimonial-2 .text {
  margin-top: 24px;
  line-height: 140%;
}

.wg-testimonial-3 {
  border-radius: 16px;
  gap: 20px;
  margin-bottom: 20px;
  display: grid;
}

.wg-testimonial-3 .box-top {
  gap: 12px;
  display: grid;
}

.wg-testimonial-3 .box-top .icon {
  font-size: 42px;
}

.wg-testimonial-3 .box-title-desc {
  gap: 16px;
  display: grid;
}

.wg-testimonial-3 .box-author {
  gap: 4px;
  display: grid;
}

.flat-wrapper-testimonial {
  border-radius: 16px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.flat-wrapper-testimonial .img-item-1 {
  animation: 10s ease-in-out infinite swing;
  top: 40px;
  right: 0;
}

.flat-wrapper-testimonial .img-item-2 {
  animation: 10s ease-in-out infinite swing;
  bottom: 30px;
  left: 16px;
}

.flat-wrapper-testimonial .sw-dot-default {
  margin-top: 0;
}

.flat-wrapper-testimonial .tf-swiper {
  max-width: 929px;
  margin: auto;
}

.tf-pin-btn {
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.tf-pin-btn span {
  border: 9px solid var(--white);
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: block;
}

.tf-pin-btn span:hover:after, .tf-pin-btn span:hover:before {
  content: "";
  border: solid 1px var(--white);
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.tf-pin-btn span:hover:before {
  animation: 2s linear infinite ripple-line;
}

.tf-pin-btn span:hover:after {
  animation: 2s linear 1s infinite ripple-line;
}

.tf-pin-btn.style-lg span {
  width: 28px;
  height: 28px;
}

.tf-pin-btn.style-hover:hover span {
  background-color: var(--primary);
}

.tf-pin-btn.style-dark {
  background-color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  display: flex;
}

.tf-pin-btn.style-dark span {
  background-color: var(--dark);
  -o-transition: all .3s ease-in-out;
  border: 0;
  width: 12px;
  height: 12px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-pin-btn.style-dark:hover {
  background-color: #ffffffb3;
}

.tf-pin-btn.style-dark:hover span {
  background-color: var(--primary);
}

.tf-pin-btn2 {
  cursor: pointer;
  z-index: 1;
  -o-transition: all .3s ease-in-out;
  background-color: #fff9;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 27px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: relative;
}

.tf-pin-btn2 span {
  background-color: var(--dark);
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.tf-pin-btn2:after, .tf-pin-btn2:before {
  content: "";
  border-radius: 9999px;
  animation: 3s infinite ripple-fill;
  position: absolute;
  inset: 0;
}

.tf-pin-btn2:after {
  animation-delay: .5s;
}

.tf-pin-btn2:before {
  animation-delay: .9s;
}

.tf-pin-btn2.active {
  width: 32px;
  height: 32px;
}

.tf-pin-btn2.active span {
  width: 12px;
  height: 12px;
}

.collection-position-3 {
  position: relative;
}

.cls-lookbook {
  overflow: unset;
  position: relative;
}

.cls-lookbook .img-style {
  border-radius: 20px;
  display: block;
}

.cls-lookbook .lookbook-item {
  position: absolute;
  bottom: 32%;
  left: 30%;
}

.cls-lookbook .lookbook-item.position1 {
  bottom: 12%;
  left: 40%;
}

.cls-lookbook .lookbook-item.position2 {
  bottom: 18%;
  left: 32%;
}

.cls-lookbook .lookbook-item.position3 {
  bottom: 10%;
  left: 58%;
}

.cls-lookbook .lookbook-item.position4 {
  bottom: 45%;
  left: 36%;
}

.cls-lookbook .lookbook-item.position5 {
  bottom: 16%;
  left: 70%;
}

.tf-sw-lookbook .cls-lookbook {
  width: 100%;
  height: 100%;
}

.lookbook-item .dropdown-menu {
  z-index: 99;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.loobook-product {
  background-color: var(--white);
  border-radius: 8px;
  align-items: center;
  gap: 24px;
  padding: 14px;
  display: flex;
  position: relative;
}

.loobook-product .content {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

.loobook-product .info {
  text-align: start;
  gap: 4px;
  display: grid;
}

.loobook-product .price-wrap {
  align-items: center;
  gap: 6px;
  display: flex;
}

.loobook-product .img-style {
  border-radius: 4px;
  flex-shrink: 0;
  overflow: hidden;
}

.loobook-product .btn-lookbook {
  background-color: var(--dark);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 17px;
  display: flex;
}

.loobook-product .btn-lookbook i {
  color: var(--white);
}

.loobook-product .btn-lookbook:hover {
  background-color: var(--primary);
}

.loobook-product .price-old {
  color: #c9c9c9;
  opacity: 1;
}

.loobook-product .price-old:after {
  background-color: #c9c9c9;
}

.loobook-product:before {
  content: "";
  border-style: solid;
  border-width: 8px;
  position: absolute;
}

.loobook-product.style-row {
  flex-direction: row;
}

.loobook-product.style-row .img-style {
  max-width: 72px;
}

.dropup .loobook-product {
  margin-top: 20px;
  margin-bottom: 20px;
}

.dropup .loobook-product:before {
  border-color: var(--white) transparent transparent transparent;
  bottom: -4%;
  left: 50%;
  transform: translateX(-50%);
}

.lookbook-item .dropend .dropdown-menu {
  --bs-dropdown-min-width: max-content;
  margin-left: 15px !important;
}

.lookbook-item .dropend .loobook-product {
  margin: -36px 0;
}

.sw-lookbook-wrap {
  margin-top: -70px;
  padding-top: 70px;
}

.banner-lookbook {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.banner-lookbook img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.banner-lookbook .lookbook-item {
  position: absolute;
  bottom: 32%;
  left: 52%;
}

.banner-lookbook .lookbook-item.position1 {
  bottom: 27%;
  left: 58%;
}

.banner-lookbook .lookbook-item.position2 {
  bottom: 14%;
  left: 32%;
}

.banner-lookbook .lookbook-item.position3 {
  bottom: 82%;
  left: 41%;
}

.dropdown-custom .dropdown-menu {
  --bs-dropdown-min-width: max-content;
}

.flat-with-text-lookbook {
  align-items: center;
}

.flat-with-text-lookbook .banner-img {
  position: relative;
}

.flat-with-text-lookbook .banner-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flat-with-text-lookbook .banner-img .tf-pin-btn {
  position: absolute;
}

.flat-with-text-lookbook .banner-img .tf-pin-btn.pin-1 {
  top: 40%;
  left: 43%;
}

.flat-with-text-lookbook .banner-img .tf-pin-btn.pin-2 {
  top: 85%;
  left: 43%;
}

.flat-with-text-lookbook .lookbook-content .box-title {
  gap: 12px;
  margin-bottom: 20px;
  display: grid;
}

.flat-with-text-lookbook .lookbook-content .swiper {
  width: 100%;
}

.flat-with-text-lookbook .lookbook-content .total-lb {
  margin-top: 20px;
}

.flat-with-text-lookbook-v2 .banner-img {
  width: 100%;
  position: relative;
}

.flat-with-text-lookbook-v2 .banner-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn {
  position: absolute;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn.pin-1 {
  top: 42%;
  left: 25%;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn.pin-2 {
  top: 30%;
  left: 44%;
}

.flat-with-text-lookbook-v2 .banner-img .tf-pin-btn.pin-3 {
  top: 62%;
  left: 80%;
}

.flat-with-text-lookbook-v2 .lookbook-content {
  width: 100%;
  padding: 0 15px 40px;
}

.flat-with-text-lookbook-v2 .lookbook-content .box-title {
  gap: 12px;
  margin-bottom: 20px;
  display: grid;
}

.flat-with-text-lookbook-v2 .lookbook-content .swiper {
  width: 100%;
}

.flat-with-text-lookbook-v2 .lookbook-content .total-lb {
  margin-top: 20px;
}

.flat-wrapper-lookbook {
  display: block;
}

.flat-wrapper-lookbook .image-lookbook {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.flat-wrapper-lookbook .image-lookbook img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.flat-wrapper-lookbook .image-lookbook .tf-pin-btn2 {
  position: absolute;
}

.flat-wrapper-lookbook .image-lookbook .pin-1 {
  bottom: 35%;
  left: 18%;
}

.flat-wrapper-lookbook .image-lookbook .pin-2 {
  bottom: 30%;
  left: 50%;
}

.flat-wrapper-lookbook .image-lookbook .pin-3 {
  top: 47%;
  right: 2%;
}

.flat-wrapper-lookbook .col-left {
  padding-bottom: 24px;
}

.flat-wrapper-lookbook .card-product .tf-btn {
  text-transform: none;
  font-size: 18px;
  line-height: 22px;
}

.slider-wrap-lb {
  position: relative;
}

.slider-wrap-lb .title {
  margin-bottom: 24px;
}

.slider-wrap-lb .swiper-button-prev {
  left: 0;
}

.slider-wrap-lb .swiper-button-next {
  right: 0;
}

.slider-wrap-lb .nav-swiper {
  top: 50%;
}

.slider-wrap-lb .card-product .card-product-info {
  padding: 20px 2px;
}

@keyframes ripple-line {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

@keyframes ripple-fill {
  0% {
    box-shadow: 0 0 #ffffff80;
  }

  50% {
    box-shadow: 0 0 0 20px #fff0;
  }

  100% {
    box-shadow: 0 0 #fff0;
  }
}

.wrapper-lookbook-1 .col-right {
  width: 49.31%;
}

.wrapper-lookbook-1 .image-lookbook .pin-1 {
  bottom: 30%;
  left: 63%;
}

.wrapper-lookbook-1 .image-lookbook .pin-2 {
  bottom: 49%;
  left: 49%;
}

.brand-item {
  -o-transition: all .3s ease-in-out;
  max-width: 240px;
  height: 114px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.brand-item img {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-brand:hover .brand-item {
  opacity: .4;
}

.tf-brand .brand-item:hover {
  opacity: 1;
}

.tf-brand.style-2 {
  gap: 64px;
  padding: 24px 0;
}

.tf-brand.style-2 .brand-item {
  max-width: unset;
  height: unset;
}

.fade-edge .infiniteslide_wrap {
  position: relative;
}

.fade-edge .infiniteslide_wrap:before, .fade-edge .infiniteslide_wrap:after {
  content: "";
  z-index: 5;
  pointer-events: none;
  width: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.fade-edge .infiniteslide_wrap:before {
  background: linear-gradient(to right, #fff, #0000);
  left: 0;
}

.fade-edge .infiniteslide_wrap:after {
  background: linear-gradient(to left, #fff, #0000);
  right: 0;
}

.sw-brand {
  border: 1px solid var(--line);
}

.sw-brand .brand-item {
  max-width: 100%;
  height: 100%;
}

.sw-brand:hover .swiper-slide img {
  opacity: .4;
}

.sw-brand .swiper-slide:hover img {
  opacity: 1;
}

.sw-brand .swiper-slide:not(:last-child) .brand-item {
  border-right: 1px solid var(--line);
}

.gallery-item {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.gallery-item .box-icon {
  background-color: var(--white);
  z-index: 2;
  width: 32px;
  height: 32px;
  color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gallery-item .box-icon:hover {
  background-color: var(--dark);
  color: var(--white);
}

.wrap-gallery {
  position: relative;
}

.wrap-gallery .wrap-gallery-icon {
  color: var(--white);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  background-color: #252525;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 20px;
  display: flex;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrap-gallery .wrap-gallery-icon:hover {
  color: #252525;
  background-color: var(--white);
}

.wrap-gallery:hover .wrap-gallery-icon {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.tf-zoom-main {
  z-index: 60;
  position: sticky;
  top: 30px;
}

.tf-zoom-main .drift-zoom-pane {
  z-index: 3;
  background: #fff;
  width: 100%;
  max-width: 520px;
  height: 520px;
  top: 0;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  box-shadow: 0 1px 5px #7f7f7f05, 0 5px 18px #7f7f7f33;
}

.drift-bounding-box.drift-open {
  z-index: 5000;
  background: #ffffff40;
  box-shadow: inset 0 0 0 1px #0006;
}

.drift-zoom-pane {
  z-index: 5000;
}

.other-image-zoom {
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.pswp__bg {
  background: var(--white);
}

.pswp__icn {
  fill: #222;
  color: var(--white);
}

.pswp__icn .pswp__icn-shadow {
  stroke: var(--white);
  stroke-width: 1px;
  fill: none;
}

.pswp__counter {
  color: #222;
  text-shadow: 1px 1px 3px #fff;
}

.tf-model-viewer {
  width: 100%;
  height: 100%;
  position: relative;
}

.tf-model-viewer model-viewer {
  z-index: 5;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.tf-model-viewer model-viewer.disabled {
  pointer-events: none;
}

.tf-model-viewer.active model-viewer {
  pointer-events: all;
}

.tf-model-viewer.active .wrap-btn-viewer {
  display: none;
}

.noUi-target, .noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  direction: ltr;
  position: relative;
}

.noUi-base, .noUi-connects {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: relative;
}

.noUi-connects {
  z-index: 0;
  overflow: hidden;
}

.noUi-connect, .noUi-origin {
  will-change: transform;
  z-index: 1;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-origin {
  left: auto;
  right: 0;
}

.noUi-vertical .noUi-origin {
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  position: absolute;
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
  -webkit-transition: transform .3s;
  transition: transform .3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  top: -5px;
  left: -17px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  top: -17px;
  left: -6px;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  left: auto;
  right: -17px;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after, .noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  top: 14px;
  left: 6px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips, .noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  color: #999;
  position: absolute;
}

.noUi-value {
  white-space: nowrap;
  text-align: center;
  position: absolute;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  background: #ccc;
  position: absolute;
}

.noUi-marker-sub, .noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  width: 100%;
  height: 80px;
  padding: 10px 0;
  top: 100%;
  left: 0;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  width: 2px;
  height: 5px;
  margin-left: -1px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  height: 100%;
  padding: 0 10px;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%, 0);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  color: #000;
  text-align: center;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  padding: 5px;
  display: block;
  position: absolute;
}

.noUi-horizontal .noUi-tooltip {
  bottom: 120%;
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.noUi-vertical .noUi-tooltip {
  top: 50%;
  right: 120%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.noUi-horizontal {
  height: 2px;
}

.noUi-target {
  border: 0;
}

.noUi-base .noUi-connects {
  background-color: var(--rgba-dark-3);
  border-radius: 999px;
}

.noUi-connect, .price-value-range .ant-slider-track {
  background-color: var(--primary);
}

.price-value-range .ant-slider-handle:after, .price-value-range .ant-slider-handle:focus:after {
  box-shadow: 0 0 0 2px var(--primary);
  outline: none;
}

:where(.css-dev-only-do-not-override-pjilya).ant-slider:hover .ant-slider-track {
  background-color: var(--primary);
}

:where(.css-dev-only-do-not-override-pjilya).ant-slider:hover .ant-slider-handle:after {
  box-shadow: 0 0 0 2px var(--primary);
}

.noUi-horizontal .noUi-handle, .noUi-vertical .noUi-handle {
  background-color: var(--primary);
  width: 12px;
  height: 12px;
  box-shadow: unset;
  cursor: pointer;
  border-radius: 50px;
}

.noUi-horizontal .noUi-handle:before, .noUi-horizontal .noUi-handle:after, .noUi-vertical .noUi-handle:before, .noUi-vertical .noUi-handle:after {
  content: none;
}

html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -5px;
}

.tf-btn-filter {
  cursor: pointer;
  color: var(--dark);
  border: solid 1px var(--line);
  text-transform: capitalize;
  background-color: var(--white);
  text-wrap: nowrap;
  text-overflow: ellipsis;
  border-radius: 27px;
  align-items: center;
  gap: 5px;
  min-width: 84px;
  max-width: 100%;
  padding: 8px 14px;
  font-weight: 400;
  display: inline-flex;
  overflow: hidden;
}

.tf-btn-filter .icon {
  font-size: 14px;
}

.tf-btn-filter:hover {
  border-color: var(--dark);
}

.tf-btn-filter.active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.tf-btn-filter .text {
  font-size: 14px;
  line-height: 20px;
}

.btn-filterDropdown .icon-close {
  font-size: 12px;
}

.widget-facet:not(:last-child) {
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.widget-facet .facet-title {
  cursor: pointer;
  color: var(--dark);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 10px 0;
  display: flex;
}

.widget-facet .facet-title .icon {
  font-size: 8px;
  transition: transform .35s linear;
}

.widget-facet .facet-title.collapsed .icon {
  transform: rotate(180deg);
}

.widget-facet .cate-item:not(:last-child) {
  margin-bottom: 12px;
}

.canvas-filter .widget-facet .facet-title {
  margin-bottom: 0;
}

.canvas-filter .widget-facet .collapse-body {
  padding-top: 20px;
}

.canvas-filter .sb-banner .image {
  height: 429px;
}

.canvas-filter .sb-banner .banner-content {
  bottom: 24px;
}

.current-scrollbar {
  max-height: 200px;
  margin-right: 5px;
  overflow-y: auto;
}

.current-scrollbar::-webkit-scrollbar {
  width: 2px;
}

.current-scrollbar::-webkit-scrollbar-track {
  background-color: var(--bg-scrollbar-thumb);
}

.current-scrollbar::-webkit-scrollbar-thumb {
  background: var(--dark);
}

.filter-group-check .list-item {
  cursor: pointer;
  align-items: center;
  gap: 10px;
  display: flex;
}

.filter-group-check .list-item .label {
  color: var(--dark);
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
}

.filter-group-check .list-item .tf-check:checked ~ .label {
  opacity: 1;
}

.filter-group-check .list-item:not(:last-child) {
  margin-bottom: 10px;
}

.filter-color-box {
  flex-wrap: wrap;
  gap: 10px 12px;
  display: flex;
}

.filter-color-box .color-item {
  -o-transition: all .3s ease-in-out;
  background-color: var(--white);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: block;
  overflow: hidden;
}

.filter-color-box .color-item .color {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}

.filter-color-box .color-item.line {
  border-color: var(--rgba-dark-3);
}

.filter-color-box .color-item.active {
  padding: 4px;
  border-color: var(--dark) !important;
}

.filter-color-box .color-text {
  display: none;
}

.filter-size-box {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.filter-size-box .size-item {
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  border: 1px solid var(--rgba-dark-3);
  color: var(--dark);
  border-radius: 11px;
  padding: 6px 14px;
  font-size: 14px;
  line-height: 22.4px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.filter-size-box .size-item.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.widget-price {
  gap: 16px;
  display: grid;
}

.reset-price {
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  font-size: 12px;
  line-height: 19.2px;
  text-decoration: underline;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.reset-price:hover {
  color: var(--primary);
}

.widget-price .price-box, .widget-price .box-value-price {
  gap: 8px;
  display: flex;
}

.widget-price .price-box {
  color: var(--primary);
}

.widget-price .price-val {
  color: var(--primary);
  font-size: 14px;
  line-height: 20px;
  position: relative;
}

.widget-price .price-val:before {
  content: attr(data-currency);
}

.tf-shop-control {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  display: flex;
}

.tf-shop-control.mb1 {
  margin-bottom: 24px;
}

.tf-filter-dropdown {
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  display: flex;
}

.tf-filter-dropdown .meta-dropdown-filter {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.tf-filter-dropdown .title-filter {
  color: var(--dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.tf-group-filter {
  align-items: center;
  gap: 10px;
  display: flex;
}

.tf-control-layout {
  align-items: center;
  display: flex;
}

.tf-control-layout .tf-view-layout-switch {
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-control-layout .tf-view-layout-switch:hover .item span, .tf-control-layout .tf-view-layout-switch.active .item span {
  background-color: var(--dark);
}

.icon-list {
  gap: 2px;
  display: grid;
}

.icon-list span {
  background-color: var(--rgba-dark-3);
  -o-transition: all .3s ease-in-out;
  border-radius: 2px;
  width: 18px;
  height: 3px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.icon-grid-2 {
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  display: grid;
}

.icon-grid-2 span {
  background-color: var(--rgba-dark-3);
  -o-transition: all .3s ease-in-out;
  border-radius: 2px;
  width: 3px;
  height: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.icon-grid-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  display: grid;
}

.icon-grid-3 span {
  background-color: var(--rgba-dark-3);
  -o-transition: all .3s ease-in-out;
  border-radius: 2px;
  width: 3px;
  height: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.icon-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  display: grid;
}

.icon-grid-4 span {
  background-color: var(--rgba-dark-3);
  -o-transition: all .3s ease-in-out;
  border-radius: 2px;
  width: 3px;
  height: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.icon-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  display: grid;
}

.icon-grid-5 span {
  background-color: var(--rgba-dark-3);
  -o-transition: all .3s ease-in-out;
  border-radius: 2px;
  width: 3px;
  height: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.icon-grid-6 {
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  display: grid;
}

.icon-grid-6 span {
  background-color: var(--rgba-dark-3);
  -o-transition: all .3s ease-in-out;
  border-radius: 2px;
  width: 3px;
  height: 18px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: inline-block;
}

.wrapper-control-shop {
  position: relative;
}

.wrapper-control-shop .wg-pagination {
  margin-top: 15px;
}

.wrapper-control-shop .tf-list-layout {
  gap: 24px;
  display: grid;
}

.wrapper-control-shop .tf-list-layout .wg-pagination {
  margin-top: 30px;
}

.wrapper-control-shop.loading-shop * {
  display: none;
}

.wrapper-control-shop.loading-shop:after {
  content: "";
  border: 2px solid #0000;
  border-top: 2px solid var(--dark);
  border-right: 2px solid var(--dark);
  z-index: 10000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: .5s linear infinite spin;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wrapper-shop {
  transition: all .3s ease-in-out;
  animation: .5s ease-in-out fadeShop;
}

@keyframes fadeShop {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

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

.listLayout-wrapper #product-count-grid {
  display: none;
}

.listLayout-wrapper #product-count-list, .gridLayout-wrapper #product-count-grid {
  display: block;
}

.gridLayout-wrapper #product-count-list {
  display: none;
}

.meta-filter-shop {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  display: flex;
}

.meta-filter-shop .count-text {
  color: var(--dark);
  font-size: 14px;
  line-height: 22.4px;
  position: relative;
}

.meta-filter-shop .count-text .count {
  margin-right: 4px;
  display: inline-block;
}

.meta-filter-shop #applied-filters {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.meta-filter-shop .filter-tag {
  border: 1px solid var(--line);
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  border-radius: 11px;
  align-items: center;
  gap: 4px;
  padding: 5px 14px;
  font-size: 14px;
  line-height: 22.4px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.meta-filter-shop .filter-tag .icon-close {
  justify-content: left;
  align-items: center;
  width: 15px;
  height: 15px;
  font-size: 10px;
  display: flex;
}

.meta-filter-shop .filter-tag:hover {
  border-color: var(--dark);
}

.meta-filter-shop .remove-all-filters {
  color: var(--dark);
  background-color: #0000;
  border-color: #0000;
  border-radius: 11px;
  align-items: center;
  gap: 10px;
  padding: 5px 14px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22.4px;
  display: flex;
}

.meta-filter-shop .remove-all-filters .icon {
  font-size: 10px;
}

.meta-filter-shop .remove-all-filters:hover {
  border-color: var(--dark);
}

.sidebar-filter {
  background-color: var(--white);
  -o-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.overlay-filter {
  z-index: 2000;
  background-color: var(--backdrop);
  visibility: hidden;
  opacity: 0;
  width: 100vw;
  height: 100vh;
  transition: opacity .15s linear;
  position: fixed;
  top: 0;
  left: 0;
}

.overlay-filter.show {
  opacity: 1;
  visibility: visible;
}

.loadItem.hidden {
  display: none;
}

#description p:not(:first-child) {
  margin-top: 20px;
}

.wrapper-filter-dropdown {
  position: relative;
}

.popup-shopping-cart .modal-content {
  flex-direction: column;
}

.popup-shopping-cart .wrap {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
}

.popup-shopping-cart .tf-mini-cart-threshold {
  padding: 24px 32px 21px;
}

.popup-shopping-cart .tf-mini-cart-threshold .text {
  margin-bottom: 31px;
  font-size: 14px;
  line-height: 22.4px;
}

.popup-shopping-cart .tf-mini-cart-threshold .tf-progress-bar {
  margin-top: 12px;
  margin-bottom: 16px;
}

.popup-shopping-cart .tf-mini-cart-wrap {
  flex-direction: column;
  flex-grow: 1;
  display: flex;
  position: relative;
}

.popup-shopping-cart .tf-minicart-recommendations {
  padding: 57px 32px 24px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading {
  margin-bottom: 24px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading .nav-swiper {
  position: unset;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item {
  padding: 9px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-mini-cart-image {
  border-radius: 8px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-mini-cart-image a {
  width: 100%;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-mini-cart-info .price-wrap {
  align-items: center;
  gap: 6px;
  display: flex;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-mini-cart-info .new-price {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item .tf-btn {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.popup-shopping-cart .tf-mini-cart-bottom {
  flex-shrink: 0;
  box-shadow: 0 4px 20px #0000001a;
}

.popup-shopping-cart .tf-mini-cart-tool {
  border-bottom: 1px solid #a1a1a133;
  justify-content: center;
  height: 70px;
  padding: 12px 32px;
  display: flex;
}

.popup-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn {
  text-align: center;
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  color: #000c;
  flex-direction: column;
  place-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.popup-shopping-cart .tf-mini-cart-tool .tf-mini-cart-tool-btn .icon {
  color: #98a2b3;
  font-size: 22px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap {
  padding: 24px 32px 34px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-totals-discounts {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-tax {
  opacity: .8;
  border-bottom: 1px solid var(--line);
  margin-bottom: 15px;
  padding-bottom: 14px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-checkbox {
  margin-bottom: 32px;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-cart-checkbox a:hover {
  color: var(--primary) !important;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout {
  gap: 10px;
  display: flex;
}

.popup-shopping-cart .tf-mini-cart-bottom-wrap .tf-mini-cart-view-checkout .tf-btn {
  text-transform: none;
}

.popup-shopping-cart .popup-header .icon-close-popup {
  padding-right: 0;
}

.popup-shopping-cart.style-2 {
  max-width: 100% !important;
}

.popup-shopping-cart.style-2 .modal-content {
  max-width: 748px !important;
}

.popup-shopping-cart.style-2 .canvas-wrapper {
  flex-direction: column;
  display: flex;
}

.popup-shopping-cart.style-2 .also-like-product {
  position: relative;
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap {
  gap: 24px;
  padding: 15px 15px 5px;
  display: flex;
  overflow-x: auto;
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar {
  height: 4px;
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-track {
  background: var(--line);
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item {
  gap: 12px;
  min-width: 225px;
  padding: 0;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image {
  border-radius: 8px;
  width: 95px;
  height: 126px;
  position: relative;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image a {
  width: 100%;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .on-sale-wrap {
  background-color: var(--primary);
  color: var(--white);
  border-radius: 99px;
  padding: 5px 10px;
  position: absolute;
  top: 6px;
  left: 6px;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-info {
  align-items: center;
  gap: 4px;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-info .title {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .price-wrap {
  margin-bottom: 4px;
}

.popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-btn {
  padding: 9px 19px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
}

.popup-shopping-cart.style-2 .popup-shopping-cart-main {
  border-left: 1px solid var(--line);
  flex-direction: column;
  flex-grow: 1;
  display: flex;
  overflow: hidden;
}

.popup-shopping-cart.style-2 .popup-shopping-cart-main .tf-mini-cart-sroll {
  padding-bottom: 15px;
}

.popup-shopping-cart.style-empty .popup-header .icon-close-popup {
  padding-right: 10px;
  font-size: 18px;
}

.popup-shopping-cart.style-empty .tf-mini-cart-threshold .tf-progress-bar {
  height: 5px;
}

.popup-shopping-cart.style-empty .cart-empty-wrap {
  text-align: center;
  padding: 0 15px;
}

.popup-shopping-cart.style-empty .cart-empty-wrap img {
  width: 100px;
}

.popup-shopping-cart.style-empty .cart-empty-wrap p, .popup-shopping-cart.style-empty .cart-empty-wrap img {
  margin-bottom: 15px;
}

.popup-shopping-cart.style-empty .tf-mini-cart-wrap {
  padding-top: 57px;
}

.popup-shopping-cart.style-empty .tf-mini-cart-wrap .tf-minicart-recommendations {
  padding-top: 0;
}

.popup-shopping-cart.style-empty .tf-mini-cart-items {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.tf-mini-cart-main {
  flex: auto;
  position: relative;
}

.tf-mini-cart-sroll {
  position: absolute;
  inset: 0;
}

.tf-mini-cart-sroll::-webkit-scrollbar {
  width: 4px;
}

.tf-mini-cart-sroll::-webkit-scrollbar-thumb {
  background: var(--primary);
}

.tf-mini-cart-sroll::-webkit-scrollbar-track {
  background: var(--line);
}

.tf-mini-cart-items {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.tf-mini-cart-item {
  gap: 10px;
  padding: 0 32px;
  display: flex;
}

.tf-mini-cart-item .tf-mini-cart-image {
  flex-shrink: 0;
  width: 95px;
  height: auto;
  display: block;
}

.tf-mini-cart-item .tf-mini-cart-image .img-product {
  position: relative;
}

.tf-mini-cart-item .tf-mini-cart-image .img-product img {
  border-radius: 8px;
}

.tf-mini-cart-item .tf-mini-cart-image .quantity {
  background-color: var(--primary);
  width: 24px;
  height: 24px;
  color: var(--white);
  z-index: 1;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  position: absolute;
  top: -10px;
  right: -10px;
}

.tf-mini-cart-item .tf-mini-cart-image a {
  width: 100%;
  height: 100%;
  display: block;
}

.tf-mini-cart-item .tf-mini-cart-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.tf-mini-cart-item .tf-mini-cart-info {
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  display: flex;
}

.tf-mini-cart-item .tf-mini-cart-info .info-variant {
  gap: 10px;
  width: max-content;
  display: flex;
  position: relative;
}

.tf-mini-cart-item .tf-mini-cart-info .info-variant p {
  appearance: none;
  z-index: 1;
  background: none;
  border: 0;
  margin-left: -5px;
  padding-left: 5px;
  padding-right: 20px;
  cursor: pointer !important;
}

.tf-mini-cart-item .tf-mini-cart-info .info-variant select option {
  padding: 5px;
}

.tf-mini-cart-item .tf-mini-cart-info .info-variant .edit {
  -o-transition: all .3s ease-in-out;
  font-size: 10px;
  line-height: 10px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.tf-mini-cart-item .tf-mini-cart-info .info-variant:hover .edit {
  color: var(--primary) !important;
}

.tf-mini-cart-item .tf-mini-cart-info .wg-quantity {
  width: 90px;
}

.tf-mini-cart-item .remove {
  cursor: pointer;
  -o-transition: all .3s ease-in-out;
  padding: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.tf-mini-cart-item .remove:hover {
  color: var(--primary);
}

.tf-mini-cart-tool-openable {
  z-index: 70;
  transition: transform .25s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);
}

.tf-mini-cart-tool-openable.open {
  transform: translateY(0);
}

.tf-mini-cart-tool-openable.open > .overplay {
  opacity: 1;
  visibility: visible;
}

.tf-mini-cart-tool-openable.open .tf-mini-cart-tool-content {
  box-shadow: 0 4px 20px #0000001a;
}

.tf-mini-cart-tool-openable > .overplay {
  opacity: 0;
  visibility: hidden;
  -o-transition: all .3s ease-in-out;
  background-color: #05050566;
  height: 200vh;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-close {
  cursor: pointer;
}

.tf-mini-cart-tool-openable .tf-btn {
  height: 47px;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content {
  z-index: 80;
  background-color: var(--white);
  padding: 32px 36px;
  position: relative;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-mini-cart-tool-text {
  color: #101828;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  display: flex;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-mini-cart-tool-text .icon {
  border: 1px solid var(--dark);
  width: 33px;
  height: 33px;
  color: var(--dark);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-cart-tool-btns {
  align-items: center;
  gap: 30px;
  display: flex;
}

.tf-mini-cart-tool-openable .tf-mini-cart-tool-content .tf-cart-tool-btns .tf-btn {
  text-transform: none;
  height: 52px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.tf-mini-cart-tool-openable.add-note textarea {
  height: 148px;
  margin-bottom: 24px;
}

.tf-mini-cart-tool-openable.coupon .tf-mini-cart-tool-text1 {
  color: #475467;
  margin-bottom: 7px;
}

.tf-mini-cart-tool-openable.coupon input {
  margin-bottom: 90px;
}

.tf-mini-cart-tool-openable.add-gift .tf-mini-cart-tool-text1 {
  color: #475467;
  margin-bottom: 127px;
}

.tf-mini-cart-tool-openable.estimate-shipping select {
  color: #667085;
  border-radius: 6px;
  height: 49px;
  font-size: 14px;
}

.tf-mini-cart-tool-openable.estimate-shipping .field {
  margin-bottom: 14px;
}

.tf-mini-cart-tool-openable.estimate-shipping .field p {
  color: #101828;
  margin-bottom: 8px;
}

.tf-mini-cart-tool-openable.estimate-shipping .tf-cart-tool-btns {
  margin-top: 30px;
}

.tf-mini-cart-tool-openable.estimate-shipping .error {
  color: #ff5757;
  margin-top: 20px;
}

.tf-mini-cart-tool-openable.estimate-shipping .success {
  margin-top: 20px;
}

.tf-mini-cart-tool-openable.estimate-shipping .success .standard {
  color: #46ba4c;
  margin-top: 10px;
}

.tf-progress-ship {
  background-color: var(--line-3);
  border-radius: 16px;
  width: 100%;
  height: 8px;
  position: relative;
}

.tf-progress-ship .value {
  background: var(--primary);
  border-radius: 16px;
  height: 100%;
  transition: width 2s;
  position: relative;
}

.tf-progress-ship .icon {
  background-color: var(--primary);
  width: 35px;
  height: 35px;
  color: var(--white);
  border: 3px solid #ffb5b5;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 95%;
  transform: translateY(-50%);
}

.tf-cart-head .title {
  margin-bottom: 35px;
}

.tf-cart-head .tf-progress-ship {
  background-color: var(--line-4);
}

.tf-cart-head .tf-progress-ship .value {
  background-color: #ff9752;
}

.tf-cart-head .tf-progress-ship .icon {
  background-color: #ff9752;
  border-color: #ffd1b3;
  width: 38px;
  height: 38px;
  font-size: 18px;
}

.table-page-cart {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
  line-height: 1.4;
}

.table-page-cart thead tr {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.table-page-cart thead tr th {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.table-page-cart td {
  padding: 18px 9px;
}

.table-page-cart .tf-cart-item {
  border-bottom: 1px solid var(--line);
}

.table-page-cart .tf-cart-item td:first-child {
  text-align: start;
  padding-left: 0;
}

.table-page-cart .tf-cart-item .wg-quantity {
  margin: auto;
  padding: 9px 6px;
}

.table-page-cart .tf-cart-item .wg-quantity .quantity-product {
  width: 30px;
  height: 30px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
}

.table-page-cart .tf-cart-item .wg-quantity .btn-quantity {
  align-items: flex-start;
  width: 30px;
  height: 30px;
  font-size: 20px;
}

.table-page-cart .tf-cart-item .tf-cart-item_total {
  width: 18%;
}

.table-page-cart .tf-cart-item_product {
  align-items: center;
  display: flex;
}

.table-page-cart .tf-cart-item_product .img-box {
  border-radius: 4px;
  flex-shrink: 0;
  max-width: 98px;
  max-height: 130px;
  margin-right: 10px;
  overflow: hidden;
}

.table-page-cart .tf-cart-item_product .cart-info .name {
  margin-bottom: 10px;
}

.table-page-cart .tf-cart-item_product .cart-info .variants {
  color: var(--rgba-dark);
  margin-bottom: 32px;
  font-size: 12px;
  line-height: 14.4px;
}

.table-page-cart .tf-cart-item_product .cart-info .remove-cart {
  color: var(--rgba-dark);
  font-size: 12px;
  line-height: 14.4px;
  text-decoration: underline;
}

.tf-page-cart-main .check-gift {
  gap: 8px;
  display: flex;
}

.tf-page-cart-main .check-gift .tf-check {
  margin-top: 2px;
}

.tf-page-cart-main .check-gift .label {
  font-size: 14px;
  line-height: 22.4px;
}

.tf-page-cart-main .box-ip-discount {
  max-width: 443px;
  margin: 24px 0;
}

.tf-page-cart-main .box-ip-discount .discount-ip {
  gap: 6px;
  display: flex;
}

.tf-page-cart-main .box-ip-discount .tf-btn {
  padding-top: 12px;
  padding-bottom: 12px;
}

.tf-page-cart-main .box-ip-discount input {
  padding-left: 12px;
  padding-right: 12px;
}

.tf-page-cart-main .box-ip-discount .discount-message {
  margin-top: 10px;
}

.tf-page-cart-main .box-ip-discount .discount-message.error {
  color: #ff5757;
}

.tf-page-cart-main .box-ip-discount .discount-message.success {
  color: #46ba4c;
}

.tf-page-cart-main .cart-note label {
  margin-bottom: 10px;
}

.tf-page-cart-main .cart-note textarea {
  height: 206px;
}

.tf-page-cart-main .form-cart {
  margin-bottom: 32px;
}

.tf-page-cart-main .fl-iconbox .tf-swiper {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.tf-page-cart-main .fl-iconbox .tf-icon-box .box-icon {
  width: 48px;
  height: 48px;
}

.tf-page-cart-main .fl-iconbox .tf-icon-box .icon {
  color: var(--primary);
  font-size: 18px;
}

.tf-page-cart-main .fl-iconbox .tf-icon-box .title {
  font-size: 16px;
  line-height: 24px;
}

.tf-page-cart-main .fl-iconbox .sw-dot-default {
  margin-top: 12px;
}

.tf-page-cart-sidebar .cart-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 15px;
}

.tf-page-cart-sidebar .cart-box:not(:last-child) {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .cart-box .feedback-message {
  text-align: center;
  margin-top: 10px;
}

.tf-page-cart-sidebar .cart-box .feedback-message.error {
  color: #ff5757;
}

.tf-page-cart-sidebar .cart-box .feedback-message.success {
  color: #46ba4c;
}

.tf-page-cart-sidebar .shipping-cart-box .title {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .shipping-cart-box .field label {
  margin-bottom: 8px;
}

.tf-page-cart-sidebar .shipping-cart-box .field:not(:last-child) {
  margin-bottom: 20px;
}

.tf-page-cart-sidebar .shipping-cart-box input {
  padding-left: 10px;
  padding-right: 10px;
}

.tf-page-cart-sidebar .shipping-cart-box input::placeholder {
  opacity: 1;
}

.tf-page-cart-sidebar .shipping-cart-box .tf-btn {
  margin-top: 8px;
}

.tf-page-cart-sidebar .shipping-cart-box .shipping-message {
  text-align: center;
  margin-top: 10px;
}

.tf-page-cart-sidebar .shipping-cart-box .shipping-message.error {
  color: #ff5757;
}

.tf-page-cart-sidebar .shipping-cart-box .shipping-message.success {
  color: #46ba4c;
}

.tf-page-cart-sidebar .checkout-cart-box .cart-head {
  border-bottom: 1px solid #a1a1a133;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.tf-page-cart-sidebar .checkout-cart-box .total-discount {
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  display: flex;
}

.tf-page-cart-sidebar .checkout-cart-box .check-agree {
  align-items: center;
  gap: 8px;
  display: flex;
}

.tf-page-cart-sidebar .checkout-cart-box .check-agree label {
  font-size: 14px;
  line-height: 22.4px;
}

.tf-page-cart-sidebar .checkout-cart-box .check-agree label a {
  text-decoration: underline;
}

.tf-page-cart-sidebar .checkout-cart-box .checkout-btn {
  margin-top: 32px;
  margin-bottom: 20px;
}

.tf-page-cart-sidebar .checkout-cart-box .cart-list-social {
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  display: flex;
}

.tf-page-cart-sidebar .checkout-cart-box .payment-card {
  border: 1px solid #d9d9d9;
  border-radius: 2.5px;
  width: 45px;
  height: 31.3px;
}

.tf-page-cart-sidebar .testimonial-cart-box {
  background: linear-gradient(113.78deg, #fff6d4 0%, #ffe3e3 100%);
  border-color: #0000;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-testimonial-main {
  gap: 24px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-testimonial-main .quote {
  font-size: 42px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-testimonial-main .icon-star {
  color: #ecb100;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-author {
  gap: 5px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-author .img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

.tf-page-cart-sidebar .testimonial-cart-box .box-nav-swiper {
  gap: 10px;
  margin-top: 24px;
}

.tf-page-cart-sidebar .testimonial-cart-box .nav-swiper {
  width: 32px;
  height: 32px;
}

.tf-page-cart-sidebar .testimonial-cart-box .nav-swiper:after {
  font-size: 10px;
}

.tf-page-cart-sidebar .order-box .title {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .order-box .list-order-product {
  border-bottom: 1px solid #a1a1a133;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.tf-page-cart-sidebar .order-box .order-item {
  align-items: center;
  gap: 10px;
  display: flex;
}

.tf-page-cart-sidebar .order-box .order-item:not(:last-child) {
  margin-bottom: 16px;
}

.tf-page-cart-sidebar .order-box .order-item .img-product {
  width: 72px;
  height: 94px;
  position: relative;
}

.tf-page-cart-sidebar .order-box .order-item .img-product img {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

.tf-page-cart-sidebar .order-box .order-item .img-product .quantity {
  background-color: var(--primary);
  width: 24px;
  height: 24px;
  color: var(--white);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  position: absolute;
  top: -12px;
  right: -12px;
}

.tf-page-cart-sidebar .order-box .order-item .content {
  flex-grow: 1;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  display: flex;
}

.tf-page-cart-sidebar .order-box .order-item .info {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.tf-page-cart-sidebar .order-box .order-item .info .variant {
  color: var(--rgba-dark);
  font-size: 12px;
  line-height: 14.4px;
}

.tf-page-cart-sidebar .order-box .list-total {
  border-bottom: 1px solid #a1a1a133;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.tf-page-cart-sidebar .order-box .list-total .total-item:not(:last-child) {
  margin-bottom: 12px;
}

.tf-page-cart-sidebar .order-box .btn-order {
  margin-top: 32px;
}

.tf-page-cart-sidebar .feedback-box .title, .tf-page-cart-sidebar .feedback-box .text {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .feedback-box .list-exp {
  gap: 20px;
  display: flex;
}

.tf-page-cart-sidebar .feedback-box .check-exp {
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 6px;
  align-items: center;
  gap: 8px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-page-cart-sidebar .feedback-box .check-exp:has(.tf-check-rounded:checked) .text-exp {
  color: var(--dark);
}

.tf-page-cart-sidebar .feedback-box .check-exp .text-exp {
  color: #667085cc;
}

.tf-page-cart-sidebar .box-share-social {
  margin-top: 56px;
}

.tf-page-cart-sidebar .box-share-social .title {
  margin-bottom: 24px;
}

.tf-page-cart-sidebar .social-item {
  color: var(--primary);
}

.tf-checkout-cart-main {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 15px;
}

.tf-checkout-cart-main .title {
  margin-bottom: 24px;
}

.tf-checkout-cart-main .grid-3, .tf-checkout-cart-main .grid-2 {
  gap: 16px;
}

.tf-checkout-cart-main .box-ip-shipping, .tf-checkout-cart-main .box-ip-contact, .tf-checkout-cart-main .box-ip-checkout {
  margin-bottom: 32px;
}

.tf-checkout-cart-main .box-ip-contact .title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tf-checkout-cart-main .box-ip-contact .title .link {
  border-bottom: 1px solid;
  padding: 2px 0;
}

.tf-checkout-cart-main .check-ship {
  border: 1px solid var(--line);
  -o-transition: all .3s ease-in-out;
  cursor: pointer;
  border-radius: 6px;
  gap: 8px;
  padding: 14px 16px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.tf-checkout-cart-main .check-ship:has(.tf-check-rounded:checked) {
  border-color: var(--primary);
}

.tf-checkout-cart-main .check-ship:has(.tf-check-rounded:checked) .text {
  color: var(--rgba-dark-2);
}

.tf-checkout-cart-main .check-ship .tf-check-rounded {
  flex-shrink: 0;
  margin-top: 5px;
}

.tf-checkout-cart-main .check-ship .text {
  color: #667085cc;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: space-between;
  gap: 12px;
  display: flex;
}

.tf-checkout-cart-main .check-payment {
  border: 1px solid var(--line);
  border-radius: 6px;
  gap: 8px;
  padding: 14px 16px;
  display: flex;
}

.tf-checkout-cart-main .check-payment .tf-check-rounded {
  flex-shrink: 0;
  margin-top: 5px;
}

.tf-checkout-cart-main .check-payment .text-payment {
  color: #667085cc;
}

.tf-checkout-cart-main .payment-method-box {
  margin-bottom: 32px;
}

.payment-item {
  border: 1px solid var(--line);
  border-radius: 6px;
}

.payment-item .payment-header {
  color: var(--dark);
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  display: flex;
}

.payment-item .payment-body {
  padding: 4px 16px 22px;
}

.payment-item .ip-card {
  position: relative;
}

.payment-item .ip-card input {
  padding-right: 55px;
}

.payment-item .ip-card .card-logo {
  width: 41px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.payment-item .cb-ship {
  gap: 8px;
  display: flex;
}

.payment-item .cb-ship input {
  margin-top: 2px;
}

.paypal-payment .payment-header {
  padding-right: 95px;
  position: relative;
}

.paypal-payment .payment-header .card-logo {
  width: 78px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.title-success-order .icon {
  width: 132px;
  height: 132px;
  margin-bottom: 32px;
}

.title-success-order .box-title {
  gap: 24px;
  display: grid;
}

.tf-main-success .box-progress-order {
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px;
  display: grid;
}

.tf-main-success .box-progress-order .order-progress-item {
  gap: 12px;
  display: grid;
}

.tf-main-success .box-progress-order .order-progress-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.tf-main-success .box-timeline-order {
  justify-content: space-between;
  max-width: 618px;
  margin: 64px auto 42px;
  display: flex;
}

.tf-main-success .box-timeline-order .line-time {
  background-color: #efefef;
  width: 100%;
  max-width: 208px;
  height: 1px;
  margin: 25px -10px 0;
  display: flex;
}

.tf-main-success .timeline-item {
  flex-shrink: 0;
  position: relative;
}

.tf-main-success .timeline-item .box-icon {
  width: 48px;
  height: 48px;
  color: var(--dark);
  background-color: #efefef;
  border-radius: 50%;
  margin: 0 auto 12px;
  font-size: 28px;
}

.tf-main-success .timeline-item .content {
  gap: 4px;
  display: grid;
}

.tf-main-success .timeline-item.active .box-icon {
  background-color: var(--primary);
  color: var(--white);
}

.tf-main-success .timeline-item.active .title {
  color: var(--primary);
}

.tf-main-success .map-order {
  border-radius: 8px;
  height: 500px;
  margin-bottom: 24px;
  overflow: hidden;
}

.tf-main-success .box-ship-address {
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 24px;
}

.tf-main-success .ship-address-item .title {
  margin-bottom: 24px;
}

.tf-main-success .ship-address-item .list-address li:not(:last-child) {
  margin-bottom: 8px;
}

.fl-order-testimonial {
  background-color: #ffeded;
  border-radius: 16px;
  padding: 24px;
}

.fl-order-testimonial .box-order-tes {
  justify-items: center;
  gap: 24px;
  display: grid;
}

.fl-order-testimonial .box-order-tes .content {
  gap: 16px;
  display: grid;
}

.fl-order-testimonial .box-order-tes .icon {
  color: var(--primary);
  font-size: 32px;
}

.fl-order-testimonial .sw-dot-default {
  margin-top: 24px;
}

.sidebar-order-success .order-box {
  padding-bottom: 60px;
}

.tf-cart-checkbox {
  cursor: pointer;
  align-items: center;
  gap: 8px;
  display: flex;
}

.tf-cart-checkbox .tf-checkbox-wrapp {
  place-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.tf-cart-checkbox .tf-checkbox-wrapp input {
  cursor: pointer;
  background-color: var(--white);
  opacity: 0;
  width: 14px;
  height: 14px;
  transition: all .2s ease-in-out;
  display: block;
}

.tf-cart-checkbox .tf-checkbox-wrapp input:checked + div {
  background-color: var(--primary);
}

.tf-cart-checkbox .tf-checkbox-wrapp input:checked + div i {
  transform: scale(1);
}

.tf-cart-checkbox .tf-checkbox-wrapp div {
  z-index: 5;
  background-color: var(--white);
  width: 14px;
  height: 14px;
  color: var(--white);
  pointer-events: none;
  border: 1px solid #0003;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  transition: all .25s ease-in-out;
  display: flex;
  position: absolute;
}

.tf-cart-checkbox .tf-checkbox-wrapp div i {
  font-size: 6px;
  transform: scale(0);
}

.tf-cart-checkbox label {
  cursor: pointer;
  font-weight: 400;
}

.tf-cart-checkbox label a {
  text-underline-offset: 2px;
  text-decoration: underline;
}

.tf-cart-checkbox .wrap-content {
  display: none;
}

.tf-cart-checkbox.check .wrap-content {
  display: block;
}

.main-content-account {
  gap: 30px;
  display: flex;
}

.main-content-account .my-acount-content {
  width: 100%;
}

.sidebar-account-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 100%;
  max-width: 244px;
  height: max-content;
}

.sidebar-account-wrap .my-account-nav-item {
  padding: 15px 12px;
  display: block;
}

.sidebar-account-wrap .my-account-nav-item:hover {
  background-color: var(--primary-4);
}

.sidebar-account-wrap .my-account-nav-item.active {
  color: var(--primary);
  background-color: var(--primary-4);
}

.sidebar-account-wrap li:not(:first-child) {
  border-top: 1px solid var(--line);
}

.canvas-sidebar .sidebar-account-wrap {
  max-width: unset;
}

.my-acount-content .box-account-title {
  gap: 16px;
  margin-bottom: 30px;
  display: grid;
}

.account-orders .title {
  margin-bottom: 42px;
}

.account-orders .wrap-account-order {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-x: auto;
}

.account-orders .wrap-account-order::-webkit-scrollbar {
  height: 3px;
}

.account-orders .wrap-account-order::-webkit-scrollbar-thumb {
  background: var(--surface);
  border-radius: 999px;
}

.account-orders table {
  text-align: center;
  border-radius: 8px;
  width: 100%;
  min-width: 700px;
}

.account-orders table thead, .account-orders table td, .account-orders table th {
  padding: 15px 20px;
}

.account-orders table thead tr, .account-orders table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.account-orders table .view-detail {
  border: 1px solid var(--dark);
  border-radius: 99px;
  padding: 5px 19px;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.account-orders table .view-detail:hover {
  background-color: var(--dark);
  color: var(--white);
}

.account-orders .account-no-orders-wrap {
  text-align: center;
  display: none;
}

.account-orders .account-no-orders-wrap img {
  margin-bottom: 42px;
}

.account-orders .account-no-orders-wrap .title {
  margin-bottom: 16px;
}

.account-orders .account-no-orders-wrap .text {
  margin-bottom: 32px;
}

.account-orders.no-orders .account-no-orders-wrap {
  display: block;
}

.account-orders.no-orders .account-orders-wrap {
  display: none;
}

.account-dashboard .content-account {
  gap: 15px;
  display: grid;
}

.account-dashboard .hello-name span {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.account-dashboard .hello-name .name {
  font-weight: 500;
}

.account-dashboard .hello-name a {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}

.account-dashboard .box-check {
  border: 1px solid var(--line);
  border-radius: 16px;
  height: 100%;
  padding: 45px 15px;
  display: block;
}

.account-dashboard .box-check .text {
  gap: 6px;
  display: grid;
}

.account-dashboard .icon {
  margin-bottom: 24px;
  display: inline-flex;
  position: relative;
}

.account-dashboard .icon i {
  font-size: 44px;
}

.account-dashboard .count-number {
  background-color: #ff6f61;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  display: inline-flex;
  position: absolute;
  top: -18px;
  right: -30px;
}

.account-dashboard .box-check-list {
  flex-wrap: wrap;
  gap: 24px;
  display: flex;
}

.account-dashboard .box-check-list > * {
  width: 100%;
}

.banner-account {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.banner-account.bg-linear {
  background: linear-gradient(270deg, #efe7ff 0%, #eaf3ff 100%);
}

.banner-account .banner-content-right {
  gap: 16px;
  display: grid;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.banner-account .banner-title {
  gap: 6px;
  display: grid;
}

.banner-account.banner-acc-countdown {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  padding: 30px;
}

.banner-account.banner-acc-countdown .banner-content-left {
  gap: 8px;
  display: grid;
}

.account-address-item {
  border: 1px solid var(--line);
  border-radius: 16px;
}

.account-address-item.active {
  border: 1px solid var(--primary);
}

.account-address-item .title {
  border-bottom: 1px solid var(--line);
  padding: 15px;
}

.account-address-item.active .title {
  border-bottom: 1px solid var(--primary);
}

.account-address-item .info-detail {
  color: var(--text);
  gap: 24px;
  padding: 15px;
  display: grid;
}

.account-address-item .box-infor {
  gap: 12px;
  display: grid;
}

.account-address-item .box-btn {
  gap: 12px;
  display: flex;
}

.account-address-item.editing {
  background-color: #fafafa;
}

.account-address .btn-add-address {
  margin-bottom: 42px;
}

.account-address .show-form-address {
  margin-bottom: 24px;
}

.form-edit-account {
  text-align: center;
}

.form-edit-account .form-name {
  text-align: left;
  margin-bottom: 28px;
}

.form-edit-account .form-pass {
  text-align: left;
}

.form-edit-account .title-form {
  text-align: left;
  margin-bottom: 32px;
}

.form-edit-account .title-pass {
  margin-bottom: 24px;
}

.form-edit-account .tf-field:not(:last-child) {
  margin-bottom: 15px;
}

.form-edit-account .tf-btn {
  margin-top: 32px;
}

.s-blog-list-v1 .blog-item, .s-blog-list-v2 .blog-item {
  margin-bottom: 40px;
}

.s-blog-list-v1 .blog-item:last-of-type, .s-blog-list-v2 .blog-item:last-of-type {
  margin-bottom: 60px;
}

.s-blog-list-grid {
  gap: 42px 24px;
}

.s-blog-list-grid.grid-2 .blog-item .entry_image {
  aspect-ratio: 464 / 395;
}

.s-blog-single .heading {
  text-align: center;
  gap: 20px;
  margin-bottom: 48px;
}

.s-blog-single .heading > .entry-tag, .s-blog-single .heading > .entry-meta {
  justify-content: center;
}

.s-blog-single .content {
  margin-bottom: 80px;
}

.s-blog-single .content .entry_image {
  border-radius: 16px;
  margin-bottom: 42px;
  overflow: hidden;
}

.s-blog-single .content .text {
  color: var(--text);
  text-align: center;
  width: 100%;
  max-width: 1008px;
  margin: 0 auto 42px;
  font-size: 16px;
  line-height: 24px;
}

.s-blog-single .group-image {
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 65px;
  display: flex;
}

.s-blog-single .group-image .entry_image {
  margin-bottom: 0 !important;
}

.s-blog-single .entry-social {
  align-items: center;
  gap: 15px;
  display: flex;
}

.s-blog-single .entry-social > p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.s-blog-single .bot {
  margin-bottom: 42px;
}

.s-blog-single .bot .entry-tag {
  margin-bottom: 20px;
}

.s-blog-single .related-post {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 32px 0 42px;
  display: flex;
}

.s-blog-single .related-post .post {
  align-items: center;
  gap: 20px;
  display: flex;
}

.s-blog-single .related-post .post:hover .icon {
  background-color: var(--primary);
  color: var(--white);
}

.s-blog-single .related-post .post:hover .name-post {
  color: var(--primary);
}

.s-blog-single .related-post p {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.s-blog-single .related-post p.name-post {
  -o-transition: all .3s ease-in-out;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 19px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.s-blog-single .related-post .icon {
  border: 1px solid var(--line);
  -o-transition: all .3s ease-in-out;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: flex;
}

.s-blog-single .related-post .text-wrap-left {
  text-align: left;
}

.s-blog-single .related-post .text-wrap-right {
  text-align: right;
}

.block-quote {
  background-color: #eeffde;
  border-radius: 16px;
  align-items: center;
  min-height: 230px;
  margin-bottom: 42px;
  padding: 30px;
  display: flex;
}

.block-quote p {
  text-align: center;
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.sb-contact {
  background-color: var(--surface);
  border-radius: 16px;
  padding: 40px;
}

.sb-contact .title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}

.sb-contact .sub {
  color: var(--text);
  margin-bottom: 28px;
  line-height: 22px;
}

.sb-contact .btn-group {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 252px;
  margin: 0 auto;
  display: flex;
}

.sb-contact .tf-btn {
  text-transform: none;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
}

.s-faq .faq-item:not(:last-child) {
  margin-bottom: 52px;
}

.s-faq .name-faq {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}

.s-term-user .content {
  gap: 11px;
  width: 100%;
  max-width: 1008px;
  margin: 0 auto;
  display: grid;
}

.s-term-user .term-title {
  color: var(--dark);
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}

.s-term-user .term-text span {
  color: var(--dark);
  font-weight: 500;
}

.s-term-user .text-wrap {
  gap: 24px;
  display: grid;
}

.tf-page-title {
  background-image: url("../media/page-title.3d48a3be.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 52px 0;
}

.tf-page-title .box-title {
  gap: 12px;
  max-width: 560px;
  margin: auto;
  display: grid;
}

.tf-page-title .breadcrumb-list {
  justify-content: center;
}

.breadcrumb-list {
  align-items: center;
  gap: 8px;
  display: flex;
}

.breadcrumb-list .breadcrumb-item {
  color: #757575;
}

.breadcrumb-list .breadcrumb-item:before {
  content: none;
}

.breadcrumb-list .dot {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.breadcrumb-list .dot span {
  background-color: #757575;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: inline-block;
}

.breadcrumb-list .current {
  color: var(--dark);
}

.breadcrumb-wrap {
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 27px;
  display: flex;
}

.breadcrumb-prev-next {
  color: var(--dark);
  align-items: center;
  gap: 10px;
  display: flex;
}

.breadcrumb-prev-next .breadcrumb-back {
  font-size: 20px;
}

.breadcrumb-prev-next .breadcrumb-next, .breadcrumb-prev-next .breadcrumb-prev {
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  font-size: 14px;
  display: flex;
}

.s-404 {
  padding: 100px 0;
}

.wg-404 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.wg-404 .image {
  width: 100%;
  max-width: 236px;
  margin-bottom: 12px;
}

.wg-404 .title {
  margin-bottom: 12px;
}

.wg-404 .sub {
  margin-bottom: 32px;
}

.wg-countdown .countdown__timer {
  gap: 20px;
  display: flex;
}

.wg-countdown .countdown__item {
  text-align: center;
  border: 1px solid var(--primary);
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  width: 90px;
  height: 90px;
  display: inline-flex;
  position: relative;
}

.wg-countdown .countdown__value {
  letter-spacing: -.02em;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  display: inline-block;
}

.wg-countdown .countdown__value .countdown__value--3 {
  width: 100%;
  max-width: 90px;
}

.wg-countdown-2 {
  border: 1px solid var(--line);
  background-color: var(--white);
  border-radius: 8px;
  width: max-content;
  padding: 16px 32px;
}

.wg-countdown-2.color-1 .countdown__value {
  color: #8f6dff;
}

.wg-countdown-2 .countdown__value {
  color: var(--primary);
  padding-top: 0;
  font-family: Be Vietnam Pro, serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
}

.wg-countdown-2 .countdown__timer {
  gap: 29px;
  display: flex;
}

.wg-countdown-2 .countdown__item {
  text-align: center;
  flex-direction: column;
  gap: 4px;
  min-width: 56px;
  display: flex;
}

.wg-countdown-2 .countdown__item:not(:last-child) .countdown__value {
  position: relative;
}

.wg-countdown-2 .countdown__item:not(:last-child) .countdown__value:after {
  content: ":";
  color: var(--dark);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translate(50%, -50%);
}

.wg-countdown-2 .countdown__item:first-child {
  min-width: 30px;
}

.wg-coming-soon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
  display: flex;
}

.wg-coming-soon .title {
  margin-bottom: 12px;
}

.wg-coming-soon .sub, .wg-coming-soon .wg-countdown {
  margin-bottom: 48px;
}

.wg-coming-soon .form-email-wrap {
  width: 100%;
  max-width: 482px;
  margin-bottom: 64px;
}

.wg-coming-soon .form-email-wrap .button-submit {
  right: 5px;
}

.wg-map.style-absolute {
  position: relative;
}

.wg-map.style-absolute .box-store {
  max-width: 419px;
  position: absolute;
  top: 50%;
  left: 30px;
  right: 15px;
  transform: translateY(-50%);
}

.wg-map.style-absolute .box-store:hover {
  background-color: var(--white);
}

.wg-map .map {
  border-radius: 16px;
  width: 100%;
  height: 589px;
  overflow: hidden;
}

.s-contact .content-right, .s-contact .content-left {
  gap: 20px;
  display: grid;
}

.s-contact .wg-map {
  margin-bottom: 91px;
}

.s-contact .sub-title {
  font-size: 16px;
  line-height: 26px;
}

.s-contact.style-2 {
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 15px;
  display: flex;
}

.s-contact.style-2 .content-left {
  z-index: 2;
  border-radius: 16px;
  justify-items: flex-start;
  gap: 15px;
  margin-bottom: 0;
  padding: 30px;
  position: relative;
}

.s-contact.style-2 .content-left .tf-btn {
  text-transform: none;
  margin-top: 20px;
  padding: 10px 24px;
}

.s-contact.style-2 .content-left .tf-social-icon .social-item:not(:hover) {
  border-color: var(--white);
  background-color: #0000;
}

.s-contact.style-2 .image-right {
  border-radius: 16px;
  overflow: hidden;
}

.s-contact.style-2 .image-right img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.contact-list {
  gap: 10px;
  display: grid;
}

.contact-list p {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
}

.contact-list a, .contact-list span {
  color: var(--text);
  font-weight: 400;
}

.box-store {
  border: 1px solid var(--line);
  background: var(--white);
  -o-transition: all .3s ease-in-out;
  border-radius: 16px;
  padding: 40px 24px 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.box-store .title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
}

.box-store .contact-list {
  gap: 0;
  margin-bottom: 20px;
}

.box-store:hover {
  background: var(--primary-4);
}

.box-store.style-2 {
  border-color: var(--white);
  gap: 15px;
  padding: 30px;
  display: grid;
}

.grid-box-store {
  gap: 24px;
}

.s-store-location .wg-map {
  margin-bottom: 24px;
}

.s-banner-colection .banner-content {
  background-color: #f7f7f7;
  border-radius: 16px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.s-banner-colection .box-content {
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
}

.s-banner-colection .box-title-banner {
  gap: 24px;
  display: grid;
}

.s-banner-colection.style-abs .box-content {
  padding: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
}

.s-banner-colection.style-abs-2 .box-content {
  padding: 0;
  position: absolute;
  top: 50%;
  left: 15px;
  right: 15px;
  transform: translateY(-50%);
}

.s-banner-colection.style-abs-2 .image img {
  object-fit: cover;
  min-height: 350px;
}

.banner-cls-bicycle .banner-content {
  width: 100%;
  height: 400px;
}

.banner-cls-electric .banner-content {
  background: linear-gradient(67.69deg, #eeefff 11.66%, #f6f0f0 47.21%, #ffeff6 82.77%);
  padding: 16px 0;
}

.banner-cls-electric .banner-content .box-title-banner {
  gap: 12px;
}

.banner-cls-mega-electric.style-abs-2 .image img {
  object-fit: cover;
  min-height: 296px;
}

.banner-cls-phonecase .banner-content {
  background-color: unset;
  border-radius: unset;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  display: flex;
}

.banner-cls-phonecase .banner-content > * {
  width: 100%;
}

.banner-cls-phonecase .box-content {
  margin: unset;
  padding: 0;
}

.banner-cls-phonecase .image {
  border-radius: 16px;
  overflow: hidden;
}

.banner-cls-petaccess .banner-content {
  background-color: #ffecce;
}

.banner-cls-electric-acc.style-abs-2 .box-content {
  background-color: var(--white);
  margin: unset;
  border-radius: 16px;
  padding: 30px 15px;
  left: 15px;
  right: 15px;
}

.banner-cls-mega-electric .new {
  background-color: #d2a40c;
  border-radius: 22px;
  justify-content: center;
  align-items: center;
  padding: 5px 12px;
  display: inline-flex;
}

.banner-cls-mega-electric .box-title-banner {
  justify-items: center;
}

.btn-sidebar-mb {
  z-index: 50;
  position: fixed;
  top: 200px;
  left: 0;
}

.btn-sidebar-mb button {
  border: 1px solid var(--dark);
  border-radius: 0;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
}

.btn-sidebar-mb button:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn-sidebar-mb.right {
  left: unset;
  right: 0;
  transform: rotate(180deg);
}

.s-banner-countdown {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.s-banner-countdown .image img {
  object-fit: cover;
  width: 100%;
  min-height: 488px;
}

.s-banner-countdown .banner-content {
  gap: 12px;
  display: grid;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.s-banner-countdown .box-title {
  gap: 4px;
  display: grid;
}

.banner-cd-phonecase {
  border-radius: 16px;
  margin: 0 12px;
  overflow: hidden;
}

.banner-cd-phonecase .banner-wrap {
  position: relative;
}

.banner-cd-phonecase .banner-content {
  z-index: 2;
  background-color: var(--white);
  border-radius: 16px;
  gap: 24px;
  padding: 30px 15px;
  display: grid;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-cd-phonecase .countdown__timer {
  gap: 12px;
}

.banner-cd-phonecase .countdown__timer .countdown__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.banner-cd-phonecase .box-title {
  gap: 8px;
  display: grid;
}

.banner-cd-phonecase .image img {
  width: 100%;
}

.s-banner-cd-baby .banner-container {
  background-color: #f3f2ee;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 50px;
  display: flex;
}

.s-banner-cd-baby .box-title {
  gap: 12px;
  display: grid;
}

.s-banner-cd-baby .content {
  gap: 24px;
  display: grid;
}

.s-banner-cd-baby .wg-countdown .countdown__item {
  background-color: var(--white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
}

.s-banner-cd-baby .wg-countdown .countdown__item .countdown__value {
  color: #f6620c;
  font-family: Grandstander, cursive;
  font-weight: 700;
}

.s-banner-product .content-banner {
  justify-content: center;
  gap: 42px;
  display: flex;
}

.s-banner-product .image-wrap {
  position: relative;
}

.s-banner-product .image {
  border-radius: 16px;
  max-width: 512px;
  overflow: hidden;
}

.s-banner-product .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-banner-product .content-right {
  flex-direction: column;
  justify-content: center;
  gap: 42px;
  display: flex;
}

.s-banner-product .content-right .box-title {
  gap: 10px;
  display: grid;
}

.s-banner-product .loobook-product {
  gap: 12px;
  padding: 12px;
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
}

.s-banner-with-text .content-banner {
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  display: flex;
}

.s-banner-with-text .box-title-banner {
  gap: 10px;
  display: grid;
}

.s-banner-with-text br {
  display: none;
}

.s-banner-with-text .image-banner {
  position: relative;
  overflow: hidden;
}

.s-banner-with-text .image {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.s-banner-with-text .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.s-banner-with-text .image-1:hover {
  z-index: 2;
  position: relative;
}

.banner-text-fashion .image-1 {
  max-width: 531px;
  margin-left: auto;
}

.banner-text-fashion .image-2 {
  z-index: 2;
  max-width: 316px;
  position: absolute;
  bottom: 44px;
  left: 71px;
}

.banner-text-fashion .image-2 .img-style {
  height: 100%;
}

.banner-text-skincare.type-2 .image-1 {
  width: 85%;
}

.banner-text-skincare.type-2 .image-2 {
  width: 44%;
  position: absolute;
  bottom: 5%;
  right: 0;
}

.banner-text-jewelry .image-1 {
  width: 85%;
}

.banner-text-jewelry .image-2 {
  z-index: 2;
  width: 39%;
  position: absolute;
  bottom: 5%;
  right: 0;
}

.banner-tagline-phonecase {
  gap: 50px;
  display: flex;
  position: relative;
}

.banner-tagline-phonecase .image {
  border-radius: 16px;
  overflow: hidden;
}

.banner-tagline-phonecase .content {
  flex-direction: column;
  gap: 24px;
  display: flex;
}

.banner-tagline-phonecase .list-tagline li {
  gap: 10px;
  padding: 15px;
  display: flex;
}

.banner-tagline-phonecase .list-tagline li .box-text {
  gap: 5px;
  display: grid;
}

.banner-tagline-phonecase .list-tagline li:not(:last-child) {
  border-bottom: 1px solid #59595933;
}

.banner-tagline-phonecase .icon i {
  color: #c596ff;
  font-size: 35px;
}

.flat-title {
  text-align: center;
  gap: 12px;
  margin-bottom: 30px;
  display: grid;
}

.flat-title.style-between {
  text-align: start;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.flat-title .box-title {
  gap: 12px;
  display: grid;
}

.flat-title.mb_1 {
  margin-bottom: 33px;
}

.flat-title.style-2 {
  gap: 10px;
}

.flat-title.style-line {
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  display: flex;
}

.flat-title.style-line .line-title {
  border-bottom: 1px solid var(--line);
  flex-grow: 1;
  display: block;
}

.flat-title-2 {
  gap: 20px;
  margin-bottom: 30px;
  display: grid;
}

.flat-title-2 .box-title {
  gap: 5px;
  display: grid;
}

.simpleParallax {
  width: 100%;
  height: 100%;
}

.simpleParallax img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wg-offer .image {
  border-radius: 16px;
  margin-bottom: 20px;
}

.wg-offer .content {
  gap: 12px;
  display: grid;
}

.wg-offer .box-title {
  gap: 8px;
  display: grid;
}

.flat-title-v2 {
  gap: 12px;
  margin-bottom: 30px;
  display: grid;
}

.tab-content .box-btn {
  margin-top: 24px;
}

.s-banner-bundle .bundle-wrap {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.s-banner-bundle .tf-swiper {
  width: 100%;
}

.s-banner-bundle .image-banner {
  width: 100%;
  height: 100%;
}

.s2-banner-bundle .bundle-wrap {
  border: 1px solid #f3a24b;
  border-radius: 16px;
  padding: 0 30px 30px;
  position: relative;
}

.s2-banner-bundle .flat-title {
  background-color: var(--white);
  width: fit-content;
  margin: -25px auto 8px;
}

.s2-banner-bundle .banner-bundle {
  width: 100%;
  height: 100%;
  position: relative;
}

.s2-banner-bundle .banner-bundle .item {
  animation: 10s ease-in-out infinite swing2;
  display: none;
  position: absolute;
  bottom: -77px;
}

.bundle-wrap .nav-swiper {
  width: 34px;
  height: 34px;
}

.bundle-wrap .nav-swiper.swiper-button-prev {
  left: -40px;
}

.bundle-wrap .nav-swiper.swiper-button-next {
  right: -40px;
}

@keyframes swing2 {
  20% {
    transform: rotate(5deg);
  }

  40% {
    transform: rotate(-4deg);
  }

  60% {
    transform: rotate(3deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  100% {
    transform: rotate(0);
  }
}

.s-banner-bundle .content-list {
  border: 1px solid var(--line);
  border-radius: 0 0 16px 16px;
  gap: 12px;
  padding: 24px 15px;
  display: grid;
}

.s-banner-bundle .list-recipe {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.s-banner-bundle .list-recipe .br--line {
  background-color: var(--line);
  width: 1px;
  height: 16px;
  display: block;
}

.flat-iconbox {
  padding: 33px 0;
}

.tf-compare-table {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow-x: scroll;
}

.tf-compare-table::-webkit-scrollbar {
  height: 4px;
}

.tf-compare-table::-webkit-scrollbar-thumb {
  cursor: grab;
  background: #d9d9d9;
  border-radius: 33px;
}

.tf-compare-row {
  display: flex;
}

.tf-compare-col {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-width: 240px;
  max-width: 240px;
  position: relative;
}

.tf-compare-col .tf-compare-item {
  text-align: center;
}

.tf-compare-col .tf-compare-item .tf-compare-image {
  aspect-ratio: .786241;
}

.tf-compare-item {
  gap: 15px;
  padding: 20px 15px;
  display: grid;
}

.tf-compare-item .tf-compare-image {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.tf-compare-item .tf-compare-image img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}

.tf-compare-item .icon-close {
  font-size: 8px;
}

.tf-compare-item .tf-compare-remove .tf-btn-icon {
  cursor: pointer;
  width: 48px;
  height: 48px;
}

.tf-compare-item .tf-compare-remove .tf-btn-icon:hover {
  border-color: var(--primary);
}

.tf-compare-item .tf-compare-remove .tf-btn-icon:hover i {
  color: var(--primary);
  transform: unset;
}

.tf-compare-item .content {
  gap: 10px;
  display: grid;
}

.tf-compare-field, .tf-compare-value {
  padding: 15px;
}

.tf-compare-value {
  justify-content: center;
  align-items: center;
  display: flex;
}

.tf-compare-stock {
  color: #48b02c;
  justify-content: center;
  align-items: center;
  gap: 10px;
  display: flex;
}

.list-esd .item {
  gap: 10px;
  padding: 20px 0;
  display: grid;
}

.list-esd .item:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.wrapper-wishlist .tf-wishlist-empty {
  grid-column: 1 / -1;
  width: 100%;
}

.wrapper-wishlist .tf-wishlist-empty .text-noti {
  margin-bottom: 32px;
}

.wrapper-wishlist .tf-wishlist-empty .btn-back-shop {
  width: 100%;
  max-width: 228px;
  font-family: DM Sans, sans-serif;
  font-weight: 600;
  line-height: 120%;
}

.box-testimonial-quote {
  background-color: #eeffde;
  border-radius: 16px;
  gap: 20px;
  padding: 30px 15px;
  display: grid;
}

.box-testimonial-quote .box-author {
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
}

.box-testimonial-quote .box-author .avt {
  border-radius: 50%;
  max-width: 32px;
  overflow: hidden;
}

.box-testimonial-quote .icon-star {
  font-size: 20px;
}

.mega-categories {
  background-color: var(--white);
  text-align: left;
  color: var(--dark);
  padding: 12px 4px 22px;
}

.mega-categories li:not(:last-child) {
  margin-bottom: 4px;
}

.mega-categories .cate-item {
  color: var(--dark);
  border-radius: 4px;
  align-items: center;
  gap: 12px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

.mega-categories .cate-item .img {
  background-color: var(--surface);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  overflow: hidden;
}

.mega-categories .cate-item:hover, .mega-categories .cate-item.active {
  background-color: var(--purple-2);
}

.mega-cate-box {
  border: 1px solid var(--purple);
  border-radius: 16px;
  overflow: hidden;
}

.mega-cate-box .categories-title {
  background-color: var(--purple);
  color: var(--white);
  text-transform: uppercase;
  align-items: center;
  gap: 4px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: flex;
}

.mega-cate-box .categories-title .icon {
  font-size: 20px;
}

.mega-box .mega-title-box {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  display: flex;
}

.mega-iconbox {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 12px;
}

.mega-iconbox .tf-icon-box:not(:last-child) {
  margin-bottom: 32px;
}

.image-compare {
  border-radius: 16px;
}

.image-compare .icv__arrow-wrapper {
  display: none;
}

.image-compare .icv__circle {
  background-color: #ffffff4d;
  width: 60px;
  height: 60px;
  position: relative;
  border-color: #0000 !important;
}

.image-compare .icv__circle:after {
  content: "";
  background-color: var(--white);
  border-radius: 999px;
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-compare .icv__circle:before {
  content: "";
  z-index: 1;
  font-family: icomoon;
  font-size: 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.image-compare .icv__label {
  color: var(--dark);
  background-color: var(--white);
  border-radius: 40px;
  padding: 9px 24px;
  font-family: Albert Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  bottom: 24px;
}

.image-compare .icv__label-before {
  left: 24px;
}

.image-compare .icv__label-after {
  right: 24px;
}

.img-viewer-compare-wrap {
  margin-bottom: 40px;
}

.banner-why-shop {
  padding-left: 15px;
  padding-right: 15px;
}

.s2-banner-with-text {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 1143px;
  margin: auto;
  display: flex;
}

.s2-banner-with-text .content-with-text {
  justify-items: left;
  gap: 20px;
  display: grid;
}

.s2-banner-with-text .box-title-content {
  gap: 12px;
  display: grid;
}

.s3-banner-with-text {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  display: flex;
}

.s3-banner-with-text .content-with-text {
  justify-items: left;
  gap: 20px;
  display: grid;
}

.s3-banner-with-text .image-banner {
  flex-shrink: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.s3-banner-with-text .image-banner .image {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.s3-banner-with-text .image-banner .image-1 {
  z-index: 2;
  width: 41.6%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.s3-banner-with-text .image-banner .image-2 {
  width: 74%;
  margin-left: auto;
}

.s3-banner-with-text .box-title-content .subtitle {
  margin-bottom: 10px;
  display: inline-block;
}

.s3-banner-with-text .box-title-content .title {
  margin-bottom: 12px;
}

.banner-cls-baby .item {
  max-width: 217px;
  animation: 10s linear infinite alternate moveRight;
  display: none;
  position: absolute;
  bottom: -35px;
  right: -69px;
}

.grid-cls-suppermarket .s-cls .img-style {
  width: 100%;
  height: 100%;
}

@keyframes moveRight {
  0% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(20px);
  }
}

.section-results .results-item {
  margin-bottom: 83px;
}

.section-bought-together {
  position: relative;
}

.section-bought-together h3.title {
  background-color: var(--white);
  z-index: 2;
  padding: 0 34px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-bought-together .wrapper {
  z-index: 1;
  border: 1px solid #f2bd7b;
  border-radius: 16px;
  padding: 103px 15px 82px;
  position: relative;
  overflow: hidden;
}

.section-bought-together .wrapper:before {
  content: "";
  -webkit-mask-composite: xor;
  z-index: -1;
  background: linear-gradient(#f2bd7b 0%, #8575ea 100%);
  border-radius: 16px;
  padding: 1px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-size: auto, auto;
  -webkit-mask-repeat: repeat, repeat;
  -webkit-mask-clip: content-box, border-box;
  -webkit-mask-origin: content-box, border-box;
  mask-composite: exclude;
  mask-mode: match-source, match-source;
}

.section-bought-together .swiper {
  max-width: 1074px;
  margin-left: auto;
  margin-right: auto;
}

.section-asked-questions .content {
  flex-direction: column;
  gap: 34px;
  display: flex;
}

.section-asked-questions .content .bot {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.section-asked-questions .content .bot a {
  max-width: 229px;
}

.section-asked-questions .faq-wrap {
  background-color: var(--white);
  border-radius: 20px;
  padding: 64px 48px;
}

.section-asked-questions .faq-wrap .widget-accordion:first-child {
  border-top: 0;
}

.section-asked-questions .faq-wrap .widget-accordion:last-child {
  border-bottom: 0;
}

.accordion-button:not(.collapsed) {
  background-color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
  outline: 0;
}

.skeleton {
  background: linear-gradient(90deg, #eee, #f5f5f5, #eee) 0 0 / 200% 100%;
  animation: 1.2s infinite shimmer;
}

.skeleton-image {
  border-radius: 8px;
  height: 150px;
}

.skeleton-text {
  border-radius: 4px;
  height: 20px;
  margin-top: 10px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-card {
  background: #fff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 8px 4px #0000000d;
}

.list-product-btn, .size-box, .list-color-product {
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 10px;
  padding: 0;
  list-style: none;
  display: flex;
}

.skeleton-img {
  background: linear-gradient(90deg, #eee, #f5f5f5, #eee) 0 0 / 200% 100%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: 1.2s infinite shimmer;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@media (width >= 768px) and (width <= 1200px) {
  .flat-wrapper-lookbook .image-lookbook .pin-1 {
    bottom: 38%;
    left: 2%;
  }
}

@media (width >= 992px) and (width <= 1200px) {
  .sb-contact {
    padding: 30px 15px;
  }

  .form-buyX-getY .group-item-product {
    align-items: unset;
    flex-direction: column;
  }

  .form-buyX-getY .group-item-product .arrow {
    margin-top: -12px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(90deg);
  }
}

@media (width >= 576px) {
  .tf-grid-layout.sm-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.sm-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.sm-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.sm-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.sm-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.sm-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .dropdown-filter .dropdown-menu {
    min-width: 250px;
  }

  .popup-style-1 {
    max-width: 520px;
  }

  .footer-default .footer-body {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .row-footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    display: grid;
  }

  .row-footer .s3 {
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    display: grid;
  }

  .slider-default .content-slider.style-2 {
    padding: 30px 24px;
  }

  .slider-default .parallax-wrap {
    padding: 150px 0;
  }

  .s-banner-cd-baby .wg-countdown .countdown__timer {
    gap: 10px;
  }

  .s-banner-cd-baby .wg-countdown .countdown__item {
    width: 90px;
    height: 90px;
  }

  .slider-pod .content-slider {
    max-width: 550px;
  }
}

@media (width >= 768px) {
  .tf-page-title {
    padding: 64px 0;
  }

  .tf-page-title .box-title {
    gap: 24px;
  }

  .form-out-stock, .form-buyX-getY {
    padding: 30px;
  }

  .md-radius-80 {
    border-radius: 80px;
  }

  .px-30 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .footer-info, .footer-heading {
    margin-bottom: 24px;
  }

  .footer-style-2 {
    margin: 0 15px 80px;
  }

  #goTop.pos1, #whatsAap.pos1 {
    bottom: 210px;
  }

  .wrapper-wishlist.wrapper-wishlist {
    row-gap: 40px;
  }

  .flat-wrapper-iconbox > .title {
    top: -12%;
  }

  .s2-banner-with-text {
    flex-direction: row;
    gap: 60px;
  }

  .s3-banner-with-text {
    flex-direction: row;
    gap: 14px;
  }

  .s3-banner-with-text .image-banner {
    width: 59.4%;
  }

  .slider-style-2 .wrap-pagination {
    right: 50%;
  }

  .popup-search .header {
    padding: 15px 30px;
  }

  .popup-search .form-search input {
    height: 60px;
  }

  .popup-product .modal-content {
    padding: 32px 60px 40px;
  }

  .popup-product .modal-header .countdown__timer {
    font-size: 24px;
    line-height: 32px;
  }

  .fl-order-testimonial {
    padding: 32px 60px;
  }

  .tf-compare-col {
    min-width: 300px;
  }

  .table-page-cart .tf-cart-item .wg-quantity {
    width: 102px;
    height: 48px;
  }

  .tf-main-success .box-ship-address {
    padding: 32px;
  }

  .modal-quick-view .modal-content {
    flex-direction: row;
  }

  .modal-quick-view .tf-product-media-wrap {
    width: 43.4%;
  }

  .modal-quick-view .tf-product-info-wrap .tf-product-info-inner {
    padding: 32px;
    position: absolute;
    inset: 0;
    overflow-y: auto;
  }

  .modal-quick-view .tf-product-info-wrap .tf-product-variant {
    margin-bottom: 34px;
  }

  .modal-quick-view .tf-product-info-wrap .tf-product-total-quantity {
    margin-bottom: 32px;
  }

  .popup-shopping-cart.style-2 .modal-content, .popup-shopping-cart.style-2 .canvas-wrapper {
    flex-direction: row;
  }

  .popup-shopping-cart.style-2 .also-like-product {
    flex-shrink: 0;
    width: 228px;
    position: relative;
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap {
    flex-direction: column;
    padding: 33px 28px 33px 36px;
    position: absolute;
    inset: 0;
    overflow: auto;
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar {
    width: 4px;
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-thumb {
    background: var(--primary);
  }

  .popup-shopping-cart.style-2 .also-like-product .also-like-product-wrap::-webkit-scrollbar-track {
    background: var(--line);
  }

  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item {
    min-width: unset;
    flex-direction: column;
  }

  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-image {
    width: 156px;
    height: 222px;
  }

  .popup-shopping-cart.style-empty .cart-empty-wrap {
    padding: 27px 15px;
  }

  .popup-shopping-cart.style-empty .cart-empty-wrap img {
    width: auto;
    margin-bottom: 32px;
  }

  .popup-shopping-cart.style-empty .cart-empty-wrap p {
    margin-bottom: 24px;
  }

  .popup-pickup-available .modal-inner {
    padding: 40px 32px;
  }

  .popup-pickup-available .pickup-available-list {
    gap: 40px;
  }

  .modal-find-size .header {
    margin-bottom: 40px;
  }

  .modal-find-size .tf-sizeguide-table {
    margin-bottom: 42px;
  }

  .modal-find-size .modal-dialog .modal-content {
    padding: 32px;
  }

  .modal-find-size .tf-page-size-chart-content {
    grid-template-columns: 6fr 6fr;
    gap: 10px;
    display: grid;
  }

  .modal-find-size .tf-page-size-chart-content ul {
    margin-bottom: unset;
  }

  .modal-order-detail .header {
    margin-bottom: 50px;
  }

  .modal-order-detail .modal-dialog .modal-content {
    padding: 32px;
  }

  .slider-layout-right .swiper {
    margin-right: -24px;
    padding-right: 24px;
  }

  .modal-newsletter.style-row .modal-content {
    flex-direction: row;
  }

  .banner-why-shop, .container-7, .container-6, .container-5, .container-4, .container-3, .container-2, .slider-layout-right, .container-full, .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .list-color-product {
    gap: 5px;
  }

  .list-color-product .list-color-item {
    width: 24px;
    height: 24px;
  }

  .tf-pin-btn span {
    border: 12px solid var(--white);
    width: 33px;
    height: 33px;
  }

  .card-product .on-sale-wrap {
    top: 20px;
    left: 20px;
    right: 20px;
  }

  .card-product .on-sale-wrap.pos1 {
    top: 16px;
    left: 16px;
  }

  .card-product.card-product-size .list-product-btn, .card-product.style-3.card-product-size .product-btn-main {
    bottom: 40px;
  }

  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 84px;
  }

  .card-product.style-border-2.border-type-4 .on-sale-wrap {
    top: 16px;
    left: 16px;
    right: auto;
  }

  .card-product .card-product-info {
    gap: 8px;
  }

  .grid-cls {
    gap: 24px;
  }

  .grid-cls .item1 {
    grid-area: aa;
  }

  .grid-cls .item2 {
    grid-area: bb;
  }

  .grid-cls .item3 {
    grid-area: cc;
  }

  .grid-cls .item4 {
    grid-area: dd;
  }

  .grid-cls-v1 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "aa bb"
                         "aa cc";
    gap: 12px;
  }

  .grid-cls-v2 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "aa bb dd"
                         "aa cc dd";
  }

  .grid-cls-v3 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "aa aa"
                         "bb cc";
  }

  .grid-cls-v4 {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "cc cc"
                         "aa bb";
  }

  .grid-cls-v5 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "aa bb cc"
                         "aa bb dd";
  }

  .grid-cls-v5 .item3, .grid-cls-v5 .item4 {
    height: 320px;
  }

  .s-banner-with-text .content-banner {
    height: 100%;
  }

  .banner-cd-phonecase .banner-content {
    gap: 32px;
    padding: 32px 60px;
  }

  .banner-cd-fashion .banner-content {
    left: 100px;
  }

  .banner-cd-fashion .box-title {
    margin-bottom: 12px;
  }

  .banner-cd-fashion .season {
    margin-bottom: 4px;
  }

  .banner-account .banner-content-right {
    gap: 32px;
    right: 144px;
  }

  .banner-account .banner-title {
    gap: 12px;
  }

  .banner-account.banner-acc-countdown {
    padding: 40px 88px 40px 64px;
  }

  .banner-account.banner-acc-countdown .banner-title {
    gap: 4px;
  }

  .banner-account.banner-acc-countdown .banner-content-left, .banner-cls-baby .box-title-banner {
    gap: 16px;
  }

  .banner-cls-baby .box-content {
    gap: 32px;
  }

  .banner-cls-mega-electric .box-title-banner {
    gap: 8px;
  }

  .banner-cls-mega-electric .box-content {
    gap: 24px;
  }

  .banner-cls-electric-acc .box-content {
    gap: 33px;
  }

  .banner-cls-electric-acc .box-title-banner {
    gap: 16px;
  }

  .banner-cls-electric-acc.style-abs-2 .box-content {
    max-width: 477px;
    padding: 30px 64px;
    left: 64px;
    right: 64px;
  }

  .banner-cls-electric-acc.style-abs-2 .box-content br {
    display: block;
  }

  .banner-cls-sportwear.style-abs-2 .box-content {
    left: 84px;
  }

  .banner-cls-sportwear .box-content, .banner-cls-sportwear .box-title-banner {
    gap: 24px;
  }

  .banner-cls-petacces .box-content {
    gap: 42px;
  }

  .banner-cls-petacces .box-title-banner {
    gap: 24px;
  }

  .banner-cls-electric .image {
    order: 1;
  }

  .s-banner-colection.style-abs .box-content {
    bottom: 64px;
    left: 64px;
    right: unset;
    gap: 32px;
  }

  .s-banner-colection.style-abs .box-title-banner {
    gap: 16px;
  }

  .slider-bicycle .box-content {
    bottom: 103px;
  }

  .slider-bicycle .content-slider {
    width: 100%;
    max-width: 576px;
  }

  .tf-grid-layout.md-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.md-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .flat-single-grid .swiper-wrapper {
    gap: 10px;
    display: grid;
    transform: none !important;
  }

  .flat-single-grid .swiper-wrapper .item {
    border-radius: 8px;
  }

  .flat-single-grid.single-grid-2 .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .flat-single-grid.single-grid-2 .swiper-slide {
    width: 100% !important;
  }

  .flat-single-grid.single-grid-stacked .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .flat-single-grid.single-grid-stacked .swiper-slide {
    height: auto;
    width: 100% !important;
  }

  .flat-single-grid.single-grid-stacked .swiper-slide:first-child {
    grid-column: 1 / -1;
    width: 100%;
  }

  .canvas-sidebar {
    max-width: 406px;
  }

  .canvas-sidebar .canvas-header {
    padding: 20px 32px;
  }

  .canvas-sidebar .canvas-header:after {
    left: 32px;
    right: 32px;
  }

  .canvas-sidebar .canvas-body {
    padding: 24px 32px 32px;
  }

  .tf-product-fbt-wrap {
    padding: 30px;
  }

  .wrap-sw-over {
    margin-bottom: -20px;
    margin-left: -12px;
    padding-bottom: 20px;
    padding-left: 12px;
  }

  .menu-tab-line {
    gap: 24px;
  }

  .menu-tab-line.style-lg {
    gap: 48px;
  }

  .menu-tab-line.style-lg .tab-link {
    font-size: 28px;
    line-height: 29.2px;
  }

  .menu-tab-line.style-lg3, .menu-tab-line.style-lg2 {
    gap: 41px;
  }

  .menu-tab-line.style-md {
    gap: 0;
  }

  .menu-tab-line.style-md .tab-link {
    min-width: 148px;
    padding: 10px;
    font-size: 20px;
    line-height: 24px;
  }

  .menu-tab-line.style-md .tab-link:after {
    height: 2px;
  }

  .menu-tab-line.style-md2 .tab-link {
    font-size: 20px;
    line-height: 30px;
  }

  .gallery-item .box-icon {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .blog-item-v2 .entry-content {
    padding: 24px;
  }

  .blog-item-v2 .entry-content .info-box {
    margin-bottom: 24px;
  }

  .blog-item-v2 .entry-tag {
    bottom: 14px;
    left: 14px;
  }

  .wrapper-thumbs-tes {
    display: flex;
  }

  .wrapper-thumbs-tes .box-right {
    width: 57.7%;
    padding: 40px 36px;
  }

  .wrapper-thumbs-tes .box-left {
    width: 42.3%;
    display: block;
  }

  .wrapper-thumbs-tes-2 {
    display: flex;
  }

  .wrapper-thumbs-tes-2 .box-right {
    width: 35%;
    display: block;
  }

  .wrapper-thumbs-tes-2 .box-left {
    width: 65%;
    padding: 40px 46px 40px 0;
  }

  .wrapper-thumbs-tes-3 {
    display: flex;
  }

  .wrapper-thumbs-tes-3 .box-right {
    width: 37%;
    display: block;
  }

  .wrapper-thumbs-tes-3 .box-left {
    width: 63%;
    padding: 40px 46px 40px 0;
  }

  .wrapper-thumbs-tes-4 {
    display: flex;
  }

  .wrapper-thumbs-tes-4 .box-left {
    width: 35%;
    display: block;
  }

  .wrapper-thumbs-tes-4 .box-right {
    width: 65%;
    padding: 40px 0 40px 46px;
  }

  .fs-cls .content {
    bottom: 32px;
  }

  .fs-cls.lg .tf-btn {
    font-size: 18px;
    line-height: 26px;
  }

  .tab-content .swiper-pagination-progressbar {
    margin-top: 50px;
  }

  .tf-icon-box-v2 .title {
    font-size: 18px;
    line-height: 22.8px;
  }

  .flat-title .wg-countdown-2 .countdown__value {
    font-size: 32px;
    line-height: 40px;
  }

  .flat-title.style-line {
    gap: 25px;
  }

  .mega-box .mega-title-box {
    margin-bottom: 24px;
  }

  .banner-cd-phonecase {
    margin: 0 24px;
  }

  .cls-video, .cls-video .hover-video {
    height: 549px;
  }

  .flat-wrapper-lookbook {
    display: flex;
  }

  .flat-wrapper-lookbook .col-left, .flat-wrapper-lookbook .col-right {
    width: 50%;
  }

  .flat-wrapper-lookbook .col-left {
    padding: 32px 50px 27px;
  }

  .flat-wrapper-lookbook .slider-wrap-lb .title {
    margin-bottom: 32px;
  }

  .flat-wrapper-lookbook .card-product .tf-btn {
    font-size: 20px;
    line-height: 24px;
  }

  .s-cls.abs-left-center .content {
    left: 24px;
  }

  .s-cls.style-absolute .content, .wg-cls.style-abs .cls-btn, .wg-cls.style-abs2 .cls-btn {
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-cls.style-abs2.style-lg .cls-btn {
    bottom: 32px;
  }

  .tf-page-cart-sidebar .cart-box {
    padding: 24px;
  }

  .tf-checkout-cart-main {
    padding: 27px 24px;
  }

  .menu-tab-fill-lg {
    gap: 32px;
  }

  .slider-fashion-2 {
    padding: 0 24px;
  }

  .slider-baby .clouds {
    bottom: -20px;
  }

  .cloud-footer {
    margin-bottom: -20px;
  }

  .wg-quantity .quantity-product, .wg-quantity .btn-quantity {
    height: 46px;
  }

  .modal-dialog-centered .icon-close {
    font-size: 16px;
    top: 5px;
    right: 5px;
  }

  .popup-quickadd .modal-content {
    padding: 30px;
  }

  .popup-quickadd .main-product-quickadd .list-size {
    gap: 16px;
  }

  .popup-quickadd .main-product-quickadd .size-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    line-height: 120%;
  }

  .main-product-quickadd .item-product-group-btn .tf-btn {
    padding: 11px 24px;
  }

  .main-product-quickadd .item-product-group-btn .box-icon {
    width: 48px;
    height: 48px;
  }
}

@media (width >= 992px) {
  .fade-edge .infiniteslide_wrap:before, .fade-edge .infiniteslide_wrap:after {
    width: 80px;
  }

  .form-newsletter fieldset input, .form-newsletter fieldset input::placeholder {
    font-size: 16px;
    line-height: 25.6px;
  }

  .form-default fieldset label {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 19px;
  }

  .slider-style-3 .content-slider {
    padding: 0 60px;
  }

  .slider-default .content-slider.style-2 {
    padding: 40px;
  }

  .slider-fashion-women .content-slider.style-2 {
    width: max-content;
    padding: 40px 60px;
  }

  .slider-bicycle .content-slider.style-2 {
    padding: 42px;
  }

  .wg-coming-soon .tf-btn {
    padding: 9px 32px;
  }

  .modal-compare .tf-compare-buttons .tf-btn {
    padding: 11px 24px;
  }

  .modal-quick-view .tf-product-info-wrap .tf-btn, .wg-quantity .quantity-product, .wg-quantity .btn-quantity {
    height: 48px;
  }

  .s2-banner-with-text .content-with-text {
    gap: 40px;
  }

  .s2-banner-with-text .box-title-content {
    gap: 16px;
  }

  .s3-banner-with-text .content-with-text {
    gap: 40px;
  }

  .s3-banner-with-text .box-title-content .title {
    margin-bottom: 24px;
  }

  .banner-group-img {
    height: 642px;
    display: flex;
  }

  .banner-group-img .banner-img {
    width: 50%;
    height: 100%;
  }

  .banner-group-img .box-content {
    margin: auto;
    padding: 40px 30px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .banner-group-img .box-content .tf-btn {
    margin-top: 42px;
  }

  .banner-group-img .box-content .heading {
    margin-bottom: 24px;
  }

  .footer-bottom-wrap .box-right {
    gap: 49px;
  }

  .grid-jewelry .wg-cls .tf-btn {
    font-size: 20px;
    line-height: 24px;
  }

  .footer-newsletter {
    gap: 32px;
  }

  .footer-default .form-newsletter input {
    height: 56px;
  }

  .footer-default .form-newsletter .subscribe-button {
    padding: 16px;
  }

  .footer-default .footer-top-wrap .social-item {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .footer-default .footer-top-wrap .social-facebook {
    font-size: 22px;
  }

  .tf-btn.btn-lg {
    padding: 14px 35px;
  }

  .tf-btn.btn-md {
    padding: 11px 30px;
  }

  .banner-cls-electric .banner-content .box-content {
    gap: 32px;
  }

  .flat-title-2 {
    gap: 30px;
    margin-bottom: 52px;
  }

  .flat-title-2 .box-title {
    gap: 10px;
  }

  .grid-cls-v3 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "aa aa bb"
                         "aa aa cc";
  }

  .grid-cls-v4 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: "aa cc cc"
                         "bb cc cc";
  }

  .banner-cd-phonecase .countdown__item {
    width: 109px;
    height: 112px;
  }

  .banner-cd-phonecase .countdown__item .countdown__value {
    font-size: 48px;
    line-height: 60px;
  }

  .wg-testimonial .content-top {
    gap: 20px;
    padding: 40px 24px 22px;
  }

  .wg-testimonial .box-avt {
    gap: 12px;
    padding: 24px;
  }

  .wg-testimonial .box-price {
    gap: 6px;
  }

  .wg-testimonial.style-row .image {
    width: 100%;
    max-width: 244px;
  }

  .card-product.style-wishlist > .icon {
    width: 45px;
    height: 45px;
    top: 20px;
    right: 20px;
  }

  .card-product .card-product-info {
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .card-product.style-3 .list-product-btn {
    bottom: 60px;
  }

  .gallery-item .box-icon {
    opacity: 0;
    visibility: hidden;
  }

  .gallery-item:hover .box-icon {
    opacity: 1;
    visibility: visible;
  }

  .b-md-20 {
    bottom: 20px !important;
  }

  .wg-cls.style-abs .cls-btn {
    bottom: 40px;
  }

  .wg-cls.style-abs.type-2 .cls-content, .wg-cls.style-abs.type-2 .cls-btn {
    bottom: 24px;
  }

  .wg-cls.style-abs.type-2 .cls-content {
    gap: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-cls.style-abs.type-3 .cls-btn {
    bottom: 20px;
  }

  .banner-text-skincare .content-banner {
    padding-left: 50px;
  }

  .s-banner-with-text .content-banner {
    gap: 42px;
  }

  .s-banner-with-text .box-title-banner {
    gap: 24px;
  }

  .s-banner-with-text.banner-text-skincare .content-banner {
    gap: 32px;
  }

  .s-banner-with-text.banner-text-skincare .box-title-banner {
    gap: 12px;
  }

  .s-banner-with-text.banner-text-skincare.type-2 .box-title-banner {
    gap: 10px;
  }

  .s-banner-with-text.banner-text-jewelry .box-title-banner, .s-banner-with-text.banner-text-pet .box-title-banner {
    gap: 16px;
  }

  .s-banner-with-text.banner-text-jewelry .content-banner, .s-banner-with-text.banner-text-pet .content-banner {
    gap: 33px;
  }

  .s-banner-with-text.banner-text-plant .box-title-banner {
    gap: 16px;
  }

  .s-banner-with-text.banner-text-plant .content-banner {
    gap: 33px;
    width: 100%;
    max-width: 588px;
    margin-left: auto;
    margin-right: 24px;
  }

  .s-banner-with-text.banner-text-plant.type-2 .content-banner {
    margin-left: 24px;
    margin-right: unset;
    max-width: unset;
  }

  .banner-cd-fashion .banner-content {
    left: 203px;
  }

  .account-dashboard .box-account-title {
    margin-bottom: 64px;
  }

  .banner-cls-phonecase .box-content {
    gap: 40px;
  }

  .banner-cls-phonecase .box-title-banner {
    gap: 10px;
  }

  .marquee-sale {
    height: 78px;
    padding: 23px 0;
    display: flex;
  }

  .marquee-sale .marquee-wrapper {
    animation: 60s linear infinite infiniteScroll;
  }

  .marquee-sale .marquee-wrapper.scrollRight {
    animation: 60s linear infinite infiniteScrollRight;
  }

  .marquee-sale .marquee-child-item {
    margin: 0 40px;
  }

  .slider-baby .content-slider.style-2 {
    padding: 40px 60px;
  }

  .sidebar-blog {
    width: 100%;
    max-width: 366px;
    margin-left: auto;
  }

  .sidebar-blog.type-left {
    margin-left: unset;
    margin-right: auto;
  }

  .tf-grid-layout {
    gap: 24px;
  }

  .tf-grid-layout.lg-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.lg-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.lg-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.lg-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.lg-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.lg-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .tf-grid-layout.style-1 {
    row-gap: 40px;
  }

  .tf-grid-layout.style-1 .wg-pagination {
    margin-top: 20px;
  }

  .tab-content .tf-grid-layout {
    gap: 40px 18px;
  }

  .marquee-topbar .marquee-wrapper {
    animation: 60s linear infinite infiniteScroll;
  }

  .marquee-topbar .marquee-wrapper .marquee-child-item {
    margin: 0 20px;
  }

  .zoom-active .other-image-zoom {
    opacity: .3;
  }

  .sb-banner .title {
    font-size: 36px;
    line-height: 43.2px;
  }

  .tf-product-fbt-wrap {
    padding: 30px;
  }

  .list-volume-discount .volume-discount-item {
    padding: 16px 30px 16px 20px;
  }

  .tf-product-volume-discount-thumbnail {
    padding: 30px;
  }

  .card-product .box-icon {
    width: 40px;
    height: 40px;
  }

  .card-product .box-icon .icon {
    font-size: 16px;
  }

  .card-product .product-btn-main .btn-main-product {
    padding: 10px 15px;
  }

  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 94px;
  }

  .card-product.style-list .box-icon {
    width: 51px;
    height: 51px;
  }

  .tf-icon-box.style-2 {
    gap: 25px;
  }

  .tf-icon-box.style-2 .content {
    gap: 15px;
  }

  .tf-icon-box.style-2 .title, .tf-icon-box.style-3 .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-4 {
    gap: 24px;
    padding: 32px 24px;
  }

  .tf-icon-box.style-4 .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-border {
    gap: 30px;
    padding: 29px 20px;
  }

  .tf-icon-box.style-border .content {
    gap: 20px;
  }

  .tf-icon-box.style-border .content h6 {
    line-height: 29px;
  }

  .tf-icon-box.style-border .content p {
    line-height: 22px;
  }

  .tf-icon-box.style-lg {
    gap: 25px;
  }

  .tf-icon-box.style-lg .title {
    font-size: 20px;
    line-height: 20px;
  }

  .tf-icon-box.style-lg .content {
    gap: 15px;
  }

  .flat-wrap-iconbox .tf-icon-box {
    gap: 20px;
  }

  .flat-wrap-iconbox .tf-icon-box .content {
    gap: 10px;
  }

  .flat-wrapper-testimonial {
    padding: 64px 30px 37px;
  }

  .banner-cls-bicycle .banner-content {
    height: 631px;
  }

  .mega-iconbox {
    padding: 40px 20px;
  }

  .mega-iconbox .tf-icon-box:not(:last-child) {
    margin-bottom: 40px;
  }

  .mega-iconbox .tf-icon-box {
    gap: 24px;
  }

  .cls-video, .cls-video .hover-video {
    height: 649px;
  }

  .modal-share-social .modal-content {
    padding: 32px 32px 48px;
  }

  .popup-quickadd .modal-content {
    padding: 48px;
  }
}

@media (width >= 1025px) {
  .banner-shop.style-left-center .box-title .title {
    font-size: 36px;
    font-weight: 500;
    line-height: 43.2px;
  }

  .slider-pod .content-slider {
    max-width: 691px;
  }

  .form-edit-account .title-form {
    margin-bottom: 42px;
  }
}

@media (width >= 1200px) {
  .xl-radius-40 {
    border-radius: 40px !important;
  }

  .xl-radius-50 {
    border-radius: 50px !important;
  }

  .form-out-stock {
    gap: 32px;
    padding: 48px;
  }

  .form-out-stock .box-title-out-stock {
    gap: 24px;
  }

  .volume-discount-thumbnail-item .tag-sale {
    left: 28px;
    right: 28px;
  }

  .form-buyX-getY {
    padding: 36px 32px;
  }

  .form-buyX-getY .title-buyX-getY {
    margin-bottom: 47px;
  }

  .form-buyX-getY .group-item-product {
    margin-bottom: 55px;
  }

  .wd-customer-review {
    gap: 119px;
  }

  .wd-customer-review .review-heading {
    gap: 40px;
  }

  .wd-customer-review .box-rate-review {
    gap: 24px;
  }

  .wd-customer-review .review-list {
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .form-review .tf-btn {
    margin-top: 40px;
  }

  .wd-product-descriptions .accordion-body {
    padding: 10px 0 42px;
  }

  .modal.modalCentered:not(.show) .modal-dialog, .modalCentered:not(.show) .modal-dialog {
    transform: translate(-50px);
  }

  #description p:not(:first-child) {
    margin-top: 32px;
  }

  .footer-style-2 .footer-bottom-wrap .image-select.style-default {
    width: 226px !important;
  }

  .footer-style-2 .footer-bottom-wrap .image-select.style-default .filter-option-inner-inner {
    font-size: 18px;
  }

  .s-banner-with-text br {
    display: block;
  }

  .tf-icon-box-v2 {
    gap: 20px;
  }

  .tf-icon-box-v2 .icon {
    font-size: 32px;
  }

  .tf-icon-box-v2 .title {
    font-size: 24px;
    line-height: 28.8px;
  }

  .slider-default .parallax-wrap {
    padding: 279px 0 304px;
  }

  .slider-style-3 .content-slider {
    padding: 0 100px;
  }

  .popup-search .featured-product {
    padding: 0 90px;
  }

  .s2-banner-with-text {
    gap: 101px;
  }

  .s2-banner-with-text .banner {
    min-width: 600px;
  }

  .banner-group-img .box-content {
    padding: 40px 55px;
  }

  .banner-cls-baby .banner-content {
    overflow: unset;
    position: relative;
  }

  .banner-cls-baby .image {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }

  .banner-cls-baby .item {
    display: block;
    right: 0;
  }

  .s-banner-cd-baby .wg-countdown .countdown__item {
    width: 120px;
    height: 120px;
  }

  .s-banner-cd-baby .wg-countdown .countdown__item .countdown__value {
    font-size: 40px;
    line-height: 44px;
  }

  .banner-cd-phonecase .box-title {
    gap: 16px;
  }

  .tf-topbar {
    height: 42px;
    display: flex;
  }

  .footer-default .footer-body {
    padding: 0;
  }

  .footer-default .footer-info .item:not(:last-child) .box-icon {
    margin-top: -3px;
  }

  .row-footer {
    gap: 0;
    display: flex;
  }

  .row-footer .s1 {
    border-right: 1px solid var(--line);
    width: 29%;
    padding: 60px 24px 60px 0;
  }

  .row-footer .s2 {
    border-right: 1px solid var(--line);
    width: 42%;
    padding: 60px 32px;
  }

  .row-footer .s3 {
    justify-content: space-between;
    width: 29%;
    padding: 60px 0 60px 32px;
    display: flex;
  }

  .footer-cloud .row-footer .s1 {
    padding-bottom: 75px;
  }

  .banner-cls-phonecase .banner-content {
    gap: 42px;
  }

  .footer-style-2 {
    margin: 0 40px 24px;
  }

  .footer-style-2 .footer-col-block.s2, .footer-style-2 .footer-col-block.s3 {
    justify-content: center;
    display: grid;
  }

  .footer-style-2 .footer-col-block.s4 {
    padding: 0 60px;
  }

  .space-abs-header .content-slider {
    margin-top: 87px;
  }

  .popup-product .modal-content {
    padding: 32px 85px 86px;
  }

  .popup-product .modal-header {
    gap: 16px;
  }

  .tf-checkout-cart-main {
    padding: 37px 32px;
  }

  .tf-checkout-cart-main .box-ip-shipping, .tf-checkout-cart-main .box-ip-contact, .tf-checkout-cart-main .box-ip-checkout {
    margin-bottom: 42px;
  }

  .fl-order-testimonial {
    padding: 42px 119px;
  }

  .tf-page-cart-main .cart-note {
    padding-right: 27px;
  }

  .tf-page-cart-main .form-cart {
    margin-bottom: 40px;
  }

  .tf-page-cart-main .fl-iconbox {
    padding-right: 27px;
  }

  .tf-page-cart-main .fl-iconbox .tf-swiper {
    padding: 32px;
  }

  .tf-page-cart-sidebar {
    transition: top .3s;
    position: sticky;
    top: 100px;
  }

  .tf-page-cart-sidebar .cart-box {
    padding: 32px;
  }

  .box-testimonial-quote {
    gap: 42px;
    padding: 64px 15px 58px;
  }

  .lh-xl-32 {
    line-height: 32px;
  }

  .lh-xl-26 {
    line-height: 26px;
  }

  .list-esd {
    width: 100%;
    max-width: 645px;
  }

  .list-esd .item {
    gap: 20px;
    padding: 30px 0;
  }

  .tf-compare-item {
    gap: 20px;
    padding: 30px 20px;
  }

  .tf-compare-table::-webkit-scrollbar {
    height: 11px;
  }

  .tf-compare-table .text-md {
    line-height: 19px;
  }

  .tf-compare-table .text-sm {
    line-height: 17px;
  }

  .tf-compare-field, .tf-compare-value {
    padding: 19px 20px;
  }

  .tf-compare-col {
    min-width: 360px;
  }

  .wg-testimonial.style-2.type-2 .box-btn {
    opacity: 0;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .wg-testimonial.style-2.type-2:hover .box-btn {
    opacity: 1;
  }

  .mb-xl-8 {
    margin-bottom: 8px;
  }

  .mb-xl-4 {
    margin-bottom: 4px !important;
  }

  .s-banner-bundle .bundle-wrap {
    gap: 40px;
    width: 100%;
    max-width: 708px;
    margin: auto;
  }

  .s-banner-bundle .list-recipe {
    gap: 24px;
  }

  .s-banner-bundle .content-list {
    gap: 24px;
    padding: 24px;
  }

  .s2-banner-bundle .bundle-wrap {
    gap: 40px;
    max-width: 806px;
    margin-left: auto;
    margin-right: 0;
    padding: 0 49px 41px;
  }

  .s2-banner-bundle .banner-bundle .item {
    display: block;
    left: 0;
  }

  .s-cls.style-absolute .content {
    gap: 24px;
    bottom: 32px;
  }

  .s-cls.abs-left-center .content {
    left: 24px;
  }

  .s-cls.abs-left-center.type-large .content {
    left: 42px;
  }

  .s-cls.abs-left-bottom .content {
    bottom: 34px;
    left: 40px;
  }

  .grid-mega .item1.s-cls.abs-left-center .content {
    left: 64px;
  }

  .slider-thumb-wrap {
    gap: 40px;
  }

  .wg-map.style-absolute .box-store {
    left: 73px;
  }

  .box-store .contact-list {
    gap: 8px;
    margin-bottom: 44px;
  }

  .box-store.style-2 {
    gap: 24px;
  }

  .cls-video .cls-content {
    padding: 16px;
    bottom: 24px;
    left: 24px;
    right: 24px;
  }

  .wg-offer .image {
    margin-bottom: 34px;
  }

  .wg-offer .box-title {
    gap: 12px;
  }

  .wg-offer .content {
    gap: 24px;
  }

  .wg-offer.style-2 .image {
    margin-bottom: 24px;
  }

  .flat-title-v2 {
    gap: 24px;
    margin-bottom: 48px;
  }

  .flat-title-v2.style-2 {
    margin-bottom: 64px;
  }

  .s-contact .content-right, .s-contact .content-left {
    gap: 32px;
  }

  .s-contact.style-2 {
    align-items: end;
    gap: 0;
  }

  .s-contact.style-2 .content-left {
    gap: 19px;
    margin-bottom: 24px;
    padding: 52px 62px;
  }

  .s-contact.style-2 .content-left .tf-btn {
    margin-top: 30px;
  }

  .s-contact.style-2 .image-right {
    margin-left: -120px;
  }

  .s-contact.style-2 .image-right img {
    border-radius: 16px;
  }

  .flat-title {
    margin-bottom: 48px;
  }

  .flat-title .btn-underline {
    font-size: 18px;
    line-height: 28px;
  }

  .flat-title.style-2 {
    margin-bottom: 42px;
  }

  .flat-title.mb_2 {
    margin-bottom: 60px;
  }

  .flat-title.mb_3 {
    margin-bottom: 40px;
  }

  .flat-title.mb_4 {
    margin-bottom: 63px;
  }

  .flat-title.mb_5 {
    margin-bottom: 52px;
  }

  .flat-title-tab-categories {
    gap: 32px;
    margin-bottom: 42px;
  }

  .flat-title-tab {
    gap: 27px;
  }

  .flat-title-tab-2 {
    margin-bottom: 64px;
  }

  .menu-tab-fill-lg {
    gap: 41px;
  }

  .banner-why-shop, .container-full {
    padding-left: 40px;
    padding-right: 40px;
  }

  .sidebar-filter .canvas-body {
    padding: 0;
  }

  .widget-facet .filter-color-box {
    padding-right: 60px;
  }

  .banner-tagline-phonecase {
    gap: 100px;
  }

  .banner-tagline-phonecase .list-tagline li {
    padding: 24px 20px;
  }

  .banner-tagline-phonecase .list-tagline li .box-text {
    gap: 10px;
  }

  .banner-tagline-phonecase .content {
    gap: 48px;
  }

  .banner-tagline-phonecase .icon i {
    font-size: 40px;
  }

  .card-product.style-border-2 .card-product-wrapper {
    padding: 16px 15px 32px;
  }

  .card-product.style-border-2 .card-product-info {
    gap: 16px;
    padding: 0 16px 32px;
  }

  .card-product.style-border-2 .on-sale-wrap {
    top: 26px;
    left: 26px;
    right: auto;
  }

  .card-product.style-border-2.border-type-2 .card-product-info {
    padding: 0 16px 42px;
  }

  .card-product.style-border-2.border-type-3 .card-product-info {
    padding: 0 16px 24px;
  }

  .card-product.style-border-2.border-type-2 .card-product-wrapper, .card-product.style-border-2.border-type-3 .card-product-wrapper {
    padding: 15px 15px 20px;
  }

  .card-product.style-border-2.border-type-5 .card-product-wrapper {
    padding: 20px 20px 32px;
  }

  .card-product.style-border-2.border-type-5 .card-product-info {
    gap: 24px;
    padding: 0 20px 20px;
  }

  .card-product.style-border .card-product-wrapper {
    padding: 42px 20px 64px;
  }

  .card-product.style-border .card-product-info {
    padding: 0 20px 40px;
  }

  .card-product.style-2.card-product-size .list-product-btn {
    bottom: 62px;
  }

  .card-product.style-2 .list-product-btn {
    bottom: 20px;
  }

  .card-product.style-2 .list-product-btn li {
    transform: translateY(20px);
  }

  .card-product.style-2:hover .list-product-btn li {
    transform: translateY(0);
  }

  .card-product.card-product-size .list-product-btn {
    bottom: 20px;
  }

  .card-product.style-3.card-product-size .product-btn-main {
    bottom: 50px;
  }

  .card-product.style-3.card-product-size .list-product-btn {
    bottom: 114px;
  }

  .card-product.style-3 .list-product-btn {
    bottom: 84px;
  }

  .card-product.style-3 .list-product-btn li {
    transform: translateY(20px);
  }

  .card-product.style-3:hover .list-product-btn li {
    transform: translateY(0);
  }

  .card-product.style-3:hover .product-btn-main {
    opacity: 1;
    visibility: visible;
    transition-delay: .1s;
    transform: translateY(0);
  }

  .card-product .product-btn-main {
    opacity: 0;
    visibility: hidden;
    bottom: 20px;
    left: 24px;
    right: 24px;
    transform: translateY(20px);
  }

  .card-product .product-btn-main .btn-main-product {
    padding: 14px 15px;
  }

  .card-product .tooltip {
    display: block;
  }

  .card-product .card-product-info .inner-info-product {
    gap: 10px;
  }

  .card-product .variant-box {
    padding: 10px 6px;
  }

  .card-product .countdown-box {
    display: flex;
  }

  .card-product .countdown-box.style-2 {
    padding-left: 35px;
    padding-right: 35px;
  }

  .card-product .list-product-btn {
    gap: 16px;
    top: 20px;
    right: 20px;
  }

  .card-product .list-product-btn li {
    opacity: 0;
    visibility: hidden;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    transform: translateX(20px);
  }

  .card-product .box-icon {
    width: 45px;
    height: 45px;
  }

  .card-product .product-progress-sale {
    gap: 8px;
  }

  .card-product:not(.style-list) .size-box {
    padding: 10px 6px;
    transform: translateY(100%);
  }

  .card-product:hover .list-product-btn li {
    opacity: 1;
    visibility: visible;
  }

  .card-product:hover .list-product-btn li:first-child {
    transform: translateX(0);
  }

  .card-product:hover .list-product-btn li:nth-child(2) {
    transition-delay: .1s;
    transform: translateX(0);
  }

  .card-product:hover .list-product-btn li:nth-child(3) {
    transition-delay: .2s;
    transform: translateX(0);
  }

  .card-product:hover .list-product-btn li:nth-child(4) {
    transition-delay: .3s;
    transform: translateX(0);
  }

  .card-product:hover .size-box {
    transform: translateY(0%);
  }

  .card-product.card-product-size:hover .countdown-box, .card-product.style-2:hover .countdown-box, .card-product.style-3:hover .countdown-box {
    bottom: -1px;
    transform: translateY(100%);
  }

  .card-product.style-list {
    gap: 24px;
  }

  .card-product.style-list .card-product-wrapper {
    aspect-ratio: 1 / 1.42;
  }

  .card-product.style-list .card-product-info {
    gap: 24px;
  }

  .card-product.style-list .info-list {
    gap: 15px;
  }

  .card-product.style-center .card-product-info {
    padding: 20px 20px 35px;
  }

  .card-product.style-center .list-color-item {
    gap: 7px;
    width: 38px;
    height: 38px;
  }

  .card-product.style-4 .card-product-info {
    padding: 24px 16px;
  }

  .card-product.style-5 .card-product-info .btn-addcart {
    padding: 0 27px;
  }

  .card-product.style-space .card-product-wrapper {
    padding: 15px 16px 32px;
  }

  .card-product.style-space .card-product-info {
    gap: 16px;
    padding: 0 16px 32px;
  }

  .card-product.style-space-2 .card-product-wrapper {
    padding: 15px 16px 20px;
  }

  .card-product.style-space-2 .card-product-info {
    gap: 16px;
    padding: 0 16px 20px;
  }

  .card-product .list-capacity-product .list-color-item .text-quantity {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  .bundle-wrap .card-product:not(.style-2, .style-3) .list-product-btn {
    gap: 12px;
    top: 12px;
    right: 12px;
  }

  .bundle-wrap .card-product:not(.style-2, .style-3) .box-icon {
    width: 40px;
    height: 40px;
  }

  .bundle-suppermarket .image-wrap {
    margin-left: 33px;
  }

  .banner-text-skincare .content-banner {
    padding-left: 108px;
  }

  .tf-filter-dropdown, .tf-shop-control {
    margin-bottom: 40px;
  }

  .tf-filter-dropdown {
    gap: 20px;
  }

  .tf-filter-dropdown .meta-dropdown-filter {
    gap: 10px;
  }

  .tf-btn-filter {
    gap: 8px;
    min-width: 108px;
    padding: 13px 20px;
  }

  .tf-btn-filter .icon {
    font-size: 18px;
  }

  .tf-btn-filter .text {
    font-size: 16px;
  }

  .btn-filterDropdown .icon-close {
    font-size: 14px;
  }

  .tf-dropdown-sort {
    min-width: 244px;
    padding: 13px 20px;
  }

  .tf-dropdown-sort .text-sort-value {
    font-size: 16px;
  }

  .tf-dropdown-sort .icon {
    font-size: 14px;
  }

  .tf-dropdown-sort .dropdown-menu {
    min-width: 244px;
  }

  .dropdown-filter .dropdown-toggle {
    padding: 13px 20px;
  }

  .dropdown-filter .dropdown-menu {
    min-width: 300px;
    padding: 25px 15px;
  }

  .dropdown-filter .text-value {
    font-size: 16px;
  }

  .tf-control-layout .tf-view-layout-switch {
    width: 48px;
    height: 48px;
  }

  .lookbook-item .dropdown-menu {
    --bs-dropdown-min-width: 14rem;
  }

  .lookbook-item .dropend .dropdown-menu {
    --bs-dropdown-min-width: 367px;
  }

  .tf-grid-layout.xl-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.xl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.xl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.xl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.xl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .xl-px-26 {
    padding-left: 26px;
    padding-right: 26px;
  }

  .header-default .wrapper-header {
    min-height: 87px;
  }

  .header-default .wrapper-header .nav-icon {
    gap: 20px;
  }

  .header-default .header-top {
    border-bottom: 1px solid var(--line);
  }

  .header-medium .wrapper-header {
    min-height: 70px;
  }

  .header-absolute {
    margin-bottom: -87px;
  }

  .header-absolute-2:not(.header-bg) .header-top {
    border: 0;
  }

  .tf-product-info-wrap {
    gap: 42px;
  }

  .tf-product-info-wrap:not(.style-2) .tf-product-heading {
    margin-bottom: 8px;
    padding-bottom: 32px;
  }

  .tf-product-info-wrap .product-info-countdown, .tf-product-info-wrap .product-progress-sale {
    margin-top: 12px;
  }

  .tf-product-info-wrap .tf-product-extra-link {
    gap: 42px;
  }

  .tf-product-info-wrap .product-stock .stock {
    margin-right: 14px;
  }

  .tf-product-info-wrap .form-group-product {
    margin-bottom: 18px;
  }

  .tf-product-info-wrap .tf-product-cate-sku {
    margin: 8px 0;
  }

  .form-group-product .item-product {
    gap: 70px;
  }

  .form-group-product .item-product:not(:last-child) {
    margin-bottom: 24px;
  }

  .form-group-product .item-product-content {
    gap: 30px;
  }

  .form-group-product .table-group-product {
    margin-bottom: 32px;
  }

  .flat-wrap-frequently-bought-together .product-thumbs-slider {
    margin-bottom: 42px;
  }

  .tf-product-fbt {
    padding: 32px;
  }

  .tf-product-fbt .tf-btn {
    padding: 16px 32px;
  }

  .tf-variant-dropdown {
    padding: 14px 12px;
  }

  .tab-product-desc .tab-link {
    min-width: 154px;
  }

  .widget-facet:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 32px;
  }

  .canvas-sidebar .list-icon-box .tf-icon-box:not(:last-child) {
    margin-bottom: 32px;
  }

  .canvas-sidebar .mega-box:not(:last-child) {
    margin-bottom: 40px;
  }

  .filter-drawer-wrap {
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    max-width: 100%;
    box-shadow: var(--shadow-1);
    border-radius: 16px;
    padding: 32px 32px 42px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .filter-drawer-wrap .widget-facet {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .filter-drawer-wrap .widget-facet .collapse:not(.show) {
    display: block;
  }

  .filter-drawer-wrap .widget-facet .collapsing {
    height: auto;
    transition: unset;
  }

  .filter-drawer-wrap .facet-title {
    padding: 0;
  }

  .filter-drawer-wrap .facet-title .icon {
    display: none;
  }

  .filter-drawer-wrap .filter-color-box {
    padding-right: 0;
  }

  .filter-drawer-wrap .canvas-body {
    overflow-y: unset;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
    display: grid;
  }

  .filter-drawer-wrap.show {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
  }

  .tf-product-fbt-wrap {
    padding: 32px 80px 36px;
  }

  .tf-product-fbt-wrap .fbt-info {
    gap: 16px;
  }

  .tf-product-fbt-wrap .fbt-info .bundle-variant, .tf-product-fbt-wrap .fbt-info .bundle-title {
    margin-right: 16px;
  }

  .tf-product-fbt-wrap .tf-product-form-fbt {
    gap: 32px;
  }

  .tf-product-fbt-wrap .list-fbt {
    margin-bottom: 24px;
  }

  .tf-product-fbt-wrap .fbt-swatches {
    gap: 16px;
  }

  .tf-product-volume-discount {
    padding: 32px 70px 42px;
  }

  .list-volume-discount .volume-discount-item .tag-sale {
    right: -40px;
  }

  .tf-product-volume-discount-thumbnail .title-discount {
    margin-bottom: 45px;
  }

  .tf-product-volume-discount-thumbnail .list-volume-discount-thumbnail {
    margin-bottom: 40px;
  }

  .tf-product-media-wrap {
    padding-right: 24px;
  }

  .list-color-product .list-color-item {
    width: 30px;
    height: 30px;
  }

  .tf-loading {
    min-width: 138px;
    height: 48px;
  }

  .hover-sw-nav {
    position: relative;
  }

  .hover-sw-nav .nav-swiper {
    visibility: hidden;
  }

  .hover-sw-nav .swiper-button-next {
    margin-right: 20px;
  }

  .hover-sw-nav .swiper-button-prev {
    margin-left: 20px;
  }

  .hover-sw-nav:hover .nav-swiper {
    visibility: visible;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-item .box-icon {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .tf-sw-iconbox-row .swiper-slide:not(:last-child) .tf-icon-box {
    padding-right: 59px;
    position: relative;
  }

  .tf-sw-iconbox-row .swiper-slide:not(:last-child) .tf-icon-box:after {
    content: "";
    background-color: var(--line);
    width: 1px;
    position: absolute;
    top: 9px;
    bottom: 9px;
    right: 0;
  }

  .flat-wrapper-iconbox {
    padding: 97px 60px 69px;
  }

  .flat-wrapper-iconbox .tf-icon-box .title {
    font-size: 24px;
    line-height: 30px;
  }

  .grid-cls-v1 {
    gap: 24px;
  }

  .grid-cls-v1 .wg-cls .cls-btn {
    bottom: 32px;
  }

  .grid-cls-v1 .wg-cls .tf-btn {
    min-width: 180px;
    font-size: 24px;
    line-height: 32px;
  }

  .grid-cls-v1 .item3 .btn-cls {
    min-width: 232px;
  }

  .grid-cls-sport .wg-cls .tf-btn {
    min-width: 169px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .grid-cls-sport .item3 .tf-btn {
    min-width: 209px;
  }

  .wg-cls-2 {
    gap: 32px;
  }

  .wg-cls-2 .box-title {
    margin-bottom: 24px;
  }

  .wg-cls.style-02 .btn-cls {
    font-size: 24px;
  }

  .wg-cls.style-02 .btn-cls .icon {
    font-size: 14px;
  }

  .wrapper-thumbs-tes .box-right {
    padding: 60px 49px 60px 64px;
  }

  .wrapper-thumbs-tes .box-testimonial-main .quote {
    font-size: 39px;
  }

  .wrapper-thumbs-tes-2 .box-left {
    padding: 60px 200px 60px 0;
  }

  .wrapper-thumbs-tes-2 .box-testimonial-main .quote {
    font-size: 48px;
  }

  .wrapper-thumbs-tes-3 .box-left {
    padding: 60px 99px;
  }

  .wrapper-thumbs-tes-3 .box-testimonial-main .content {
    gap: 32px;
  }

  .wrapper-thumbs-tes-3 .box-testimonial-main .quote {
    font-size: 68px;
  }

  .wrapper-thumbs-tes-4 .box-right {
    padding: 60px 0 60px 100px;
  }

  .wrapper-thumbs-tes-4 .box-testimonial-main {
    gap: 42px;
  }

  .wrapper-thumbs-tes-4 .box-testimonial-main .box-content {
    gap: 24px;
  }

  .flat-thumbs-tes .sw-dot-default, .flat-thumbs-tes .box-nav-swiper {
    margin-top: 32px;
  }

  .box-testimonial-main {
    gap: 32px;
  }

  .fs-cls .content {
    bottom: 42px;
  }

  .fs-cls .content .tf-btn {
    min-width: 200px;
    font-size: 20px;
    line-height: 30px;
  }

  .fs-cls.lg .tf-btn {
    min-width: 248px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 24px;
    line-height: 30px;
  }

  .wrapper-control-shop .tf-list-layout {
    gap: 32px;
  }

  .wrapper-control-shop .tf-list-layout .wg-pagination {
    margin-top: 40px;
  }

  .wrapper-control-shop .tf-grid-layout {
    row-gap: 40px;
  }

  .wrapper-control-shop .tf-grid-layout .wg-pagination {
    margin-top: 20px;
  }

  .flat-wrap-cls {
    row-gap: 42px;
  }

  .flat-wrap-cls .wg-pagination {
    margin-top: 18px;
  }

  .tab-content .tf-grid-layout {
    row-gap: 40px;
  }

  .tab-content .box-btn {
    margin-top: 32px;
  }

  .menu-tab-line.style-lg .tab-link {
    padding: 10px 4px;
    font-size: 36px;
    line-height: 43.2px;
  }

  .menu-tab-line.style-lg .tab-link:after {
    height: 2px;
  }

  .menu-tab-line.style-lg3 .tab-link {
    padding: 0;
    font-size: 48px;
    line-height: 60px;
  }

  .banner-shop.style-left-center .content {
    gap: 32px;
    left: 64px;
  }

  .banner-shop.style-left-center .box-title {
    gap: 20px;
  }

  .banner-shop.style-left-center .tf-btn {
    padding: 14px 37px;
  }

  .banner-shop.style-top .content {
    gap: 32px;
    top: 82px;
  }

  .banner-shop.style-top .box-title {
    gap: 20px;
  }

  .banner-shop.style-lg-bottom .content {
    bottom: 40px;
    left: 32px;
    right: 32px;
  }

  .banner-shop .box {
    padding: 20px 73px 20px 32px;
  }

  .tab-content .swiper-pagination-progressbar {
    margin-top: 112px;
  }

  .banner-cd-phonecase {
    margin: 0 40px;
  }

  .tf-btn.btn-large {
    padding: 14px 38px;
  }

  .flat-wrapper-lookbook .col-left {
    width: 48.6%;
    padding: 48px 102px 27px;
  }

  .flat-wrapper-lookbook .col-right {
    width: 51.4%;
  }

  .flat-wrapper-lookbook .slider-wrap-lb {
    padding-left: 68px;
    padding-right: 68px;
  }

  .flat-wrapper-lookbook .slider-wrap-lb .title {
    margin-bottom: 64px;
  }

  .wg-testimonial-2 .text {
    margin-top: 40px;
  }

  .table-page-cart td {
    padding: 30px 9px;
  }

  .footer-style-2 .footer-body {
    padding-top: 80px;
    padding-bottom: 88px;
  }

  .fl-control-sw2 .swiper-button-prev, .fl-control-sw .swiper-button-prev {
    left: -22px;
  }

  .fl-control-sw2 .swiper-button-next, .fl-control-sw .swiper-button-next {
    right: -22px;
  }

  .wg-testimonial-3 {
    gap: 40px;
    margin-bottom: 55px;
  }

  .wg-testimonial-3 .box-top {
    gap: 24px;
  }

  .wg-testimonial-3 .box-author {
    gap: 8px;
  }

  .wg-testimonial-3 .box-title-desc {
    gap: 24px;
  }

  .slider-baby .clouds {
    bottom: -65px;
  }

  .cloud-footer {
    margin-bottom: -60px;
  }
}

@media (width >= 1440px) {
  .topbar-wraper {
    gap: 150px;
  }

  .slider-fashion-2 {
    padding: 0 30px;
  }

  .banner-why-shop {
    padding-left: 115px;
    padding-right: 115px;
  }

  .row-footer .s2 {
    padding: 60px 74px 60px 80px;
  }

  .row-footer .s3 {
    padding: 60px 0 60px 80px;
  }

  .tf-main-success .box-progress-order {
    padding: 32px 64px;
  }

  .tf-product-volume-discount-thumbnail {
    padding: 32px 70px 32px 45px;
  }

  .wg-testimonial.style-2.type-2 {
    padding: 40px 32px 24px;
  }

  .wg-testimonial.style-2.type-2 .br-line {
    margin: 24px 0;
  }

  .s-banner-bundle .content-list {
    padding: 24px 48px;
  }

  .lh-19 {
    line-height: 19px;
  }

  .flat-wrap-testimonial {
    padding: 64px 0 37px;
  }

  .main-content-account {
    gap: 64px;
  }

  .account-dashboard .content-account {
    gap: 24px;
  }

  .banner-text-jewelry .image-1 {
    max-width: 517px;
  }

  .banner-text-jewelry .image-2 {
    max-width: 275px;
    bottom: 27px;
    right: 48px;
  }

  .banner-text-skincare.type-2 .image-1 {
    max-width: 663px;
  }

  .banner-text-skincare.type-2 .image-2 {
    max-width: 361px;
    bottom: 44px;
  }

  .banner-cls-phonecase .box-content {
    width: unset;
    flex-shrink: 0;
    padding-left: 100px;
  }

  .banner-cls-phonecase .image {
    width: 100%;
    max-width: 1007px;
  }

  .slider-phonecase {
    margin: 27px 40px 0;
  }

  .slider-electric-access .content-slider {
    margin-left: 52px;
  }

  .tf-grid-layout.xxl-col-2 {
    grid-template-columns: 1fr 1fr;
  }

  .tf-grid-layout.xxl-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .tf-grid-layout.xxl-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .tf-grid-layout.xxl-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .tf-grid-layout.xxl-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .tf-grid-layout.xxl-col-7 {
    grid-template-columns: repeat(7, 1fr);
  }

  .header-default .box-nav-menu .item-link:after {
    width: calc(100% + 80px);
  }

  .header-default .style-space .box-nav-menu {
    gap: 36px;
  }

  .box-nav-menu .mega-menu {
    padding: 32px 104px 60px;
    left: 100px;
    right: 100px;
  }

  .box-nav-menu .mega-shop {
    padding: 32px 123px 60px;
    left: 76px;
    right: 80px;
  }

  .box-nav-menu .mega-home {
    padding: 36px 160px;
  }

  .box-nav-menu .mega-tab .wrapper-sub-menu-tab .tab-pane {
    gap: 60px;
  }

  .box-nav-menu.justify-content-start .mega-home {
    left: 0;
  }

  .flat-wrap-media-product .swiper-button-next {
    right: -20px;
  }

  .flat-wrap-media-product .swiper-button-prev {
    left: -20px;
  }

  .flat-wrap-iconbox .tf-swiper {
    padding: 0 65px;
  }
}

@media (width >= 1600px) {
  .header-default .box-nav-menu {
    gap: 40px;
  }

  .footer-style-2 .footer-col-block.s4 {
    padding: 0 110px;
  }

  .s-banner-product .content-right {
    width: 100%;
    max-width: 791px;
  }

  .s-banner-product .content-banner {
    justify-content: unset;
    padding-left: 90px;
  }

  .banner-cls-baby .item {
    right: -69px;
  }

  .s2-banner-bundle .banner-bundle .item {
    left: -66px;
  }

  .tf-btn.btn-cls:hover .icon {
    margin-left: 16px;
  }

  .fl-control-sw2 .swiper-button-prev {
    left: -54px;
  }

  .fl-control-sw2 .swiper-button-next {
    right: -54px;
  }
}

@media (width <= 1440px) {
  .section-cls-tabs {
    gap: 30px;
  }

  .section-cls-tabs .tab-content img {
    border-radius: 16px;
  }

  .section-cls-tabs .right {
    border-radius: 16px;
    padding: 20px;
  }

  .section-cls-tabs .menu-tab-line .tab-link {
    padding: 15px 0;
    font-size: 20px;
    line-height: 30px;
  }

  .section-cls-tabs .menu-tab-line .tab-link .icon {
    width: 70px;
    height: 50px;
    font-size: 14px;
  }

  .slider-fashion-1 .slider-wrap {
    height: 700px;
  }

  .leave-comment-wrap .title {
    margin-bottom: 36px;
    font-size: 30px;
    line-height: 42px;
  }
}

@media (width <= 1399px) {
  .tf-control-layout .sw-layout-5, .tf-control-layout .sw-layout-6 {
    display: none;
  }
}

@media (width <= 1199px) {
  .pb_xl-0 {
    padding-bottom: 0 !important;
  }

  .footer-pb-2 {
    padding-bottom: 165px;
  }

  .footer-style-2 .s1 {
    margin-bottom: 30px;
  }

  .tf-sticky-btn-atc {
    bottom: 66px;
  }

  .title-success-order .icon {
    width: 100px;
    height: 100px;
  }

  .tf-page-cart-sidebar {
    margin-top: 60px;
  }

  .tf-toolbar-bottom {
    display: flex;
  }

  .xl-pb-70 {
    padding-bottom: 65px;
  }

  .popup-search.type-search-product .wrapper-shop {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 30px;
  }

  .popup-search.type-search-product .top-title {
    margin-bottom: 20px;
  }

  .sidebar-filter {
    z-index: 3000;
    background-clip: padding-box;
    outline: 0;
    flex-direction: column;
    display: flex;
    position: fixed;
    bottom: 0;
  }

  .sidebar-filter.left {
    top: 0;
    left: 0;
    transform: translateX(-100%);
  }

  .sidebar-filter.right {
    top: 0;
    right: 0;
    transform: translateX(100%);
  }

  .sidebar-filter.show {
    transform: none;
  }

  .banner-text-fashion .image-1 {
    width: 80%;
  }

  .banner-text-fashion .image-2 {
    width: 50%;
    top: 35%;
    bottom: 5%;
    left: 0%;
  }

  .logo-header-2, .logo-header {
    justify-content: center;
    display: flex;
  }

  .header-default .wrapper-header .nav-icon {
    gap: 10px;
  }

  .header-absolute-2 {
    margin-bottom: -64px;
  }

  .header-absolute-2:not(.header-bg) .logo-header .logo-white {
    display: block;
  }

  .header-absolute-2:not(.header-bg) .logo-header .logo-dark {
    display: none;
  }

  .header-absolute-2:not(.header-bg) .nav-icon .nav-icon-item, .header-absolute-2:not(.header-bg) .mobile-menu {
    color: var(--white);
  }

  .slider-scroll, .product-thumbs-slider {
    flex-direction: column;
  }

  .slider-scroll .flat-wrap-media-product, .product-thumbs-slider .flat-wrap-media-product {
    width: 100%;
  }

  .slider-scroll .tf-product-media-thumbs, .product-thumbs-slider .tf-product-media-thumbs {
    order: 1;
    width: 100%;
  }

  .tab-vertical-product-desc {
    display: block;
  }

  .tab-vertical-product-desc .menu-tab {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    gap: 20px;
    display: flex;
    overflow: auto;
  }

  .tab-vertical-product-desc .tab-link {
    white-space: nowrap;
    padding: 12px 0;
  }

  .tab-vertical-product-desc .tab-link:after {
    width: 0;
    height: 1px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .tab-vertical-product-desc .tab-link.active:after {
    width: 100%;
    height: 1px;
  }

  .tab-vertical-product-desc .tab-content {
    margin-top: 20px;
  }

  .tab-vertical-product-desc .wd-product-descriptions {
    padding: 30px;
  }

  .tf-control-layout .sw-layout-4 {
    display: none;
  }

  .card-product.card-product-size .countdown-box {
    bottom: 40px;
  }

  .mx_40 {
    margin-left: 24px;
    margin-right: 24px;
  }

  .flat-controltab-nav .box-nav-swiper {
    display: none;
  }
}

@media (width <= 1024px) {
  .section-results .results-item {
    margin-bottom: 30px;
  }

  h1, .display-2xl {
    font-size: 52px;
    line-height: 70px;
  }

  .fs-84, .display-2xl-2 {
    font-size: 52px;
    line-height: 62px;
  }

  h2, .display-xl, .display-xl-2 {
    font-size: 40px;
    line-height: 52px;
  }

  h3, .display-lg, .display-lg-2, .display-lg-3 {
    font-size: 38px;
    line-height: 50px;
  }

  .display-lg-5, .display-lg-4 {
    font-size: 38px;
    line-height: 48px;
  }

  h4, .display-md, .display-md-2, .display-md-3 {
    font-size: 30px;
    line-height: 38px;
  }

  h5, .display-sm {
    font-size: 28px;
    line-height: 36px;
  }

  h6, .display-xs {
    font-size: 22px;
    line-height: 30px;
  }

  .flat-spacing-3 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-6, .flat-spacing, .flat-spacing-11 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-14 {
    padding-top: 73px;
    padding-bottom: 88px;
  }

  .flat-spacing-15, .flat-spacing-16, .flat-spacing-17 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-19 {
    padding-top: 87px;
    padding-bottom: 100px;
  }

  .flat-spacing-21, .flat-spacing-22 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-23 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .flat-spacing-28, .flat-spacing-26 {
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .flat-spacing-27 {
    padding-top: 125px;
    padding-bottom: 100px;
  }

  .flat-spacing-29 {
    padding-top: 73px;
    padding-bottom: 88px;
  }

  .flat-spacing-30 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .tf-product-info-wrap .tf-product-delivery-return {
    display: block;
  }

  .tf-product-info-wrap .tf-product-delivery-return .product-delivery:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    margin-bottom: 25px;
    padding-bottom: 25px;
  }

  .banner-shop .box-title .title {
    font-size: 30px;
    line-height: 36px;
  }
}

@media (width <= 991px) {
  .mt-lg-40 {
    margin-top: 40px !important;
  }

  .section-asked-questions .content {
    gap: 24px;
    margin-bottom: 40px;
  }

  .section-asked-questions .faq-wrap {
    border-radius: 8px;
    padding: 24px 15px;
  }

  .wd-customer-review {
    flex-direction: column;
  }

  .wg-cls-text {
    padding: 15px;
  }

  .flat-wrapper-testimonial > img {
    width: 150px;
  }

  .flat-wrapper-testimonial .img-item-2 {
    bottom: 0;
    left: 0;
  }

  .flat-wrapper-testimonial .img-item-1 {
    top: 0;
  }

  .grid-cls-suppermarket .s-cls {
    height: 400px;
  }

  @keyframes floating {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(10px);
    }
  }

  .banner-text-skincare .text-xl-2 {
    font-size: 18px;
    line-height: 22px;
  }

  .s-contact .content-left {
    margin-bottom: 42px;
  }

  .s-blog-single {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .popup-search.type-search-product .wrapper-shop {
    row-gap: 30px;
  }

  .banner-tagline-phonecase {
    flex-wrap: wrap;
    gap: 30px;
  }

  .banner-tagline-phonecase .image {
    width: 100%;
    height: 450px;
  }

  .banner-tagline-phonecase .content {
    gap: 5px;
  }

  .banner-tagline-phonecase .list-tagline li {
    padding-left: 0;
  }

  .card-product.style-list .box-icon {
    width: 46px;
    height: 46px;
  }

  .wg-pagination {
    gap: 8px;
  }

  .wg-pagination .pagination-item {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .banner-lookbook {
    height: 500px;
  }

  .banner-container-wrap {
    margin-bottom: 60px;
  }

  .s-banner-cd-baby .banner-container {
    text-align: center;
    flex-wrap: wrap-reverse;
    justify-content: center;
    padding: 30px 15px;
  }

  .banner-cls-phonecase .banner-content {
    flex-wrap: wrap-reverse;
  }

  .s-banner-colection .box-content {
    gap: 20px;
  }

  .s-banner-colection .box-title-banner {
    gap: 5px;
  }

  .s-banner-colection br {
    display: none;
  }

  .slider-fashion-3 .image {
    margin-left: 100px;
  }

  .slider-default .box-title-slider, .slider-style-2 .box-title-slider {
    gap: 10px;
  }

  .slider-default .content-slider, .slider-style-2 .content-slider {
    gap: 20px;
  }

  .slider-default .slider-wrap {
    height: 500px;
  }

  .sb-contact {
    margin-bottom: 50px;
  }

  .sb-banner .image {
    max-height: 600px;
  }

  .flat-single-product {
    padding-bottom: 80px;
  }

  .nav-swiper {
    width: 40px;
    height: 40px;
  }

  .tf-btn {
    gap: 8px;
    padding: 10px 24px;
  }

  .tf-product-info-wrap .tf-product-extra-link, .tf-bundle-product-item {
    gap: 15px;
  }

  .tf-bundle-product-item .bundle-image, .tf-product-fbt-wrap .fbt-image {
    width: 100px;
    min-width: 100px;
  }

  .tf-product-fbt-wrap .list-fbt {
    gap: 20px;
  }

  .wg-cls {
    gap: 12px;
  }

  .main-content-account {
    flex-wrap: wrap;
  }

  #goTop, #whatsAap {
    width: 32px;
    height: 32px;
    right: 20px;
  }

  .sec-blog {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .s-blog-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width <= 767px) {
  .md-px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .form-buyX-getY .item-product:before {
    top: 24px;
  }

  .form-buyX-getY .group-item-product .arrow {
    width: 42px;
    height: 42px;
  }

  .sec-blog {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .s-blog-single {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-results .tf-grid-layout {
    row-gap: 34px;
  }

  .section-results .results-item {
    margin-bottom: 20px;
  }

  .slider-jewelry {
    padding-left: 15px;
    padding-right: 15px;
  }

  .slider-jewelry .heading {
    font-size: 40px;
    line-height: 52px;
  }

  .section-cls-tabs {
    flex-direction: column;
  }

  .section-cls-tabs .left, .section-cls-tabs .right {
    width: 100%;
  }

  .leave-comment-wrap .title {
    margin-bottom: 32px;
    font-size: 24px;
    line-height: 36px;
  }

  .s-term-user .term-title {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
  }

  .modal-compare .title {
    margin-bottom: 24px;
  }

  .s-contact .wg-map {
    margin-bottom: 60px;
  }

  .sidebar-order-success .order-box {
    padding-bottom: 24px;
  }

  .logo-header img {
    width: 110px;
  }

  .form-default fieldset label {
    font-size: 14px;
    line-height: 22px;
  }

  .s-blog-single .group-image {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .tf-social-icon.style-1 a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .flat-wrapper-testimonial > img {
    width: 120px;
  }

  .flat-wrapper-iconbox {
    padding: 60px 24px 24px;
  }

  .footer-default {
    font-size: 14px;
    line-height: 22px;
  }

  .grid-cls-suppermarket .s-cls {
    height: 350px;
  }

  .grid-cls-suppermarket .s-cls .content {
    right: 100px;
  }

  .banner-lookbook .lookbook-item.position3 {
    left: 37%;
  }

  .grid-cls-v5 .item1, .grid-cls-v5 .item2, .grid-cls-v5 .item3, .grid-cls-v5 .item4 {
    height: 400px;
  }

  .footer-logo {
    max-width: 108px;
  }

  .s3-banner-with-text .content-with-text, .s2-banner-with-text .content-with-text {
    text-align: center;
    justify-items: center;
  }

  .flat-title.style-between {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
  }

  .image-compare .icv__img-a {
    object-fit: cover;
    height: 300px;
  }

  .image-compare .icv__label {
    padding: 6px 20px;
    font-size: 14px;
    line-height: 22px;
    bottom: 12px;
  }

  .image-compare .icv__label-before {
    left: 12px;
  }

  .image-compare .icv__label-after {
    right: 12px;
  }

  .image-compare .icv__circle {
    width: 42px;
    height: 42px;
  }

  .image-compare .icv__circle:after {
    width: 32px;
    height: 32px;
  }

  .image-compare .icv__circle:before {
    font-size: 12px;
  }

  .tf-main-success .box-progress-order {
    text-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
  }

  .tf-main-success .box-progress-order .order-progress-item {
    gap: 8px;
    padding: 0 8px;
    border: 0 !important;
  }

  .tf-main-success .box-timeline-order {
    margin: 42px auto 32px;
  }

  .title-success-order .icon {
    width: 80px;
    height: 80px;
  }

  .tf-checkout-cart-main .grid-2, .tf-checkout-cart-main .grid-3 {
    grid-template-columns: 1fr;
  }

  .table-page-cart thead {
    display: none;
  }

  .table-page-cart .tf-cart-item {
    min-height: 140px;
    margin-bottom: 15px;
    padding-inline-start: 94px;
    font-size: 12px;
    font-weight: 500;
    display: block;
    position: relative;
  }

  .table-page-cart .tf-cart-item .wg-quantity {
    padding: 2px 4px;
  }

  .table-page-cart .tf-cart-item .tf-cart-item_total {
    width: 100%;
  }

  .table-page-cart .tf-cart-item .img-box {
    border-bottom: none;
    width: 80px;
    max-height: 110px;
    margin-bottom: 0;
    padding-bottom: 0;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
  }

  .table-page-cart .tf-cart-item td {
    flex-flow: wrap;
    align-items: center;
    margin: 0;
    padding: 10px 0;
    display: flex;
  }

  .table-page-cart .tf-cart-item td:not(:last-child) {
    border-bottom: 1px solid var(--line);
  }

  .table-page-cart .tf-cart-item td[data-cart-title]:before {
    content: attr(data-cart-title);
    color: var(--dark);
    text-align: start;
    flex: auto;
  }

  .table-page-cart .tf-cart-item_product .cart-info .variants {
    margin-bottom: 15px;
  }

  .tf-sticky-btn-atc .tf-sticky-atc-product {
    display: none !important;
  }

  .tf-sticky-btn-atc .tf-sticky-atc-infos {
    width: 100%;
  }

  .tf-sticky-btn-atc .tf-sticky-atc-infos form {
    flex-direction: column;
  }

  .wd-form-address {
    padding: 20px 15px;
  }

  .account-orders .account-no-orders-wrap img {
    margin-bottom: 30px;
  }

  .account-orders .account-no-orders-wrap .text {
    margin-bottom: 24px;
  }

  .modal-compare .modal-content {
    padding: 24px 15px;
  }

  .modal-order-detail .list-infor {
    gap: 15px;
    margin-bottom: 32px;
  }

  .modal-order-detail .list-infor li:not(:last-child) {
    padding-right: 15px;
  }

  .modal-order-detail .tb-order-detail [data-title]:before {
    content: attr(data-title);
    text-align: start;
    flex: auto;
  }

  .modal-order-detail .tb-order-detail .item {
    font-size: 14px;
  }

  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 15px 15px 15px 90px;
    position: relative;
  }

  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) .image {
    width: 80px;
    height: 111.7px;
    position: absolute;
    top: 15px;
    left: 0;
  }

  .modal-order-detail .tb-order-detail .order-detail-item:not(.subtotal) .item {
    justify-content: space-between;
    width: 100%;
    display: flex;
  }

  .modal-order-detail .tb-order-detail .subtotal .item {
    width: max-content;
  }

  .modal-share-social .wrap-code {
    margin-bottom: 20px;
  }

  .popup-style-2 .modal-content {
    padding: 26px 20px;
  }

  .popup-style-2 .modal-header {
    margin-bottom: 20px;
  }

  .form-ask-question button {
    margin-top: 20px;
  }

  .popup-search.type-search-product .wrapper-shop {
    grid-template-columns: repeat(2, 1fr);
  }

  .wg-map .map {
    height: 350px;
  }

  .wg-map.style-absolute .box-store {
    position: unset;
    transform: unset;
    text-align: center;
    max-width: 100%;
  }

  .wg-map.style-absolute .box-store:not(.box-store-bg) {
    padding: 30px 0 0;
  }

  .wg-map.style-absolute .box-store.box-store-bg {
    margin-top: 24px;
  }

  .banner-account.banner-acc-countdown {
    padding: 15px;
  }

  .account-dashboard .box-check-list {
    gap: 15px;
  }

  .account-dashboard .banner-account .image img {
    object-fit: cover;
    height: 250px;
  }

  .popup-style-1 .popup-header {
    padding: 15px 15px 10px;
  }

  .popup-style-1 .popup-header:after {
    left: 15px;
    right: 15px;
  }

  .popup-style-1 .popup-inner {
    padding: 15px;
  }

  .modal-before-you-leave .content {
    margin: 0 15px 20px;
    padding: 20px 0;
  }

  .modal-before-you-leave .content .heading {
    margin-bottom: 16px;
  }

  .modal-before-you-leave .tf-mini-cart-sroll, .popup-shopping-cart .tf-minicart-recommendations, .popup-shopping-cart .tf-mini-cart-tool-content, .popup-shopping-cart .tf-mini-cart-bottom-wrap, .popup-shopping-cart .tf-mini-cart-tool, .popup-shopping-cart .tf-mini-cart-threshold, .popup-shopping-cart .tf-mini-cart-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .popup-shopping-cart .tf-mini-cart-tool-content .tf-cart-tool-btns .tf-btn {
    height: 48px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .popup-shopping-cart.style-2 .also-like-product .tf-mini-cart-item .tf-mini-cart-info {
    align-items: flex-start;
  }

  .popup-search .modal-content {
    padding: 50px 0;
  }

  .popup-search .looking-for-wrap {
    margin-bottom: 30px;
  }

  .popup-search .heading {
    margin-bottom: 24px;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
  }

  .popup-search .form-search {
    margin-bottom: 24px;
  }

  .modal-newsletter.style-absolute .modal-content img {
    min-height: 500px;
  }

  .modal-newsletter.style-row .modal-top {
    width: 100%;
    height: 300px;
  }

  .modal-newsletter.style-row .modal-bottom {
    width: 100%;
  }

  .card-product .tooltip, .card-product .size-box {
    display: none !important;
  }

  .card-product .price-wrap {
    font-size: 14px;
    line-height: 20px;
  }

  .card-product .list-product-btn li.wishlist, .card-product .list-product-btn li.compare, .card-product .list-product-btn .box-icon.wishlist, .card-product .list-product-btn .box-icon.compare {
    display: none;
  }

  .card-product.style-2 .list-product-btn {
    border-radius: 30px;
    overflow: hidden;
  }

  .card-product.style-2 .list-product-btn .box-icon {
    border: none;
  }

  .card-product.style-2 .list-product-btn li:first-child .box-icon {
    border-right: 1px solid var(--line);
    border-left-color: var(--white);
  }

  .card-product.style-3 .product-btn-main .btn-main-product {
    padding: 6px;
  }

  .card-product.style-3 .product-btn-main .btn-main-product span {
    font-size: 12px;
    line-height: 20px;
  }

  .card-product.style-3 .product-btn-main .btn-main-product .icon {
    display: none;
  }

  .card-product.style-3 .product-btn-main .btn-main-product.quickview {
    display: flex;
  }

  .card-product.out-of-stock .card-product-wrapper:before {
    content: "Sold Out";
    width: 60px;
    height: 60px;
    font-size: 10px;
  }

  .card-product.style-list .add-to-cart {
    padding: 6px 24px;
    font-size: 14px;
  }

  .card-product.style-list .box-icon {
    width: 38px;
    height: 38px;
  }

  .card-product.style-list .list-product-btn {
    gap: 8px;
  }

  .grid-cls-v1 .wg-cls .image {
    height: 400px;
  }

  .banner-text-plant .image img {
    max-height: 500px;
  }

  .s-banner-with-text .content-banner {
    text-align: center;
    gap: 15px;
    margin-top: 30px;
  }

  .s-banner-with-text .banner-container-wrap {
    margin-bottom: 50px;
  }

  .s-banner-with-text .box-title-banner {
    gap: 5px;
  }

  .s-banner-product .image-wrap {
    width: 100%;
  }

  .s-banner-product .content-banner {
    flex-wrap: wrap;
    gap: 20px;
  }

  .s-banner-product .content-right {
    gap: 20px;
  }

  .s-banner-product .content-right .box-title {
    gap: 5px;
  }

  .s-banner-product .image {
    max-width: unset;
    height: 600px;
  }

  .wg-countdown-2 .countdown__item {
    gap: 0;
    min-width: 40px;
  }

  .wg-countdown-2 .countdown__value {
    font-size: 30px;
    line-height: 40px;
  }

  .s-banner-countdown .banner-content {
    left: 15px;
    right: 15px;
    transform: translateY(-50%);
  }

  .s-banner-countdown .image img {
    min-height: 400px;
  }

  .s-banner-colection .tf-col-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .s-banner-colection .box-content {
    text-align: center;
    margin: 0;
  }

  .s-banner-colection .image img {
    object-fit: cover;
    width: 100%;
  }

  .sw-dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }

  .sw-dots .swiper-pagination-bullet:after {
    width: 20px;
    height: 20px;
  }

  .slider-pod br {
    display: none;
  }

  .slider-style-2 .slider-wrap {
    flex-wrap: wrap-reverse;
  }

  .slider-style-2 .box-content-left {
    position: unset;
    width: 100%;
    padding: 70px 0 80px;
  }

  .slider-style-2 .box-content-left br {
    display: none;
  }

  .slider-style-2 .image {
    width: 100%;
    height: 300px;
  }

  .slider-default .slider-wrap {
    height: 400px;
  }

  .slider-default .wrap-pagination {
    bottom: 20px;
  }

  .wg-coming-soon {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .s-faq .name-faq {
    margin-bottom: 20px;
  }

  .s-faq .faq-item:not(:last-child) {
    margin-bottom: 30px;
  }

  .sb-contact {
    margin-bottom: 30px;
    padding: 30px 15px;
  }

  .sb-contact .title, .sb-contact .sub {
    margin-bottom: 15px;
  }

  .s-blog-single .heading {
    gap: 10px;
    margin-bottom: 30px;
  }

  .s-blog-single .heading .entry-meta {
    gap: 5px 10px;
  }

  .s-blog-single .content .entry_image {
    margin-bottom: 30px;
  }

  .s-blog-single .content > .text {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 22px;
  }

  .s-blog-single .group-image {
    margin-bottom: 30px;
  }

  .s-blog-single .block-quote {
    margin-bottom: 20px;
  }

  .s-blog-single .block-quote p {
    font-size: 14px;
    line-height: 22px;
  }

  .s-blog-single .bot {
    margin-bottom: 30px;
  }

  .s-blog-single .bot .entry-tag {
    margin-bottom: 10px;
  }

  .s-blog-single .related-post {
    gap: 15px;
    padding: 30px 0;
  }

  .s-blog-single .related-post p {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .s-blog-single .related-post p.name-post {
    font-size: 14px;
  }

  .s-blog-single .related-post .post {
    gap: 10px;
  }

  .modal-before-you-leave .modal-content {
    max-width: 320px;
  }

  h1, .display-2xl {
    font-size: 42px;
    line-height: 60px;
  }

  .fs-84, .display-2xl-2 {
    font-size: 42px;
    line-height: 52px;
  }

  h2, .display-xl, .display-xl-2 {
    font-size: 30px;
    line-height: 42px;
  }

  h3, .display-lg, .display-lg-2, .display-lg-3 {
    font-size: 28px;
    line-height: 40px;
  }

  .display-lg-5, .display-lg-4 {
    font-size: 28px;
    line-height: 38px;
  }

  h4, .display-md, .display-md-2, .display-md-3 {
    font-size: 24px;
    line-height: 32px;
  }

  h5, .display-sm {
    font-size: 22px;
    line-height: 30px;
  }

  h6, .display-xs {
    font-size: 20px;
    line-height: 28px;
  }

  .text-xl {
    font-size: 18px;
    line-height: 28px;
  }

  .text-xl-2 {
    font-size: 18px;
    line-height: 22px;
  }

  .text-xl-3 {
    font-size: 18px;
    line-height: 30px;
  }

  .text-lg {
    font-size: 16px;
    line-height: 26px;
  }

  .text-md {
    font-size: 14px;
    line-height: 22px;
  }

  .body-text {
    font-size: 14px;
    line-height: 22.6px;
  }

  .body-text-2 {
    font-size: 14px;
    line-height: 16.2px;
  }

  .s-banner-bundle .bundle-wrap {
    margin-top: 32px;
  }

  .s2-banner-bundle .bundle-wrap {
    margin-top: 60px;
  }

  .banner-about {
    height: 300px;
  }

  #header .nav-icon .nav-account, #header .nav-icon .nav-wishlist, #header .nav-icon .nav-compare {
    display: none;
  }

  .footer .footer-heading-mobile {
    display: block;
    position: relative;
  }

  .footer .footer-heading-mobile:after {
    content: "";
    background-color: var(--dark);
    width: 12px;
    height: 1px;
    transition: all .25s ease-in-out;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .footer .footer-heading-mobile:before {
    content: "";
    background-color: var(--dark);
    width: 1px;
    height: 12px;
    transition: all .25s ease-in-out;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-50%, -50%);
  }

  .footer .footer-col-block.open .footer-heading-mobile:before {
    opacity: 0;
  }

  .footer .footer-col-block.open .footer-heading-mobile:after {
    transform: translate(0%, -50%)rotate(180deg);
  }

  .footer-default .collapse:not(.show) {
    display: none;
  }

  .footer .footer-menu {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer .footer-menu > div {
    width: 100%;
  }

  .flat-spacing-6, .flat-spacing-2, .flat-spacing, .flat-spacing-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-9, .flat-spacing-4 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .flat-spacing-5 {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .flat-spacing-8 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-10 {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .flat-spacing-11 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .flat-spacing-12 {
    padding-top: 60px;
    padding-bottom: 44px;
  }

  .flat-spacing-13 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .flat-spacing-14 {
    padding-top: 63px;
    padding-bottom: 78px;
  }

  .flat-spacing-15, .flat-spacing-16, .flat-spacing-17 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-19 {
    padding-top: 67px;
    padding-bottom: 80px;
  }

  .flat-spacing-20 {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .flat-spacing-21 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-22 {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .flat-spacing-23 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-25 {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .flat-spacing-26 {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .flat-spacing-28, .flat-spacing-27 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .flat-spacing-29 {
    padding-top: 63px;
    padding-bottom: 78px;
  }

  .flat-single-product {
    padding-bottom: 60px;
  }

  .tf-product-info-wrap {
    margin-top: 40px;
  }

  .tf-product-fbt {
    padding: 15px;
  }

  .tf-product-fbt .bundle-total-submit {
    font-size: 16px;
    line-height: 26px;
  }

  .tf-bundle-product-item .bundle-image {
    width: 80px;
    min-width: 80px;
  }

  .tab-vertical-product-desc .wd-product-descriptions {
    padding: 30px 15px;
  }

  .tf-control-layout .sw-layout-3 {
    display: none;
  }

  .tf-group-filter {
    gap: 6px;
  }

  .brand-item {
    max-width: 200px;
    height: 74px;
  }

  .mx_40 {
    margin-left: 15px;
    margin-right: 15px;
  }

  .banner-shop {
    height: 500px;
  }

  .banner-shop .box-title .title {
    font-size: 26px;
    line-height: 28px;
  }

  .cls-video .img-product {
    max-width: 68px;
  }

  .cls-video .icon {
    width: 35px;
    height: 35px;
  }

  .menu-tab-fill .tab-link {
    min-width: 100px;
    padding: 5px 15px;
  }

  .slider-wrap-lb .card-product {
    text-align: left;
    align-items: flex-start;
    gap: 12px;
    display: flex;
  }

  .slider-wrap-lb .card-product .card-product-info {
    justify-items: flex-start;
    padding: 0;
  }

  .slider-wrap-lb .card-product .tf-btn {
    padding: 6px 14px;
    font-size: 14px;
    line-height: 22px;
  }

  .slider-wrap-lb .card-product .card-product-wrapper {
    max-width: 140px;
  }

  .slider-wrap-lb .card-product .box-icon {
    border-radius: 50% !important;
  }

  .footer-pb-2 {
    padding-bottom: 197px;
  }

  .tf-btn {
    padding: 8px 20px;
    font-size: 14px;
    line-height: 24px;
  }

  .s-contact.style-2 .content-left {
    width: 100%;
  }

  .popup-product .modal-header {
    margin-top: 20px;
    margin-bottom: 32px;
  }
}

@media (width <= 575px) {
  .tf-main-success .ship-address-item {
    margin-bottom: 24px;
  }

  .tf-main-success .ship-address-item .title {
    margin-bottom: 15px;
  }

  .text-xl {
    font-size: 16px;
    line-height: 26px;
  }

  .text-xl-2 {
    font-size: 16px;
    line-height: 20px;
  }

  .text-xl-3 {
    font-size: 16px;
    line-height: 28px;
  }

  .card-product.style-list .card-product-info .desc {
    display: none;
  }

  .card-product .on-sale-item {
    height: 24px;
    font-size: 12px;
    line-height: 24px;
  }

  .banner-lookbook .lookbook-item.position3 {
    left: 24%;
  }

  .wg-testimonial-2 .text {
    font-size: 20px;
  }

  .grid-cls-v5 .item1, .grid-cls-v5 .item2, .grid-cls-v5 .item3, .grid-cls-v5 .item4 {
    height: 300px;
  }

  .grid-cls-v5 .wg-cls .tf-btn {
    padding: 8px 15px;
  }

  .grid-cls-v5 .wg-cls .tf-btn .icon, .slider-default .content-slider .sub {
    display: none;
  }

  .slider-electronic .reverse-slide img {
    width: 630px;
    min-width: max(100%, 630px);
    position: absolute;
    top: 0;
    left: 0;
  }

  .image-compare .icv__img-a {
    height: 200px;
  }

  .form-login .button-wrap {
    flex-wrap: wrap;
  }

  .loobook-product {
    gap: 10px;
    padding: 12px;
  }

  .loobook-product .zero {
    display: none;
  }

  .loobook-product .btn-lookbook {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .loobook-product .content {
    gap: 8px;
  }

  .s-banner-product .image {
    height: 450px;
  }

  .s-banner-product .loobook-product {
    bottom: 15px;
    left: 15px;
    right: 15px;
  }

  .wg-countdown-2 {
    padding: 15px;
  }

  .wg-countdown-2 .countdown__timer {
    gap: 29px !important;
  }

  .wg-countdown .countdown__timer {
    gap: 10px;
  }

  .wg-countdown .countdown__item {
    width: 60px;
    height: 70px;
  }

  .wg-countdown .countdown__value {
    font-size: 24px;
    line-height: 32px;
  }

  .s-coming-soon br {
    display: none;
  }

  .s-coming-soon .sub, .s-coming-soon .wg-countdown, .s-coming-soon .form-email-wrap {
    margin-bottom: 25px;
  }

  .blog-item.style-2 {
    flex-wrap: wrap;
  }

  .blog-item.style-2 .entry_image {
    max-width: unset;
    min-height: 350px;
    max-height: 400px;
  }

  .s-blog-single .related-post .icon {
    display: none;
  }

  .s-blog-list-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .footer-default .footer-contact, .footer-default .s3 .footer-col-block:first-child .footer-menu-list, .footer-default .footer-newsletter {
    margin-bottom: 30px;
  }

  .footer-default .footer-heading {
    margin-bottom: 20px;
  }

  .footer-default .s3 .footer-col-block:last-child .footer-menu-list {
    margin-top: 20px;
  }

  .footer-default .s3 .footer-col-block:last-child .footer-heading {
    margin-bottom: 0;
  }

  .footer-style-2 .footer-menu-list {
    margin-bottom: 20px;
  }

  .footer-style-2 .s4 .footer-heading {
    margin-bottom: 0;
  }

  .footer-style-2 .s4 .footer-newsletter {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .footer-heading-mobile {
    padding-right: 20px;
    line-height: 24px;
    display: block;
    position: relative;
  }

  .footer-heading-mobile:after {
    content: "";
    background-color: var(--dark);
    width: 14px;
    height: 2px;
    transition: all .25s ease-in-out;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .footer-heading-mobile:before {
    content: "";
    background-color: var(--dark);
    width: 2px;
    height: 14px;
    transition: all .25s ease-in-out;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(-50%, -50%);
  }

  .footer-col-block.open .footer-heading-mobile:before {
    opacity: 0;
  }

  .footer-col-block.open .footer-heading-mobile:after {
    transform: translate(0%, -50%)rotate(180deg);
  }

  .footer-default .collapse:not(.show) {
    display: none !important;
  }

  .flat-single-grid .item {
    flex-shrink: 0;
    width: 350px;
    height: 450px;
  }

  .form-default .cols {
    flex-wrap: wrap;
  }

  .wg-testimonial.style-row {
    flex-direction: column-reverse;
  }

  .wg-testimonial.style-row .image {
    width: 60%;
    margin: 12px auto 0;
  }

  .tf-sw-iconbox-row .tf-icon-box {
    justify-content: center;
  }

  .cls-bn-content .img-product {
    max-width: 62px;
    max-height: 75px;
  }

  .banner-shop {
    height: 400px;
  }

  .modal-order-detail .list-infor li:not(:last-child) {
    padding-right: 0;
  }

  .modal-order-detail .list-infor li:not(:last-child):after {
    display: none;
  }

  .form-buyX-getY .group-item-product {
    align-items: unset;
    flex-direction: column;
  }

  .form-buyX-getY .group-item-product .arrow {
    margin-top: -12px;
    margin-left: auto;
    margin-right: auto;
    transform: rotate(90deg);
  }

  .form-review .group-2-ip {
    grid-template-columns: 1fr;
  }
}

@media (width <= 425px) {
  .js-countdown .countdown__timer {
    gap: 5px;
  }
}

#toggle-rtl {
  text-transform: uppercase;
  z-index: 999;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 40px;
  min-width: 30px;
  height: 40px;
  padding: 0;
  font-size: 12px;
  display: flex;
  position: fixed;
  top: 50%;
  right: 15px;
}

.rtl #toggle-rtl {
  left: 15px;
  right: auto;
}

.rtl .tf-compare-table .tf-compare-row .tf-compare-col:last-child {
  border-left: 1px solid var(--line);
}

.rtl .wg-coming-soon .form-email-wrap .button-submit {
  left: 5px;
  right: unset;
}

.rtl .wd-product-descriptions .item ul li {
  padding-left: 0;
  padding-right: 20px;
}

.rtl .wd-product-descriptions .item ul li:before {
  left: 0;
  right: 5px;
}

.rtl .tf-variant-dropdown .select-item {
  text-align: start;
}

.rtl .tf-product-info-wrap .tf-product-delivery-return .product-delivery:not(:last-child) {
  border-left: 1px solid var(--line);
  border-right: 0;
}

.rtl .wrap-code.style-1 {
  padding-left: 112px;
  padding-right: 11px;
}

.rtl .wrap-code.style-1 .btn-coppy-text {
  left: 3px;
  right: unset;
}

.rtl .modal-dialog-centered .icon-close {
  left: 9px;
  right: unset;
}

.rtl .box-nav-menu .sub-menu-style-3 {
  left: -135px;
}

.rtl .wrapper-header-bottom .tf-mega-categories .categories-title {
  margin-left: 42px;
  margin-right: 0;
}

.rtl .tf-btn.hover-icon:hover .icon {
  animation: .3s linear link-icon-reverse;
}

@keyframes link-icon-reverse {
  0% {
    opacity: 1;
    transform: translateX(0)rotate(180deg);
  }

  49% {
    opacity: 0;
    transform: translateX(-20px)rotate(180deg);
  }

  50% {
    opacity: 0;
    transform: translateX(20px)rotate(180deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0)rotate(180deg);
  }
}

.rtl .s3-banner-with-text .content-with-text, .rtl .s2-banner-with-text .content-with-text {
  justify-items: start;
}

.rtl .cls-video, .rtl .wg-cls, .rtl .banner-shop.style-left-center {
  direction: rtl;
}

.rtl .infiniteslide, .rtl .box-nav-swiper, .rtl .s-banner-with-text .image-banner {
  direction: ltr;
}

.rtl .flat-controltab-nav .box-nav-swiper {
  left: 0;
  right: unset;
  direction: ltr;
}

.rtl .marquee-sale .marquee-wrapper {
  animation-name: infiniteScrollRv;
}

@keyframes infiniteScrollRv {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.rtl .header-default .nav-icon .nav-icon-item .text {
  margin-left: 0;
  margin-right: 8px;
}

.rtl .form-search .btn-search {
  left: 6px;
  right: unset;
}

.rtl .flat-thumbs-tes .box-nav-swiper {
  justify-content: flex-end;
}

.rtl .box-testimonial-main, .rtl .banner-shop.style-top .tf-btn {
  direction: rtl;
}

.rtl .s-blog-single .related-post .text-wrap-right {
  text-align: left;
}

.rtl .s-blog-single .related-post .icon, .rtl .modal-quick-view .tf-product-info-wrap .view-details .icon, .rtl .s-cls.abs-left-center .image img, .rtl .blog-item-v2 .entry-content .btn-readmore .icon-arr-right, .rtl .tf-btn .icon-arr-right3, .rtl .tf-btn .icon-arr-right {
  transform: rotate(180deg);
}

.rtl .icon-arrow-top-left {
  transform: rotate(-90deg);
}

.rtl .wg-cls .hover-icon-2 .icon {
  transform: scale(0)rotate(-90deg);
}

.rtl .wg-cls .hover-icon-2:hover .icon {
  transform: scale(1)rotate(-90deg);
}

.rtl .tf-mini-cart-tool-openable.estimate-shipping select {
  padding-left: 24px;
  padding-right: 12px;
}

.rtl .popup-shopping-cart .tf-minicart-recommendations .tf-mini-cart-item {
  direction: rtl;
}

.rtl .popup-shopping-cart .tf-minicart-recommendations .tf-minicart-recommendations-heading .d-flex {
  direction: ltr;
}

.rtl .popup-shopping-cart .tf-mini-cart-threshold .tf-progress-bar .icon {
  left: -12px;
}

.rtl .popup-search .form-search button {
  left: 20px;
  right: unset;
}

.rtl .nav-ul-mb .demo-label {
  right: calc(100% + 2px);
  left: unset;
}

.rtl .footer-heading-mobile {
  padding-left: 20px;
  padding-right: 0;
}

.rtl .footer-heading-mobile:before {
  left: 16px;
  right: unset;
}

.rtl .footer-heading-mobile:after {
  left: 10px;
  right: unset;
}

.rtl .footer-default .form-newsletter .button-submit {
  left: 2px;
  right: unset;
}

.rtl .footer-default .form-newsletter .button-submit .subscribe-button {
  transform: rotate(180deg);
}

.rtl .blog-item-v2, .rtl .wg-testimonial {
  direction: rtl;
}

.rtl .wg-countdown-2 .countdown__item:not(:last-child) .countdown__value:after {
  left: -14px;
  right: unset;
}

.rtl .modal-newsletter .form-newsletter fieldset input {
  padding-left: 20px;
  padding-right: 66px;
}

.rtl .modal-newsletter .form-newsletter fieldset .icon {
  left: unset;
  right: 20px;
}

.rtl .banner-cls-sportwear.style-abs-2 .image img, .rtl .modal-newsletter .modal-top img, .rtl .wg-pagination .icon-arr-right2, .rtl .grid-cls-suppermarket .s-cls .img-style img, .rtl .s-banner-countdown .image img {
  transform: rotateY(180deg);
}

.rtl .mega-menu .box-search .form-search button {
  left: 20px;
  right: unset !important;
}

.rtl .box-nav-menu .menu-list .menu-link-text .demo-label {
  margin-left: 0;
  margin-right: 4px;
}

.rtl .coming-soon, .rtl .coming-soon .coming-soon-inner {
  transform: rotateY(180deg);
}

.rtl .loobook-product, .rtl .tf-icon-box.style-2 {
  direction: rtl;
}

.rtl .tf-cart-item .tf-cart-item_price .old-price {
  margin-left: 8px;
  margin-right: 0;
}

.rtl .tf-dropdown-sort .select-item {
  text-align: start;
}

.rtl .meta-filter-shop .count-text {
  padding-left: 12px;
  padding-right: 0;
}

.rtl .meta-filter-shop .count-text:after {
  left: 0;
  right: unset;
}

.rtl .card-product.style-2 .list-product-btn li:last-child .box-icon {
  border: 1px solid var(--line);
  border-radius: 30px 0 0 30px;
}

.rtl .card-product.style-2 .list-product-btn li:first-child .box-icon {
  border-left-color: var(--white);
  border-radius: 0 30px 30px 0;
}

.rtl .card-product:not(.style-2, .style-3, .style-6, .style-7, .style-list) .list-product-btn {
  left: 8px;
  right: unset;
}

.rtl .card-product:not(.style-2, .style-3, .style-6, .style-7, .style-list) .list-product-btn .tooltip:before {
  left: -4px;
  right: unset;
}

.rtl .card-product:not(.style-2, .style-3, .style-6, .style-7, .style-list) .box-icon .tooltip {
  left: 100%;
  right: unset;
}

.rtl .card-product:not(.style-2, .style-3, .style-6, .style-7, .style-list) .box-icon:hover .tooltip {
  transform: translateX(8px);
}

.rtl .card-product .card-product-info .old-price {
  margin-left: 8px;
  margin-right: 0;
}

.rtl .card-product .marquee-product .marquee-wrapper {
  animation-name: infiniteScrollRv;
}

.rtl .card-product.style-7 .list-product-btn .box-icon:not(:last-child) {
  border-left: 1px solid var(--line);
  border-right: 0;
}

.rtl .nav-account .dropdown-account {
  left: -50px;
  right: unset;
}

.rtl .tf-select:after {
  left: 16px;
  right: unset !important;
}

.rtl .tf-select select {
  padding: 9px 12px 9px 24px;
}

.rtl .canvas-mb .mb-bottom .bottom-bar-language .tf-currencies {
  border-left: 1px solid var(--line);
  border-right: 0;
}

.rtl .noUi-horizontal .noUi-handle {
  left: auto;
  right: -8px;
}

.rtl .widget-facet {
  overflow: hidden;
}

.rtl #goTop, .rtl #whatsAap {
  left: 20px;
  right: unset;
}

.rtl .card-product, .rtl .tf-sw-slideshow .slider-wrap {
  direction: rtl;
}

.rtl .tf-sw-slideshow .slider-wrap img {
  transform: rotateY(180deg);
}

.rtl .tf-sw-slideshow .bg-type-5 .row, .rtl .tf-sw-slideshow .bg-type-3 .row {
  justify-content: flex-end;
}

.rtl .tf-sw-slideshow .bg-type-5 .row > div, .rtl .tf-sw-slideshow .bg-type-3 .row > div {
  margin-left: unset;
}

.rtl .tf-sw-slideshow .bg-type-5 .content-slider, .rtl .tf-sw-slideshow .bg-type-3 .content-slider {
  text-align: end;
}

.rtl .slider-effect .img-slider {
  margin-left: unset;
  margin-right: auto;
}

.rtl .slider-effect .content-left {
  direction: rtl;
}

.rtl .tf-currencies {
  direction: ltr;
}

.rtl .tf-currencies .dropdown-menu .text {
  justify-content: flex-end !important;
}

.rtl .tf-currencies .dropdown-menu:after {
  display: none !important;
}

.rtl .testimonial-item {
  direction: rtl;
}

.rtl .testimonial-item .product > a {
  left: 0;
  right: auto;
}

.rtl .footer .footer-heading-mobile:before {
  left: 15px;
  right: auto;
}

.rtl .footer .footer-heading-mobile:after {
  left: 10px;
  right: auto;
}

.rtl .footer .footer-newsletter input {
  padding-left: 143px;
  padding-right: 18px;
}

.rtl .footer .footer-newsletter .button-submit button {
  left: 8px;
  right: auto;
}

.rtl .modal.fullRight .modal-dialog {
  transition: all .3s !important;
  transform: translate(-100%) !important;
}

.rtl .modal.fullRight .modal-dialog .modal-content {
  left: 0;
  right: unset;
}

.rtl .modal.fullRight.show .modal-dialog {
  transform: translate(0) !important;
}

.rtl .offcanvas.offcanvas-end {
  left: 0;
  right: unset;
  transform: translateX(-100%);
}

.rtl .offcanvas.offcanvas-start {
  right: 0;
  left: unset;
  transform: translateX(100%);
}

.rtl .offcanvas.show:not(.hiding), .rtl .offcanvas.showing {
  transform: none;
}

.rtl .offcanvas.hiding, .rtl .offcanvas.show, .rtl .offcanvas.showing {
  visibility: visible;
}

.rtl .card-product .on-sale-item, .rtl .icv__theme-wrapper {
  direction: ltr;
}

.rtl .drift-zoom-pane.drift-inline, .rtl .tf-zoom-main .drift-zoom-pane {
  justify-content: flex-end;
  display: flex;
}

.rtl .box-nav-ul .menu-item-2:after {
  left: 0;
  right: unset;
  content: "";
}

.rtl .box-nav-ul .menu-item-2 .sub-menu {
  right: calc(100% + 23px);
  left: unset;
}

.rtl .box-nav-ul .menu-item-2 .sub-menu:after {
  left: 90%;
}

.rtl .tf-topbar .marquee-wrapper {
  animation: 20s linear infinite slide-har-reverse;
}

.rtl .tf-bundle-product-item {
  direction: rtl;
}

.rtl .footer.has-border .footer-col.footer-col-1 {
  padding-left: 30px;
  padding-right: 90px;
}

.rtl .footer.has-border .footer-col.footer-col-2, .rtl .footer.has-border .footer-col.footer-col-3 {
  padding-left: 30px;
  padding-right: 0;
}

.rtl .footer.has-border .footer-newsletter {
  border-right: 0;
  border-left: 1px solid var(--line);
  padding-left: 123px;
  padding-right: 0;
}

@keyframes slide-har-reverse {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

.rtl .tf-cart-item .tf-cart-item_product .img-box {
  margin-left: 24px;
  margin-right: 0;
}

.rtl .sib-form .form-newsletter button {
  left: 4px;
  right: unset;
}

@media (width >= 768px) {
  .rtl .banner-cd-fashion .banner-content {
    right: 100px;
    left: unset;
  }

  .rtl .wrapper-thumbs-tes-2 .box-left, .rtl .wrapper-thumbs-tes-3 .box-left {
    padding: 40px 0 40px 46px;
  }

  .rtl .wrapper-thumbs-tes-4 .box-right {
    padding: 40px 46px 40px 0;
  }

  .rtl .banner-cls-sportwear.style-abs-2 .box-content {
    left: 0;
    right: 84px;
  }
}

@media (width >= 992px) {
  .rtl .banner-cd-fashion .banner-content {
    right: 203px;
    left: unset;
  }

  .rtl .tf-topbar .marquee-wrapper {
    animation: 60s linear infinite slide-har-reverse;
  }
}

@media (width >= 1200px) {
  .rtl .wrapper-thumbs-tes-2 .box-left {
    padding: 60px 0 60px 200px;
  }

  .rtl .wrapper-thumbs-tes-3 .box-left {
    padding: 60px 99px;
  }

  .rtl .wrapper-thumbs-tes-4 .box-right {
    padding: 60px 100px 60px 0;
  }

  .rtl .s-contact.style-2 .image-right {
    margin-left: 0;
    margin-right: -120px;
  }

  .rtl .modalCentered:not(.show) .modal-dialog {
    transform: translate(50px);
  }

  .rtl .card-product:not(.style-2, .style-3, .style-6, .style-7, .style-list) .list-product-btn {
    left: 20px;
  }

  .rtl .card-product:not(.style-2, .style-3, .style-6, .style-7, .style-list) li {
    transform: translateX(-20px);
  }
}

@media (width >= 1440px) {
  .rtl .box-nav-menu.justify-content-start .mega-home {
    max-width: 1464px;
    right: 0;
  }

  .rtl .box-nav-menu .mega-menu {
    max-width: 1464px;
    left: 0;
    right: 0;
  }
}

@media (width >= 1600px) {
  .rtl .tf-btn.btn-cls:hover .icon {
    margin-left: 0;
    margin-right: 16px;
  }
}

@media (width <= 1024px) {
  .rtl .tf-product-info-wrap .tf-product-delivery-return .product-delivery:not(:last-child) {
    border-left: 0;
  }
}

@media (width <= 767px) {
  .rtl .s-cls.abs-left-center .content {
    left: unset;
    right: 15px;
  }

  .rtl .grid-cls-suppermarket .s-cls .content {
    right: 15px;
  }
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

nextjs-portal {
  display: none !important;
}

.address-method-box .address-active {
  border: 1px solid var(--primary);
}

.address-method-box .payment-details .address-list {
  padding: 0 0 5px 20px;
}

.empty-cart-box {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.empty-cart-box .empty-icon {
  background-color: var(--primary-4);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
}

.empty-cart-box .empty-icon svg {
  width: 30px;
  height: 30px;
}

.password-show-hide {
  position: relative;
}

.show-hide {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.show-hide span {
  cursor: pointer;
  color: var(--rgba-dark-2);
  font-size: 13px;
}

.show-hide span.show:before {
  content: "show";
}

.show-hide span:before {
  content: "hide";
}


/* [project]/public/assets/fonts/font-icons.css [app-client] (css) */
@font-face {
  font-family: icomoon;
  src: url("../media/icomoonc67c.a61a221c.eot");
  src: url("../media/icomoonc67c.a61a221c.eot") format("embedded-opentype"), url("../media/icomoonc67c.0b279f76.ttf") format("truetype"), url("../media/icomoonc67c.22fde88f.woff") format("woff"), url("../media/icomoonc67c.3ecffc5d.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  speak: never;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  font-family: icomoon !important;
}

.icon-shop:before {
  content: "";
}

.icon-menu:before {
  content: "";
}

.icon-fill-check-circle:before {
  content: "";
}

.icon-arrow1-left:before {
  content: "";
}

.icon-arrow-right:before {
  content: "";
}

.icon-arrow-top-left:before {
  content: "";
}

.icon-arrow-down:before {
  content: "";
}

.icon-uniE906:before {
  content: "";
}

.icon-arrow-up:before {
  content: "";
}

.icon-fashion-body:before {
  content: "";
}

.icon-precision:before {
  content: "";
}

.icon-elegance:before {
  content: "";
}

.icon-fb3:before {
  content: "";
}

.icon-x2:before {
  content: "";
}

.icon-tiktok:before {
  content: "";
}

.icon-heart3:before {
  content: "";
}

.icon-order:before {
  content: "";
}

.icon-quote5:before {
  content: "";
}

.icon-minus:before {
  content: "";
}

.icon-plus:before {
  content: "";
}

.icon-location:before {
  content: "";
}

.icon-shipped:before {
  content: "";
}

.icon-confirm:before {
  content: "";
}

.icon-plus2:before {
  content: "";
}

.icon-fire2:before {
  content: "";
}

.icon-sidebar:before {
  content: "";
}

.icon-video:before {
  content: "";
}

.icon-car2:before {
  content: "";
}

.icon-compare3:before {
  content: "";
}

.icon-check:before {
  content: "";
}

.icon-eye:before {
  content: "";
}

.icon-copy:before {
  content: "";
}

.icon-share:before {
  content: "";
}

.icon-ask:before {
  content: "";
}

.icon-compare2:before {
  content: "";
}

.icon-car:before {
  content: "";
}

.icon-coupon:before {
  content: "";
}

.icon-note:before {
  content: "";
}

.icon-gift2:before {
  content: "";
}

.icon-pen:before {
  content: "";
}

.icon-close:before {
  content: "";
}

.icon-mail:before {
  content: "";
}

.icon-youtube:before {
  content: "";
}

.icon-instagram:before {
  content: "";
}

.icon-fb2:before {
  content: "";
}

.icon-x:before {
  content: "";
}

.icon-support2:before {
  content: "";
}

.icon-shipping3:before {
  content: "";
}

.icon-return3:before {
  content: "";
}

.icon-customer:before {
  content: "";
}

.icon-return2:before {
  content: "";
}

.icon-shipping2:before {
  content: "";
}

.icon-leaf:before {
  content: "";
}

.icon-clock:before {
  content: "";
}

.icon-pinterest:before {
  content: "";
}

.icon-head-phone:before {
  content: "";
}

.icon-categories:before {
  content: "";
}

.icon-quote4:before {
  content: "";
}

.icon-sun:before {
  content: "";
}

.icon-designs:before {
  content: "";
}

.icon-fit:before {
  content: "";
}

.icon-protection:before {
  content: "";
}

.icon-quality:before {
  content: "";
}

.icon-arr-right3:before {
  content: "";
}

.icon-quote3:before {
  content: "";
}

.icon-quote:before {
  content: "";
}

.icon-quote2:before {
  content: "";
}

.icon-flash-star:before {
  content: "";
}

.icon-dot:before {
  content: "";
}

.icon-fb:before {
  content: "";
}

.icon-verifi:before {
  content: "";
}

.icon-compare:before {
  content: "";
}

.icon-heart2:before {
  content: "";
}

.icon-view:before {
  content: "";
}

.icon-cart2:before {
  content: "";
}

.icon-arr-down:before {
  content: "";
}

.icon-star:before {
  content: "";
}

.icon-arr-left:before {
  content: "";
}

.icon-arr-right2:before {
  content: "";
}

.icon-arr-right:before {
  content: "";
}

.icon-cart:before {
  content: "";
}

.icon-phone:before {
  content: "";
}

.icon-heart:before {
  content: "";
}

.icon-user:before {
  content: "";
}

.icon-linkedin:before {
  content: "";
}

.icon-search:before {
  content: "";
}

.icon-gift:before {
  content: "";
}

.icon-twitter:before {
  content: "";
}

.icon-return:before {
  content: "";
}

.icon-support:before {
  content: "";
}

.icon-shipping:before {
  content: "";
}

.icon-snapchat:before {
  content: "";
}

.icon-categories1:before {
  content: "";
}

.icon-arrow1-right:before {
  content: "";
}

.icon-arrow1-top-left:before {
  content: "";
}

.icon-filter:before {
  content: "";
}

.icon-btn3d:before {
  content: "";
}

.icon-payment:before {
  content: "";
}

.icon-diamond:before {
  content: "";
}

.icon-trash:before {
  content: "";
}

.icon-clock2:before {
  content: "";
}

.icon-whatsapp:before {
  content: "";
}


/* [project]/public/assets/fonts/fonts.css [app-client] (css) */
@font-face {
  font-family: Albert Sans;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/albertsans/v1/i7dMIFdwYjGaAMFtZd_QA1ZeUFuaHjyV.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Albert Sans;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/albertsans/v1/i7dMIFdwYjGaAMFtZd_QA1ZeUFWaHg.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Albert Sans;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZVYFeCGg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Albert Sans;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/albertsans/v1/i7dOIFdwYjGaAMFtZd_QA1ZbYFc.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans;
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v15/rP2Fp2ywxg089UriCZa4ET-DNl0.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: italic;
  font-weight: 100 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v15/rP2Fp2ywxg089UriCZa4Hz-D.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v15/rP2Hp2ywxg089UriCZ2IHSeH.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: DM Sans;
  font-style: normal;
  font-weight: 100 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/dmsans/v15/rP2Hp2ywxg089UriCZOIHQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Playfair Display;
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFkD-vYSZviVYUb_rj3ij__anPXDTnohkk72xU.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Playfair Display;
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojUk72xU.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Playfair Display;
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFkD-vYSZviVYUb_rj3ij__anPXDTnojEk72xU.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Playfair Display;
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFkD-vYSZviVYUb_rj3ij__anPXDTnogkk7.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFiD-vYSZviVYUb_rj3ij__anPXDTjYgFE_.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFiD-vYSZviVYUb_rj3ij__anPXDTPYgFE_.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFiD-vYSZviVYUb_rj3ij__anPXDTLYgFE_.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Playfair Display;
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/playfairdisplay/v37/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiAyp8kv8JHgFVrJJLmE0tMMPKzSQ.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiAyp8kv8JHgFVrJJLmE0tCMPI.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmv1pVGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmv1pVF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm21lVGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm21lVF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiGyp8kv8JHgFVrJJLufntAKPY.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiGyp8kv8JHgFVrJJLucHtA.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmg1hVGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmg1hVF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmr19VGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmr19VF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15VGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15VF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm111VGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm111VF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xVGdeOcEg.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xVF9eO.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiGyp8kv8JHgFVrLPTufntAKPY.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiGyp8kv8JHgFVrLPTucHtA.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLFj_Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLFj_Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDz8Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDz8Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJnecmNE.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiEyp8kv8JHgFVrJJfecg.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDD4Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLDD4Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5Z1JlFc-K.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5Z1xlFQ.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Grandstander;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/grandstander/v18/ga6UawtA-GpSsTWrnNHPCSImbwC2VMBxMw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Grandstander;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/grandstander/v18/ga6UawtA-GpSsTWrnNHPCSImbwC3VMBxMw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Grandstander;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/grandstander/v18/ga6UawtA-GpSsTWrnNHPCSImbwC5VMA.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Grandstander;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/grandstander/v18/ga6KawtA-GpSsTWrnNHPCSImZTC7TMQ.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Grandstander;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/grandstander/v18/ga6KawtA-GpSsTWrnNHPCSImZDC7TMQ.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Grandstander;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/grandstander/v18/ga6KawtA-GpSsTWrnNHPCSImajC7.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752FD8Ghe4.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752HT8Ghe4.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fj8Ghe4.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752Fz8Ghe4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Oswald;
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/oswald/v53/TK3iWkUHHAIjg752GT8G.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Jost;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/jost/v18/92zUtBhPNqw73oHt5D4hTxM.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Jost;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/jost/v18/92zUtBhPNqw73oHt7j4hTxM.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Jost;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/jost/v18/92zUtBhPNqw73oHt4D4h.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/jost/v18/92zatBhPNqw73oDd4iYl.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/jost/v18/92zatBhPNqw73ord4iYl.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Jost;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/jost/v18/92zatBhPNqw73oTd4g.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Agbalumo;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/agbalumo/v5/55xvey5uMdT2N37KZfMPgLhE8A.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Agbalumo;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/agbalumo/v5/55xvey5uMdT2N37KZfMNgLhE8A.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Agbalumo;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/agbalumo/v5/55xvey5uMdT2N37KZfMMgLhE8A.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Agbalumo;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/agbalumo/v5/55xvey5uMdT2N37KZfMCgLg.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtE6F15M.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWvU6F15M.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtU6F15M.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuk6F15M.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWu06F15M.woff2") format("woff2");
  unicode-range: U+307-308, U+590-5FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWxU6F15M.woff2") format("woff2");
  unicode-range: U+302-303, U+305, U+307-308, U+310, U+312, U+315, U+31A, U+326-327, U+32C, U+32F-330, U+332-333, U+338, U+33A, U+346, U+34D, U+391-3A1, U+3A3-3A9, U+3B1-3C9, U+3D1, U+3D5-3D6, U+3F0-3F1, U+3F4-3F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE??;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqW106F15M.woff2") format("woff2");
  unicode-range: U+1-C, U+E-1F, U+7F-9F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+28??, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B??, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F0??, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F7??, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB??;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWtk6F15M.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWt06F15M.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Open Sans;
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memtYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWqWuU6F.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2") format("woff2");
  unicode-range: U+1F??;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2") format("woff2");
  unicode-range: U+307-308, U+590-5FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2") format("woff2");
  unicode-range: U+302-303, U+305, U+307-308, U+310, U+312, U+315, U+31A, U+326-327, U+32C, U+32F-330, U+332-333, U+338, U+33A, U+346, U+34D, U+391-3A1, U+3A3-3A9, U+3B1-3C9, U+3D1, U+3D5-3D6, U+3F0-3F1, U+3F4-3F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE??;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTUGmu1aB.woff2") format("woff2");
  unicode-range: U+1-C, U+E-1F, U+7F-9F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+28??, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B??, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F0??, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F7??, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB??;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Open Sans;
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/opensans/v40/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsibZgmSh8.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsibJgmSh8.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsiYpgm.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczdbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczdbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczdb8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwdbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwdbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwdb8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HwyNXcSYIAi.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HwyNXYSYIAi.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HwyNXgSYA.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxdbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxdbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxdb8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2dbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2dbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2db8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3dbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3dbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3db8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80dbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80dbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80db8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1dbADdyap.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1dbEDdyap.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1db8Ddw.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HRUNXcSYIAi.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HRUNXYSYIAi.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVNSTAyLFyeg_IDWvOJmVES_HRUNXgSYA.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HT4JG86Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HT4JG87Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HT4JG81Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HScJ286Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HScJ287Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HScJ281Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Hw4BXoKZA.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Hw5BXoKZA.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVPSTAyLFyeg_IDWvOJmVES_Hw3BXo.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJm86Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJm87Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJm81Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HToIW86Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HToIW87Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HToIW81Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSMIG86Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSMIG87Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSMIG81Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSQI286Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSQI287Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HSQI281Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HS0Im86Rb0bcw.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HS0Im87Rb0bcw.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Be Vietnam Pro;
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HS0Im81Rb0.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Nunito;
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXX3I6Li01BKofIMNaORs71cA.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Nunito;
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXX3I6Li01BKofIMNaHRs71cA.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Nunito;
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXX3I6Li01BKofIMNaMRs71cA.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Nunito;
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXX3I6Li01BKofIMNaNRs71cA.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Nunito;
  font-style: italic;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXX3I6Li01BKofIMNaDRs4.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXV3I6Li01BKofIOOaBXso.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXV3I6Li01BKofIMeaBXso.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXV3I6Li01BKofIOuaBXso.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXV3I6Li01BKofIO-aBXso.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Nunito;
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/nunito/v26/XRXV3I6Li01BKofINeaB.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRggqxSuXd.woff2") format("woff2");
  unicode-range: U+460-52F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRggOxSuXd.woff2") format("woff2");
  unicode-range: U+301, U+400-45F, U+490-491, U+4B0-4B1, U+2116;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRggSxSuXd.woff2") format("woff2");
  unicode-range: U+370-377, U+37A-37F, U+384-38A, U+38C, U+38E-3A1, U+3A3-3FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRggixSuXd.woff2") format("woff2");
  unicode-range: U+102-103, U+110-111, U+128-129, U+168-169, U+1A0-1A1, U+1AF-1B0, U+300-301, U+303-304, U+308-309, U+323, U+329, U+1EA0-1EF9, U+20AB;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRggmxSuXd.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("https://fonts.gstatic.com/s/manrope/v15/xn7gYHE41ni1AdIRggexSg.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/*# sourceMappingURL=_12e5b0d7._.css.map*/