:root {
  --bg-body: #ffffff !important;
  --bg-overlay-body: rgba(255, 255, 255, 0.5) !important;
  --bg-primary: #0E1C63 !important;
  --bg-overlay-primary: rgba(14, 28, 99, 0.5) !important;
  --bg-secondary: #8c8c8c !important;
  --bg-overlay-secondary: rgba(140, 140, 140, 0.5) !important;
  --bg-white: #ffffff !important;
  --bg-overlay-white: rgba(255, 255, 255, 0.5) !important;
  --bg-black: #000000 !important;
  --bg-overlay-black: rgba(0, 0, 0, 0.5) !important;
  --bg-success: #029869 !important;
  --bg-overlay-success: rgba(2, 152, 105, 0.5) !important;
  --bg-info: #EDF0FF !important;
  --bg-overlay-info: rgba(237, 240, 255, 0.5) !important;
  --bg-warning: #F6C105 !important;
  --bg-overlay-warning: rgba(246, 193, 5, 0.5) !important;
  --bg-danger: #E90F0F !important;
  --bg-overlay-danger: rgba(233, 15, 15, 0.5) !important;
  --bg-gray: #CFD2E0 !important;
  --bg-overlay-gray: rgba(207, 210, 224, 0.5) !important;
  --bg-light: #EDF0FF !important;
  --bg-overlay-light: rgba(237, 240, 255, 0.5) !important;
  --bg-dark: #2c2a28 !important;
  --bg-overlay-dark: rgba(44, 42, 40, 0.5) !important;
  --button-primary: #0E1C63;
  --button-secondary: #8c8c8c;
  --button-white: #ffffff;
  --button-black: #000000;
  --button-success: #029869;
  --button-info: #EDF0FF;
  --button-warning: #F6C105;
  --button-danger: #E90F0F;
  --button-gray: #CFD2E0;
  --button-light: #EDF0FF;
  --button-dark: #2c2a28;
  --border-primary: #0E1C63 !important;
  --border-secondary: #EDF0FF !important;
  --border-white: #ffffff !important;
  --border-black: #000000 !important;
  --border-success: #029869 !important;
  --border-info: #EDF0FF !important;
  --border-warning: #F6C105 !important;
  --border-danger: #E90F0F !important;
  --border-gray: #CFD2E0 !important;
  --border-light: #EDF0FF !important;
  --border-dark: #2c2a28 !important;
  --text-primary: #0E1C63 !important;
  --text-secondary: #8c8c8c !important;
  --text-white: #ffffff !important;
  --text-black: #000000 !important;
  --text-success: #029869 !important;
  --text-info: #EDF0FF !important;
  --text-warning: #F6C105 !important;
  --text-danger: #E90F0F !important;
  --text-gray: #CFD2E0 !important;
  --text-light: #979797 !important;
  --text-dark: #2c2a28 !important;
  --text-body: #000000 !important;
  --text-heading: #000000 !important;
  --border-radius: 4px !important; }

*, *:before, *:after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

::-webkit-scrollbar {
  background: var(--bg-light);
  width: 5px;
  height: 5px;
  border-radius: 5px; }

::-webkit-scrollbar-button {
  display: none; }

::-webkit-scrollbar-thumb {
  background: var(--bg-gray);
  border-radius: 5px; }

applet, object, iframe, blockquote, pre, abbr, acronym, address, big, cite, code, dfn, kbd, q, samp, small, strike, tt, var, dl, dt, dd, fieldset, legend, caption, article, aside, canvas, details, embed, figure, figcaption, hgroup, menu, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

html {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.34;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth; }
@media (min-width: 768px) {
  html {
    font-size: 13px; } }

body {
  background-color: var(--bg-body);
  color: var(--text-body);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.34;
  margin: 0;
  padding: 0; }
@media (min-width: 768px) {
  body {
    font-size: 13px; } }

html.is-active-modal > body, body.lg-on {
  width: 100%;
  overflow: hidden;
  touch-action: manipulation; }

.slide-in-down, .slide-in-up, .transform-rotate, .fade-in, .fade-out, .image-animate:hover .image-nd {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    visibility: visible;
    opacity: 0; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    visibility: visible;
    opacity: 0; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    visibility: hidden;
    opacity: 0; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1; } }
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    visibility: hidden;
    opacity: 0; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
    opacity: 1; } }
@-webkit-keyframes transformRotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@-moz-keyframes transformRotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@keyframes transformRotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px); }
  to {
    opacity: 1;
    transform: translateY(0); } }
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(10px); } }
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0); }
  to {
    opacity: 0;
    transform: translateY(10px); } }

.slide-in-down {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown; }

.slide-in-up {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp; }

.transform-rotate {
  -webkit-animation-name: transformRotate;
  animation-name: transformRotate; }

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

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

/* For vue transition effect */
.slide-fade-up-enter-active {
  transition: all 0.25s ease-in-out;
  transition-delay: 0.1s;
  position: relative; }

.slide-fade-up-leave-active {
  transition: all 0.25s ease-in-out;
  position: absolute; }

.slide-fade-up-enter {
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none; }

.slide-fade-up-leave-to {
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none; }

/* For vue transition effect end */
.image-animate .image-nd {
  display: none !important; }
@media (min-width: 768px) {
  .image-animate:hover .image-inner {
    opacity: 0; }
    .image-animate:hover .image-inner + .image-inner {
      opacity: 1; }
  .image-animate:hover .image-nd {
    display: block !important;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn; }
  .image-animate-zoom {
    overflow: hidden; }
    .image-animate-zoom img {
      transition: all 0.25s ease-in-out;
      -webkit-transform: scale(1);
      transform: scale(1); }
      .image-animate-zoom:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1); } }

/* custom wrapper effects */
.effect-wrapper [class*="hover-"]:not(.hover-transition-none) {
  transition: all 0.5s !important; }
.effect-wrapper .hover-visible {
  visibility: hidden !important;
  opacity: 0 !important; }
.effect-wrapper .hover-grayscale-reverse {
  filter: grayscale(1) !important; }
.effect-wrapper .hover-blur-reverse {
  filter: blur(3px) !important; }
.effect-wrapper .hover-opacity {
  opacity: 0.5 !important; }
  .effect-wrapper:hover .hover-block {
    display: block !important; }
  .effect-wrapper:hover .hover-inline-block {
    display: inline-block !important; }
  .effect-wrapper:hover .hover-flex {
    display: flex !important; }
  .effect-wrapper:hover .hover-inline-flex {
    display: inline-flex !important; }
  .effect-wrapper:hover .hover-none {
    display: none !important; }
  .effect-wrapper:hover .hover-hidden {
    visibility: hidden !important;
    opacity: 0 !important; }
  .effect-wrapper:hover .hover-visible {
    visibility: visible !important;
    opacity: 1 !important; }
  .effect-wrapper:hover .hover-transition-none {
    transition: none !important;
    /* all effects */ }
  .effect-wrapper:hover .hover-scale {
    transform: scale(1.05) !important; }
  .effect-wrapper:hover .hover-scale-lg {
    transform: scale(1.2) !important; }
  .effect-wrapper:hover .hover-grayscale {
    filter: grayscale(1) !important; }
  .effect-wrapper:hover .hover-grayscale-reverse {
    filter: grayscale(0) !important; }
  .effect-wrapper:hover .hover-blur {
    filter: blur(3px) !important; }
  .effect-wrapper:hover .hover-blur-reverse {
    filter: blur(0) !important; }
  .effect-wrapper:hover .hover-opacity {
    opacity: 1 !important; }
  .effect-wrapper:hover .hover-opacity-reverse {
    opacity: 0.75 !important; }
  .effect-wrapper:hover .hover-to-up {
    transform: translateY(-10px) !important; }
  .effect-wrapper:hover .hover-to-down {
    transform: translateY(10px) !important; }
  .effect-wrapper:hover .hover-to-left {
    transform: translateX(-10px) !important; }
  .effect-wrapper:hover .hover-to-right {
    transform: translateX(10px) !important; }
  .effect-wrapper:hover .hover-shadow {
    box-shadow: rgba(0, 0, 0, 0.1) 0 10px 15px -3px, rgba(0, 0, 0, 0.05) 0 4px 6px -2px !important; }
  .effect-wrapper:hover .hover-bg-transparent {
    background: transparent !important; }
  .effect-wrapper:hover .hover-color-primary {
    color: var(--text-primary) !important; }
  .effect-wrapper:hover .hover-bg-primary {
    background-color: var(--bg-primary) !important; }
  .effect-wrapper:hover .hover-border-primary {
    border-color: var(--border-primary) !important; }

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block; }

hr {
  margin: 15px 0;
  background-color: currentColor;
  color: inherit;
  border: 0;
  opacity: 0.25; }

hr:not([size]) {
  height: 1px; }

template, script {
  display: none; }

pre {
  font-family: monospace, sans-serif;
  white-space: pre-line; }

[disabled] {
  pointer-events: none; }

.font-master {
  font-family: 'DM Sans', sans-serif; }

.font-text {
  font-family: 'DM Sans', sans-serif; }

.font-h1 {
  font-family: 'DM Sans', sans-serif; }

.font-h2 {
  font-family: 'DM Sans', sans-serif; }

.font-h2 {
  font-family: 'DM Sans', sans-serif; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--text-heading);
  font-weight: bold;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 10px; }

.h1, h1 {
  font-size: 24px; }
@media (min-width: 1200px) {
  .h1, h1 {
    font-size: 32px; } }

.h2, h2 {
  font-size: 20px; }
@media (min-width: 1200px) {
  .h2, h2 {
    font-size: 28px; } }

.h3, h3 {
  font-size: 18px; }
@media (min-width: 1200px) {
  .h3, h3 {
    font-size: 22px; } }

.h4, h4 {
  font-size: 16px; }
@media (min-width: 1200px) {
  .h4, h4 {
    font-size: 20px; } }

.h5, h5 {
  font-size: 14px; }
@media (min-width: 1200px) {
  .h5, h5 {
    font-size: 18px; } }

.h6, h6 {
  font-size: 12px; }
@media (min-width: 1200px) {
  .h6, h6 {
    font-size: 16px; } }

p {
  margin-top: 0;
  margin-bottom: 10px; }

ol, ul {
  padding-left: 15px; }

ol, ul, dl {
  margin-top: 0;
  margin-bottom: 10px; }

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

nav ul, nav ol, .list-style-none {
  list-style-type: none;
  margin: 0;
  padding: 0; }

b, strong {
  font-weight: bold; }

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
  outline: 0; }

img {
  border: none;
  max-width: 100%; }
  img:not(.lazyload, .lazyloading) {
    height: auto; }

iframe, video {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1.7777777778; }

.product-detail-tab-container iframe, #orderHepsiPayCont iframe, .product-detail-tab-container video, #orderHepsiPayCont video {
  width: revert-layer;
  height: revert-layer; }

.ease {
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

table {
  border-collapse: collapse; }

.border-transparent {
  border-color: transparent; }

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

.fit-contain {
  object-fit: contain !important; }

.fit-cover {
  object-fit: cover !important; }

.fit-none {
  object-fit: none !important; }

.bg-contain {
  background-size: contain !important; }

.bg-cover {
  background-size: cover !important; }

.bg-center {
  background-position: center !important; }

.bg-fixed {
  background-attachment: fixed !important; }

.bg-scroll {
  background-attachment: scroll !important; }

.bg-none {
  background: none !important; }
  .bg-body {
    background-color: var(--bg-body) !important; }
  .overlay-body {
    background-color: var(--bg-overlay-body) !important; }
  .bg-primary {
    background-color: var(--bg-primary) !important; }
  .overlay-primary {
    background-color: var(--bg-overlay-primary) !important; }
  .bg-secondary {
    background-color: var(--bg-secondary) !important; }
  .overlay-secondary {
    background-color: var(--bg-overlay-secondary) !important; }
  .bg-white {
    background-color: var(--bg-white) !important; }
  .overlay-white {
    background-color: var(--bg-overlay-white) !important; }
  .bg-black {
    background-color: var(--bg-black) !important; }
  .overlay-black {
    background-color: var(--bg-overlay-black) !important; }
  .bg-success {
    background-color: var(--bg-success) !important; }
  .overlay-success {
    background-color: var(--bg-overlay-success) !important; }
  .bg-info {
    background-color: var(--bg-info) !important; }
  .overlay-info {
    background-color: var(--bg-overlay-info) !important; }
  .bg-warning {
    background-color: var(--bg-warning) !important; }
  .overlay-warning {
    background-color: var(--bg-overlay-warning) !important; }
  .bg-danger {
    background-color: var(--bg-danger) !important; }
  .overlay-danger {
    background-color: var(--bg-overlay-danger) !important; }
  .bg-gray {
    background-color: var(--bg-gray) !important; }
  .overlay-gray {
    background-color: var(--bg-overlay-gray) !important; }
  .bg-light {
    background-color: var(--bg-light) !important; }
  .overlay-light {
    background-color: var(--bg-overlay-light) !important; }
  .bg-dark {
    background-color: var(--bg-dark) !important; }
  .overlay-dark {
    background-color: var(--bg-overlay-dark) !important; }

body [v-cloak] > *, [v-cloak] > * {
  display: none !important; }

[v-cloak]::before, .is-loading::before {
  content: '';
  background-color: transparent;
  width: 34px;
  height: 34px;
  display: block;
  margin: 20px auto;
  border-top: 3px solid transparent;
  border-left: 3px solid var(--border-primary);
  border-right: 3px solid var(--border-primary);
  border-bottom: 3px solid var(--border-primary);
  border-radius: 100%;
  animation: transformRotate 1s infinite; }

.row {
  display: flex !important;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }
  .row.no-gutters {
    margin-right: 0 !important;
    margin-left: 0 !important; }
    .row.no-gutters > .col, .row.no-gutters > [class*="col-"] {
      padding-right: 0 !important;
      padding-left: 0 !important; }

.col {
  flex: 1 0 0%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px; }

.col-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
  padding-left: 15px;
  padding-right: 15px; }

.col-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
  padding-left: 15px;
  padding-right: 15px; }

.col-3 {
  flex-basis: 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px; }

.col-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px; }

.col-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
  padding-left: 15px;
  padding-right: 15px; }

.col-6 {
  flex-basis: 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px; }

.col-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
  padding-left: 15px;
  padding-right: 15px; }

.col-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
  padding-left: 15px;
  padding-right: 15px; }

.col-9 {
  flex-basis: 75%;
  max-width: 75%;
  padding-left: 15px;
  padding-right: 15px; }

.col-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
  padding-left: 15px;
  padding-right: 15px; }

.col-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
  padding-left: 15px;
  padding-right: 15px; }

.col-12 {
  flex-basis: 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px; }

html:not([dir="rtl"]) .offset-0 {
  margin-left: 0%; }

[dir="rtl"] .offset-0 {
  margin-right: 0%; }

html:not([dir="rtl"]) .offset-1 {
  margin-left: 8.3333333333%; }

[dir="rtl"] .offset-1 {
  margin-right: 8.3333333333%; }

html:not([dir="rtl"]) .offset-2 {
  margin-left: 16.6666666667%; }

[dir="rtl"] .offset-2 {
  margin-right: 16.6666666667%; }

html:not([dir="rtl"]) .offset-3 {
  margin-left: 25%; }

[dir="rtl"] .offset-3 {
  margin-right: 25%; }

html:not([dir="rtl"]) .offset-4 {
  margin-left: 33.3333333333%; }

[dir="rtl"] .offset-4 {
  margin-right: 33.3333333333%; }

html:not([dir="rtl"]) .offset-5 {
  margin-left: 41.6666666667%; }

[dir="rtl"] .offset-5 {
  margin-right: 41.6666666667%; }

html:not([dir="rtl"]) .offset-6 {
  margin-left: 50%; }

[dir="rtl"] .offset-6 {
  margin-right: 50%; }

html:not([dir="rtl"]) .offset-7 {
  margin-left: 58.3333333333%; }

[dir="rtl"] .offset-7 {
  margin-right: 58.3333333333%; }

html:not([dir="rtl"]) .offset-8 {
  margin-left: 66.6666666667%; }

[dir="rtl"] .offset-8 {
  margin-right: 66.6666666667%; }

html:not([dir="rtl"]) .offset-9 {
  margin-left: 75%; }

[dir="rtl"] .offset-9 {
  margin-right: 75%; }

html:not([dir="rtl"]) .offset-10 {
  margin-left: 83.3333333333%; }

[dir="rtl"] .offset-10 {
  margin-right: 83.3333333333%; }

html:not([dir="rtl"]) .offset-11 {
  margin-left: 91.6666666667%; }

[dir="rtl"] .offset-11 {
  margin-right: 91.6666666667%; }

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  html:not([dir="rtl"]) .offset-sm-0 {
    margin-left: 0%; }
  [dir="rtl"] .offset-sm-0 {
    margin-right: 0%; }
  html:not([dir="rtl"]) .offset-sm-1 {
    margin-left: 8.3333333333%; }
  [dir="rtl"] .offset-sm-1 {
    margin-right: 8.3333333333%; }
  html:not([dir="rtl"]) .offset-sm-2 {
    margin-left: 16.6666666667%; }
  [dir="rtl"] .offset-sm-2 {
    margin-right: 16.6666666667%; }
  html:not([dir="rtl"]) .offset-sm-3 {
    margin-left: 25%; }
  [dir="rtl"] .offset-sm-3 {
    margin-right: 25%; }
  html:not([dir="rtl"]) .offset-sm-4 {
    margin-left: 33.3333333333%; }
  [dir="rtl"] .offset-sm-4 {
    margin-right: 33.3333333333%; }
  html:not([dir="rtl"]) .offset-sm-5 {
    margin-left: 41.6666666667%; }
  [dir="rtl"] .offset-sm-5 {
    margin-right: 41.6666666667%; }
  html:not([dir="rtl"]) .offset-sm-6 {
    margin-left: 50%; }
  [dir="rtl"] .offset-sm-6 {
    margin-right: 50%; }
  html:not([dir="rtl"]) .offset-sm-7 {
    margin-left: 58.3333333333%; }
  [dir="rtl"] .offset-sm-7 {
    margin-right: 58.3333333333%; }
  html:not([dir="rtl"]) .offset-sm-8 {
    margin-left: 66.6666666667%; }
  [dir="rtl"] .offset-sm-8 {
    margin-right: 66.6666666667%; }
  html:not([dir="rtl"]) .offset-sm-9 {
    margin-left: 75%; }
  [dir="rtl"] .offset-sm-9 {
    margin-right: 75%; }
  html:not([dir="rtl"]) .offset-sm-10 {
    margin-left: 83.3333333333%; }
  [dir="rtl"] .offset-sm-10 {
    margin-right: 83.3333333333%; }
  html:not([dir="rtl"]) .offset-sm-11 {
    margin-left: 91.6666666667%; }
  [dir="rtl"] .offset-sm-11 {
    margin-right: 91.6666666667%; } }

@media (max-width: 767px) {
  .row {
    margin-right: -8px;
    margin-left: -8px; }
  .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    padding-right: 8px;
    padding-left: 8px; } }

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-md-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  html:not([dir="rtl"]) .offset-md-0 {
    margin-left: 0%; }
  [dir="rtl"] .offset-md-0 {
    margin-right: 0%; }
  html:not([dir="rtl"]) .offset-md-1 {
    margin-left: 8.3333333333%; }
  [dir="rtl"] .offset-md-1 {
    margin-right: 8.3333333333%; }
  html:not([dir="rtl"]) .offset-md-2 {
    margin-left: 16.6666666667%; }
  [dir="rtl"] .offset-md-2 {
    margin-right: 16.6666666667%; }
  html:not([dir="rtl"]) .offset-md-3 {
    margin-left: 25%; }
  [dir="rtl"] .offset-md-3 {
    margin-right: 25%; }
  html:not([dir="rtl"]) .offset-md-4 {
    margin-left: 33.3333333333%; }
  [dir="rtl"] .offset-md-4 {
    margin-right: 33.3333333333%; }
  html:not([dir="rtl"]) .offset-md-5 {
    margin-left: 41.6666666667%; }
  [dir="rtl"] .offset-md-5 {
    margin-right: 41.6666666667%; }
  html:not([dir="rtl"]) .offset-md-6 {
    margin-left: 50%; }
  [dir="rtl"] .offset-md-6 {
    margin-right: 50%; }
  html:not([dir="rtl"]) .offset-md-7 {
    margin-left: 58.3333333333%; }
  [dir="rtl"] .offset-md-7 {
    margin-right: 58.3333333333%; }
  html:not([dir="rtl"]) .offset-md-8 {
    margin-left: 66.6666666667%; }
  [dir="rtl"] .offset-md-8 {
    margin-right: 66.6666666667%; }
  html:not([dir="rtl"]) .offset-md-9 {
    margin-left: 75%; }
  [dir="rtl"] .offset-md-9 {
    margin-right: 75%; }
  html:not([dir="rtl"]) .offset-md-10 {
    margin-left: 83.3333333333%; }
  [dir="rtl"] .offset-md-10 {
    margin-right: 83.3333333333%; }
  html:not([dir="rtl"]) .offset-md-11 {
    margin-left: 91.6666666667%; }
  [dir="rtl"] .offset-md-11 {
    margin-right: 91.6666666667%; } }

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  html:not([dir="rtl"]) .offset-lg-0 {
    margin-left: 0%; }
  [dir="rtl"] .offset-lg-0 {
    margin-right: 0%; }
  html:not([dir="rtl"]) .offset-lg-1 {
    margin-left: 8.3333333333%; }
  [dir="rtl"] .offset-lg-1 {
    margin-right: 8.3333333333%; }
  html:not([dir="rtl"]) .offset-lg-2 {
    margin-left: 16.6666666667%; }
  [dir="rtl"] .offset-lg-2 {
    margin-right: 16.6666666667%; }
  html:not([dir="rtl"]) .offset-lg-3 {
    margin-left: 25%; }
  [dir="rtl"] .offset-lg-3 {
    margin-right: 25%; }
  html:not([dir="rtl"]) .offset-lg-4 {
    margin-left: 33.3333333333%; }
  [dir="rtl"] .offset-lg-4 {
    margin-right: 33.3333333333%; }
  html:not([dir="rtl"]) .offset-lg-5 {
    margin-left: 41.6666666667%; }
  [dir="rtl"] .offset-lg-5 {
    margin-right: 41.6666666667%; }
  html:not([dir="rtl"]) .offset-lg-6 {
    margin-left: 50%; }
  [dir="rtl"] .offset-lg-6 {
    margin-right: 50%; }
  html:not([dir="rtl"]) .offset-lg-7 {
    margin-left: 58.3333333333%; }
  [dir="rtl"] .offset-lg-7 {
    margin-right: 58.3333333333%; }
  html:not([dir="rtl"]) .offset-lg-8 {
    margin-left: 66.6666666667%; }
  [dir="rtl"] .offset-lg-8 {
    margin-right: 66.6666666667%; }
  html:not([dir="rtl"]) .offset-lg-9 {
    margin-left: 75%; }
  [dir="rtl"] .offset-lg-9 {
    margin-right: 75%; }
  html:not([dir="rtl"]) .offset-lg-10 {
    margin-left: 83.3333333333%; }
  [dir="rtl"] .offset-lg-10 {
    margin-right: 83.3333333333%; }
  html:not([dir="rtl"]) .offset-lg-11 {
    margin-left: 91.6666666667%; }
  [dir="rtl"] .offset-lg-11 {
    margin-right: 91.6666666667%; } }

@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xl-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  html:not([dir="rtl"]) .offset-xl-0 {
    margin-left: 0%; }
  [dir="rtl"] .offset-xl-0 {
    margin-right: 0%; }
  html:not([dir="rtl"]) .offset-xl-1 {
    margin-left: 8.3333333333%; }
  [dir="rtl"] .offset-xl-1 {
    margin-right: 8.3333333333%; }
  html:not([dir="rtl"]) .offset-xl-2 {
    margin-left: 16.6666666667%; }
  [dir="rtl"] .offset-xl-2 {
    margin-right: 16.6666666667%; }
  html:not([dir="rtl"]) .offset-xl-3 {
    margin-left: 25%; }
  [dir="rtl"] .offset-xl-3 {
    margin-right: 25%; }
  html:not([dir="rtl"]) .offset-xl-4 {
    margin-left: 33.3333333333%; }
  [dir="rtl"] .offset-xl-4 {
    margin-right: 33.3333333333%; }
  html:not([dir="rtl"]) .offset-xl-5 {
    margin-left: 41.6666666667%; }
  [dir="rtl"] .offset-xl-5 {
    margin-right: 41.6666666667%; }
  html:not([dir="rtl"]) .offset-xl-6 {
    margin-left: 50%; }
  [dir="rtl"] .offset-xl-6 {
    margin-right: 50%; }
  html:not([dir="rtl"]) .offset-xl-7 {
    margin-left: 58.3333333333%; }
  [dir="rtl"] .offset-xl-7 {
    margin-right: 58.3333333333%; }
  html:not([dir="rtl"]) .offset-xl-8 {
    margin-left: 66.6666666667%; }
  [dir="rtl"] .offset-xl-8 {
    margin-right: 66.6666666667%; }
  html:not([dir="rtl"]) .offset-xl-9 {
    margin-left: 75%; }
  [dir="rtl"] .offset-xl-9 {
    margin-right: 75%; }
  html:not([dir="rtl"]) .offset-xl-10 {
    margin-left: 83.3333333333%; }
  [dir="rtl"] .offset-xl-10 {
    margin-right: 83.3333333333%; }
  html:not([dir="rtl"]) .offset-xl-11 {
    margin-left: 91.6666666667%; }
  [dir="rtl"] .offset-xl-11 {
    margin-right: 91.6666666667%; } }

@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-3 {
    flex-basis: 25%;
    max-width: 25%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-6 {
    flex-basis: 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-9 {
    flex-basis: 75%;
    max-width: 75%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
    padding-left: 15px;
    padding-right: 15px; }
  .col-xxl-12 {
    flex-basis: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px; }
  html:not([dir="rtl"]) .offset-xxl-0 {
    margin-left: 0%; }
  [dir="rtl"] .offset-xxl-0 {
    margin-right: 0%; }
  html:not([dir="rtl"]) .offset-xxl-1 {
    margin-left: 8.3333333333%; }
  [dir="rtl"] .offset-xxl-1 {
    margin-right: 8.3333333333%; }
  html:not([dir="rtl"]) .offset-xxl-2 {
    margin-left: 16.6666666667%; }
  [dir="rtl"] .offset-xxl-2 {
    margin-right: 16.6666666667%; }
  html:not([dir="rtl"]) .offset-xxl-3 {
    margin-left: 25%; }
  [dir="rtl"] .offset-xxl-3 {
    margin-right: 25%; }
  html:not([dir="rtl"]) .offset-xxl-4 {
    margin-left: 33.3333333333%; }
  [dir="rtl"] .offset-xxl-4 {
    margin-right: 33.3333333333%; }
  html:not([dir="rtl"]) .offset-xxl-5 {
    margin-left: 41.6666666667%; }
  [dir="rtl"] .offset-xxl-5 {
    margin-right: 41.6666666667%; }
  html:not([dir="rtl"]) .offset-xxl-6 {
    margin-left: 50%; }
  [dir="rtl"] .offset-xxl-6 {
    margin-right: 50%; }
  html:not([dir="rtl"]) .offset-xxl-7 {
    margin-left: 58.3333333333%; }
  [dir="rtl"] .offset-xxl-7 {
    margin-right: 58.3333333333%; }
  html:not([dir="rtl"]) .offset-xxl-8 {
    margin-left: 66.6666666667%; }
  [dir="rtl"] .offset-xxl-8 {
    margin-right: 66.6666666667%; }
  html:not([dir="rtl"]) .offset-xxl-9 {
    margin-left: 75%; }
  [dir="rtl"] .offset-xxl-9 {
    margin-right: 75%; }
  html:not([dir="rtl"]) .offset-xxl-10 {
    margin-left: 83.3333333333%; }
  [dir="rtl"] .offset-xxl-10 {
    margin-right: 83.3333333333%; }
  html:not([dir="rtl"]) .offset-xxl-11 {
    margin-left: 91.6666666667%; }
  [dir="rtl"] .offset-xxl-11 {
    margin-right: 91.6666666667%; } }

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

.form-control-placeholder::-webkit-input-placeholder, .no-placeholder::-webkit-input-placeholder {
  opacity: 0; }

.form-control-placeholder:-moz-placeholder, .no-placeholder:-moz-placeholder {
  opacity: 0; }

.form-control-placeholder::-moz-placeholder, .no-placeholder::-moz-placeholder {
  opacity: 0; }

.form-control-placeholder:-ms-input-placeholder, .no-placeholder:-ms-input-placeholder {
  opacity: 0; }

.form-control-placeholder::placeholder, .no-placeholder::placeholder {
  opacity: 0; }

select {
  word-wrap: normal; }

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

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

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="radio"], input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0; }

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  min-height: 40px;
  overflow: auto;
  resize: vertical; }
  textarea.form-control, textarea.form-control.btn {
    padding: 8px 15px; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }
  [type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }
  [type="search"]::-webkit-search-cancel-button {
    cursor: pointer; }
  [type="search"].no-cancel::-webkit-search-cancel-button {
    display: none; }

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

input[type="number"].no-arrows {
  -moz-appearance: textfield; }
input[type="number"].no-arrows::-webkit-outer-spin-button, input[type="number"].no-arrows::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

label {
  color: var(--text-heading);
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px; }

.form-control, .form-control.btn {
  background-color: var(--bg-white);
  background-clip: padding-box;
  color: var(--text-body);
  font-size: 13px;
  font-weight: normal;
  line-height: 1.5;
  width: 100%;
  height: 40px;
  display: block;
  padding: 4px 15px;
  border: 1px solid var(--border-secondary);
  border-radius: var(--border-radius);
  box-shadow: none;
  transition: border-color 0.15s ease-in-out;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none; }
  .form-control.no-radius, .no-radius.form-control.btn {
    border-radius: 0; }
  .form-control.form-control-sm, .form-control-sm.form-control.btn {
    font-size: 12px;
    height: 32px; }
  .form-control.form-control-md, .form-control-md.form-control.btn {
    height: 48px; }
  .form-control.form-control-lg, .form-control-lg.form-control.btn {
    height: 56px; }
  .form-control::-ms-expand, .form-control.btn::-ms-expand {
    background-color: transparent; }
  .form-control:focus, .form-control.btn:focus {
    border-color: var(--border-primary);
    outline: 0; }
  .form-control:disabled, .form-control.btn:disabled, .form-control[readonly]:not(.flatpickr, .flatpickr-input, .t-tax-form), .form-control.btn:not(.flatpickr, .flatpickr-input, .t-tax-form)[readonly] {
    background-color: #f7f7f7;
    opacity: 1; }
  .form-control.loaded, .loaded.form-control.btn {
    padding-top: 8px; }
  .form-control:-webkit-autofill, .form-control.btn:-webkit-autofill, .form-control:-webkit-autofill:hover, .form-control.btn:hover:-webkit-autofill, .form-control:-webkit-autofill:focus, .form-control.btn:focus:-webkit-autofill, .form-control:-webkit-autofill:active, .form-control.btn:active:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -moz-box-shadow: 0 0 0 30px white inset !important;
    box-shadow: 0 0 0 30px white inset !important; }
  .form-control.error-input, .error-input.form-control.btn {
    border-color: var(--border-danger) !important; }
    .form-control.btn:hover, .btn.form-control:hover, .form-control.btn:focus, .btn.form-control:focus {
      background-color: inherit !important;
      color: inherit !important; }

select.form-control, select.form-control.btn {
  background-image: url('/theme/v5/images/select-down.svg');
  background-repeat: no-repeat;
  background-size: 8px; }
  select.form-control:focus::-ms-value, select.form-control.btn::-ms-value:focus {
    color: #495057;
    background-color: var(--bg-white); }

html:not([dir="rtl"]) select.form-control, html:not([dir="rtl"]) select.form-control.btn {
  background-position: calc(100% - 10px) center;
  padding-right: 30px; }

[dir="rtl"] select.form-control, [dir="rtl"] select.form-control.btn {
  background-position: 10px center;
  padding-left: 30px; }

textarea.form-control:not(.form-control-md):not(.form-control-sm), textarea.form-control.btn:not(.form-control-sm):not(.form-control-md) {
  height: 150px; }

textarea.form-control.form-control-md, textarea.form-control-md.form-control.btn {
  height: 95px; }

textarea.form-control.form-control-sm, textarea.form-control-sm.form-control.btn {
  height: 70px; }

.input-placeholder-required {
  margin-left: 5px; }

select.form-control-placeholder-hidden {
  text-indent: -9999px; }

input + .input-placeholder, textarea + .input-placeholder, select + .input-placeholder {
  background-color: transparent;
  color: var(--text-body);
  font-size: 13px;
  display: flex;
  align-items: center;
  width: auto;
  height: 100%;
  padding: 0 7.5px;
  position: absolute;
  top: 0;
  left: 7.5px;
  z-index: 2;
  pointer-events: none;
  transition: all 200ms ease-in-out;
  visibility: visible; }
  input + .input-placeholder.focused, textarea + .input-placeholder.focused, select + .input-placeholder.focused {
    background-color: var(--bg-white);
    color: var(--text-light);
    font-size: 12px;
    line-height: 16px;
    height: 16px;
    top: -8px;
    font-weight: 300; }

[dir="rtl"] input + .input-placeholder, [dir="rtl"] textarea + .input-placeholder, [dir="rtl"] select + .input-placeholder {
  left: auto;
  right: 7.5px; }

input:-webkit-autofill + .input-placeholder, textarea:-webkit-autofill + .input-placeholder, select:-webkit-autofill + .input-placeholder {
  background-color: var(--bg-white);
  font-size: 12px;
  line-height: 16px;
  height: 16px;
  top: -8px; }

textarea + .input-placeholder {
  max-height: 40px; }

input[type="checkbox"].form-control, input.form-control.btn[type="checkbox"], input[type="radio"].form-control, input.form-control.btn[type="radio"] {
  display: none; }
  input[type="checkbox"].form-control + label, input.form-control.btn[type="checkbox"] + label, input[type="radio"].form-control + label, input.form-control.btn[type="radio"] + label {
    cursor: pointer; }
    input[type="checkbox"].form-control + label > .input-checkbox, input.form-control.btn[type="checkbox"] + label > .input-checkbox, input[type="radio"].form-control + label > .input-checkbox, input.form-control.btn[type="radio"] + label > .input-checkbox, input[type="checkbox"].form-control + label > .input-radio, input.form-control.btn[type="checkbox"] + label > .input-radio, input[type="radio"].form-control + label > .input-radio, input.form-control.btn[type="radio"] + label > .input-radio {
      background-color: var(--bg-white);
      min-width: 14px;
      width: 14px;
      height: 14px;
      display: inline-block;
      vertical-align: middle;
      text-align: center;
      line-height: 14px;
      border: 1px solid var(--text-gray);
      margin-right: 6px;
      position: relative;
      -moz-transition: all 0.2s ease-in-out;
      -o-transition: all 0.2s ease-in-out;
      -webkit-transition: all 0.2s ease-in-out;
      transition: all 0.2s ease-in-out; }
      input[type="checkbox"].form-control + label > .input-checkbox i[class*="ti-"], input.form-control.btn[type="checkbox"] + label > .input-checkbox i[class*="ti-"], input[type="radio"].form-control + label > .input-checkbox i[class*="ti-"], input.form-control.btn[type="radio"] + label > .input-checkbox i[class*="ti-"], input[type="checkbox"].form-control + label > .input-radio i[class*="ti-"], input.form-control.btn[type="checkbox"] + label > .input-radio i[class*="ti-"], input[type="radio"].form-control + label > .input-radio i[class*="ti-"], input.form-control.btn[type="radio"] + label > .input-radio i[class*="ti-"] {
        color: var(--text-primary);
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out; }
    input[type="checkbox"].form-control + label > .input-checkbox, input.form-control.btn[type="checkbox"] + label > .input-checkbox, input[type="radio"].form-control + label > .input-checkbox, input.form-control.btn[type="radio"] + label > .input-checkbox {
      border-radius: 4px; }
      input[type="checkbox"].form-control + label > .input-checkbox i[class*="ti-"], input.form-control.btn[type="checkbox"] + label > .input-checkbox i[class*="ti-"], input[type="radio"].form-control + label > .input-checkbox i[class*="ti-"], input.form-control.btn[type="radio"] + label > .input-checkbox i[class*="ti-"] {
        font-size: 10px; }
    input[type="checkbox"].form-control + label > .input-radio, input.form-control.btn[type="checkbox"] + label > .input-radio, input[type="radio"].form-control + label > .input-radio, input.form-control.btn[type="radio"] + label > .input-radio {
      border-radius: 100%; }
      input[type="checkbox"].form-control + label > .input-radio i[class*="ti-"], input.form-control.btn[type="checkbox"] + label > .input-radio i[class*="ti-"], input[type="radio"].form-control + label > .input-radio i[class*="ti-"], input.form-control.btn[type="radio"] + label > .input-radio i[class*="ti-"] {
        font-size: 7px; }
  input[type="checkbox"].form-control:checked + label > .input-checkbox, input.form-control.btn:checked[type="checkbox"] + label > .input-checkbox, input[type="radio"].form-control:checked + label > .input-checkbox, input.form-control.btn:checked[type="radio"] + label > .input-checkbox, input[type="checkbox"].form-control:checked + label > .input-radio, input.form-control.btn:checked[type="checkbox"] + label > .input-radio, input[type="radio"].form-control:checked + label > .input-radio, input.form-control.btn:checked[type="radio"] + label > .input-radio {
    border-color: var(--border-primary); }
    input[type="checkbox"].form-control:checked + label > .input-checkbox i[class*="ti-"], input.form-control.btn:checked[type="checkbox"] + label > .input-checkbox i[class*="ti-"], input[type="radio"].form-control:checked + label > .input-checkbox i[class*="ti-"], input.form-control.btn:checked[type="radio"] + label > .input-checkbox i[class*="ti-"], input[type="checkbox"].form-control:checked + label > .input-radio i[class*="ti-"], input.form-control.btn:checked[type="checkbox"] + label > .input-radio i[class*="ti-"], input[type="radio"].form-control:checked + label > .input-radio i[class*="ti-"], input.form-control.btn:checked[type="radio"] + label > .input-radio i[class*="ti-"] {
      opacity: 1;
      visibility: visible; }

[dir="rtl"] input[type="checkbox"].form-control + label > .input-checkbox, [dir="rtl"] input.form-control.btn[type="checkbox"] + label > .input-checkbox, [dir="rtl"] input[type="radio"].form-control + label > .input-checkbox, [dir="rtl"] input.form-control.btn[type="radio"] + label > .input-checkbox, [dir="rtl"] input[type="checkbox"].form-control + label > .input-radio, [dir="rtl"] input.form-control.btn[type="checkbox"] + label > .input-radio, [dir="rtl"] input[type="radio"].form-control + label > .input-radio, [dir="rtl"] input.form-control.btn[type="radio"] + label > .input-radio {
  margin-right: 0;
  margin-left: 6px; }
  [dir="rtl"] input[type="checkbox"].form-control + label > .input-checkbox i[class*="ti-"], [dir="rtl"] input.form-control.btn[type="checkbox"] + label > .input-checkbox i[class*="ti-"], [dir="rtl"] input[type="radio"].form-control + label > .input-checkbox i[class*="ti-"], [dir="rtl"] input.form-control.btn[type="radio"] + label > .input-checkbox i[class*="ti-"], [dir="rtl"] input[type="checkbox"].form-control + label > .input-radio i[class*="ti-"], [dir="rtl"] input.form-control.btn[type="checkbox"] + label > .input-radio i[class*="ti-"], [dir="rtl"] input[type="radio"].form-control + label > .input-radio i[class*="ti-"], [dir="rtl"] input.form-control.btn[type="radio"] + label > .input-radio i[class*="ti-"] {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%); }

input[type="file"].form-control, input.form-control.btn[type="file"] {
  display: none; }
  input[type="file"].form-control + label, input.form-control.btn[type="file"] + label {
    cursor: pointer; }
    input[type="file"].form-control + label > i, input.form-control.btn[type="file"] + label > i {
      font-size: 16px; }

.input-group {
  display: flex !important; }
  .input-group .input-group-append, .input-group .input-group-prepend {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-secondary);
    border-bottom: 1px solid var(--border-secondary);
    overflow: hidden; }
    .input-group .input-group-append i, .input-group .input-group-prepend i {
      width: 100%;
      min-width: 50px;
      height: 100%;
      font-size: 20px;
      text-align: center;
      display: flex !important;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transform: rotate(0deg);
      transition: transform 0.2s ease-in-out; }
    .input-group .input-group-append:not(.no-animate):hover i, .input-group .input-group-prepend:not(.no-animate):hover i {
      transform: rotate(360deg); }
  .input-group img {
    display: block;
    width: 100px;
    height: 100%;
    object-fit: contain; }
  .input-group > .form-control, .input-group > .form-control.btn {
    flex: 1 1 auto;
    width: 1%;
    min-width: 0; }

html:not([dir="rtl"]) .input-group .input-group-prepend {
  border-left: 1px solid var(--border-secondary);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius); }
html:not([dir="rtl"]) .input-group .input-group-append {
  border-right: 1px solid var(--border-secondary);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius); }
html:not([dir="rtl"]) .input-group .input-group-prepend + input, html:not([dir="rtl"]) .input-group .input-group-prepend + textarea {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }
html:not([dir="rtl"]) .input-group > input:not(:last-child):not([type="tel"]), html:not([dir="rtl"]) .input-group > textarea:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

[dir="rtl"] .input-group .input-group-prepend {
  border-right: 1px solid var(--border-secondary);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius); }
[dir="rtl"] .input-group .input-group-append {
  border-left: 1px solid var(--border-secondary);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius); }
[dir="rtl"] .input-group .input-group-prepend + input, [dir="rtl"] .input-group .input-group-prepend + textarea {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }
[dir="rtl"] .input-group > input:not(:last-child):not([type="tel"]), [dir="rtl"] .input-group > textarea:not(:last-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.error-input-msg {
  color: var(--text-danger);
  font-size: 10px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 3;
  background: var(--bg-white); }

[dir="rtl"] .error-input-msg {
  right: auto;
  left: 6px; }

.t-phone-masked .input-placeholder {
  left: 47.5px; }
.t-phone-masked .t-flag {
  position: relative;
  width: 40px;
  min-height: 34px;
  overflow: visible;
  z-index: 10; }
  .t-phone-masked .t-flag.show {
    z-index: 11; }
  .t-phone-masked .t-flag .t-flag-icon {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer; }
    .t-phone-masked .t-flag .t-flag-icon img {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
.t-phone-masked .t-flag-list {
  width: 600%;
  max-width: 300px;
  position: absolute;
  top: 100%;
  left: -1px; }
  .t-phone-masked .t-flag-list .t-flag-list-ul {
    max-height: 180px;
    overflow-y: auto; }
  .t-phone-masked .t-flag-list .t-flag-list-item {
    cursor: pointer; }
  .t-phone-masked .t-flag-list .t-flag-code {
    padding-right: 8px; }
  .t-phone-masked .t-flag-list .t-flag-i {
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 6px; }
    .t-phone-masked .t-flag-list .t-flag-i img {
      width: 100%;
      height: 100%;
      flex-shrink: 0;
      object-fit: cover;
      display: block; }

[dir="rtl"] .t-phone-masked .input-placeholder {
  left: auto;
  right: 47.5px; }
  [dir="rtl"] .t-phone-masked .t-flag .t-flag-icon i {
    left: auto;
    right: 50%;
    transform: translate(50%, -50%); }
[dir="rtl"] .t-phone-masked .t-flag-list {
  left: auto;
  right: -1px; }
  [dir="rtl"] .t-phone-masked .t-flag-list .t-flag-code {
    padding-right: 0;
    padding-left: 8px; }
  [dir="rtl"] .t-phone-masked .t-flag-list .t-flag-i {
    margin-right: 0;
    margin-left: 6px; }

.t-tax-office {
  position: relative; }
  .t-tax-office .t-tax-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--bg-white);
    border: 1px solid var(--border-secondary); }
    .t-tax-office .t-tax-list .t-tax-list-ul {
      max-height: 140px;
      overflow-y: auto; }
      .t-tax-office .t-tax-list .t-tax-list-ul .t-tax-list-item {
        cursor: pointer;
        padding: 5px 0; }
        .t-tax-office .t-tax-list .t-tax-list-ul .t-tax-list-item:hover {
          color: var(--text-primary); }
    .t-tax-office .t-tax-list.show {
      z-index: 20; }

.btn {
  background-color: transparent;
  display: inline-block;
  color: #212529;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  outline: 0;
  transition: all 0.3s ease-in-out;
  cursor: pointer; }
  .btn:disabled, .btn.disabled {
    opacity: 0.65;
    pointer-events: none; }
  .btn .with-shadow {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.11); }
  .btn:not(.no-radius) {
    border-radius: var(--border-radius);
    /* Alternate Buttons */ }
    .btn.btn-primary {
      background-color: var(--button-primary);
      border-color: var(--button-primary);
      color: var(--text-white); }
      .btn.btn-primary:hover, .btn.btn-primary:focus, .btn.btn-primary.active {
        background-color: #091341;
        border-color: #091341; }
    .btn.btn-secondary {
      background-color: var(--button-secondary);
      border-color: var(--button-secondary);
      color: var(--text-white); }
      .btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary.active {
        background-color: #797979;
        border-color: #797979; }
    .btn.btn-white {
      background-color: var(--button-white);
      border-color: var(--button-white); }
      .btn.btn-white:hover, .btn.btn-white:focus, .btn.btn-white.active {
        background-color: #ececec;
        border-color: #ececec; }
    .btn.btn-black {
      background-color: var(--button-black);
      border-color: var(--button-black);
      color: var(--text-white); }
      .btn.btn-black:hover, .btn.btn-black:focus, .btn.btn-black.active {
        background-color: black;
        border-color: black; }
    .btn.btn-success {
      background-color: var(--button-success);
      border-color: var(--button-success);
      color: var(--text-white); }
      .btn.btn-success:hover, .btn.btn-success:focus, .btn.btn-success.active {
        background-color: #02724f;
        border-color: #02724f; }
    .btn.btn-info {
      background-color: var(--button-info);
      border-color: var(--button-info);
      color: var(--text-white); }
      .btn.btn-info:hover, .btn.btn-info:focus, .btn.btn-info.active {
        background-color: #c7d0ff;
        border-color: #c7d0ff; }
    .btn.btn-warning {
      background-color: var(--button-warning);
      border-color: var(--button-warning);
      color: var(--text-white); }
      .btn.btn-warning:hover, .btn.btn-warning:focus, .btn.btn-warning.active {
        background-color: #d1a404;
        border-color: #d1a404; }
    .btn.btn-danger {
      background-color: var(--button-danger);
      border-color: var(--button-danger);
      color: var(--text-white); }
      .btn.btn-danger:hover, .btn.btn-danger:focus, .btn.btn-danger.active {
        background-color: #c50d0d;
        border-color: #c50d0d; }
    .btn.btn-gray {
      background-color: var(--button-gray);
      border-color: var(--button-gray);
      color: var(--text-white); }
      .btn.btn-gray:hover, .btn.btn-gray:focus, .btn.btn-gray.active {
        background-color: #b8bcd1;
        border-color: #b8bcd1; }
    .btn.btn-light {
      background-color: var(--button-light);
      border-color: var(--button-light); }
      .btn.btn-light:hover, .btn.btn-light:focus, .btn.btn-light.active {
        background-color: #c7d0ff;
        border-color: #c7d0ff; }
    .btn.btn-dark {
      background-color: var(--button-dark);
      border-color: var(--button-dark);
      color: var(--text-white); }
      .btn.btn-dark:hover, .btn.btn-dark:focus, .btn.btn-dark.active {
        background-color: #181716;
        border-color: #181716;
        /* Outline Alternate Buttons */ }
    .btn.btn-outline-primary {
      background-color: transparent;
      color: var(--button-primary);
      border-color: var(--button-primary); }
      .btn.btn-outline-primary:hover, .btn.btn-outline-primary:focus, .btn.btn-outline-primary.active {
        background-color: var(--button-primary);
        color: var(--text-white); }
    .btn.btn-outline-secondary {
      background-color: transparent;
      color: var(--button-secondary);
      border-color: var(--button-secondary); }
      .btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:focus, .btn.btn-outline-secondary.active {
        background-color: var(--button-secondary);
        color: var(--text-white); }
    .btn.btn-outline-white {
      background-color: transparent;
      color: var(--button-white);
      border-color: var(--button-white); }
      .btn.btn-outline-white:hover, .btn.btn-outline-white:focus, .btn.btn-outline-white.active {
        background-color: var(--button-white);
        color: var(--text-body); }
    .btn.btn-outline-black {
      background-color: transparent;
      color: var(--button-black);
      border-color: var(--button-black); }
      .btn.btn-outline-black:hover, .btn.btn-outline-black:focus, .btn.btn-outline-black.active {
        background-color: var(--button-black);
        color: var(--text-white); }
    .btn.btn-outline-success {
      background-color: transparent;
      color: var(--button-success);
      border-color: var(--button-success); }
      .btn.btn-outline-success:hover, .btn.btn-outline-success:focus, .btn.btn-outline-success.active {
        background-color: var(--button-success);
        color: var(--text-white); }
    .btn.btn-outline-info {
      background-color: transparent;
      color: var(--button-info);
      border-color: var(--button-info); }
      .btn.btn-outline-info:hover, .btn.btn-outline-info:focus, .btn.btn-outline-info.active {
        background-color: var(--button-info);
        color: var(--text-white); }
    .btn.btn-outline-warning {
      background-color: transparent;
      color: var(--button-warning);
      border-color: var(--button-warning); }
      .btn.btn-outline-warning:hover, .btn.btn-outline-warning:focus, .btn.btn-outline-warning.active {
        background-color: var(--button-warning);
        color: var(--text-white); }
    .btn.btn-outline-danger {
      background-color: transparent;
      color: var(--button-danger);
      border-color: var(--button-danger); }
      .btn.btn-outline-danger:hover, .btn.btn-outline-danger:focus, .btn.btn-outline-danger.active {
        background-color: var(--button-danger);
        color: var(--text-white); }
    .btn.btn-outline-gray {
      background-color: transparent;
      color: var(--button-gray);
      border-color: var(--button-gray); }
      .btn.btn-outline-gray:hover, .btn.btn-outline-gray:focus, .btn.btn-outline-gray.active {
        background-color: var(--button-gray);
        color: var(--text-white); }
    .btn.btn-outline-light {
      background-color: transparent;
      color: var(--button-light);
      border-color: var(--button-light); }
      .btn.btn-outline-light:hover, .btn.btn-outline-light:focus, .btn.btn-outline-light.active {
        background-color: var(--button-light);
        color: var(--text-body); }
    .btn.btn-outline-dark {
      background-color: transparent;
      color: var(--button-dark);
      border-color: var(--button-dark); }
      .btn.btn-outline-dark:hover, .btn.btn-outline-dark:focus, .btn.btn-outline-dark.active {
        background-color: var(--button-dark);
        color: var(--text-white);
        /* Buttons Sizes */ }
  .btn.btn-lg {
    font-size: 18px;
    padding: 18px 24px; }
  .btn.btn-md {
    font-size: 14px;
    padding: 15px 18px; }
  .btn {
    font-size: 13px;
    padding: 11.1111111111px 15px; }
  .btn.btn-sm {
    font-size: 10px;
    padding: 7.5px 10px; }
  @media (min-width: 768px) {
    .btn.btn-lg {
      font-size: 20px;
      padding: 26.25px 37.5px; }
    .btn.btn-md {
      font-size: 16px;
      padding: 18px 24px; }
    .btn {
      font-size: 14px;
      padding: 11.1111111111px 15px; }
    .btn.btn-sm {
      font-size: 12px;
      padding: 7.5px 10px; } }

.container-fluid {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 auto;
  float: none;
  clear: both; }
@media (min-width: 768px) {
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px; } }

.container {
  width: 100%;
  max-width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  margin: 0 auto;
  float: none;
  clear: both; }
@media (min-width: 1200px) {
  .container {
    width: 1200px; } }
@media (min-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px; } }

.max-width {
  max-width: 100%; }

.max-height {
  max-height: 100%; }

html:not([dir="rtl"]) .float-left {
  float: left; }
html:not([dir="rtl"]) .float-right {
  float: right; }

[dir="rtl"] .float-left {
  float: right; }
[dir="rtl"] .float-right {
  float: left; }

.clearfix {
  clear: both; }

.clearfix::before, .clearfix::after {
  content: '';
  display: table; }

.clearfix::after {
  clear: both; }
  .d-block {
    display: block !important; }
  .d-inline-block {
    display: inline-block !important; }
  .d-flex {
    display: flex !important; }
  .d-inline-flex {
    display: inline-flex !important; }
  .d-grid {
    display: grid !important; }
  .d-inline-grid {
    display: inline-grid !important; }
  .d-none {
    display: none !important; }
.align-items-flex-start {
  align-items: flex-start; }
.align-items-center {
  align-items: center; }
.align-items-flex-end {
  align-items: flex-end; }
.align-items-start {
  align-items: start; }
.align-items-end {
  align-items: end; }
.justify-content-around {
  justify-content: space-around; }
.justify-content-between {
  justify-content: space-between; }
.justify-content-flex-start {
  justify-content: flex-start; }
.justify-content-center {
  justify-content: center; }
.justify-content-flex-end {
  justify-content: flex-end; }
.justify-content-evenly {
  justify-content: space-evenly; }
.justify-content-start {
  justify-content: start; }
.justify-content-end {
  justify-content: end; }
.flex-wrap {
  flex-wrap: wrap; }
.flex-nowrap {
  flex-wrap: nowrap; }
.flex-wrap-reverse {
  flex-wrap: wrap-reverse; }
.flex-direction-row {
  flex-direction: row; }
.flex-direction-row-reverse {
  flex-direction: row-reverse; }
.flex-direction-column {
  flex-direction: column; }
.flex-direction-column-reverse {
  flex-direction: column-reverse; }
.flex-shrink-0 {
  flex-shrink: 0; }
.flex-shrink-1 {
  flex-shrink: 1; }
.flex-shrink-2 {
  flex-shrink: 2; }
[dir="rtl"] .text-left {
  text-align: right !important; }
html:not([dir="rtl"]) .text-left {
  text-align: left !important; }
.text-center {
  text-align: center !important; }
  [dir="rtl"] .text-right {
    text-align: left !important; }
  html:not([dir="rtl"]) .text-right {
    text-align: right !important; }
.text-justify {
  text-align: justify !important; }
.order-n1 {
  order: -1; }
.order-0 {
  order: 0; }
.order-1 {
  order: 1; }
.order-2 {
  order: 2; }
.order-3 {
  order: 3; }
.order-4 {
  order: 4; }
.order-5 {
  order: 5; }
.order-6 {
  order: 6; }
.order-7 {
  order: 7; }
.order-8 {
  order: 8; }
.order-9 {
  order: 9; }
.order-10 {
  order: 10; }
.grid-cols-0 {
  grid-template-columns: repeat(0, minmax(0, 1fr)); }
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr)); }
.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr)); }
.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr)); }
.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .w-25 {
    width: 25%; }
  .w-50 {
    width: 50%; }
  .w-75 {
    width: 75%; }
  .w-100 {
    width: 100%; }
  .w-auto {
    width: auto; }
  .h-25 {
    height: 25%; }
  .h-50 {
    height: 50%; }
  .h-75 {
    height: 75%; }
  .h-100 {
    height: 100%; }
  .h-auto {
    height: auto; }
  .min-w-25 {
    min-width: 25%; }
  .min-w-50 {
    min-width: 50%; }
  .min-w-75 {
    min-width: 75%; }
  .min-w-100 {
    min-width: 100%; }
  .min-w-auto {
    min-width: auto; }
  .min-h-25 {
    min-height: 25%; }
  .min-h-50 {
    min-height: 50%; }
  .min-h-75 {
    min-height: 75%; }
  .min-h-100 {
    min-height: 100%; }
  .min-h-auto {
    min-height: auto; }
  .max-w-25 {
    max-width: 25%; }
  .max-w-50 {
    max-width: 50%; }
  .max-w-75 {
    max-width: 75%; }
  .max-w-100 {
    max-width: 100%; }
  .max-w-auto {
    max-width: auto; }
  .max-h-25 {
    max-height: 25%; }
  .max-h-50 {
    max-height: 50%; }
  .max-h-75 {
    max-height: 75%; }
  .max-h-100 {
    max-height: 100%; }
  .max-h-auto {
    max-height: auto; }
.z-n1 {
  z-index: -1; }
.z-0 {
  z-index: 0; }
.z-1 {
  z-index: 1; }
.z-2 {
  z-index: 2; }
.z-3 {
  z-index: 3; }
.z-4 {
  z-index: 4; }
.z-5 {
  z-index: 5; }
  .gap-0 {
    gap: 0; }
  .gap-5px {
    gap: 5px; }
  .gap-10px {
    gap: 10px; }
  .gap-1 {
    gap: 8px; }
  .gap-2 {
    gap: 16px; }
  .gap-3 {
    gap: 24px; }
  .gap-4 {
    gap: 32px; }
  .gap-5 {
    gap: 40px; }
  .m-0 {
    margin: 0; }
  .mx-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-0 {
    margin-top: 0; }
  .mb-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-0 {
    margin-left: 0; }
  .m-5px {
    margin: 5px; }
  .mx-5px {
    margin-left: 5px;
    margin-right: 5px; }
  .my-5px {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mt-5px {
    margin-top: 5px; }
  .mb-5px {
    margin-bottom: 5px; }
    [dir="rtl"] .mr-5px {
      margin-left: 5px; }
    html:not([dir="rtl"]) .mr-5px {
      margin-right: 5px; }
  [dir="rtl"] .ml-5px {
    margin-right: 5px; }
  html:not([dir="rtl"]) .ml-5px {
    margin-left: 5px; }
  .m-10px {
    margin: 10px; }
  .mx-10px {
    margin-left: 10px;
    margin-right: 10px; }
  .my-10px {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mt-10px {
    margin-top: 10px; }
  .mb-10px {
    margin-bottom: 10px; }
    [dir="rtl"] .mr-10px {
      margin-left: 10px; }
    html:not([dir="rtl"]) .mr-10px {
      margin-right: 10px; }
  [dir="rtl"] .ml-10px {
    margin-right: 10px; }
  html:not([dir="rtl"]) .ml-10px {
    margin-left: 10px; }
  .m-1 {
    margin: 8px; }
  .mx-1 {
    margin-left: 8px;
    margin-right: 8px; }
  .my-1 {
    margin-top: 8px;
    margin-bottom: 8px; }
  .mt-1 {
    margin-top: 8px; }
  .mb-1 {
    margin-bottom: 8px; }
    [dir="rtl"] .mr-1 {
      margin-left: 8px; }
    html:not([dir="rtl"]) .mr-1 {
      margin-right: 8px; }
  [dir="rtl"] .ml-1 {
    margin-right: 8px; }
  html:not([dir="rtl"]) .ml-1 {
    margin-left: 8px; }
  .m-2 {
    margin: 16px; }
  .mx-2 {
    margin-left: 16px;
    margin-right: 16px; }
  .my-2 {
    margin-top: 16px;
    margin-bottom: 16px; }
  .mt-2 {
    margin-top: 16px; }
  .mb-2 {
    margin-bottom: 16px; }
    [dir="rtl"] .mr-2 {
      margin-left: 16px; }
    html:not([dir="rtl"]) .mr-2 {
      margin-right: 16px; }
  [dir="rtl"] .ml-2 {
    margin-right: 16px; }
  html:not([dir="rtl"]) .ml-2 {
    margin-left: 16px; }
  .m-3 {
    margin: 24px; }
  .mx-3 {
    margin-left: 24px;
    margin-right: 24px; }
  .my-3 {
    margin-top: 24px;
    margin-bottom: 24px; }
  .mt-3 {
    margin-top: 24px; }
  .mb-3 {
    margin-bottom: 24px; }
    [dir="rtl"] .mr-3 {
      margin-left: 24px; }
    html:not([dir="rtl"]) .mr-3 {
      margin-right: 24px; }
  [dir="rtl"] .ml-3 {
    margin-right: 24px; }
  html:not([dir="rtl"]) .ml-3 {
    margin-left: 24px; }
  .m-4 {
    margin: 32px; }
  .mx-4 {
    margin-left: 32px;
    margin-right: 32px; }
  .my-4 {
    margin-top: 32px;
    margin-bottom: 32px; }
  .mt-4 {
    margin-top: 32px; }
  .mb-4 {
    margin-bottom: 32px; }
    [dir="rtl"] .mr-4 {
      margin-left: 32px; }
    html:not([dir="rtl"]) .mr-4 {
      margin-right: 32px; }
  [dir="rtl"] .ml-4 {
    margin-right: 32px; }
  html:not([dir="rtl"]) .ml-4 {
    margin-left: 32px; }
  .m-5 {
    margin: 40px; }
  .mx-5 {
    margin-left: 40px;
    margin-right: 40px; }
  .my-5 {
    margin-top: 40px;
    margin-bottom: 40px; }
  .mt-5 {
    margin-top: 40px; }
  .mb-5 {
    margin-bottom: 40px; }
    [dir="rtl"] .mr-5 {
      margin-left: 40px; }
    html:not([dir="rtl"]) .mr-5 {
      margin-right: 40px; }
  [dir="rtl"] .ml-5 {
    margin-right: 40px; }
  html:not([dir="rtl"]) .ml-5 {
    margin-left: 40px; }
  .m-auto {
    margin: auto; }
  .mx-auto {
    margin-left: auto;
    margin-right: auto; }
  .my-auto {
    margin-top: auto;
    margin-bottom: auto; }
  .mt-auto {
    margin-top: auto; }
  .mb-auto {
    margin-bottom: auto; }
    [dir="rtl"] .mr-auto {
      margin-left: auto; }
    html:not([dir="rtl"]) .mr-auto {
      margin-right: auto; }
  [dir="rtl"] .ml-auto {
    margin-right: auto; }
  html:not([dir="rtl"]) .ml-auto {
    margin-left: auto; }
  .p-0 {
    padding: 0; }
  .px-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-0 {
    padding-top: 0; }
  .pb-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-0 {
    padding-left: 0; }
  .p-5px {
    padding: 5px; }
  .px-5px {
    padding-left: 5px;
    padding-right: 5px; }
  .py-5px {
    padding-top: 5px;
    padding-bottom: 5px; }
  .pt-5px {
    padding-top: 5px; }
  .pb-5px {
    padding-bottom: 5px; }
    [dir="rtl"] .pr-5px {
      padding-left: 5px; }
    html:not([dir="rtl"]) .pr-5px {
      padding-right: 5px; }
  [dir="rtl"] .pl-5px {
    padding-right: 5px; }
  html:not([dir="rtl"]) .pl-5px {
    padding-left: 5px; }
  .p-10px {
    padding: 10px; }
  .px-10px {
    padding-left: 10px;
    padding-right: 10px; }
  .py-10px {
    padding-top: 10px;
    padding-bottom: 10px; }
  .pt-10px {
    padding-top: 10px; }
  .pb-10px {
    padding-bottom: 10px; }
    [dir="rtl"] .pr-10px {
      padding-left: 10px; }
    html:not([dir="rtl"]) .pr-10px {
      padding-right: 10px; }
  [dir="rtl"] .pl-10px {
    padding-right: 10px; }
  html:not([dir="rtl"]) .pl-10px {
    padding-left: 10px; }
  .p-1 {
    padding: 8px; }
  .px-1 {
    padding-left: 8px;
    padding-right: 8px; }
  .py-1 {
    padding-top: 8px;
    padding-bottom: 8px; }
  .pt-1 {
    padding-top: 8px; }
  .pb-1 {
    padding-bottom: 8px; }
    [dir="rtl"] .pr-1 {
      padding-left: 8px; }
    html:not([dir="rtl"]) .pr-1 {
      padding-right: 8px; }
  [dir="rtl"] .pl-1 {
    padding-right: 8px; }
  html:not([dir="rtl"]) .pl-1 {
    padding-left: 8px; }
  .p-2 {
    padding: 16px; }
  .px-2 {
    padding-left: 16px;
    padding-right: 16px; }
  .py-2 {
    padding-top: 16px;
    padding-bottom: 16px; }
  .pt-2 {
    padding-top: 16px; }
  .pb-2 {
    padding-bottom: 16px; }
    [dir="rtl"] .pr-2 {
      padding-left: 16px; }
    html:not([dir="rtl"]) .pr-2 {
      padding-right: 16px; }
  [dir="rtl"] .pl-2 {
    padding-right: 16px; }
  html:not([dir="rtl"]) .pl-2 {
    padding-left: 16px; }
  .p-3 {
    padding: 24px; }
  .px-3 {
    padding-left: 24px;
    padding-right: 24px; }
  .py-3 {
    padding-top: 24px;
    padding-bottom: 24px; }
  .pt-3 {
    padding-top: 24px; }
  .pb-3 {
    padding-bottom: 24px; }
    [dir="rtl"] .pr-3 {
      padding-left: 24px; }
    html:not([dir="rtl"]) .pr-3 {
      padding-right: 24px; }
  [dir="rtl"] .pl-3 {
    padding-right: 24px; }
  html:not([dir="rtl"]) .pl-3 {
    padding-left: 24px; }
  .p-4 {
    padding: 32px; }
  .px-4 {
    padding-left: 32px;
    padding-right: 32px; }
  .py-4 {
    padding-top: 32px;
    padding-bottom: 32px; }
  .pt-4 {
    padding-top: 32px; }
  .pb-4 {
    padding-bottom: 32px; }
    [dir="rtl"] .pr-4 {
      padding-left: 32px; }
    html:not([dir="rtl"]) .pr-4 {
      padding-right: 32px; }
  [dir="rtl"] .pl-4 {
    padding-right: 32px; }
  html:not([dir="rtl"]) .pl-4 {
    padding-left: 32px; }
  .p-5 {
    padding: 40px; }
  .px-5 {
    padding-left: 40px;
    padding-right: 40px; }
  .py-5 {
    padding-top: 40px;
    padding-bottom: 40px; }
  .pt-5 {
    padding-top: 40px; }
  .pb-5 {
    padding-bottom: 40px; }
    [dir="rtl"] .pr-5 {
      padding-left: 40px; }
    html:not([dir="rtl"]) .pr-5 {
      padding-right: 40px; }
  [dir="rtl"] .pl-5 {
    padding-right: 40px; }
  html:not([dir="rtl"]) .pl-5 {
    padding-left: 40px; }

@media (min-width: 768px) {
  .gap-0 {
    gap: 0; }
  .gap-1 {
    gap: 15px; }
  .gap-2 {
    gap: 30px; }
  .gap-3 {
    gap: 45px; }
  .gap-4 {
    gap: 60px; }
  .gap-5 {
    gap: 75px; }
  .m-0 {
    margin: 0; }
  .mx-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-0 {
    margin-top: 0; }
  .mb-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-0 {
    margin-left: 0; }
  .m-1 {
    margin: 15px; }
  .mx-1 {
    margin-left: 15px;
    margin-right: 15px; }
  .my-1 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mt-1 {
    margin-top: 15px; }
  .mb-1 {
    margin-bottom: 15px; }
    [dir="rtl"] .mr-1 {
      margin-left: 15px; }
    html:not([dir="rtl"]) .mr-1 {
      margin-right: 15px; }
  [dir="rtl"] .ml-1 {
    margin-right: 15px; }
  html:not([dir="rtl"]) .ml-1 {
    margin-left: 15px; }
  .m-2 {
    margin: 30px; }
  .mx-2 {
    margin-left: 30px;
    margin-right: 30px; }
  .my-2 {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mt-2 {
    margin-top: 30px; }
  .mb-2 {
    margin-bottom: 30px; }
    [dir="rtl"] .mr-2 {
      margin-left: 30px; }
    html:not([dir="rtl"]) .mr-2 {
      margin-right: 30px; }
  [dir="rtl"] .ml-2 {
    margin-right: 30px; }
  html:not([dir="rtl"]) .ml-2 {
    margin-left: 30px; }
  .m-3 {
    margin: 45px; }
  .mx-3 {
    margin-left: 45px;
    margin-right: 45px; }
  .my-3 {
    margin-top: 45px;
    margin-bottom: 45px; }
  .mt-3 {
    margin-top: 45px; }
  .mb-3 {
    margin-bottom: 45px; }
    [dir="rtl"] .mr-3 {
      margin-left: 45px; }
    html:not([dir="rtl"]) .mr-3 {
      margin-right: 45px; }
  [dir="rtl"] .ml-3 {
    margin-right: 45px; }
  html:not([dir="rtl"]) .ml-3 {
    margin-left: 45px; }
  .m-4 {
    margin: 60px; }
  .mx-4 {
    margin-left: 60px;
    margin-right: 60px; }
  .my-4 {
    margin-top: 60px;
    margin-bottom: 60px; }
  .mt-4 {
    margin-top: 60px; }
  .mb-4 {
    margin-bottom: 60px; }
    [dir="rtl"] .mr-4 {
      margin-left: 60px; }
    html:not([dir="rtl"]) .mr-4 {
      margin-right: 60px; }
  [dir="rtl"] .ml-4 {
    margin-right: 60px; }
  html:not([dir="rtl"]) .ml-4 {
    margin-left: 60px; }
  .m-5 {
    margin: 75px; }
  .mx-5 {
    margin-left: 75px;
    margin-right: 75px; }
  .my-5 {
    margin-top: 75px;
    margin-bottom: 75px; }
  .mt-5 {
    margin-top: 75px; }
  .mb-5 {
    margin-bottom: 75px; }
    [dir="rtl"] .mr-5 {
      margin-left: 75px; }
    html:not([dir="rtl"]) .mr-5 {
      margin-right: 75px; }
  [dir="rtl"] .ml-5 {
    margin-right: 75px; }
  html:not([dir="rtl"]) .ml-5 {
    margin-left: 75px; }
  .p-0 {
    padding: 0; }
  .px-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-0 {
    padding-top: 0; }
  .pb-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-0 {
    padding-left: 0; }
  .p-1 {
    padding: 15px; }
  .px-1 {
    padding-left: 15px;
    padding-right: 15px; }
  .py-1 {
    padding-top: 15px;
    padding-bottom: 15px; }
  .pt-1 {
    padding-top: 15px; }
  .pb-1 {
    padding-bottom: 15px; }
    [dir="rtl"] .pr-1 {
      padding-left: 15px; }
    html:not([dir="rtl"]) .pr-1 {
      padding-right: 15px; }
  [dir="rtl"] .pl-1 {
    padding-right: 15px; }
  html:not([dir="rtl"]) .pl-1 {
    padding-left: 15px; }
  .p-2 {
    padding: 30px; }
  .px-2 {
    padding-left: 30px;
    padding-right: 30px; }
  .py-2 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .pt-2 {
    padding-top: 30px; }
  .pb-2 {
    padding-bottom: 30px; }
    [dir="rtl"] .pr-2 {
      padding-left: 30px; }
    html:not([dir="rtl"]) .pr-2 {
      padding-right: 30px; }
  [dir="rtl"] .pl-2 {
    padding-right: 30px; }
  html:not([dir="rtl"]) .pl-2 {
    padding-left: 30px; }
  .p-3 {
    padding: 45px; }
  .px-3 {
    padding-left: 45px;
    padding-right: 45px; }
  .py-3 {
    padding-top: 45px;
    padding-bottom: 45px; }
  .pt-3 {
    padding-top: 45px; }
  .pb-3 {
    padding-bottom: 45px; }
    [dir="rtl"] .pr-3 {
      padding-left: 45px; }
    html:not([dir="rtl"]) .pr-3 {
      padding-right: 45px; }
  [dir="rtl"] .pl-3 {
    padding-right: 45px; }
  html:not([dir="rtl"]) .pl-3 {
    padding-left: 45px; }
  .p-4 {
    padding: 60px; }
  .px-4 {
    padding-left: 60px;
    padding-right: 60px; }
  .py-4 {
    padding-top: 60px;
    padding-bottom: 60px; }
  .pt-4 {
    padding-top: 60px; }
  .pb-4 {
    padding-bottom: 60px; }
    [dir="rtl"] .pr-4 {
      padding-left: 60px; }
    html:not([dir="rtl"]) .pr-4 {
      padding-right: 60px; }
  [dir="rtl"] .pl-4 {
    padding-right: 60px; }
  html:not([dir="rtl"]) .pl-4 {
    padding-left: 60px; }
  .p-5 {
    padding: 75px; }
  .px-5 {
    padding-left: 75px;
    padding-right: 75px; }
  .py-5 {
    padding-top: 75px;
    padding-bottom: 75px; }
  .pt-5 {
    padding-top: 75px; }
  .pb-5 {
    padding-bottom: 75px; }
    [dir="rtl"] .pr-5 {
      padding-left: 75px; }
    html:not([dir="rtl"]) .pr-5 {
      padding-right: 75px; }
  [dir="rtl"] .pl-5 {
    padding-right: 75px; }
  html:not([dir="rtl"]) .pl-5 {
    padding-left: 75px; } }
@media (min-width: 576px) {
  .d-sm-block {
    display: block !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; }
  .d-sm-grid {
    display: grid !important; }
  .d-sm-inline-grid {
    display: inline-grid !important; }
  .d-sm-none {
    display: none !important; }
  .align-items-sm-flex-start {
    align-items: flex-start; }
  .align-items-sm-center {
    align-items: center; }
  .align-items-sm-flex-end {
    align-items: flex-end; }
  .align-items-sm-start {
    align-items: start; }
  .align-items-sm-end {
    align-items: end; }
  .justify-content-sm-around {
    justify-content: space-around; }
  .justify-content-sm-between {
    justify-content: space-between; }
  .justify-content-sm-flex-start {
    justify-content: flex-start; }
  .justify-content-sm-center {
    justify-content: center; }
  .justify-content-sm-flex-end {
    justify-content: flex-end; }
  .justify-content-sm-evenly {
    justify-content: space-evenly; }
  .justify-content-sm-start {
    justify-content: start; }
  .justify-content-sm-end {
    justify-content: end; }
  .flex-sm-wrap {
    flex-wrap: wrap; }
  .flex-sm-nowrap {
    flex-wrap: nowrap; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse; }
  .flex-direction-sm-row {
    flex-direction: row; }
  .flex-direction-sm-row-reverse {
    flex-direction: row-reverse; }
  .flex-direction-sm-column {
    flex-direction: column; }
  .flex-direction-sm-column-reverse {
    flex-direction: column-reverse; }
  .flex-shrink-sm-0 {
    flex-shrink: 0; }
  .flex-shrink-sm-1 {
    flex-shrink: 1; }
  .flex-shrink-sm-2 {
    flex-shrink: 2; }
  [dir="rtl"] .text-sm-left {
    text-align: right !important; }
  html:not([dir="rtl"]) .text-sm-left {
    text-align: left !important; }
  .text-sm-center {
    text-align: center !important; }
    [dir="rtl"] .text-sm-right {
      text-align: left !important; }
    html:not([dir="rtl"]) .text-sm-right {
      text-align: right !important; }
  .text-sm-justify {
    text-align: justify !important; }
  .order-sm-n1 {
    order: -1; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .grid-sm-cols-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr)); }
  .grid-sm-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-sm-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-sm-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-sm-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-sm-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-sm-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid-sm-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .grid-sm-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .grid-sm-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .grid-sm-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .grid-sm-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .grid-sm-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .w-sm-25 {
      width: 25%; }
    .w-sm-50 {
      width: 50%; }
    .w-sm-75 {
      width: 75%; }
    .w-sm-100 {
      width: 100%; }
    .w-sm-auto {
      width: auto; }
    .h-sm-25 {
      height: 25%; }
    .h-sm-50 {
      height: 50%; }
    .h-sm-75 {
      height: 75%; }
    .h-sm-100 {
      height: 100%; }
    .h-sm-auto {
      height: auto; }
    .min-w-sm-25 {
      min-width: 25%; }
    .min-w-sm-50 {
      min-width: 50%; }
    .min-w-sm-75 {
      min-width: 75%; }
    .min-w-sm-100 {
      min-width: 100%; }
    .min-w-sm-auto {
      min-width: auto; }
    .min-h-sm-25 {
      min-height: 25%; }
    .min-h-sm-50 {
      min-height: 50%; }
    .min-h-sm-75 {
      min-height: 75%; }
    .min-h-sm-100 {
      min-height: 100%; }
    .min-h-sm-auto {
      min-height: auto; }
    .max-w-sm-25 {
      max-width: 25%; }
    .max-w-sm-50 {
      max-width: 50%; }
    .max-w-sm-75 {
      max-width: 75%; }
    .max-w-sm-100 {
      max-width: 100%; }
    .max-w-sm-auto {
      max-width: auto; }
    .max-h-sm-25 {
      max-height: 25%; }
    .max-h-sm-50 {
      max-height: 50%; }
    .max-h-sm-75 {
      max-height: 75%; }
    .max-h-sm-100 {
      max-height: 100%; }
    .max-h-sm-auto {
      max-height: auto; } }
@media (min-width: 576px) {
  .gap-sm-0 {
    gap: 0; }
  .gap-sm-5px {
    gap: 5px; }
  .gap-sm-10px {
    gap: 10px; }
  .gap-sm-1 {
    gap: 8px; }
  .gap-sm-2 {
    gap: 16px; }
  .gap-sm-3 {
    gap: 24px; }
  .gap-sm-4 {
    gap: 32px; }
  .gap-sm-5 {
    gap: 40px; }
  .m-sm-0 {
    margin: 0; }
  .mx-sm-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-sm-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-sm-0 {
    margin-top: 0; }
  .mb-sm-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-sm-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-sm-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-sm-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-sm-0 {
    margin-left: 0; }
  .m-sm-5px {
    margin: 5px; }
  .mx-sm-5px {
    margin-left: 5px;
    margin-right: 5px; }
  .my-sm-5px {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mt-sm-5px {
    margin-top: 5px; }
  .mb-sm-5px {
    margin-bottom: 5px; }
    [dir="rtl"] .mr-sm-5px {
      margin-left: 5px; }
    html:not([dir="rtl"]) .mr-sm-5px {
      margin-right: 5px; }
  [dir="rtl"] .ml-sm-5px {
    margin-right: 5px; }
  html:not([dir="rtl"]) .ml-sm-5px {
    margin-left: 5px; }
  .m-sm-10px {
    margin: 10px; }
  .mx-sm-10px {
    margin-left: 10px;
    margin-right: 10px; }
  .my-sm-10px {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mt-sm-10px {
    margin-top: 10px; }
  .mb-sm-10px {
    margin-bottom: 10px; }
    [dir="rtl"] .mr-sm-10px {
      margin-left: 10px; }
    html:not([dir="rtl"]) .mr-sm-10px {
      margin-right: 10px; }
  [dir="rtl"] .ml-sm-10px {
    margin-right: 10px; }
  html:not([dir="rtl"]) .ml-sm-10px {
    margin-left: 10px; }
  .m-sm-1 {
    margin: 8px; }
  .mx-sm-1 {
    margin-left: 8px;
    margin-right: 8px; }
  .my-sm-1 {
    margin-top: 8px;
    margin-bottom: 8px; }
  .mt-sm-1 {
    margin-top: 8px; }
  .mb-sm-1 {
    margin-bottom: 8px; }
    [dir="rtl"] .mr-sm-1 {
      margin-left: 8px; }
    html:not([dir="rtl"]) .mr-sm-1 {
      margin-right: 8px; }
  [dir="rtl"] .ml-sm-1 {
    margin-right: 8px; }
  html:not([dir="rtl"]) .ml-sm-1 {
    margin-left: 8px; }
  .m-sm-2 {
    margin: 16px; }
  .mx-sm-2 {
    margin-left: 16px;
    margin-right: 16px; }
  .my-sm-2 {
    margin-top: 16px;
    margin-bottom: 16px; }
  .mt-sm-2 {
    margin-top: 16px; }
  .mb-sm-2 {
    margin-bottom: 16px; }
    [dir="rtl"] .mr-sm-2 {
      margin-left: 16px; }
    html:not([dir="rtl"]) .mr-sm-2 {
      margin-right: 16px; }
  [dir="rtl"] .ml-sm-2 {
    margin-right: 16px; }
  html:not([dir="rtl"]) .ml-sm-2 {
    margin-left: 16px; }
  .m-sm-3 {
    margin: 24px; }
  .mx-sm-3 {
    margin-left: 24px;
    margin-right: 24px; }
  .my-sm-3 {
    margin-top: 24px;
    margin-bottom: 24px; }
  .mt-sm-3 {
    margin-top: 24px; }
  .mb-sm-3 {
    margin-bottom: 24px; }
    [dir="rtl"] .mr-sm-3 {
      margin-left: 24px; }
    html:not([dir="rtl"]) .mr-sm-3 {
      margin-right: 24px; }
  [dir="rtl"] .ml-sm-3 {
    margin-right: 24px; }
  html:not([dir="rtl"]) .ml-sm-3 {
    margin-left: 24px; }
  .m-sm-4 {
    margin: 32px; }
  .mx-sm-4 {
    margin-left: 32px;
    margin-right: 32px; }
  .my-sm-4 {
    margin-top: 32px;
    margin-bottom: 32px; }
  .mt-sm-4 {
    margin-top: 32px; }
  .mb-sm-4 {
    margin-bottom: 32px; }
    [dir="rtl"] .mr-sm-4 {
      margin-left: 32px; }
    html:not([dir="rtl"]) .mr-sm-4 {
      margin-right: 32px; }
  [dir="rtl"] .ml-sm-4 {
    margin-right: 32px; }
  html:not([dir="rtl"]) .ml-sm-4 {
    margin-left: 32px; }
  .m-sm-5 {
    margin: 40px; }
  .mx-sm-5 {
    margin-left: 40px;
    margin-right: 40px; }
  .my-sm-5 {
    margin-top: 40px;
    margin-bottom: 40px; }
  .mt-sm-5 {
    margin-top: 40px; }
  .mb-sm-5 {
    margin-bottom: 40px; }
    [dir="rtl"] .mr-sm-5 {
      margin-left: 40px; }
    html:not([dir="rtl"]) .mr-sm-5 {
      margin-right: 40px; }
  [dir="rtl"] .ml-sm-5 {
    margin-right: 40px; }
  html:not([dir="rtl"]) .ml-sm-5 {
    margin-left: 40px; }
  .m-sm-auto {
    margin: auto; }
  .mx-sm-auto {
    margin-left: auto;
    margin-right: auto; }
  .my-sm-auto {
    margin-top: auto;
    margin-bottom: auto; }
  .mt-sm-auto {
    margin-top: auto; }
  .mb-sm-auto {
    margin-bottom: auto; }
    [dir="rtl"] .mr-sm-auto {
      margin-left: auto; }
    html:not([dir="rtl"]) .mr-sm-auto {
      margin-right: auto; }
  [dir="rtl"] .ml-sm-auto {
    margin-right: auto; }
  html:not([dir="rtl"]) .ml-sm-auto {
    margin-left: auto; }
  .p-sm-0 {
    padding: 0; }
  .px-sm-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-sm-0 {
    padding-top: 0; }
  .pb-sm-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-sm-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-sm-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-sm-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-sm-0 {
    padding-left: 0; }
  .p-sm-5px {
    padding: 5px; }
  .px-sm-5px {
    padding-left: 5px;
    padding-right: 5px; }
  .py-sm-5px {
    padding-top: 5px;
    padding-bottom: 5px; }
  .pt-sm-5px {
    padding-top: 5px; }
  .pb-sm-5px {
    padding-bottom: 5px; }
    [dir="rtl"] .pr-sm-5px {
      padding-left: 5px; }
    html:not([dir="rtl"]) .pr-sm-5px {
      padding-right: 5px; }
  [dir="rtl"] .pl-sm-5px {
    padding-right: 5px; }
  html:not([dir="rtl"]) .pl-sm-5px {
    padding-left: 5px; }
  .p-sm-10px {
    padding: 10px; }
  .px-sm-10px {
    padding-left: 10px;
    padding-right: 10px; }
  .py-sm-10px {
    padding-top: 10px;
    padding-bottom: 10px; }
  .pt-sm-10px {
    padding-top: 10px; }
  .pb-sm-10px {
    padding-bottom: 10px; }
    [dir="rtl"] .pr-sm-10px {
      padding-left: 10px; }
    html:not([dir="rtl"]) .pr-sm-10px {
      padding-right: 10px; }
  [dir="rtl"] .pl-sm-10px {
    padding-right: 10px; }
  html:not([dir="rtl"]) .pl-sm-10px {
    padding-left: 10px; }
  .p-sm-1 {
    padding: 8px; }
  .px-sm-1 {
    padding-left: 8px;
    padding-right: 8px; }
  .py-sm-1 {
    padding-top: 8px;
    padding-bottom: 8px; }
  .pt-sm-1 {
    padding-top: 8px; }
  .pb-sm-1 {
    padding-bottom: 8px; }
    [dir="rtl"] .pr-sm-1 {
      padding-left: 8px; }
    html:not([dir="rtl"]) .pr-sm-1 {
      padding-right: 8px; }
  [dir="rtl"] .pl-sm-1 {
    padding-right: 8px; }
  html:not([dir="rtl"]) .pl-sm-1 {
    padding-left: 8px; }
  .p-sm-2 {
    padding: 16px; }
  .px-sm-2 {
    padding-left: 16px;
    padding-right: 16px; }
  .py-sm-2 {
    padding-top: 16px;
    padding-bottom: 16px; }
  .pt-sm-2 {
    padding-top: 16px; }
  .pb-sm-2 {
    padding-bottom: 16px; }
    [dir="rtl"] .pr-sm-2 {
      padding-left: 16px; }
    html:not([dir="rtl"]) .pr-sm-2 {
      padding-right: 16px; }
  [dir="rtl"] .pl-sm-2 {
    padding-right: 16px; }
  html:not([dir="rtl"]) .pl-sm-2 {
    padding-left: 16px; }
  .p-sm-3 {
    padding: 24px; }
  .px-sm-3 {
    padding-left: 24px;
    padding-right: 24px; }
  .py-sm-3 {
    padding-top: 24px;
    padding-bottom: 24px; }
  .pt-sm-3 {
    padding-top: 24px; }
  .pb-sm-3 {
    padding-bottom: 24px; }
    [dir="rtl"] .pr-sm-3 {
      padding-left: 24px; }
    html:not([dir="rtl"]) .pr-sm-3 {
      padding-right: 24px; }
  [dir="rtl"] .pl-sm-3 {
    padding-right: 24px; }
  html:not([dir="rtl"]) .pl-sm-3 {
    padding-left: 24px; }
  .p-sm-4 {
    padding: 32px; }
  .px-sm-4 {
    padding-left: 32px;
    padding-right: 32px; }
  .py-sm-4 {
    padding-top: 32px;
    padding-bottom: 32px; }
  .pt-sm-4 {
    padding-top: 32px; }
  .pb-sm-4 {
    padding-bottom: 32px; }
    [dir="rtl"] .pr-sm-4 {
      padding-left: 32px; }
    html:not([dir="rtl"]) .pr-sm-4 {
      padding-right: 32px; }
  [dir="rtl"] .pl-sm-4 {
    padding-right: 32px; }
  html:not([dir="rtl"]) .pl-sm-4 {
    padding-left: 32px; }
  .p-sm-5 {
    padding: 40px; }
  .px-sm-5 {
    padding-left: 40px;
    padding-right: 40px; }
  .py-sm-5 {
    padding-top: 40px;
    padding-bottom: 40px; }
  .pt-sm-5 {
    padding-top: 40px; }
  .pb-sm-5 {
    padding-bottom: 40px; }
    [dir="rtl"] .pr-sm-5 {
      padding-left: 40px; }
    html:not([dir="rtl"]) .pr-sm-5 {
      padding-right: 40px; }
  [dir="rtl"] .pl-sm-5 {
    padding-right: 40px; }
  html:not([dir="rtl"]) .pl-sm-5 {
    padding-left: 40px; } }
@media (min-width: 768px) {
  .gap-sm-0 {
    gap: 0; }
  .gap-sm-1 {
    gap: 15px; }
  .gap-sm-2 {
    gap: 30px; }
  .gap-sm-3 {
    gap: 45px; }
  .gap-sm-4 {
    gap: 60px; }
  .gap-sm-5 {
    gap: 75px; }
  .m-sm-0 {
    margin: 0; }
  .mx-sm-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-sm-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-sm-0 {
    margin-top: 0; }
  .mb-sm-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-sm-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-sm-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-sm-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-sm-0 {
    margin-left: 0; }
  .m-sm-1 {
    margin: 15px; }
  .mx-sm-1 {
    margin-left: 15px;
    margin-right: 15px; }
  .my-sm-1 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mt-sm-1 {
    margin-top: 15px; }
  .mb-sm-1 {
    margin-bottom: 15px; }
    [dir="rtl"] .mr-sm-1 {
      margin-left: 15px; }
    html:not([dir="rtl"]) .mr-sm-1 {
      margin-right: 15px; }
  [dir="rtl"] .ml-sm-1 {
    margin-right: 15px; }
  html:not([dir="rtl"]) .ml-sm-1 {
    margin-left: 15px; }
  .m-sm-2 {
    margin: 30px; }
  .mx-sm-2 {
    margin-left: 30px;
    margin-right: 30px; }
  .my-sm-2 {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mt-sm-2 {
    margin-top: 30px; }
  .mb-sm-2 {
    margin-bottom: 30px; }
    [dir="rtl"] .mr-sm-2 {
      margin-left: 30px; }
    html:not([dir="rtl"]) .mr-sm-2 {
      margin-right: 30px; }
  [dir="rtl"] .ml-sm-2 {
    margin-right: 30px; }
  html:not([dir="rtl"]) .ml-sm-2 {
    margin-left: 30px; }
  .m-sm-3 {
    margin: 45px; }
  .mx-sm-3 {
    margin-left: 45px;
    margin-right: 45px; }
  .my-sm-3 {
    margin-top: 45px;
    margin-bottom: 45px; }
  .mt-sm-3 {
    margin-top: 45px; }
  .mb-sm-3 {
    margin-bottom: 45px; }
    [dir="rtl"] .mr-sm-3 {
      margin-left: 45px; }
    html:not([dir="rtl"]) .mr-sm-3 {
      margin-right: 45px; }
  [dir="rtl"] .ml-sm-3 {
    margin-right: 45px; }
  html:not([dir="rtl"]) .ml-sm-3 {
    margin-left: 45px; }
  .m-sm-4 {
    margin: 60px; }
  .mx-sm-4 {
    margin-left: 60px;
    margin-right: 60px; }
  .my-sm-4 {
    margin-top: 60px;
    margin-bottom: 60px; }
  .mt-sm-4 {
    margin-top: 60px; }
  .mb-sm-4 {
    margin-bottom: 60px; }
    [dir="rtl"] .mr-sm-4 {
      margin-left: 60px; }
    html:not([dir="rtl"]) .mr-sm-4 {
      margin-right: 60px; }
  [dir="rtl"] .ml-sm-4 {
    margin-right: 60px; }
  html:not([dir="rtl"]) .ml-sm-4 {
    margin-left: 60px; }
  .m-sm-5 {
    margin: 75px; }
  .mx-sm-5 {
    margin-left: 75px;
    margin-right: 75px; }
  .my-sm-5 {
    margin-top: 75px;
    margin-bottom: 75px; }
  .mt-sm-5 {
    margin-top: 75px; }
  .mb-sm-5 {
    margin-bottom: 75px; }
    [dir="rtl"] .mr-sm-5 {
      margin-left: 75px; }
    html:not([dir="rtl"]) .mr-sm-5 {
      margin-right: 75px; }
  [dir="rtl"] .ml-sm-5 {
    margin-right: 75px; }
  html:not([dir="rtl"]) .ml-sm-5 {
    margin-left: 75px; }
  .p-sm-0 {
    padding: 0; }
  .px-sm-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-sm-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-sm-0 {
    padding-top: 0; }
  .pb-sm-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-sm-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-sm-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-sm-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-sm-0 {
    padding-left: 0; }
  .p-sm-1 {
    padding: 15px; }
  .px-sm-1 {
    padding-left: 15px;
    padding-right: 15px; }
  .py-sm-1 {
    padding-top: 15px;
    padding-bottom: 15px; }
  .pt-sm-1 {
    padding-top: 15px; }
  .pb-sm-1 {
    padding-bottom: 15px; }
    [dir="rtl"] .pr-sm-1 {
      padding-left: 15px; }
    html:not([dir="rtl"]) .pr-sm-1 {
      padding-right: 15px; }
  [dir="rtl"] .pl-sm-1 {
    padding-right: 15px; }
  html:not([dir="rtl"]) .pl-sm-1 {
    padding-left: 15px; }
  .p-sm-2 {
    padding: 30px; }
  .px-sm-2 {
    padding-left: 30px;
    padding-right: 30px; }
  .py-sm-2 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .pt-sm-2 {
    padding-top: 30px; }
  .pb-sm-2 {
    padding-bottom: 30px; }
    [dir="rtl"] .pr-sm-2 {
      padding-left: 30px; }
    html:not([dir="rtl"]) .pr-sm-2 {
      padding-right: 30px; }
  [dir="rtl"] .pl-sm-2 {
    padding-right: 30px; }
  html:not([dir="rtl"]) .pl-sm-2 {
    padding-left: 30px; }
  .p-sm-3 {
    padding: 45px; }
  .px-sm-3 {
    padding-left: 45px;
    padding-right: 45px; }
  .py-sm-3 {
    padding-top: 45px;
    padding-bottom: 45px; }
  .pt-sm-3 {
    padding-top: 45px; }
  .pb-sm-3 {
    padding-bottom: 45px; }
    [dir="rtl"] .pr-sm-3 {
      padding-left: 45px; }
    html:not([dir="rtl"]) .pr-sm-3 {
      padding-right: 45px; }
  [dir="rtl"] .pl-sm-3 {
    padding-right: 45px; }
  html:not([dir="rtl"]) .pl-sm-3 {
    padding-left: 45px; }
  .p-sm-4 {
    padding: 60px; }
  .px-sm-4 {
    padding-left: 60px;
    padding-right: 60px; }
  .py-sm-4 {
    padding-top: 60px;
    padding-bottom: 60px; }
  .pt-sm-4 {
    padding-top: 60px; }
  .pb-sm-4 {
    padding-bottom: 60px; }
    [dir="rtl"] .pr-sm-4 {
      padding-left: 60px; }
    html:not([dir="rtl"]) .pr-sm-4 {
      padding-right: 60px; }
  [dir="rtl"] .pl-sm-4 {
    padding-right: 60px; }
  html:not([dir="rtl"]) .pl-sm-4 {
    padding-left: 60px; }
  .p-sm-5 {
    padding: 75px; }
  .px-sm-5 {
    padding-left: 75px;
    padding-right: 75px; }
  .py-sm-5 {
    padding-top: 75px;
    padding-bottom: 75px; }
  .pt-sm-5 {
    padding-top: 75px; }
  .pb-sm-5 {
    padding-bottom: 75px; }
    [dir="rtl"] .pr-sm-5 {
      padding-left: 75px; }
    html:not([dir="rtl"]) .pr-sm-5 {
      padding-right: 75px; }
  [dir="rtl"] .pl-sm-5 {
    padding-right: 75px; }
  html:not([dir="rtl"]) .pl-sm-5 {
    padding-left: 75px; } }
@media (min-width: 768px) {
  .d-md-block {
    display: block !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; }
  .d-md-grid {
    display: grid !important; }
  .d-md-inline-grid {
    display: inline-grid !important; }
  .d-md-none {
    display: none !important; }
  .align-items-md-flex-start {
    align-items: flex-start; }
  .align-items-md-center {
    align-items: center; }
  .align-items-md-flex-end {
    align-items: flex-end; }
  .align-items-md-start {
    align-items: start; }
  .align-items-md-end {
    align-items: end; }
  .justify-content-md-around {
    justify-content: space-around; }
  .justify-content-md-between {
    justify-content: space-between; }
  .justify-content-md-flex-start {
    justify-content: flex-start; }
  .justify-content-md-center {
    justify-content: center; }
  .justify-content-md-flex-end {
    justify-content: flex-end; }
  .justify-content-md-evenly {
    justify-content: space-evenly; }
  .justify-content-md-start {
    justify-content: start; }
  .justify-content-md-end {
    justify-content: end; }
  .flex-md-wrap {
    flex-wrap: wrap; }
  .flex-md-nowrap {
    flex-wrap: nowrap; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse; }
  .flex-direction-md-row {
    flex-direction: row; }
  .flex-direction-md-row-reverse {
    flex-direction: row-reverse; }
  .flex-direction-md-column {
    flex-direction: column; }
  .flex-direction-md-column-reverse {
    flex-direction: column-reverse; }
  .flex-shrink-md-0 {
    flex-shrink: 0; }
  .flex-shrink-md-1 {
    flex-shrink: 1; }
  .flex-shrink-md-2 {
    flex-shrink: 2; }
  [dir="rtl"] .text-md-left {
    text-align: right !important; }
  html:not([dir="rtl"]) .text-md-left {
    text-align: left !important; }
  .text-md-center {
    text-align: center !important; }
    [dir="rtl"] .text-md-right {
      text-align: left !important; }
    html:not([dir="rtl"]) .text-md-right {
      text-align: right !important; }
  .text-md-justify {
    text-align: justify !important; }
  .order-md-n1 {
    order: -1; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .grid-md-cols-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr)); }
  .grid-md-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-md-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-md-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-md-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-md-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-md-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid-md-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .grid-md-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .grid-md-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .grid-md-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .grid-md-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .grid-md-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .w-md-25 {
      width: 25%; }
    .w-md-50 {
      width: 50%; }
    .w-md-75 {
      width: 75%; }
    .w-md-100 {
      width: 100%; }
    .w-md-auto {
      width: auto; }
    .h-md-25 {
      height: 25%; }
    .h-md-50 {
      height: 50%; }
    .h-md-75 {
      height: 75%; }
    .h-md-100 {
      height: 100%; }
    .h-md-auto {
      height: auto; }
    .min-w-md-25 {
      min-width: 25%; }
    .min-w-md-50 {
      min-width: 50%; }
    .min-w-md-75 {
      min-width: 75%; }
    .min-w-md-100 {
      min-width: 100%; }
    .min-w-md-auto {
      min-width: auto; }
    .min-h-md-25 {
      min-height: 25%; }
    .min-h-md-50 {
      min-height: 50%; }
    .min-h-md-75 {
      min-height: 75%; }
    .min-h-md-100 {
      min-height: 100%; }
    .min-h-md-auto {
      min-height: auto; }
    .max-w-md-25 {
      max-width: 25%; }
    .max-w-md-50 {
      max-width: 50%; }
    .max-w-md-75 {
      max-width: 75%; }
    .max-w-md-100 {
      max-width: 100%; }
    .max-w-md-auto {
      max-width: auto; }
    .max-h-md-25 {
      max-height: 25%; }
    .max-h-md-50 {
      max-height: 50%; }
    .max-h-md-75 {
      max-height: 75%; }
    .max-h-md-100 {
      max-height: 100%; }
    .max-h-md-auto {
      max-height: auto; } }
@media (min-width: 768px) {
  .gap-md-0 {
    gap: 0; }
  .gap-md-5px {
    gap: 5px; }
  .gap-md-10px {
    gap: 10px; }
  .gap-md-1 {
    gap: 15px; }
  .gap-md-2 {
    gap: 30px; }
  .gap-md-3 {
    gap: 45px; }
  .gap-md-4 {
    gap: 60px; }
  .gap-md-5 {
    gap: 75px; }
  .m-md-0 {
    margin: 0; }
  .mx-md-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-md-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-md-0 {
    margin-top: 0; }
  .mb-md-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-md-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-md-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-md-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-md-0 {
    margin-left: 0; }
  .m-md-5px {
    margin: 5px; }
  .mx-md-5px {
    margin-left: 5px;
    margin-right: 5px; }
  .my-md-5px {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mt-md-5px {
    margin-top: 5px; }
  .mb-md-5px {
    margin-bottom: 5px; }
    [dir="rtl"] .mr-md-5px {
      margin-left: 5px; }
    html:not([dir="rtl"]) .mr-md-5px {
      margin-right: 5px; }
  [dir="rtl"] .ml-md-5px {
    margin-right: 5px; }
  html:not([dir="rtl"]) .ml-md-5px {
    margin-left: 5px; }
  .m-md-10px {
    margin: 10px; }
  .mx-md-10px {
    margin-left: 10px;
    margin-right: 10px; }
  .my-md-10px {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mt-md-10px {
    margin-top: 10px; }
  .mb-md-10px {
    margin-bottom: 10px; }
    [dir="rtl"] .mr-md-10px {
      margin-left: 10px; }
    html:not([dir="rtl"]) .mr-md-10px {
      margin-right: 10px; }
  [dir="rtl"] .ml-md-10px {
    margin-right: 10px; }
  html:not([dir="rtl"]) .ml-md-10px {
    margin-left: 10px; }
  .m-md-1 {
    margin: 15px; }
  .mx-md-1 {
    margin-left: 15px;
    margin-right: 15px; }
  .my-md-1 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mt-md-1 {
    margin-top: 15px; }
  .mb-md-1 {
    margin-bottom: 15px; }
    [dir="rtl"] .mr-md-1 {
      margin-left: 15px; }
    html:not([dir="rtl"]) .mr-md-1 {
      margin-right: 15px; }
  [dir="rtl"] .ml-md-1 {
    margin-right: 15px; }
  html:not([dir="rtl"]) .ml-md-1 {
    margin-left: 15px; }
  .m-md-2 {
    margin: 30px; }
  .mx-md-2 {
    margin-left: 30px;
    margin-right: 30px; }
  .my-md-2 {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mt-md-2 {
    margin-top: 30px; }
  .mb-md-2 {
    margin-bottom: 30px; }
    [dir="rtl"] .mr-md-2 {
      margin-left: 30px; }
    html:not([dir="rtl"]) .mr-md-2 {
      margin-right: 30px; }
  [dir="rtl"] .ml-md-2 {
    margin-right: 30px; }
  html:not([dir="rtl"]) .ml-md-2 {
    margin-left: 30px; }
  .m-md-3 {
    margin: 45px; }
  .mx-md-3 {
    margin-left: 45px;
    margin-right: 45px; }
  .my-md-3 {
    margin-top: 45px;
    margin-bottom: 45px; }
  .mt-md-3 {
    margin-top: 45px; }
  .mb-md-3 {
    margin-bottom: 45px; }
    [dir="rtl"] .mr-md-3 {
      margin-left: 45px; }
    html:not([dir="rtl"]) .mr-md-3 {
      margin-right: 45px; }
  [dir="rtl"] .ml-md-3 {
    margin-right: 45px; }
  html:not([dir="rtl"]) .ml-md-3 {
    margin-left: 45px; }
  .m-md-4 {
    margin: 60px; }
  .mx-md-4 {
    margin-left: 60px;
    margin-right: 60px; }
  .my-md-4 {
    margin-top: 60px;
    margin-bottom: 60px; }
  .mt-md-4 {
    margin-top: 60px; }
  .mb-md-4 {
    margin-bottom: 60px; }
    [dir="rtl"] .mr-md-4 {
      margin-left: 60px; }
    html:not([dir="rtl"]) .mr-md-4 {
      margin-right: 60px; }
  [dir="rtl"] .ml-md-4 {
    margin-right: 60px; }
  html:not([dir="rtl"]) .ml-md-4 {
    margin-left: 60px; }
  .m-md-5 {
    margin: 75px; }
  .mx-md-5 {
    margin-left: 75px;
    margin-right: 75px; }
  .my-md-5 {
    margin-top: 75px;
    margin-bottom: 75px; }
  .mt-md-5 {
    margin-top: 75px; }
  .mb-md-5 {
    margin-bottom: 75px; }
    [dir="rtl"] .mr-md-5 {
      margin-left: 75px; }
    html:not([dir="rtl"]) .mr-md-5 {
      margin-right: 75px; }
  [dir="rtl"] .ml-md-5 {
    margin-right: 75px; }
  html:not([dir="rtl"]) .ml-md-5 {
    margin-left: 75px; }
  .m-md-auto {
    margin: auto; }
  .mx-md-auto {
    margin-left: auto;
    margin-right: auto; }
  .my-md-auto {
    margin-top: auto;
    margin-bottom: auto; }
  .mt-md-auto {
    margin-top: auto; }
  .mb-md-auto {
    margin-bottom: auto; }
    [dir="rtl"] .mr-md-auto {
      margin-left: auto; }
    html:not([dir="rtl"]) .mr-md-auto {
      margin-right: auto; }
  [dir="rtl"] .ml-md-auto {
    margin-right: auto; }
  html:not([dir="rtl"]) .ml-md-auto {
    margin-left: auto; }
  .p-md-0 {
    padding: 0; }
  .px-md-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-md-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-md-0 {
    padding-top: 0; }
  .pb-md-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-md-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-md-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-md-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-md-0 {
    padding-left: 0; }
  .p-md-5px {
    padding: 5px; }
  .px-md-5px {
    padding-left: 5px;
    padding-right: 5px; }
  .py-md-5px {
    padding-top: 5px;
    padding-bottom: 5px; }
  .pt-md-5px {
    padding-top: 5px; }
  .pb-md-5px {
    padding-bottom: 5px; }
    [dir="rtl"] .pr-md-5px {
      padding-left: 5px; }
    html:not([dir="rtl"]) .pr-md-5px {
      padding-right: 5px; }
  [dir="rtl"] .pl-md-5px {
    padding-right: 5px; }
  html:not([dir="rtl"]) .pl-md-5px {
    padding-left: 5px; }
  .p-md-10px {
    padding: 10px; }
  .px-md-10px {
    padding-left: 10px;
    padding-right: 10px; }
  .py-md-10px {
    padding-top: 10px;
    padding-bottom: 10px; }
  .pt-md-10px {
    padding-top: 10px; }
  .pb-md-10px {
    padding-bottom: 10px; }
    [dir="rtl"] .pr-md-10px {
      padding-left: 10px; }
    html:not([dir="rtl"]) .pr-md-10px {
      padding-right: 10px; }
  [dir="rtl"] .pl-md-10px {
    padding-right: 10px; }
  html:not([dir="rtl"]) .pl-md-10px {
    padding-left: 10px; }
  .p-md-1 {
    padding: 15px; }
  .px-md-1 {
    padding-left: 15px;
    padding-right: 15px; }
  .py-md-1 {
    padding-top: 15px;
    padding-bottom: 15px; }
  .pt-md-1 {
    padding-top: 15px; }
  .pb-md-1 {
    padding-bottom: 15px; }
    [dir="rtl"] .pr-md-1 {
      padding-left: 15px; }
    html:not([dir="rtl"]) .pr-md-1 {
      padding-right: 15px; }
  [dir="rtl"] .pl-md-1 {
    padding-right: 15px; }
  html:not([dir="rtl"]) .pl-md-1 {
    padding-left: 15px; }
  .p-md-2 {
    padding: 30px; }
  .px-md-2 {
    padding-left: 30px;
    padding-right: 30px; }
  .py-md-2 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .pt-md-2 {
    padding-top: 30px; }
  .pb-md-2 {
    padding-bottom: 30px; }
    [dir="rtl"] .pr-md-2 {
      padding-left: 30px; }
    html:not([dir="rtl"]) .pr-md-2 {
      padding-right: 30px; }
  [dir="rtl"] .pl-md-2 {
    padding-right: 30px; }
  html:not([dir="rtl"]) .pl-md-2 {
    padding-left: 30px; }
  .p-md-3 {
    padding: 45px; }
  .px-md-3 {
    padding-left: 45px;
    padding-right: 45px; }
  .py-md-3 {
    padding-top: 45px;
    padding-bottom: 45px; }
  .pt-md-3 {
    padding-top: 45px; }
  .pb-md-3 {
    padding-bottom: 45px; }
    [dir="rtl"] .pr-md-3 {
      padding-left: 45px; }
    html:not([dir="rtl"]) .pr-md-3 {
      padding-right: 45px; }
  [dir="rtl"] .pl-md-3 {
    padding-right: 45px; }
  html:not([dir="rtl"]) .pl-md-3 {
    padding-left: 45px; }
  .p-md-4 {
    padding: 60px; }
  .px-md-4 {
    padding-left: 60px;
    padding-right: 60px; }
  .py-md-4 {
    padding-top: 60px;
    padding-bottom: 60px; }
  .pt-md-4 {
    padding-top: 60px; }
  .pb-md-4 {
    padding-bottom: 60px; }
    [dir="rtl"] .pr-md-4 {
      padding-left: 60px; }
    html:not([dir="rtl"]) .pr-md-4 {
      padding-right: 60px; }
  [dir="rtl"] .pl-md-4 {
    padding-right: 60px; }
  html:not([dir="rtl"]) .pl-md-4 {
    padding-left: 60px; }
  .p-md-5 {
    padding: 75px; }
  .px-md-5 {
    padding-left: 75px;
    padding-right: 75px; }
  .py-md-5 {
    padding-top: 75px;
    padding-bottom: 75px; }
  .pt-md-5 {
    padding-top: 75px; }
  .pb-md-5 {
    padding-bottom: 75px; }
    [dir="rtl"] .pr-md-5 {
      padding-left: 75px; }
    html:not([dir="rtl"]) .pr-md-5 {
      padding-right: 75px; }
  [dir="rtl"] .pl-md-5 {
    padding-right: 75px; }
  html:not([dir="rtl"]) .pl-md-5 {
    padding-left: 75px; } }
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; }
  .d-lg-grid {
    display: grid !important; }
  .d-lg-inline-grid {
    display: inline-grid !important; }
  .d-lg-none {
    display: none !important; }
  .align-items-lg-flex-start {
    align-items: flex-start; }
  .align-items-lg-center {
    align-items: center; }
  .align-items-lg-flex-end {
    align-items: flex-end; }
  .align-items-lg-start {
    align-items: start; }
  .align-items-lg-end {
    align-items: end; }
  .justify-content-lg-around {
    justify-content: space-around; }
  .justify-content-lg-between {
    justify-content: space-between; }
  .justify-content-lg-flex-start {
    justify-content: flex-start; }
  .justify-content-lg-center {
    justify-content: center; }
  .justify-content-lg-flex-end {
    justify-content: flex-end; }
  .justify-content-lg-evenly {
    justify-content: space-evenly; }
  .justify-content-lg-start {
    justify-content: start; }
  .justify-content-lg-end {
    justify-content: end; }
  .flex-lg-wrap {
    flex-wrap: wrap; }
  .flex-lg-nowrap {
    flex-wrap: nowrap; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse; }
  .flex-direction-lg-row {
    flex-direction: row; }
  .flex-direction-lg-row-reverse {
    flex-direction: row-reverse; }
  .flex-direction-lg-column {
    flex-direction: column; }
  .flex-direction-lg-column-reverse {
    flex-direction: column-reverse; }
  .flex-shrink-lg-0 {
    flex-shrink: 0; }
  .flex-shrink-lg-1 {
    flex-shrink: 1; }
  .flex-shrink-lg-2 {
    flex-shrink: 2; }
  [dir="rtl"] .text-lg-left {
    text-align: right !important; }
  html:not([dir="rtl"]) .text-lg-left {
    text-align: left !important; }
  .text-lg-center {
    text-align: center !important; }
    [dir="rtl"] .text-lg-right {
      text-align: left !important; }
    html:not([dir="rtl"]) .text-lg-right {
      text-align: right !important; }
  .text-lg-justify {
    text-align: justify !important; }
  .order-lg-n1 {
    order: -1; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .grid-lg-cols-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr)); }
  .grid-lg-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-lg-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-lg-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-lg-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-lg-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-lg-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid-lg-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .grid-lg-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .grid-lg-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .grid-lg-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .grid-lg-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .grid-lg-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .w-lg-25 {
      width: 25%; }
    .w-lg-50 {
      width: 50%; }
    .w-lg-75 {
      width: 75%; }
    .w-lg-100 {
      width: 100%; }
    .w-lg-auto {
      width: auto; }
    .h-lg-25 {
      height: 25%; }
    .h-lg-50 {
      height: 50%; }
    .h-lg-75 {
      height: 75%; }
    .h-lg-100 {
      height: 100%; }
    .h-lg-auto {
      height: auto; }
    .min-w-lg-25 {
      min-width: 25%; }
    .min-w-lg-50 {
      min-width: 50%; }
    .min-w-lg-75 {
      min-width: 75%; }
    .min-w-lg-100 {
      min-width: 100%; }
    .min-w-lg-auto {
      min-width: auto; }
    .min-h-lg-25 {
      min-height: 25%; }
    .min-h-lg-50 {
      min-height: 50%; }
    .min-h-lg-75 {
      min-height: 75%; }
    .min-h-lg-100 {
      min-height: 100%; }
    .min-h-lg-auto {
      min-height: auto; }
    .max-w-lg-25 {
      max-width: 25%; }
    .max-w-lg-50 {
      max-width: 50%; }
    .max-w-lg-75 {
      max-width: 75%; }
    .max-w-lg-100 {
      max-width: 100%; }
    .max-w-lg-auto {
      max-width: auto; }
    .max-h-lg-25 {
      max-height: 25%; }
    .max-h-lg-50 {
      max-height: 50%; }
    .max-h-lg-75 {
      max-height: 75%; }
    .max-h-lg-100 {
      max-height: 100%; }
    .max-h-lg-auto {
      max-height: auto; } }
@media (min-width: 992px) {
  .gap-lg-0 {
    gap: 0; }
  .gap-lg-5px {
    gap: 5px; }
  .gap-lg-10px {
    gap: 10px; }
  .gap-lg-1 {
    gap: 15px; }
  .gap-lg-2 {
    gap: 30px; }
  .gap-lg-3 {
    gap: 45px; }
  .gap-lg-4 {
    gap: 60px; }
  .gap-lg-5 {
    gap: 75px; }
  .m-lg-0 {
    margin: 0; }
  .mx-lg-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-lg-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-lg-0 {
    margin-top: 0; }
  .mb-lg-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-lg-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-lg-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-lg-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-lg-0 {
    margin-left: 0; }
  .m-lg-5px {
    margin: 5px; }
  .mx-lg-5px {
    margin-left: 5px;
    margin-right: 5px; }
  .my-lg-5px {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mt-lg-5px {
    margin-top: 5px; }
  .mb-lg-5px {
    margin-bottom: 5px; }
    [dir="rtl"] .mr-lg-5px {
      margin-left: 5px; }
    html:not([dir="rtl"]) .mr-lg-5px {
      margin-right: 5px; }
  [dir="rtl"] .ml-lg-5px {
    margin-right: 5px; }
  html:not([dir="rtl"]) .ml-lg-5px {
    margin-left: 5px; }
  .m-lg-10px {
    margin: 10px; }
  .mx-lg-10px {
    margin-left: 10px;
    margin-right: 10px; }
  .my-lg-10px {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mt-lg-10px {
    margin-top: 10px; }
  .mb-lg-10px {
    margin-bottom: 10px; }
    [dir="rtl"] .mr-lg-10px {
      margin-left: 10px; }
    html:not([dir="rtl"]) .mr-lg-10px {
      margin-right: 10px; }
  [dir="rtl"] .ml-lg-10px {
    margin-right: 10px; }
  html:not([dir="rtl"]) .ml-lg-10px {
    margin-left: 10px; }
  .m-lg-1 {
    margin: 15px; }
  .mx-lg-1 {
    margin-left: 15px;
    margin-right: 15px; }
  .my-lg-1 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mt-lg-1 {
    margin-top: 15px; }
  .mb-lg-1 {
    margin-bottom: 15px; }
    [dir="rtl"] .mr-lg-1 {
      margin-left: 15px; }
    html:not([dir="rtl"]) .mr-lg-1 {
      margin-right: 15px; }
  [dir="rtl"] .ml-lg-1 {
    margin-right: 15px; }
  html:not([dir="rtl"]) .ml-lg-1 {
    margin-left: 15px; }
  .m-lg-2 {
    margin: 30px; }
  .mx-lg-2 {
    margin-left: 30px;
    margin-right: 30px; }
  .my-lg-2 {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mt-lg-2 {
    margin-top: 30px; }
  .mb-lg-2 {
    margin-bottom: 30px; }
    [dir="rtl"] .mr-lg-2 {
      margin-left: 30px; }
    html:not([dir="rtl"]) .mr-lg-2 {
      margin-right: 30px; }
  [dir="rtl"] .ml-lg-2 {
    margin-right: 30px; }
  html:not([dir="rtl"]) .ml-lg-2 {
    margin-left: 30px; }
  .m-lg-3 {
    margin: 45px; }
  .mx-lg-3 {
    margin-left: 45px;
    margin-right: 45px; }
  .my-lg-3 {
    margin-top: 45px;
    margin-bottom: 45px; }
  .mt-lg-3 {
    margin-top: 45px; }
  .mb-lg-3 {
    margin-bottom: 45px; }
    [dir="rtl"] .mr-lg-3 {
      margin-left: 45px; }
    html:not([dir="rtl"]) .mr-lg-3 {
      margin-right: 45px; }
  [dir="rtl"] .ml-lg-3 {
    margin-right: 45px; }
  html:not([dir="rtl"]) .ml-lg-3 {
    margin-left: 45px; }
  .m-lg-4 {
    margin: 60px; }
  .mx-lg-4 {
    margin-left: 60px;
    margin-right: 60px; }
  .my-lg-4 {
    margin-top: 60px;
    margin-bottom: 60px; }
  .mt-lg-4 {
    margin-top: 60px; }
  .mb-lg-4 {
    margin-bottom: 60px; }
    [dir="rtl"] .mr-lg-4 {
      margin-left: 60px; }
    html:not([dir="rtl"]) .mr-lg-4 {
      margin-right: 60px; }
  [dir="rtl"] .ml-lg-4 {
    margin-right: 60px; }
  html:not([dir="rtl"]) .ml-lg-4 {
    margin-left: 60px; }
  .m-lg-5 {
    margin: 75px; }
  .mx-lg-5 {
    margin-left: 75px;
    margin-right: 75px; }
  .my-lg-5 {
    margin-top: 75px;
    margin-bottom: 75px; }
  .mt-lg-5 {
    margin-top: 75px; }
  .mb-lg-5 {
    margin-bottom: 75px; }
    [dir="rtl"] .mr-lg-5 {
      margin-left: 75px; }
    html:not([dir="rtl"]) .mr-lg-5 {
      margin-right: 75px; }
  [dir="rtl"] .ml-lg-5 {
    margin-right: 75px; }
  html:not([dir="rtl"]) .ml-lg-5 {
    margin-left: 75px; }
  .m-lg-auto {
    margin: auto; }
  .mx-lg-auto {
    margin-left: auto;
    margin-right: auto; }
  .my-lg-auto {
    margin-top: auto;
    margin-bottom: auto; }
  .mt-lg-auto {
    margin-top: auto; }
  .mb-lg-auto {
    margin-bottom: auto; }
    [dir="rtl"] .mr-lg-auto {
      margin-left: auto; }
    html:not([dir="rtl"]) .mr-lg-auto {
      margin-right: auto; }
  [dir="rtl"] .ml-lg-auto {
    margin-right: auto; }
  html:not([dir="rtl"]) .ml-lg-auto {
    margin-left: auto; }
  .p-lg-0 {
    padding: 0; }
  .px-lg-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-lg-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-lg-0 {
    padding-top: 0; }
  .pb-lg-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-lg-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-lg-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-lg-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-lg-0 {
    padding-left: 0; }
  .p-lg-5px {
    padding: 5px; }
  .px-lg-5px {
    padding-left: 5px;
    padding-right: 5px; }
  .py-lg-5px {
    padding-top: 5px;
    padding-bottom: 5px; }
  .pt-lg-5px {
    padding-top: 5px; }
  .pb-lg-5px {
    padding-bottom: 5px; }
    [dir="rtl"] .pr-lg-5px {
      padding-left: 5px; }
    html:not([dir="rtl"]) .pr-lg-5px {
      padding-right: 5px; }
  [dir="rtl"] .pl-lg-5px {
    padding-right: 5px; }
  html:not([dir="rtl"]) .pl-lg-5px {
    padding-left: 5px; }
  .p-lg-10px {
    padding: 10px; }
  .px-lg-10px {
    padding-left: 10px;
    padding-right: 10px; }
  .py-lg-10px {
    padding-top: 10px;
    padding-bottom: 10px; }
  .pt-lg-10px {
    padding-top: 10px; }
  .pb-lg-10px {
    padding-bottom: 10px; }
    [dir="rtl"] .pr-lg-10px {
      padding-left: 10px; }
    html:not([dir="rtl"]) .pr-lg-10px {
      padding-right: 10px; }
  [dir="rtl"] .pl-lg-10px {
    padding-right: 10px; }
  html:not([dir="rtl"]) .pl-lg-10px {
    padding-left: 10px; }
  .p-lg-1 {
    padding: 15px; }
  .px-lg-1 {
    padding-left: 15px;
    padding-right: 15px; }
  .py-lg-1 {
    padding-top: 15px;
    padding-bottom: 15px; }
  .pt-lg-1 {
    padding-top: 15px; }
  .pb-lg-1 {
    padding-bottom: 15px; }
    [dir="rtl"] .pr-lg-1 {
      padding-left: 15px; }
    html:not([dir="rtl"]) .pr-lg-1 {
      padding-right: 15px; }
  [dir="rtl"] .pl-lg-1 {
    padding-right: 15px; }
  html:not([dir="rtl"]) .pl-lg-1 {
    padding-left: 15px; }
  .p-lg-2 {
    padding: 30px; }
  .px-lg-2 {
    padding-left: 30px;
    padding-right: 30px; }
  .py-lg-2 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .pt-lg-2 {
    padding-top: 30px; }
  .pb-lg-2 {
    padding-bottom: 30px; }
    [dir="rtl"] .pr-lg-2 {
      padding-left: 30px; }
    html:not([dir="rtl"]) .pr-lg-2 {
      padding-right: 30px; }
  [dir="rtl"] .pl-lg-2 {
    padding-right: 30px; }
  html:not([dir="rtl"]) .pl-lg-2 {
    padding-left: 30px; }
  .p-lg-3 {
    padding: 45px; }
  .px-lg-3 {
    padding-left: 45px;
    padding-right: 45px; }
  .py-lg-3 {
    padding-top: 45px;
    padding-bottom: 45px; }
  .pt-lg-3 {
    padding-top: 45px; }
  .pb-lg-3 {
    padding-bottom: 45px; }
    [dir="rtl"] .pr-lg-3 {
      padding-left: 45px; }
    html:not([dir="rtl"]) .pr-lg-3 {
      padding-right: 45px; }
  [dir="rtl"] .pl-lg-3 {
    padding-right: 45px; }
  html:not([dir="rtl"]) .pl-lg-3 {
    padding-left: 45px; }
  .p-lg-4 {
    padding: 60px; }
  .px-lg-4 {
    padding-left: 60px;
    padding-right: 60px; }
  .py-lg-4 {
    padding-top: 60px;
    padding-bottom: 60px; }
  .pt-lg-4 {
    padding-top: 60px; }
  .pb-lg-4 {
    padding-bottom: 60px; }
    [dir="rtl"] .pr-lg-4 {
      padding-left: 60px; }
    html:not([dir="rtl"]) .pr-lg-4 {
      padding-right: 60px; }
  [dir="rtl"] .pl-lg-4 {
    padding-right: 60px; }
  html:not([dir="rtl"]) .pl-lg-4 {
    padding-left: 60px; }
  .p-lg-5 {
    padding: 75px; }
  .px-lg-5 {
    padding-left: 75px;
    padding-right: 75px; }
  .py-lg-5 {
    padding-top: 75px;
    padding-bottom: 75px; }
  .pt-lg-5 {
    padding-top: 75px; }
  .pb-lg-5 {
    padding-bottom: 75px; }
    [dir="rtl"] .pr-lg-5 {
      padding-left: 75px; }
    html:not([dir="rtl"]) .pr-lg-5 {
      padding-right: 75px; }
  [dir="rtl"] .pl-lg-5 {
    padding-right: 75px; }
  html:not([dir="rtl"]) .pl-lg-5 {
    padding-left: 75px; } }
@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; }
  .d-xl-grid {
    display: grid !important; }
  .d-xl-inline-grid {
    display: inline-grid !important; }
  .d-xl-none {
    display: none !important; }
  .align-items-xl-flex-start {
    align-items: flex-start; }
  .align-items-xl-center {
    align-items: center; }
  .align-items-xl-flex-end {
    align-items: flex-end; }
  .align-items-xl-start {
    align-items: start; }
  .align-items-xl-end {
    align-items: end; }
  .justify-content-xl-around {
    justify-content: space-around; }
  .justify-content-xl-between {
    justify-content: space-between; }
  .justify-content-xl-flex-start {
    justify-content: flex-start; }
  .justify-content-xl-center {
    justify-content: center; }
  .justify-content-xl-flex-end {
    justify-content: flex-end; }
  .justify-content-xl-evenly {
    justify-content: space-evenly; }
  .justify-content-xl-start {
    justify-content: start; }
  .justify-content-xl-end {
    justify-content: end; }
  .flex-xl-wrap {
    flex-wrap: wrap; }
  .flex-xl-nowrap {
    flex-wrap: nowrap; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse; }
  .flex-direction-xl-row {
    flex-direction: row; }
  .flex-direction-xl-row-reverse {
    flex-direction: row-reverse; }
  .flex-direction-xl-column {
    flex-direction: column; }
  .flex-direction-xl-column-reverse {
    flex-direction: column-reverse; }
  .flex-shrink-xl-0 {
    flex-shrink: 0; }
  .flex-shrink-xl-1 {
    flex-shrink: 1; }
  .flex-shrink-xl-2 {
    flex-shrink: 2; }
  [dir="rtl"] .text-xl-left {
    text-align: right !important; }
  html:not([dir="rtl"]) .text-xl-left {
    text-align: left !important; }
  .text-xl-center {
    text-align: center !important; }
    [dir="rtl"] .text-xl-right {
      text-align: left !important; }
    html:not([dir="rtl"]) .text-xl-right {
      text-align: right !important; }
  .text-xl-justify {
    text-align: justify !important; }
  .order-xl-n1 {
    order: -1; }
  .order-xl-0 {
    order: 0; }
  .order-xl-1 {
    order: 1; }
  .order-xl-2 {
    order: 2; }
  .order-xl-3 {
    order: 3; }
  .order-xl-4 {
    order: 4; }
  .order-xl-5 {
    order: 5; }
  .order-xl-6 {
    order: 6; }
  .order-xl-7 {
    order: 7; }
  .order-xl-8 {
    order: 8; }
  .order-xl-9 {
    order: 9; }
  .order-xl-10 {
    order: 10; }
  .grid-xl-cols-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr)); }
  .grid-xl-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-xl-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-xl-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-xl-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-xl-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-xl-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid-xl-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .grid-xl-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .grid-xl-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .grid-xl-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .grid-xl-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .grid-xl-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .w-xl-25 {
      width: 25%; }
    .w-xl-50 {
      width: 50%; }
    .w-xl-75 {
      width: 75%; }
    .w-xl-100 {
      width: 100%; }
    .w-xl-auto {
      width: auto; }
    .h-xl-25 {
      height: 25%; }
    .h-xl-50 {
      height: 50%; }
    .h-xl-75 {
      height: 75%; }
    .h-xl-100 {
      height: 100%; }
    .h-xl-auto {
      height: auto; }
    .min-w-xl-25 {
      min-width: 25%; }
    .min-w-xl-50 {
      min-width: 50%; }
    .min-w-xl-75 {
      min-width: 75%; }
    .min-w-xl-100 {
      min-width: 100%; }
    .min-w-xl-auto {
      min-width: auto; }
    .min-h-xl-25 {
      min-height: 25%; }
    .min-h-xl-50 {
      min-height: 50%; }
    .min-h-xl-75 {
      min-height: 75%; }
    .min-h-xl-100 {
      min-height: 100%; }
    .min-h-xl-auto {
      min-height: auto; }
    .max-w-xl-25 {
      max-width: 25%; }
    .max-w-xl-50 {
      max-width: 50%; }
    .max-w-xl-75 {
      max-width: 75%; }
    .max-w-xl-100 {
      max-width: 100%; }
    .max-w-xl-auto {
      max-width: auto; }
    .max-h-xl-25 {
      max-height: 25%; }
    .max-h-xl-50 {
      max-height: 50%; }
    .max-h-xl-75 {
      max-height: 75%; }
    .max-h-xl-100 {
      max-height: 100%; }
    .max-h-xl-auto {
      max-height: auto; } }
@media (min-width: 1200px) {
  .gap-xl-0 {
    gap: 0; }
  .gap-xl-5px {
    gap: 5px; }
  .gap-xl-10px {
    gap: 10px; }
  .gap-xl-1 {
    gap: 15px; }
  .gap-xl-2 {
    gap: 30px; }
  .gap-xl-3 {
    gap: 45px; }
  .gap-xl-4 {
    gap: 60px; }
  .gap-xl-5 {
    gap: 75px; }
  .m-xl-0 {
    margin: 0; }
  .mx-xl-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-xl-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-xl-0 {
    margin-top: 0; }
  .mb-xl-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-xl-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-xl-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-xl-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-xl-0 {
    margin-left: 0; }
  .m-xl-5px {
    margin: 5px; }
  .mx-xl-5px {
    margin-left: 5px;
    margin-right: 5px; }
  .my-xl-5px {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mt-xl-5px {
    margin-top: 5px; }
  .mb-xl-5px {
    margin-bottom: 5px; }
    [dir="rtl"] .mr-xl-5px {
      margin-left: 5px; }
    html:not([dir="rtl"]) .mr-xl-5px {
      margin-right: 5px; }
  [dir="rtl"] .ml-xl-5px {
    margin-right: 5px; }
  html:not([dir="rtl"]) .ml-xl-5px {
    margin-left: 5px; }
  .m-xl-10px {
    margin: 10px; }
  .mx-xl-10px {
    margin-left: 10px;
    margin-right: 10px; }
  .my-xl-10px {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mt-xl-10px {
    margin-top: 10px; }
  .mb-xl-10px {
    margin-bottom: 10px; }
    [dir="rtl"] .mr-xl-10px {
      margin-left: 10px; }
    html:not([dir="rtl"]) .mr-xl-10px {
      margin-right: 10px; }
  [dir="rtl"] .ml-xl-10px {
    margin-right: 10px; }
  html:not([dir="rtl"]) .ml-xl-10px {
    margin-left: 10px; }
  .m-xl-1 {
    margin: 15px; }
  .mx-xl-1 {
    margin-left: 15px;
    margin-right: 15px; }
  .my-xl-1 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mt-xl-1 {
    margin-top: 15px; }
  .mb-xl-1 {
    margin-bottom: 15px; }
    [dir="rtl"] .mr-xl-1 {
      margin-left: 15px; }
    html:not([dir="rtl"]) .mr-xl-1 {
      margin-right: 15px; }
  [dir="rtl"] .ml-xl-1 {
    margin-right: 15px; }
  html:not([dir="rtl"]) .ml-xl-1 {
    margin-left: 15px; }
  .m-xl-2 {
    margin: 30px; }
  .mx-xl-2 {
    margin-left: 30px;
    margin-right: 30px; }
  .my-xl-2 {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mt-xl-2 {
    margin-top: 30px; }
  .mb-xl-2 {
    margin-bottom: 30px; }
    [dir="rtl"] .mr-xl-2 {
      margin-left: 30px; }
    html:not([dir="rtl"]) .mr-xl-2 {
      margin-right: 30px; }
  [dir="rtl"] .ml-xl-2 {
    margin-right: 30px; }
  html:not([dir="rtl"]) .ml-xl-2 {
    margin-left: 30px; }
  .m-xl-3 {
    margin: 45px; }
  .mx-xl-3 {
    margin-left: 45px;
    margin-right: 45px; }
  .my-xl-3 {
    margin-top: 45px;
    margin-bottom: 45px; }
  .mt-xl-3 {
    margin-top: 45px; }
  .mb-xl-3 {
    margin-bottom: 45px; }
    [dir="rtl"] .mr-xl-3 {
      margin-left: 45px; }
    html:not([dir="rtl"]) .mr-xl-3 {
      margin-right: 45px; }
  [dir="rtl"] .ml-xl-3 {
    margin-right: 45px; }
  html:not([dir="rtl"]) .ml-xl-3 {
    margin-left: 45px; }
  .m-xl-4 {
    margin: 60px; }
  .mx-xl-4 {
    margin-left: 60px;
    margin-right: 60px; }
  .my-xl-4 {
    margin-top: 60px;
    margin-bottom: 60px; }
  .mt-xl-4 {
    margin-top: 60px; }
  .mb-xl-4 {
    margin-bottom: 60px; }
    [dir="rtl"] .mr-xl-4 {
      margin-left: 60px; }
    html:not([dir="rtl"]) .mr-xl-4 {
      margin-right: 60px; }
  [dir="rtl"] .ml-xl-4 {
    margin-right: 60px; }
  html:not([dir="rtl"]) .ml-xl-4 {
    margin-left: 60px; }
  .m-xl-5 {
    margin: 75px; }
  .mx-xl-5 {
    margin-left: 75px;
    margin-right: 75px; }
  .my-xl-5 {
    margin-top: 75px;
    margin-bottom: 75px; }
  .mt-xl-5 {
    margin-top: 75px; }
  .mb-xl-5 {
    margin-bottom: 75px; }
    [dir="rtl"] .mr-xl-5 {
      margin-left: 75px; }
    html:not([dir="rtl"]) .mr-xl-5 {
      margin-right: 75px; }
  [dir="rtl"] .ml-xl-5 {
    margin-right: 75px; }
  html:not([dir="rtl"]) .ml-xl-5 {
    margin-left: 75px; }
  .m-xl-auto {
    margin: auto; }
  .mx-xl-auto {
    margin-left: auto;
    margin-right: auto; }
  .my-xl-auto {
    margin-top: auto;
    margin-bottom: auto; }
  .mt-xl-auto {
    margin-top: auto; }
  .mb-xl-auto {
    margin-bottom: auto; }
    [dir="rtl"] .mr-xl-auto {
      margin-left: auto; }
    html:not([dir="rtl"]) .mr-xl-auto {
      margin-right: auto; }
  [dir="rtl"] .ml-xl-auto {
    margin-right: auto; }
  html:not([dir="rtl"]) .ml-xl-auto {
    margin-left: auto; }
  .p-xl-0 {
    padding: 0; }
  .px-xl-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-xl-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-xl-0 {
    padding-top: 0; }
  .pb-xl-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-xl-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-xl-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-xl-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-xl-0 {
    padding-left: 0; }
  .p-xl-5px {
    padding: 5px; }
  .px-xl-5px {
    padding-left: 5px;
    padding-right: 5px; }
  .py-xl-5px {
    padding-top: 5px;
    padding-bottom: 5px; }
  .pt-xl-5px {
    padding-top: 5px; }
  .pb-xl-5px {
    padding-bottom: 5px; }
    [dir="rtl"] .pr-xl-5px {
      padding-left: 5px; }
    html:not([dir="rtl"]) .pr-xl-5px {
      padding-right: 5px; }
  [dir="rtl"] .pl-xl-5px {
    padding-right: 5px; }
  html:not([dir="rtl"]) .pl-xl-5px {
    padding-left: 5px; }
  .p-xl-10px {
    padding: 10px; }
  .px-xl-10px {
    padding-left: 10px;
    padding-right: 10px; }
  .py-xl-10px {
    padding-top: 10px;
    padding-bottom: 10px; }
  .pt-xl-10px {
    padding-top: 10px; }
  .pb-xl-10px {
    padding-bottom: 10px; }
    [dir="rtl"] .pr-xl-10px {
      padding-left: 10px; }
    html:not([dir="rtl"]) .pr-xl-10px {
      padding-right: 10px; }
  [dir="rtl"] .pl-xl-10px {
    padding-right: 10px; }
  html:not([dir="rtl"]) .pl-xl-10px {
    padding-left: 10px; }
  .p-xl-1 {
    padding: 15px; }
  .px-xl-1 {
    padding-left: 15px;
    padding-right: 15px; }
  .py-xl-1 {
    padding-top: 15px;
    padding-bottom: 15px; }
  .pt-xl-1 {
    padding-top: 15px; }
  .pb-xl-1 {
    padding-bottom: 15px; }
    [dir="rtl"] .pr-xl-1 {
      padding-left: 15px; }
    html:not([dir="rtl"]) .pr-xl-1 {
      padding-right: 15px; }
  [dir="rtl"] .pl-xl-1 {
    padding-right: 15px; }
  html:not([dir="rtl"]) .pl-xl-1 {
    padding-left: 15px; }
  .p-xl-2 {
    padding: 30px; }
  .px-xl-2 {
    padding-left: 30px;
    padding-right: 30px; }
  .py-xl-2 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .pt-xl-2 {
    padding-top: 30px; }
  .pb-xl-2 {
    padding-bottom: 30px; }
    [dir="rtl"] .pr-xl-2 {
      padding-left: 30px; }
    html:not([dir="rtl"]) .pr-xl-2 {
      padding-right: 30px; }
  [dir="rtl"] .pl-xl-2 {
    padding-right: 30px; }
  html:not([dir="rtl"]) .pl-xl-2 {
    padding-left: 30px; }
  .p-xl-3 {
    padding: 45px; }
  .px-xl-3 {
    padding-left: 45px;
    padding-right: 45px; }
  .py-xl-3 {
    padding-top: 45px;
    padding-bottom: 45px; }
  .pt-xl-3 {
    padding-top: 45px; }
  .pb-xl-3 {
    padding-bottom: 45px; }
    [dir="rtl"] .pr-xl-3 {
      padding-left: 45px; }
    html:not([dir="rtl"]) .pr-xl-3 {
      padding-right: 45px; }
  [dir="rtl"] .pl-xl-3 {
    padding-right: 45px; }
  html:not([dir="rtl"]) .pl-xl-3 {
    padding-left: 45px; }
  .p-xl-4 {
    padding: 60px; }
  .px-xl-4 {
    padding-left: 60px;
    padding-right: 60px; }
  .py-xl-4 {
    padding-top: 60px;
    padding-bottom: 60px; }
  .pt-xl-4 {
    padding-top: 60px; }
  .pb-xl-4 {
    padding-bottom: 60px; }
    [dir="rtl"] .pr-xl-4 {
      padding-left: 60px; }
    html:not([dir="rtl"]) .pr-xl-4 {
      padding-right: 60px; }
  [dir="rtl"] .pl-xl-4 {
    padding-right: 60px; }
  html:not([dir="rtl"]) .pl-xl-4 {
    padding-left: 60px; }
  .p-xl-5 {
    padding: 75px; }
  .px-xl-5 {
    padding-left: 75px;
    padding-right: 75px; }
  .py-xl-5 {
    padding-top: 75px;
    padding-bottom: 75px; }
  .pt-xl-5 {
    padding-top: 75px; }
  .pb-xl-5 {
    padding-bottom: 75px; }
    [dir="rtl"] .pr-xl-5 {
      padding-left: 75px; }
    html:not([dir="rtl"]) .pr-xl-5 {
      padding-right: 75px; }
  [dir="rtl"] .pl-xl-5 {
    padding-right: 75px; }
  html:not([dir="rtl"]) .pl-xl-5 {
    padding-left: 75px; } }
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; }
  .d-xxl-grid {
    display: grid !important; }
  .d-xxl-inline-grid {
    display: inline-grid !important; }
  .d-xxl-none {
    display: none !important; }
  .align-items-xxl-flex-start {
    align-items: flex-start; }
  .align-items-xxl-center {
    align-items: center; }
  .align-items-xxl-flex-end {
    align-items: flex-end; }
  .align-items-xxl-start {
    align-items: start; }
  .align-items-xxl-end {
    align-items: end; }
  .justify-content-xxl-around {
    justify-content: space-around; }
  .justify-content-xxl-between {
    justify-content: space-between; }
  .justify-content-xxl-flex-start {
    justify-content: flex-start; }
  .justify-content-xxl-center {
    justify-content: center; }
  .justify-content-xxl-flex-end {
    justify-content: flex-end; }
  .justify-content-xxl-evenly {
    justify-content: space-evenly; }
  .justify-content-xxl-start {
    justify-content: start; }
  .justify-content-xxl-end {
    justify-content: end; }
  .flex-xxl-wrap {
    flex-wrap: wrap; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse; }
  .flex-direction-xxl-row {
    flex-direction: row; }
  .flex-direction-xxl-row-reverse {
    flex-direction: row-reverse; }
  .flex-direction-xxl-column {
    flex-direction: column; }
  .flex-direction-xxl-column-reverse {
    flex-direction: column-reverse; }
  .flex-shrink-xxl-0 {
    flex-shrink: 0; }
  .flex-shrink-xxl-1 {
    flex-shrink: 1; }
  .flex-shrink-xxl-2 {
    flex-shrink: 2; }
  [dir="rtl"] .text-xxl-left {
    text-align: right !important; }
  html:not([dir="rtl"]) .text-xxl-left {
    text-align: left !important; }
  .text-xxl-center {
    text-align: center !important; }
    [dir="rtl"] .text-xxl-right {
      text-align: left !important; }
    html:not([dir="rtl"]) .text-xxl-right {
      text-align: right !important; }
  .text-xxl-justify {
    text-align: justify !important; }
  .order-xxl-n1 {
    order: -1; }
  .order-xxl-0 {
    order: 0; }
  .order-xxl-1 {
    order: 1; }
  .order-xxl-2 {
    order: 2; }
  .order-xxl-3 {
    order: 3; }
  .order-xxl-4 {
    order: 4; }
  .order-xxl-5 {
    order: 5; }
  .order-xxl-6 {
    order: 6; }
  .order-xxl-7 {
    order: 7; }
  .order-xxl-8 {
    order: 8; }
  .order-xxl-9 {
    order: 9; }
  .order-xxl-10 {
    order: 10; }
  .grid-xxl-cols-0 {
    grid-template-columns: repeat(0, minmax(0, 1fr)); }
  .grid-xxl-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)); }
  .grid-xxl-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-xxl-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-xxl-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .grid-xxl-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .grid-xxl-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .grid-xxl-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr)); }
  .grid-xxl-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr)); }
  .grid-xxl-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .grid-xxl-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr)); }
  .grid-xxl-cols-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr)); }
  .grid-xxl-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr)); }
    .w-xxl-25 {
      width: 25%; }
    .w-xxl-50 {
      width: 50%; }
    .w-xxl-75 {
      width: 75%; }
    .w-xxl-100 {
      width: 100%; }
    .w-xxl-auto {
      width: auto; }
    .h-xxl-25 {
      height: 25%; }
    .h-xxl-50 {
      height: 50%; }
    .h-xxl-75 {
      height: 75%; }
    .h-xxl-100 {
      height: 100%; }
    .h-xxl-auto {
      height: auto; }
    .min-w-xxl-25 {
      min-width: 25%; }
    .min-w-xxl-50 {
      min-width: 50%; }
    .min-w-xxl-75 {
      min-width: 75%; }
    .min-w-xxl-100 {
      min-width: 100%; }
    .min-w-xxl-auto {
      min-width: auto; }
    .min-h-xxl-25 {
      min-height: 25%; }
    .min-h-xxl-50 {
      min-height: 50%; }
    .min-h-xxl-75 {
      min-height: 75%; }
    .min-h-xxl-100 {
      min-height: 100%; }
    .min-h-xxl-auto {
      min-height: auto; }
    .max-w-xxl-25 {
      max-width: 25%; }
    .max-w-xxl-50 {
      max-width: 50%; }
    .max-w-xxl-75 {
      max-width: 75%; }
    .max-w-xxl-100 {
      max-width: 100%; }
    .max-w-xxl-auto {
      max-width: auto; }
    .max-h-xxl-25 {
      max-height: 25%; }
    .max-h-xxl-50 {
      max-height: 50%; }
    .max-h-xxl-75 {
      max-height: 75%; }
    .max-h-xxl-100 {
      max-height: 100%; }
    .max-h-xxl-auto {
      max-height: auto; } }
@media (min-width: 1400px) {
  .gap-xxl-0 {
    gap: 0; }
  .gap-xxl-5px {
    gap: 5px; }
  .gap-xxl-10px {
    gap: 10px; }
  .gap-xxl-1 {
    gap: 15px; }
  .gap-xxl-2 {
    gap: 30px; }
  .gap-xxl-3 {
    gap: 45px; }
  .gap-xxl-4 {
    gap: 60px; }
  .gap-xxl-5 {
    gap: 75px; }
  .m-xxl-0 {
    margin: 0; }
  .mx-xxl-0 {
    margin-left: 0;
    margin-right: 0; }
  .my-xxl-0 {
    margin-top: 0;
    margin-bottom: 0; }
  .mt-xxl-0 {
    margin-top: 0; }
  .mb-xxl-0 {
    margin-bottom: 0; }
    [dir="rtl"] .mr-xxl-0 {
      margin-left: 0; }
    html:not([dir="rtl"]) .mr-xxl-0 {
      margin-right: 0; }
  [dir="rtl"] .ml-xxl-0 {
    margin-right: 0; }
  html:not([dir="rtl"]) .ml-xxl-0 {
    margin-left: 0; }
  .m-xxl-5px {
    margin: 5px; }
  .mx-xxl-5px {
    margin-left: 5px;
    margin-right: 5px; }
  .my-xxl-5px {
    margin-top: 5px;
    margin-bottom: 5px; }
  .mt-xxl-5px {
    margin-top: 5px; }
  .mb-xxl-5px {
    margin-bottom: 5px; }
    [dir="rtl"] .mr-xxl-5px {
      margin-left: 5px; }
    html:not([dir="rtl"]) .mr-xxl-5px {
      margin-right: 5px; }
  [dir="rtl"] .ml-xxl-5px {
    margin-right: 5px; }
  html:not([dir="rtl"]) .ml-xxl-5px {
    margin-left: 5px; }
  .m-xxl-10px {
    margin: 10px; }
  .mx-xxl-10px {
    margin-left: 10px;
    margin-right: 10px; }
  .my-xxl-10px {
    margin-top: 10px;
    margin-bottom: 10px; }
  .mt-xxl-10px {
    margin-top: 10px; }
  .mb-xxl-10px {
    margin-bottom: 10px; }
    [dir="rtl"] .mr-xxl-10px {
      margin-left: 10px; }
    html:not([dir="rtl"]) .mr-xxl-10px {
      margin-right: 10px; }
  [dir="rtl"] .ml-xxl-10px {
    margin-right: 10px; }
  html:not([dir="rtl"]) .ml-xxl-10px {
    margin-left: 10px; }
  .m-xxl-1 {
    margin: 15px; }
  .mx-xxl-1 {
    margin-left: 15px;
    margin-right: 15px; }
  .my-xxl-1 {
    margin-top: 15px;
    margin-bottom: 15px; }
  .mt-xxl-1 {
    margin-top: 15px; }
  .mb-xxl-1 {
    margin-bottom: 15px; }
    [dir="rtl"] .mr-xxl-1 {
      margin-left: 15px; }
    html:not([dir="rtl"]) .mr-xxl-1 {
      margin-right: 15px; }
  [dir="rtl"] .ml-xxl-1 {
    margin-right: 15px; }
  html:not([dir="rtl"]) .ml-xxl-1 {
    margin-left: 15px; }
  .m-xxl-2 {
    margin: 30px; }
  .mx-xxl-2 {
    margin-left: 30px;
    margin-right: 30px; }
  .my-xxl-2 {
    margin-top: 30px;
    margin-bottom: 30px; }
  .mt-xxl-2 {
    margin-top: 30px; }
  .mb-xxl-2 {
    margin-bottom: 30px; }
    [dir="rtl"] .mr-xxl-2 {
      margin-left: 30px; }
    html:not([dir="rtl"]) .mr-xxl-2 {
      margin-right: 30px; }
  [dir="rtl"] .ml-xxl-2 {
    margin-right: 30px; }
  html:not([dir="rtl"]) .ml-xxl-2 {
    margin-left: 30px; }
  .m-xxl-3 {
    margin: 45px; }
  .mx-xxl-3 {
    margin-left: 45px;
    margin-right: 45px; }
  .my-xxl-3 {
    margin-top: 45px;
    margin-bottom: 45px; }
  .mt-xxl-3 {
    margin-top: 45px; }
  .mb-xxl-3 {
    margin-bottom: 45px; }
    [dir="rtl"] .mr-xxl-3 {
      margin-left: 45px; }
    html:not([dir="rtl"]) .mr-xxl-3 {
      margin-right: 45px; }
  [dir="rtl"] .ml-xxl-3 {
    margin-right: 45px; }
  html:not([dir="rtl"]) .ml-xxl-3 {
    margin-left: 45px; }
  .m-xxl-4 {
    margin: 60px; }
  .mx-xxl-4 {
    margin-left: 60px;
    margin-right: 60px; }
  .my-xxl-4 {
    margin-top: 60px;
    margin-bottom: 60px; }
  .mt-xxl-4 {
    margin-top: 60px; }
  .mb-xxl-4 {
    margin-bottom: 60px; }
    [dir="rtl"] .mr-xxl-4 {
      margin-left: 60px; }
    html:not([dir="rtl"]) .mr-xxl-4 {
      margin-right: 60px; }
  [dir="rtl"] .ml-xxl-4 {
    margin-right: 60px; }
  html:not([dir="rtl"]) .ml-xxl-4 {
    margin-left: 60px; }
  .m-xxl-5 {
    margin: 75px; }
  .mx-xxl-5 {
    margin-left: 75px;
    margin-right: 75px; }
  .my-xxl-5 {
    margin-top: 75px;
    margin-bottom: 75px; }
  .mt-xxl-5 {
    margin-top: 75px; }
  .mb-xxl-5 {
    margin-bottom: 75px; }
    [dir="rtl"] .mr-xxl-5 {
      margin-left: 75px; }
    html:not([dir="rtl"]) .mr-xxl-5 {
      margin-right: 75px; }
  [dir="rtl"] .ml-xxl-5 {
    margin-right: 75px; }
  html:not([dir="rtl"]) .ml-xxl-5 {
    margin-left: 75px; }
  .m-xxl-auto {
    margin: auto; }
  .mx-xxl-auto {
    margin-left: auto;
    margin-right: auto; }
  .my-xxl-auto {
    margin-top: auto;
    margin-bottom: auto; }
  .mt-xxl-auto {
    margin-top: auto; }
  .mb-xxl-auto {
    margin-bottom: auto; }
    [dir="rtl"] .mr-xxl-auto {
      margin-left: auto; }
    html:not([dir="rtl"]) .mr-xxl-auto {
      margin-right: auto; }
  [dir="rtl"] .ml-xxl-auto {
    margin-right: auto; }
  html:not([dir="rtl"]) .ml-xxl-auto {
    margin-left: auto; }
  .p-xxl-0 {
    padding: 0; }
  .px-xxl-0 {
    padding-left: 0;
    padding-right: 0; }
  .py-xxl-0 {
    padding-top: 0;
    padding-bottom: 0; }
  .pt-xxl-0 {
    padding-top: 0; }
  .pb-xxl-0 {
    padding-bottom: 0; }
    [dir="rtl"] .pr-xxl-0 {
      padding-left: 0; }
    html:not([dir="rtl"]) .pr-xxl-0 {
      padding-right: 0; }
  [dir="rtl"] .pl-xxl-0 {
    padding-right: 0; }
  html:not([dir="rtl"]) .pl-xxl-0 {
    padding-left: 0; }
  .p-xxl-5px {
    padding: 5px; }
  .px-xxl-5px {
    padding-left: 5px;
    padding-right: 5px; }
  .py-xxl-5px {
    padding-top: 5px;
    padding-bottom: 5px; }
  .pt-xxl-5px {
    padding-top: 5px; }
  .pb-xxl-5px {
    padding-bottom: 5px; }
    [dir="rtl"] .pr-xxl-5px {
      padding-left: 5px; }
    html:not([dir="rtl"]) .pr-xxl-5px {
      padding-right: 5px; }
  [dir="rtl"] .pl-xxl-5px {
    padding-right: 5px; }
  html:not([dir="rtl"]) .pl-xxl-5px {
    padding-left: 5px; }
  .p-xxl-10px {
    padding: 10px; }
  .px-xxl-10px {
    padding-left: 10px;
    padding-right: 10px; }
  .py-xxl-10px {
    padding-top: 10px;
    padding-bottom: 10px; }
  .pt-xxl-10px {
    padding-top: 10px; }
  .pb-xxl-10px {
    padding-bottom: 10px; }
    [dir="rtl"] .pr-xxl-10px {
      padding-left: 10px; }
    html:not([dir="rtl"]) .pr-xxl-10px {
      padding-right: 10px; }
  [dir="rtl"] .pl-xxl-10px {
    padding-right: 10px; }
  html:not([dir="rtl"]) .pl-xxl-10px {
    padding-left: 10px; }
  .p-xxl-1 {
    padding: 15px; }
  .px-xxl-1 {
    padding-left: 15px;
    padding-right: 15px; }
  .py-xxl-1 {
    padding-top: 15px;
    padding-bottom: 15px; }
  .pt-xxl-1 {
    padding-top: 15px; }
  .pb-xxl-1 {
    padding-bottom: 15px; }
    [dir="rtl"] .pr-xxl-1 {
      padding-left: 15px; }
    html:not([dir="rtl"]) .pr-xxl-1 {
      padding-right: 15px; }
  [dir="rtl"] .pl-xxl-1 {
    padding-right: 15px; }
  html:not([dir="rtl"]) .pl-xxl-1 {
    padding-left: 15px; }
  .p-xxl-2 {
    padding: 30px; }
  .px-xxl-2 {
    padding-left: 30px;
    padding-right: 30px; }
  .py-xxl-2 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .pt-xxl-2 {
    padding-top: 30px; }
  .pb-xxl-2 {
    padding-bottom: 30px; }
    [dir="rtl"] .pr-xxl-2 {
      padding-left: 30px; }
    html:not([dir="rtl"]) .pr-xxl-2 {
      padding-right: 30px; }
  [dir="rtl"] .pl-xxl-2 {
    padding-right: 30px; }
  html:not([dir="rtl"]) .pl-xxl-2 {
    padding-left: 30px; }
  .p-xxl-3 {
    padding: 45px; }
  .px-xxl-3 {
    padding-left: 45px;
    padding-right: 45px; }
  .py-xxl-3 {
    padding-top: 45px;
    padding-bottom: 45px; }
  .pt-xxl-3 {
    padding-top: 45px; }
  .pb-xxl-3 {
    padding-bottom: 45px; }
    [dir="rtl"] .pr-xxl-3 {
      padding-left: 45px; }
    html:not([dir="rtl"]) .pr-xxl-3 {
      padding-right: 45px; }
  [dir="rtl"] .pl-xxl-3 {
    padding-right: 45px; }
  html:not([dir="rtl"]) .pl-xxl-3 {
    padding-left: 45px; }
  .p-xxl-4 {
    padding: 60px; }
  .px-xxl-4 {
    padding-left: 60px;
    padding-right: 60px; }
  .py-xxl-4 {
    padding-top: 60px;
    padding-bottom: 60px; }
  .pt-xxl-4 {
    padding-top: 60px; }
  .pb-xxl-4 {
    padding-bottom: 60px; }
    [dir="rtl"] .pr-xxl-4 {
      padding-left: 60px; }
    html:not([dir="rtl"]) .pr-xxl-4 {
      padding-right: 60px; }
  [dir="rtl"] .pl-xxl-4 {
    padding-right: 60px; }
  html:not([dir="rtl"]) .pl-xxl-4 {
    padding-left: 60px; }
  .p-xxl-5 {
    padding: 75px; }
  .px-xxl-5 {
    padding-left: 75px;
    padding-right: 75px; }
  .py-xxl-5 {
    padding-top: 75px;
    padding-bottom: 75px; }
  .pt-xxl-5 {
    padding-top: 75px; }
  .pb-xxl-5 {
    padding-bottom: 75px; }
    [dir="rtl"] .pr-xxl-5 {
      padding-left: 75px; }
    html:not([dir="rtl"]) .pr-xxl-5 {
      padding-right: 75px; }
  [dir="rtl"] .pl-xxl-5 {
    padding-right: 75px; }
  html:not([dir="rtl"]) .pl-xxl-5 {
    padding-left: 75px; } }

ins, u, .text-underline {
  text-decoration: underline !important; }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-wrap {
  white-space: normal !important; }

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important; }

.fs-italic {
  font-style: italic !important; }

.fs-normal {
  font-style: normal !important; }

.fs-larger {
  font-size: larger !important; }

.fs-smaller {
  font-size: smaller !important; }

del, s, .text-delete {
  text-decoration: line-through; }

.fw-lighter {
  font-weight: lighter; }

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

.fw-regular {
  font-weight: 400; }

.fw-medium {
  font-weight: 500; }

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

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

.fw-extrabold {
  font-weight: 800; }

.fw-black {
  font-weight: 900; }

.text-link {
  color: var(--text-primary) !important;
  text-decoration: underline; }

.small-text {
  font-size: 10px !important; }

.text-content {
  color: var(--text-body);
  font-size: 12px; }
  .text-primary {
    color: var(--text-primary) !important; }
  .text-secondary {
    color: var(--text-secondary) !important; }
  .text-white {
    color: var(--text-white) !important; }
  .text-black {
    color: var(--text-black) !important; }
  .text-success {
    color: var(--text-success) !important; }
  .text-info {
    color: var(--text-info) !important; }
  .text-warning {
    color: var(--text-warning) !important; }
  .text-danger {
    color: var(--text-danger) !important; }
  .text-gray {
    color: var(--text-gray) !important; }
  .text-light {
    color: var(--text-light) !important; }
  .text-dark {
    color: var(--text-dark) !important; }
  .text-body {
    color: var(--text-body) !important; }
  .text-heading {
    color: var(--text-heading) !important; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  font-style: normal; }

.border {
  border: 1px solid var(--border-secondary); }

.border-top {
  border-top: 1px solid var(--border-secondary); }

.border-bottom {
  border-bottom: 1px solid var(--border-secondary); }

html:not([dir="rtl"]) .border-right {
  border-right: 1px solid var(--border-secondary); }
html:not([dir="rtl"]) .border-left {
  border-left: 1px solid var(--border-secondary); }

[dir="rtl"] .border-right {
  border-left: 1px solid var(--border-secondary); }
[dir="rtl"] .border-left {
  border-right: 1px solid var(--border-secondary); }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

html:not([dir="rtl"]) .border-right-0 {
  border-right: 0 !important; }
html:not([dir="rtl"]) .border-left-0 {
  border-left: 0 !important; }

[dir="rtl"] .border-right-0 {
  border-left: 0 !important; }
[dir="rtl"] .border-left-0 {
  border-right: 0 !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-round {
  border-radius: var(--border-radius) !important; }

.border-rounded {
  border-radius: 30px !important; }

.border-circle {
  border-radius: 100% !important; }
  .border-primary {
    border-color: var(--border-primary) !important; }
  .border-secondary {
    border-color: var(--border-secondary) !important; }
  .border-white {
    border-color: var(--border-white) !important; }
  .border-black {
    border-color: var(--border-black) !important; }
  .border-success {
    border-color: var(--border-success) !important; }
  .border-info {
    border-color: var(--border-info) !important; }
  .border-warning {
    border-color: var(--border-warning) !important; }
  .border-danger {
    border-color: var(--border-danger) !important; }
  .border-gray {
    border-color: var(--border-gray) !important; }
  .border-light {
    border-color: var(--border-light) !important; }
  .border-dark {
    border-color: var(--border-dark) !important; }

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

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

@media (min-width: 768px) {
  .position-desktop-relative {
    position: relative !important; }
  .position-desktop-absolute {
    position: absolute !important; }
  .position-desktop-fixed {
    position: fixed !important; }
  .position-desktop-sticky {
    position: sticky !important; } }

.top-auto {
  top: auto !important; }

.bottom-auto {
  bottom: auto !important; }

.left-auto {
  left: auto !important; }

.right-auto {
  right: auto !important; }

.top-0 {
  top: 0 !important; }

.bottom-0 {
  bottom: 0 !important; }

.left-0 {
  left: 0 !important; }

.right-0 {
  right: 0 !important; }

.top-50 {
  top: 50% !important; }

.bottom-50 {
  bottom: 50% !important; }

.left-50 {
  left: 50% !important; }

.right-50 {
  right: 50% !important; }

.top-100 {
  top: 100% !important; }

.bottom-100 {
  bottom: 100% !important; }

.left-100 {
  left: 100% !important; }

.right-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; }

.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; }

.box-shadow, .dropdown .dropdown-menu, .tsoft-notify-wrapper .notify-item {
  box-shadow: rgba(17, 17, 26, 0.05) 0 1px 0, rgba(17, 17, 26, 0.1) 0 0 8px; }

.box-shadow-2 {
  box-shadow: rgba(17, 17, 26, 0.1) 0 0 16px; }

.box-shadow-3 {
  box-shadow: rgba(17, 17, 26, 0.05) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px; }

.box-shadow-4 {
  box-shadow: rgba(17, 17, 26, 0.1) 0 4px 16px, rgba(17, 17, 26, 0.05) 0 8px 32px; }

.box-shadow-5 {
  box-shadow: rgba(17, 17, 26, 0.1) 0 1px 0, rgba(17, 17, 26, 0.1) 0 8px 24px, rgba(17, 17, 26, 0.1) 0 16px 48px; }

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
  font-weight: 300;
  line-height: 1.2; }

.display-1 {
  font-size: calc(1.625rem + 4.5vw); }
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem; } }

.display-2 {
  font-size: calc(1.575rem + 3.9vw); }
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem; } }

.display-3 {
  font-size: calc(1.525rem + 3.3vw); }
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem; } }

.display-4 {
  font-size: calc(1.475rem + 2.7vw); }
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem; } }

.display-5 {
  font-size: calc(1.425rem + 2.1vw); }
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem; } }

.display-6 {
  font-size: calc(1.375rem + 1.5vw); }
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem; } }

.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; }

.cursor-pointer {
  cursor: pointer; }

.dropdown {
  position: relative;
  z-index: 10; }
  .dropdown.show {
    z-index: 11; }
  .dropdown .dropdown-title {
    font-size: 12px;
    line-height: 24px; }
  .dropdown .dropdown-menu {
    background-color: var(--bg-white);
    width: 260px;
    min-width: 100%;
    padding: 15px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    pointer-events: none;
    display: none;
    border: 1px solid var(--bg-light); }
  .dropdown .list-item {
    line-height: 20px;
    display: block;
    padding-top: 4px;
    padding-bottom: 4px; }
  .dropdown.show > .dropdown-menu {
    pointer-events: all;
    display: block; }

[dir="rtl"] .dropdown .dropdown-menu {
  left: auto;
  right: 0; }

[data-toggle="accordion"]:not([data-mobile="true"]), .accordion-title:not([data-mobile="true"]) {
  cursor: pointer; }
[data-toggle="accordion"].active .ti-plus, .accordion-title.active .ti-plus, [data-toggle="accordion"].active .ti-arrow-down, .accordion-title.active .ti-arrow-down, [data-toggle="accordion"]:not(.active) .ti-minus, .accordion-title:not(.active) .ti-minus, [data-toggle="accordion"]:not(.active) .ti-arrow-up, .accordion-title:not(.active) .ti-arrow-up {
  display: none; }
[data-toggle="accordion"].active .ti-minus, .accordion-title.active .ti-minus, [data-toggle="accordion"].active .ti-arrow-up, .accordion-title.active .ti-arrow-up, [data-toggle="accordion"]:not(.active) .ti-plus, .accordion-title:not(.active) .ti-plus, [data-toggle="accordion"]:not(.active) .ti-arrow-down, .accordion-title:not(.active) .ti-arrow-down {
  display: block; }

.accordion-body {
  transition: height 0.2s ease-in-out; }
  .accordion-body.show {
    display: block !important;
    height: auto; }

@media (max-width: 767px) {
  .accordion-body:not(.show) {
    display: none;
    height: 0; } }

@media (min-width: 768px) {
  .accordion-body:not([data-mobile="true"]):not(.show) {
    display: none;
    height: 0; } }

.tab-content > .tab-pane {
  display: none; }
.tab-content > .tab-pane.active {
  display: block; }

.image-wrapper {
  width: 100%;
  display: block;
  position: relative; }
  .image-wrapper.ratio-2x1 {
    padding-bottom: 50%; }
  .image-wrapper.ratio-4x3 {
    padding-bottom: 56.25%; }
  .image-wrapper.ratio-1x1 {
    padding-bottom: 100%; }
  .image-wrapper > .image-inner {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .image-wrapper > .image-inner > img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      display: block; }

.image-zoom {
  display: flex !important;
  align-items: center;
  height: 100%; }

.t-zoom-image {
  position: relative; }
  .t-zoom-image .t-zoom-lens {
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--bg-light);
    position: absolute;
    z-index: 2; }

.t-zoom-result {
  background-color: var(--bg-white);
  background-repeat: no-repeat;
  z-index: 999999998; }

.t-modal-wrapper {
  width: 100%;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999996; }
  .t-modal-wrapper .t-modal-backdrop {
    background-color: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1; }
  .t-modal-wrapper .t-modal-container {
    width: 100%;
    max-height: 100%;
    padding: 55px 10px;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    display: flex !important;
    justify-content: center; }
  .t-modal-wrapper .t-modal-content {
    background-color: var(--bg-white);
    padding: 8px;
    display: block;
    width: 600px;
    max-width: 100%;
    height: fit-content;
    border-radius: 6px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2; }
  @media (min-width: 768px) {
    .t-modal-wrapper .t-modal-content {
      padding: 15px; } }
  .t-modal-wrapper .t-modal-close {
    background-color: #fff;
    color: #979797;
    font-size: 17px;
    line-height: 36px;
    text-align: center;
    width: 36px;
    height: 36px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    position: fixed;
    top: 10px;
    right: 15px;
    z-index: 3;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer; }
    .t-modal-wrapper .t-modal-close [dir="rtl"] {
      right: auto;
      left: 15px; }
    .t-modal-wrapper .t-modal-close:hover {
      transform: rotate(90deg); }

[id*="product-showcase-tab-wrapper-"] > .showcase {
  transition: all 0.2s ease-in-out; }
  [id*="product-showcase-tab-wrapper-"] > .showcase:not(.active) {
    display: none; }
  [id*="product-showcase-tab-wrapper-"] > .showcase.showing {
    opacity: 0;
    visibility: hidden; }
  [id*="product-showcase-tab-wrapper-"] > .showcase.active {
    opacity: 1;
    visibility: visible; }

.range-slider-values span[class*="-value"] {
  background-color: var(--bg-white);
  color: #535353;
  font-size: 11px;
  line-height: 33px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.14);
  min-width: 55px;
  height: 33px; }
  .range-slider-values span[class*="-value"] > span {
    font-size: 14px; }

label.catalog-filter-item {
  background-color: var(--bg-white);
  display: block;
  border-radius: 24px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.14); }
  label.catalog-filter-item > select {
    background-color: transparent;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    height: 33px;
    padding: 0 15px;
    border: 0;
    outline: 0; }

.tsoft-notify-wrapper {
  max-width: 240px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: fixed;
  z-index: 999999999; }
@media (min-width: 768px) {
  .tsoft-notify-wrapper {
    gap: 15px;
    max-width: 300px; } }
.tsoft-notify-wrapper.notify-top {
  top: 15px; }
.tsoft-notify-wrapper.notify-bottom {
  bottom: 15px; }
.tsoft-notify-wrapper.notify-right {
  right: 15px; }
  [dir="rtl"] .tsoft-notify-wrapper.notify-right {
    right: auto;
    left: 15px; }
.tsoft-notify-wrapper.notify-left {
  left: 15px; }
  [dir="rtl"] .tsoft-notify-wrapper.notify-left {
    left: auto;
    right: 0; }
.tsoft-notify-wrapper .notify-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px 25px 12px 12px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--bg-white); }
@media (min-width: 768px) {
  .tsoft-notify-wrapper .notify-item {
    gap: 20px;
    padding: 20px 50px 20px 20px; } }
[dir="rtl"] .tsoft-notify-wrapper .notify-item {
  padding: 12px 12px 12px 25px; }
@media (min-width: 768px) {
  [dir="rtl"] .tsoft-notify-wrapper .notify-item {
    padding: 20px 20px 20px 50px; } }
.tsoft-notify-wrapper .notify-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  pointer-events: none; }
.tsoft-notify-wrapper .notify-item.success {
  border-left: 6px solid var(--border-success); }
  .tsoft-notify-wrapper .notify-item.success::before {
    background: rgba(2, 152, 105, 0.08); }
  [dir="rtl"] .tsoft-notify-wrapper .notify-item.success {
    border-left: none;
    border-right: 6px solid var(--border-success); }
  .tsoft-notify-wrapper .notify-item.success .notify-icon {
    background: var(--bg-success);
    border-color: var(--border-success); }
.tsoft-notify-wrapper .notify-item.danger {
  border-left: 6px solid var(--border-danger); }
  .tsoft-notify-wrapper .notify-item.danger::before {
    background: rgba(233, 15, 15, 0.08); }
  [dir="rtl"] .tsoft-notify-wrapper .notify-item.danger {
    border-left: none;
    border-right: 6px solid var(--border-danger); }
  .tsoft-notify-wrapper .notify-item.danger .notify-icon {
    background: var(--bg-danger);
    border-color: var(--border-danger); }
.tsoft-notify-wrapper .notify-item .notify-text {
  font-size: 13px; }
@media (min-width: 768px) {
  .tsoft-notify-wrapper .notify-item .notify-text {
    font-size: 14px; } }
.tsoft-notify-wrapper .notify-item .notify-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  font-size: 16px;
  border-radius: 50%;
  background: var(--bg-black);
  color: var(--text-white); }
@media (min-width: 768px) {
  .tsoft-notify-wrapper .notify-item .notify-icon {
    width: 38px;
    height: 38px;
    font-size: 22px; } }
.tsoft-notify-wrapper .notify-item .notify-close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 12px;
  font-size: 10px;
  z-index: 1; }
@media (min-width: 768px) {
  .tsoft-notify-wrapper .notify-item .notify-close {
    top: 20px;
    right: 25px; } }
[dir="rtl"] .tsoft-notify-wrapper .notify-item .notify-close {
  right: auto !important;
  left: 10px; }
@media (min-width: 768px) {
  [dir="rtl"] .tsoft-notify-wrapper .notify-item .notify-close {
    left: 25px; } }
.tsoft-notify-wrapper .notify-item a {
  color: inherit;
  text-decoration: underline; }

.t-tooltip {
  position: absolute;
  z-index: 100;
  transform: translate(-50%, -10px) !important; }
  .t-tooltip .tooltip-inner {
    font-size: 11px;
    padding: 5px 8px;
    overflow: hidden;
    background: var(--bg-white);
    box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
    border-radius: var(--border-radius); }
  .t-tooltip .arrow {
    background-color: var(--bg-white);
    box-shadow: 3px 3px 7px #00000012;
    transform: translateY(-3px) rotate(45deg);
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    pointer-events: auto;
    top: 100%; }

.t-popconfirm {
  position: absolute;
  z-index: 100;
  max-width: 100%;
  padding: 0 15px;
  transform: translate(-50%, -10px) !important; }
  .t-popconfirm .t-popconfirm-inner {
    background: var(--bg-white);
    box-shadow: 0 3px 6px -4px #0000001f, 0 6px 16px #00000014, 0 9px 28px 8px #0000000d;
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 15px;
    max-width: 310px; }
    .t-popconfirm .t-popconfirm-inner .t-popconfirm-message {
      display: flex !important;
      margin-bottom: 15px; }
      .t-popconfirm .t-popconfirm-inner .t-popconfirm-message .t-popconfirm-icon {
        margin-right: 15px; }
    .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons {
      display: flex !important;
      align-items: center;
      justify-content: flex-end;
      flex-wrap: wrap; }
      .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-cancel-btn, .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-confirm-btn {
        padding: 6px 10px;
        font-size: 12px; }
        .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-cancel-btn.is-loading:before, .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-confirm-btn.is-loading:before {
          display: inline-block;
          vertical-align: middle;
          width: 13px;
          height: 13px;
          margin: 0;
          margin-right: 5px;
          border-left: 2px solid var(--bg-white);
          border-right: 2px solid var(--bg-white);
          border-bottom: 2px solid var(--bg-white); }
        .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-cancel-btn + .t-popconfirm-confirm-btn, .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-confirm-btn + .t-popconfirm-confirm-btn {
          margin-left: 15px; }
  .t-popconfirm.popconfirm-left, .t-popconfirm.popconfirm-right {
    transform: translate(0%, 50%) !important; }
    .t-popconfirm.popconfirm-left::after, .t-popconfirm.popconfirm-right::after {
      top: 50%; }
    .t-popconfirm.popconfirm-left.popconfirm-left::after, .t-popconfirm.popconfirm-right.popconfirm-left::after {
      right: 100%;
      left: auto;
      transform: translateY(-50%) translateX(19px) rotate(45deg); }
    .t-popconfirm.popconfirm-left.popconfirm-right::after, .t-popconfirm.popconfirm-right.popconfirm-right::after {
      left: 100%;
      right: auto;
      transform: translateY(-50%) translateX(-19px) rotate(45deg); }
  .t-popconfirm::after {
    content: "";
    background-color: var(--bg-white);
    box-shadow: 3px 3px 7px #00000012;
    transform: translateY(-4px) rotate(45deg);
    width: 8px;
    height: 8px;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: auto;
    pointer-events: auto; }

[dir="rtl"] .t-popconfirm .t-popconfirm-inner .t-popconfirm-message .t-popconfirm-icon {
  margin-right: 0;
  margin-left: 15px; }
[dir="rtl"] .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-cancel-btn.is-loading:before, [dir="rtl"] .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-confirm-btn.is-loading:before {
  margin-right: 0;
  margin-left: 5px; }
[dir="rtl"] .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-cancel-btn + .t-popconfirm-confirm-btn, [dir="rtl"] .t-popconfirm .t-popconfirm-inner .t-popconfirm-buttons .t-popconfirm-confirm-btn + .t-popconfirm-confirm-btn {
  margin-left: 0;
  margin-right: 15px; }

#pwa-install-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 280px;
  z-index: 90;
  margin: auto; }
  #pwa-install-popup .pwa-inner {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16); }
    #pwa-install-popup .pwa-inner .pwa-title {
      font-size: 15px;
      margin-bottom: 10px; }
    #pwa-install-popup .pwa-inner .pwa-icon {
      width: 45px;
      min-width: 45px;
      height: 45px;
      display: flex !important;
      align-items: center;
      justify-content: center; }
      #pwa-install-popup .pwa-inner .pwa-icon img {
        max-width: 100%;
        max-height: 100%; }
    #pwa-install-popup .pwa-inner .pwa-text div {
      font-size: 15px; }
    #pwa-install-popup .pwa-inner .pwa-text span {
      font-size: 12px;
      color: var(--text-gray); }
    #pwa-install-popup .pwa-inner .pwa-buttons {
      margin-top: 10px;
      display: flex !important;
      align-items: center;
      justify-content: flex-end; }
      #pwa-install-popup .pwa-inner .pwa-buttons button {
        font-size: 12px;
        padding: 8px 18px; }

body.drawer-animated {
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.drawer-wrapper {
  max-width: 100%;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  position: fixed;
  top: 0; }
  .drawer-wrapper.animated {
    transition: all 0.2s ease-in-out; }
  .drawer-wrapper.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all; }
    .drawer-wrapper.active[data-position="top"]:not([data-display="push"]) {
      top: 0; }
    .drawer-wrapper.active[data-position="bottom"]:not([data-display="push"]) {
      bottom: 0; }
    .drawer-wrapper.active[data-position="right"]:not([data-display="push"]) {
      right: 0; }
      [dir="rtl"] .drawer-wrapper.active[data-position="right"]:not([data-display="push"]) {
        right: auto;
        left: 0; }
    .drawer-wrapper.active[data-position="left"]:not([data-display="push"]) {
      left: 0; }
      [dir="rtl"] .drawer-wrapper.active[data-position="left"]:not([data-display="push"]) {
        left: auto;
        right: 0; }

.drawer-overlay {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80; }
  .drawer-overlay.active {
    display: block; }

@media (max-width: 767px) {
  html, body {
    -webkit-overflow-scrolling: touch; } }

.qty {
  position: relative; }
  .qty .form-control, .qty .form-control.btn {
    color: var(--text-body);
    font-size: 12px;
    height: 30px;
    user-select: none; }
  .qty span[class*="ti-"] {
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    width: 25px;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2; }
    .qty span[class*="ti-"].ti-minus {
      left: 0; }
    .qty span[class*="ti-"].ti-plus {
      right: 0; }
  .qty.small .form-control, .qty.small .form-control.btn {
    height: 22px; }

[dir="rtl"] .qty span[class*="ti-"].ti-minus {
  left: auto;
  right: 0; }
[dir="rtl"] .qty span[class*="ti-"].ti-plus {
  right: auto;
  left: 0; }

.popover-wrapper {
  position: relative !important; }
  .popover-wrapper .popover-item.inline {
    font-size: 10px;
    line-height: 1;
    pointer-events: none;
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2; }
    .popover-wrapper .popover-item.inline:not(.success) {
      color: var(--text-danger); }
    .popover-wrapper .popover-item.inline.success {
      color: var(--text-success); }
  .popover-wrapper .popover-item:not(.inline) {
    width: 100%;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    bottom: 100%;
    z-index: 3;
    font-size: 13px;
    padding: 10px 15px; }

[dir="rtl"] .popover-wrapper {
  position: relative !important; }
  [dir="rtl"] .popover-wrapper .popover-item.inline {
    right: auto;
    left: 6px; }

.sticky-wrapper .sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 74;
  background: var(--bg-white); }

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

.table {
  width: 100%;
  color: var(--text-body);
  vertical-align: top;
  caption-side: bottom;
  border-collapse: collapse;
  border: 1px solid var(--border-light); }
  .table tbody, .table td, .table tfoot, .table th, .table thead, .table tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0; }
  .table > thead {
    vertical-align: bottom; }
  .table tr {
    border-width: 1px 0px; }
  .table th {
    text-align: inherit;
    text-align: -webkit-match-parent; }
  .table th, .table td {
    padding: 10px 10px;
    border-width: 0 1px; }

.stars {
  display: inline-flex !important;
  color: var(--text-light);
  font-size: 14px;
  position: relative; }
  .stars i + i {
    margin-left: 3px; }
  .stars .stars-fill {
    color: var(--text-primary);
    display: flex !important;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    max-width: 100%; }

[dir="rtl"] .stars i + i {
  margin-left: 0;
  margin-right: 3px; }
[dir="rtl"] .stars .stars-fill {
  left: auto;
  right: 0; }

.snap-scroll-container {
  position: relative;
  width: 100%; }
  .snap-scroll-container .snap-scroll {
    scroll-snap-type: x mandatory;
    display: flex;
    align-items: center;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none; }
    .snap-scroll-container .snap-scroll::-webkit-scrollbar {
      background: transparent;
      width: 0px;
      height: 0px; }
    .snap-scroll-container .snap-scroll .snap-item {
      scroll-snap-align: center; }
  .snap-scroll-container .snap-prev, .snap-scroll-container .snap-next {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 15px;
    height: 15px;
    line-height: 15px;
    background-color: var(--bg-white);
    text-align: center;
    cursor: pointer; }
  .snap-scroll-container .snap-prev {
    left: -15px; }
  .snap-scroll-container .snap-next {
    right: -15px; }

.lazyload, .lazyloading {
  object-fit: none !important; }

.tsoft-push--in-notification {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999999999999;
  background: var(--bg-white);
  box-shadow: 0 0 10px 0 rgba(40, 40, 40, 0.3);
  width: 420px;
  border-radius: 0 0 5px 5px;
  max-width: 100%; }
  .tsoft-push--in-notification-title {
    font-size: 14px;
    margin-bottom: 5px; }
  .tsoft-push--in-notification-description {
    font-size: 12px; }
  .tsoft-push--in-notification-button {
    font-size: 14px;
    min-width: 90px;
    padding: 8px 15px; }

.inset {
  inset: 0; }

.column-fill [class*="column-"] > .row {
  height: 100%;
  flex-direction: column; }
  .column-fill [class*="column-"] > .row [class*="folder-"] {
    flex-basis: auto;
    width: -webkit-fill-available; }
    .column-fill [class*="column-"] > .row [class*="folder-"]:last-child {
      flex-grow: 1; }
    .column-fill [class*="column-"] > .row [class*="folder-"] > .row {
      height: 100%; }

.swiper-wrapper .swiper-slide:not(:first-child):not(:last-child) .swiper-lazy:not(.swiper-lazy-loaded) {
  display: none; }

body.is-loading:before {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 999999999; }
body.is-loading:after {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-white);
  z-index: 999999998;
  opacity: 0.5; }

.compare-selected {
  display: none !important; }

.pagination {
  align-items: center; }

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

.catalog-opacity * {
  opacity: 0.5 !important; }

.catalog-opacity .catalog-parent-element, .catalog-opacity .catalog-parent-element > *, .catalog-opacity [data-toggle="product-catalog"] *, .catalog-opacity [data-toggle="product-item-catalog"] * {
  opacity: 1 !important; }

[dir="rtl"] .phone-format {
  direction: ltr;
  unicode-bidi: bidi-override; }

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.user-select-none {
  user-select: none; }

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