.item-quantity {
  width: 56px;
  max-width: 100%;
  text-align: center;
  padding: 4px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: width 0.2s;
}

/* Miniaturas do produto - tamanho fixo para todas as telas */

/* Miniaturas do produto - tamanho responsivo */
#img-thumbnails-html .thumbnail-wrapper img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  transition:
    width 0.2s,
    height 0.2s;
}

/* Scroll para miniaturas no desktop */
@media (min-width: 768px) {
  #sidebar-categories {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    max-height: 100vh;
    height: 600px;
    box-sizing: border-box;
    position: sticky;
    top: 24px;
    z-index: 100;
  }

  #sidebar-categories::-webkit-scrollbar {
    width: 4px;
  }
  #sidebar-categories::-webkit-scrollbar-track {
    background: transparent;
  }
  #sidebar-categories::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
  }
  #img-thumbnails-html.product-thumbnails-scroll {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    /* Mantém altura igual à imagem principal */
    max-height: 600px;
    height: 100%;
    box-sizing: border-box;
  }

  .product-thumbnails-scroll::-webkit-scrollbar {
    width: 4px;
  }

  .product-thumbnails-scroll::-webkit-scrollbar-track {
    background: transparent;
  }

  .product-thumbnails-scroll::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
  }


  
}



/* Garante que todas as imagens de produtos tenham o mesmo tamanho */
/* #c-prod-list-categories img.boots-object-fit {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  #c-prod-list-categories img.boots-object-fit {
    width: 120px;
    height: 120px;
  }
} */

@media (min-width: 992px) {
  #img-thumbnails-html .thumbnail-wrapper img {
    width: 100%;
    max-width: 120px;
    height: auto;
    aspect-ratio: 1/1;
    min-width: 80px;
    max-height: 120px;
  }
}

/* Ajuste responsivo para imagem principal do produto */
#main-product-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-height: 60vh;
  cursor: pointer;
}

@media (max-width: 991px) {
  #main-product-image {
    max-width: 90vw;
    max-height: 40vh;
  }
}

@media (min-width: 992px) {
  #main-product-image {
    max-width: 420px;
    max-height: 60vh;
  }
}

/*!
 * jquery-confirm v3.3.4 (http://craftpip.github.io/jquery-confirm/)
 * Author: boniface pereira
 * Website: www.craftpip.com
 * Contact: hey@craftpip.com
 *
 * Copyright 2013-2019 jquery-confirm
 * Licensed under MIT (https://github.com/craftpip/jquery-confirm/blob/master/LICENSE)
 */
@-webkit-keyframes jconfirm-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes jconfirm-spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

body[class*="jconfirm-no-scroll-"] {
  overflow: hidden !important;
}

.jconfirm {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  font-family: inherit;
  overflow: hidden;
}

.jconfirm .jconfirm-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.jconfirm .jconfirm-bg.jconfirm-bg-h {
  opacity: 0 !important;
}

.jconfirm .jconfirm-scrollpane {
  -webkit-perspective: 500px;
  perspective: 500px;
  -webkit-perspective-origin: center;
  perspective-origin: center;
  display: table;
  width: 100%;
  height: 100%;
}

.jconfirm .jconfirm-row {
  display: table-row;
  width: 100%;
}

.jconfirm .jconfirm-cell {
  display: table-cell;
  vertical-align: middle;
}

.jconfirm .jconfirm-holder {
  max-height: 100%;
  padding: 50px 0;
}

.jconfirm .jconfirm-box-container {
  -webkit-transition: -webkit-transform;
  transition: -webkit-transform;
  transition: transform;
  transition:
    transform,
    -webkit-transform;
}

.jconfirm .jconfirm-box-container.jconfirm-no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

.jconfirm .jconfirm-box {
  background: white;
  border-radius: 4px;
  position: relative;
  outline: 0;
  padding: 15px 15px 0;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
}

@-webkit-keyframes type-blue {

  1%,
  100% {
    border-color: #3498db;
  }

  50% {
    border-color: #5faee3;
  }
}

@keyframes type-blue {

  1%,
  100% {
    border-color: #3498db;
  }

  50% {
    border-color: #5faee3;
  }
}

@-webkit-keyframes type-green {

  1%,
  100% {
    border-color: #2ecc71;
  }

  50% {
    border-color: #54d98c;
  }
}

@keyframes type-green {

  1%,
  100% {
    border-color: #2ecc71;
  }

  50% {
    border-color: #54d98c;
  }
}

@-webkit-keyframes type-red {

  1%,
  100% {
    border-color: #e74c3c;
  }

  50% {
    border-color: #ed7669;
  }
}

@keyframes type-red {

  1%,
  100% {
    border-color: #e74c3c;
  }

  50% {
    border-color: #ed7669;
  }
}

@-webkit-keyframes type-orange {

  1%,
  100% {
    border-color: #f1c40f;
  }

  50% {
    border-color: #f4d03f;
  }
}

@keyframes type-orange {

  1%,
  100% {
    border-color: #f1c40f;
  }

  50% {
    border-color: #f4d03f;
  }
}

@-webkit-keyframes type-purple {

  1%,
  100% {
    border-color: #9b59b6;
  }

  50% {
    border-color: #b07cc6;
  }
}

@keyframes type-purple {

  1%,
  100% {
    border-color: #9b59b6;
  }

  50% {
    border-color: #b07cc6;
  }
}

@-webkit-keyframes type-dark {

  1%,
  100% {
    border-color: #34495e;
  }

  50% {
    border-color: #46627f;
  }
}

@keyframes type-dark {

  1%,
  100% {
    border-color: #34495e;
  }

  50% {
    border-color: #46627f;
  }
}

.jconfirm .jconfirm-box.jconfirm-type-animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.jconfirm .jconfirm-box.jconfirm-type-blue {
  border-top: solid 7px #3498db;
  -webkit-animation-name: type-blue;
  animation-name: type-blue;
}

.jconfirm .jconfirm-box.jconfirm-type-green {
  border-top: solid 7px #2ecc71;
  -webkit-animation-name: type-green;
  animation-name: type-green;
}

.jconfirm .jconfirm-box.jconfirm-type-red {
  border-top: solid 7px #e74c3c;
  -webkit-animation-name: type-red;
  animation-name: type-red;
}

.jconfirm .jconfirm-box.jconfirm-type-orange {
  border-top: solid 7px #f1c40f;
  -webkit-animation-name: type-orange;
  animation-name: type-orange;
}

.jconfirm .jconfirm-box.jconfirm-type-purple {
  border-top: solid 7px #9b59b6;
  -webkit-animation-name: type-purple;
  animation-name: type-purple;
}

.jconfirm .jconfirm-box.jconfirm-type-dark {
  border-top: solid 7px #34495e;
  -webkit-animation-name: type-dark;
  animation-name: type-dark;
}

.jconfirm .jconfirm-box.loading {
  height: 120px;
}

.jconfirm .jconfirm-box.loading:before {
  content: "";
  position: absolute;
  left: 0;
  background: white;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  z-index: 1;
}

.jconfirm .jconfirm-box.loading:after {
  opacity: 0.6;
  content: "";
  height: 30px;
  width: 30px;
  border: solid 3px transparent;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  border-radius: 50%;
  -webkit-animation: jconfirm-spin 1s infinite linear;
  animation: jconfirm-spin 1s infinite linear;
  border-bottom-color: dodgerblue;
  top: 50%;
  margin-top: -15px;
  z-index: 2;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  opacity: 0.6;
  text-align: center;
  font-size: 27px !important;
  line-height: 14px !important;
  display: none;
  z-index: 1;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:empty {
  display: none;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .fa {
  font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .glyphicon {
  font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon .zmdi {
  font-size: 16px;
}

.jconfirm .jconfirm-box div.jconfirm-closeIcon:hover {
  opacity: 1;
}

.jconfirm .jconfirm-box div.jconfirm-title-c {
  display: block;
  font-size: 22px;
  line-height: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  padding-bottom: 15px;
}

.jconfirm .jconfirm-box div.jconfirm-title-c.jconfirm-hand {
  cursor: move;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  font-size: inherit;
  display: inline-block;
  vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c i {
  vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c:empty {
  display: none;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: inherit;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
}

.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title:empty {
  display: none;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 15px;
  height: auto;
  -webkit-transition: height 0.4s ease-in;
  transition: height 0.4s ease-in;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane.no-scroll {
  overflow-y: hidden;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar {
  width: 3px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

.jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar-thumb {
  background: #666;
  border-radius: 3px;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content {
  overflow: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content img {
  max-width: 100%;
  height: auto;
}

.jconfirm .jconfirm-box div.jconfirm-content-pane .jconfirm-content:empty {
  display: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons {
  padding-bottom: 11px;
}

.jconfirm .jconfirm-box .jconfirm-buttons>button {
  margin-bottom: 4px;
  margin-left: 2px;
  margin-right: 2px;
}

.jconfirm .jconfirm-box .jconfirm-buttons button {
  display: inline-block;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 4px;
  min-height: 1em;
  -webkit-transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    -webkit-box-shadow 0.1s ease;
  transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    background 0.1s ease,
    -webkit-box-shadow 0.1s ease;
  transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease;
  transition:
    opacity 0.1s ease,
    background-color 0.1s ease,
    color 0.1s ease,
    box-shadow 0.1s ease,
    background 0.1s ease,
    -webkit-box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  border: 0;
  background-image: none;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue {
  background-color: #3498db;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-blue:hover {
  background-color: #2980b9;
  color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
  background-color: #2ecc71;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green:hover {
  background-color: #27ae60;
  color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
  background-color: #e74c3c;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red:hover {
  background-color: #c0392b;
  color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange {
  background-color: #f1c40f;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-orange:hover {
  background-color: #f39c12;
  color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default {
  background-color: #ecf0f1;
  color: #000;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background-color: #bdc3c7;
  color: #000;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple {
  background-color: #9b59b6;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-purple:hover {
  background-color: #8e44ad;
  color: #fff;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark {
  background-color: #34495e;
  color: #fff;
  text-shadow: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-dark:hover {
  background-color: #2c3e50;
  color: #fff;
}

.jconfirm .jconfirm-box.jconfirm-type-red .jconfirm-title-c .jconfirm-icon-c {
  color: #e74c3c !important;
}

.jconfirm .jconfirm-box.jconfirm-type-blue .jconfirm-title-c .jconfirm-icon-c {
  color: #3498db !important;
}

.jconfirm .jconfirm-box.jconfirm-type-green .jconfirm-title-c .jconfirm-icon-c {
  color: #2ecc71 !important;
}

.jconfirm .jconfirm-box.jconfirm-type-purple .jconfirm-title-c .jconfirm-icon-c {
  color: #9b59b6 !important;
}

.jconfirm .jconfirm-box.jconfirm-type-orange .jconfirm-title-c .jconfirm-icon-c {
  color: #f1c40f !important;
}

.jconfirm .jconfirm-box.jconfirm-type-dark .jconfirm-title-c .jconfirm-icon-c {
  color: #34495e !important;
}

.jconfirm .jconfirm-clear {
  clear: both;
}

.jconfirm.jconfirm-rtl {
  direction: rtl;
}

.jconfirm.jconfirm-rtl div.jconfirm-closeIcon {
  left: 5px;
  right: auto;
}

.jconfirm.jconfirm-white .jconfirm-bg,
.jconfirm.jconfirm-light .jconfirm-bg {
  background-color: #444;
  opacity: 0.2;
}

.jconfirm.jconfirm-white .jconfirm-box,
.jconfirm.jconfirm-light .jconfirm-box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons {
  float: right;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #333;
}

.jconfirm.jconfirm-white .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-light .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background: #ddd;
}

.jconfirm.jconfirm-white.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-light.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0;
}

.jconfirm.jconfirm-black .jconfirm-bg,
.jconfirm.jconfirm-dark .jconfirm-bg {
  background-color: darkslategray;
  opacity: 0.4;
}

.jconfirm.jconfirm-black .jconfirm-box,
.jconfirm.jconfirm-dark .jconfirm-box {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: #444;
  border-radius: 5px;
  color: white;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons {
  float: right;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button {
  border: 0;
  background-image: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  text-shadow: none;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  color: white;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default {
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  background: 0;
}

.jconfirm.jconfirm-black .jconfirm-box .jconfirm-buttons button.btn-default:hover,
.jconfirm.jconfirm-dark .jconfirm-box .jconfirm-buttons button.btn-default:hover {
  background: #666;
}

.jconfirm.jconfirm-black.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c,
.jconfirm.jconfirm-dark.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0;
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-shake {
  -webkit-animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.jconfirm .jconfirm-box.hilight.jconfirm-hilight-glow {
  -webkit-animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  animation: glow 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@-webkit-keyframes shake {

  10%,
  90% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0);
  }
}

@keyframes shake {

  10%,
  90% {
    -webkit-transform: translate3d(-2px, 0, 0);
    transform: translate3d(-2px, 0, 0);
  }

  20%,
  80% {
    -webkit-transform: translate3d(4px, 0, 0);
    transform: translate3d(4px, 0, 0);
  }

  30%,
  50%,
  70% {
    -webkit-transform: translate3d(-8px, 0, 0);
    transform: translate3d(-8px, 0, 0);
  }

  40%,
  60% {
    -webkit-transform: translate3d(8px, 0, 0);
    transform: translate3d(8px, 0, 0);
  }
}

@-webkit-keyframes glow {

  0%,
  100% {
    -webkit-box-shadow: 0 0 0 red;
    box-shadow: 0 0 0 red;
  }

  50% {
    -webkit-box-shadow: 0 0 30px red;
    box-shadow: 0 0 30px red;
  }
}

@keyframes glow {

  0%,
  100% {
    -webkit-box-shadow: 0 0 0 red;
    box-shadow: 0 0 0 red;
  }

  50% {
    -webkit-box-shadow: 0 0 30px red;
    box-shadow: 0 0 30px red;
  }
}

.jconfirm {
  -webkit-perspective: 400px;
  perspective: 400px;
}

.jconfirm .jconfirm-box {
  opacity: 1;
  -webkit-transition-property: all;
  transition-property: all;
}

.jconfirm .jconfirm-box.jconfirm-animation-top,
.jconfirm .jconfirm-box.jconfirm-animation-left,
.jconfirm .jconfirm-box.jconfirm-animation-right,
.jconfirm .jconfirm-box.jconfirm-animation-bottom,
.jconfirm .jconfirm-box.jconfirm-animation-opacity,
.jconfirm .jconfirm-box.jconfirm-animation-zoom,
.jconfirm .jconfirm-box.jconfirm-animation-scale,
.jconfirm .jconfirm-box.jconfirm-animation-none,
.jconfirm .jconfirm-box.jconfirm-animation-rotate,
.jconfirm .jconfirm-box.jconfirm-animation-rotatex,
.jconfirm .jconfirm-box.jconfirm-animation-rotatey,
.jconfirm .jconfirm-box.jconfirm-animation-scaley,
.jconfirm .jconfirm-box.jconfirm-animation-scalex {
  opacity: 0;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotate {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatex {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatexr {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotatey {
  -webkit-transform: rotatey(90deg);
  transform: rotatey(90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-rotateyr {
  -webkit-transform: rotatey(-90deg);
  transform: rotatey(-90deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-scaley {
  -webkit-transform: scaley(1.5);
  transform: scaley(1.5);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-scalex {
  -webkit-transform: scalex(1.5);
  transform: scalex(1.5);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.jconfirm .jconfirm-box.jconfirm-animation-top {
  -webkit-transform: translate(0px, -100px);
  transform: translate(0px, -100px);
}

.jconfirm .jconfirm-box.jconfirm-animation-left {
  -webkit-transform: translate(-100px, 0px);
  transform: translate(-100px, 0px);
}

.jconfirm .jconfirm-box.jconfirm-animation-right {
  -webkit-transform: translate(100px, 0px);
  transform: translate(100px, 0px);
}

.jconfirm .jconfirm-box.jconfirm-animation-bottom {
  -webkit-transform: translate(0px, 100px);
  transform: translate(0px, 100px);
}

.jconfirm .jconfirm-box.jconfirm-animation-zoom {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.jconfirm .jconfirm-box.jconfirm-animation-scale {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.jconfirm .jconfirm-box.jconfirm-animation-none {
  visibility: hidden;
}

.jconfirm.jconfirm-supervan .jconfirm-bg {
  background-color: rgba(54, 70, 93, 0.95);
}

.jconfirm.jconfirm-supervan .jconfirm-box {
  background-color: transparent;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-blue {
  border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-green {
  border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-red {
  border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-orange {
  border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-purple {
  border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box.jconfirm-type-dark {
  border: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-closeIcon {
  color: white;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c {
  text-align: center;
  color: white;
  font-size: 28px;
  font-weight: normal;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c>* {
  padding-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content-pane {
  margin-bottom: 25px;
}

.jconfirm.jconfirm-supervan .jconfirm-box div.jconfirm-content {
  text-align: center;
  color: white;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons {
  text-align: center;
}

.jconfirm.jconfirm-supervan .jconfirm-box .jconfirm-buttons button {
  font-size: 16px;
  border-radius: 2px;
  background: #303f53;
  text-shadow: none;
  border: 0;
  color: white;
  padding: 10px;
  min-width: 100px;
}

.jconfirm.jconfirm-supervan.jconfirm-rtl .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0;
}

.jconfirm.jconfirm-material .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.67);
}

.jconfirm.jconfirm-material .jconfirm-box {
  background-color: white;
  -webkit-box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 13px 19px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 13px 19px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 25px 10px 25px;
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0;
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
}

.jconfirm.jconfirm-material .jconfirm-box div.jconfirm-content {
  color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons {
  text-align: right;
}

.jconfirm.jconfirm-material .jconfirm-box .jconfirm-buttons button {
  text-transform: uppercase;
  font-weight: 500;
}

.jconfirm.jconfirm-material.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-bg {
  background-color: rgba(0, 0, 0, 0.21);
}

.jconfirm.jconfirm-bootstrap .jconfirm-box {
  background-color: white;
  -webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
  border: solid 1px rgba(0, 0, 0, 0.4);
  padding: 15px 0 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  margin-right: 8px;
  margin-left: 0;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 22px;
  font-weight: bold;
  padding-left: 15px;
  padding-right: 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box div.jconfirm-content {
  color: rgba(0, 0, 0, 0.87);
  padding: 0 15px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons {
  text-align: right;
  padding: 10px;
  margin: -5px 0 0;
  border-top: solid 1px #ddd;
  overflow: hidden;
  border-radius: 0 0 4px 4px;
}

.jconfirm.jconfirm-bootstrap .jconfirm-box .jconfirm-buttons button {
  font-weight: 500;
}

.jconfirm.jconfirm-bootstrap.jconfirm-rtl .jconfirm-title-c .jconfirm-icon-c {
  margin-left: 8px;
  margin-right: 0;
}

.jconfirm.jconfirm-modern .jconfirm-bg {
  background-color: slategray;
  opacity: 0.6;
}

.jconfirm.jconfirm-modern .jconfirm-box {
  background-color: white;
  -webkit-box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 13px 19px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
  box-shadow:
    0 7px 8px -4px rgba(0, 0, 0, 0.2),
    0 13px 19px 2px rgba(0, 0, 0, 0.14),
    0 5px 24px 4px rgba(0, 0, 0, 0.12);
  padding: 30px 30px 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-closeIcon {
  color: rgba(0, 0, 0, 0.87);
  top: 15px;
  right: 15px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c {
  color: rgba(0, 0, 0, 0.87);
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c .jconfirm-icon-c {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin-right: 0;
  margin-left: 0;
  margin-bottom: 10px;
  font-size: 69px;
  color: #aaa;
}

.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-bottom: 25px;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons {
  text-align: center;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: background 0.1s;
  transition: background 0.1s;
  padding: 10px 20px;
}

.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button+button {
  margin-left: 4px;
}

.jconfirm.jconfirm-modern.jconfirm-open .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  -webkit-transform: scale(1);
  transform: scale(1);
}

/**
 * Swiper 11.1.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 21, 2024
 */

/* @font-face {
  font-family: swiper-icons;
  font-weight: 400;
  font-style: normal;
} */

:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  /* height: 100%; */
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function,
      initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  /* height: 100%; */
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition:
    0.2s transform,
    0.2s top;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s left;
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    0.2s transform,
    0.2s right;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color,
      rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid>.swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {  
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next+.swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

body {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, var(--animate-from, 100%), 0);
    transform: translate3d(0, var(--animate-from, 100%), 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__animated {
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.delay-500ms {
  -webkit-animation-delay: calc(var(--animate-delay) / 2);
  animation-delay: calc(var(--animate-delay) / 2);
}

.animate__animated.delay-1s {
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.delay-2s {
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.delay-3s {
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.delay-4s {
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.delay-5s {
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.faster {
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.fast {
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.slow {
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.slower {
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

.animate__animated.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.animate__animated.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.boots-skeleton {
  background: linear-gradient(90deg, #f2f2f2 25%, #fafafa 50%, #f2f2f2 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
}

.boots-skeleton__text {
  height: 14px;
  border-radius: 4px;
}

.boots-skeleton__text--lg {
  height: 36px;
}

@keyframes skeletonLoading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@charset "UTF-8";

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  50% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.boots-listchoice-v-style {
  --me-for-scroll: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: hidden;
}

.boots-listchoice-v-style::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.boots-custom-scroll--vertical {
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.boots-custom-scroll--vertical,
.boots-dropmenu-body {
  --me-for-scroll: 1.125rem;
  overflow-y: auto;
  mask-image:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(#f2f2f2)),
    -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      to(#f2f2f2));
  mask-image:
    linear-gradient(to top, transparent, #f2f2f2),
    linear-gradient(to left,
      transparent var(--me-for-scroll),
      #f2f2f2 var(--me-for-scroll));
  mask-size: 100% 125rem;
  -webkit-mask-image:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(#f2f2f2)),
    -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      to(#f2f2f2));
  -webkit-mask-image:
    linear-gradient(to top, transparent, #f2f2f2),
    linear-gradient(to left,
      transparent var(--me-for-scroll),
      #f2f2f2 var(--me-for-scroll));
  -webkit-mask-size: 100% 125rem;
  transition:
    mask-position 0.3s,
    -webkit-mask-position 0.3s;
  scrollbar-color: #f2f2f2 transparent;
  scrollbar-width: thin;
}

@media (max-width: 991px) {
  #sidebar-categories {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: row;
    gap: 8px;
    scroll-snap-type: x mandatory;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  #sidebar-categories::-webkit-scrollbar {
    display: none;
  }

  #sidebar-categories .category-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    white-space: nowrap;

  }

  .category-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start;
    padding: 8px 4px;
    text-align: center;
    }

  .category-item img {
    margin-bottom: 4px;
    width: 64px;
    height: 64px;
  }

  .category-item span {
    display: block;
    width: 100%;
    word-break: break-word;
    font-size: 0.95em;
    margin-top: 2px;
  }
}

@media (hover: hover) {

  .boots-custom-scroll--vertical:hover,
  .boots-dropmenu-body:hover {
    -webkit-mask-position: left top;
    mask-position: left top;
  }
}

.boots-custom-scroll--vertical::-webkit-scrollbar,
.boots-dropmenu-body::-webkit-scrollbar {
  display: block;
}

.boots-custom-scroll--vertical::-webkit-scrollbar-track,
.boots-dropmenu-body::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.boots-custom-scroll--vertical::-webkit-scrollbar,
.boots-dropmenu-body::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}

.boots-custom-scroll--vertical::-webkit-scrollbar-thumb,
.boots-dropmenu-body::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
  border: 0.125rem solid #fff;
}

.boots-custom-scroll--vertical:not(:hover),
.boots-dropmenu-body:not(:hover) {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.boots-custom-scroll--vertical:not(:hover)::-webkit-scrollbar,
.boots-dropmenu-body:not(:hover)::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.boots-badge-simple.is-selected::after,
.boots-breadcrumb .breadcrumb-item:not(:first-child)::before,
.boots-header-search .aa-InputWrapperPrefix .aa-SubmitButton:before,
.boots-list-group--check .list-group-item-action.active::before,
.boots-modal-btnclose.btn-close::before,
.btn-boots-check:not(label)::after,
.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-closeIcon .icon-close::before {
  content: " ";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  width: var(--boots-size-icon, 16px);
  height: var(--boots-size-icon, 16px);
  aspect-ratio: 1/1;
  background: currentColor;
  -webkit-transition: inherit;
  transition: inherit;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.after-none::after,
.before-none::before {
  content: none !important;
}

.display-2 {
  letter-spacing: -0.03em !important;
}

.boots-cursor-pointer {
  cursor: pointer;
}

.boots-box-shadow {
  -webkit-box-shadow: 0.25rem 0.25rem 4rem rgba(0, 0, 0, 0.04);
  box-shadow: 0.25rem 0.25rem 4rem rgba(0, 0, 0, 0.04);
}

.boots-box-shadow--btn,
.boots-header--global .boots-list-subcategory .swiper-button-next .icon-v-style:hover,
.boots-header--global .boots-list-subcategory .swiper-button-prev .icon-v-style:hover,
.boots-list-subcategory .swiper-button-next .icon-v-style:hover,
.boots-list-subcategory .swiper-button-prev .icon-v-style:hover {
  -webkit-box-shadow: 0.25rem 0.25rem 3.75rem rgba(0, 0, 0, 0.12);
  box-shadow: 0.25rem 0.25rem 3.75rem rgba(0, 0, 0, 0.12);
}

.boots-box-shadow-2 {
  -webkit-box-shadow: 0.1875rem 0.375rem 1.875rem rgba(0, 0, 0, 0.09);
  box-shadow: 0.1875rem 0.375rem 1.875rem rgba(0, 0, 0, 0.09);
}

.boots-box-shadow-3 {
  -webkit-box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.03);
  box-shadow: 0 0.1875rem 0.625rem rgba(0, 0, 0, 0.03);
}

.boots-fs-7 {
  font-size: 0.75rem !important;
}

.boots-dropmenu-menu-header,
.boots-fs-eyebrow {
  font-size: 0.625rem !important;
  line-height: 1.125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: "Calibri";
}

.boots-fs-small {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: 0.01em;
}

.boots-h6 {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5rem;
  letter-spacing: -0.02em;
}

.boots-h5,
.boots-modal__title {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.75rem;
  letter-spacing: -0.03em;
}

.boots-h4 {
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

@media (min-width: 576px) {
  .boots-h4-sm {
    font-weight: 600;
    font-size: 2rem;
    letter-spacing: -0.04em;
    line-height: 2.25rem;
  }
}

.boots-h2 {
  font-weight: 600;
  font-size: 4rem;
  line-height: 4.25rem;
  letter-spacing: -0.04em;
}

.boots-zindex {
  z-index: 10;
}

.boots-zindex-150 {
  z-index: 150;
}

.boots-zindex-none {
  z-index: 0;
}

.boots-zindex-negative {
  z-index: -1;
}

.intercom-lightweight-app {
  z-index: 101 !important;
}

.btn-link,
a {
  text-underline-offset: 0.1875rem;
}

.boots-line-clamp {
  height: auto;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: var(--lines, 6);
  -webkit-box-orient: vertical;
}

.boots-line-clamp.line-1 {
  --lines: 1;
}

.boots-line-clamp.line-2 {
  --lines: 2;
}

.boots-line-clamp.line-3 {
  --lines: 3;
}

.boots-line-clamp.line-4 {
  --lines: 4;
}

.boots-line-clamp.line-5 {
  --lines: 5;
}

.boots-gradient-text {
  background: -webkit-gradient(linear,
      right top,
      left top,
      from(#fff),
      color-stop(32%, #0b0c0c)) !important;
  background: linear-gradient(270deg, #fff 0, #0b0c0c 32%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

.boots-object-cover,
.boots-object-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.boots-object-none {
  -o-object-fit: none;
  object-fit: none;
}

.max-h-48p {
  max-height: 3rem !important;
}

.max-h-64p {
  max-height: 4rem !important;
}

.max-h-156p {
  max-height: boots(156) !important;
}

.max-h-100 {
  max-height: 100% !important;
}

.max-w-32p {
  max-width: 2rem !important;
}

.max-w-48p {
  max-width: 3rem !important;
}

.max-w-64p {
  max-width: 4rem !important;
}

.max-w-76p {
  max-width: 4.75rem !important;
}

.max-w-88p {
  max-width: 5.5rem !important;
}

.max-w-128p {
  max-width: 8rem !important;
}

.max-w-220p {
  max-width: 13.75rem !important;
}

.max-w-280p {
  max-width: 17.5rem !important;
}

.max-w-600p {
  max-width: 37.5rem !important;
}

.max-w-888p {
  max-width: 55.5rem !important;
}

.max-w-1304p {
  max-width: 81.5rem !important;
}

.min-w-48p {
  min-width: 3rem !important;
}

.min-w-64p {
  min-width: 4rem !important;
}

.min-w-76p {
  min-width: 4.75rem !important;
}

.min-w-600p {
  max-width: 37.5rem !important;
}

.min-w-888p {
  max-width: 55.5rem !important;
}

.pointer-events-none {
  pointer-events: none;
}

.rounded-4p {
  border-radius: 0.25rem !important;
}

.rounded-8p {
  border-radius: 0.5rem !important;
}

.rounded-12p {
  border-radius: 0.75rem !important;
}

.rounded-16p {
  border-radius: 1rem !important;
}

.transition-none {
  -webkit-transition: none !important;
  transition: none !important;
}

.boots-transition {
  -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.max-w-fit-content {
  max-width: -webkit-fit-content !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

@media (max-width: 767.98px) {

  .boots-scroll-x,
  .boots-swiper-mobile-mode .swiper-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-x: auto;
  }

  .boots-scroll-x::-webkit-scrollbar,
  .boots-swiper-mobile-mode .swiper-wrapper::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }

  .boots-scroll-x.has-row-padding,
  .boots-swiper-mobile-mode .has-row-padding.swiper-wrapper {
    scroll-padding: calc(var(--bs-gutter-x) * 0.5);
  }

  .boots-scroll-x__item--center {
    scroll-snap-align: center;
  }

  .boots-scroll-x__item--start {
    scroll-snap-align: start;
  }

  .boots-scroll-x__item--end {
    scroll-snap-align: end;
  }
}

.snap-type-none {
  -ms-scroll-snap-type: initial;
  scroll-snap-type: initial;
}

.snap-type-x-mandatory {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.text-decoration-underline-hover,
.underline-hover {
  text-decoration: none !important;
}

.text-decoration-underline-hover:hover,
.underline-hover:hover {
  text-decoration: underline !important;
  color: currentColor !important;
}

.boots-h-450p {
  height: 28.125rem;
}

@media (hover: hover) {
  .boots-hover-zoom__item {
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.5, 1);
    transition: transform 0.3s cubic-bezier(0, 0, 0.5, 1);
    transition:
      transform 0.3s cubic-bezier(0, 0, 0.5, 1),
      -webkit-transform 0.3s cubic-bezier(0, 0, 0.5, 1);
  }

  .boots-hover-zoom:hover .boots-hover-zoom__item {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
  }

  .boots-hover-opacity--25,
  .boots-hover-opacity--50,
  .boots-hover-opacity--75 {
    -webkit-transition: opacity 0.3s ease-in;
    transition: opacity 0.3s ease-in;
  }

  .boots-hover-opacity--25:hover {
    opacity: calc(25 / 100);
  }

  .boots-hover-opacity--50:hover {
    opacity: calc(50 / 100);
  }

  .boots-hover-opacity--75:hover {
    opacity: calc(75 / 100);
  }

  .boots-hover-show {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    z-index: 0;
  }

  .boots-hover-show:hover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    z-index: 1;
    cursor: pointer;
  }
}

body,
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body ::-webkit-input-placeholder,
html ::-webkit-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
  font-weight: 400;
  opacity: 1;
}

body ::-moz-placeholder,
html ::-moz-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
  font-weight: 400;
  opacity: 1;
}

body :-ms-input-placeholder,
html :-ms-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
  font-weight: 400;
  opacity: 1;
}

body ::-ms-input-placeholder,
html ::-ms-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
  font-weight: 400;
  opacity: 1;
}

body ::placeholder,
html ::placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
  font-weight: 400;
  opacity: 1;
}

p {
  font-size: 0.875rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.boots-bg-pro {
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(26%, #0b0c0c),
      color-stop(60.17%, #313232),
      color-stop(93.5%, #434343)) !important;
  background: linear-gradient(180deg,
      #0b0c0c 26%,
      #313232 60.17%,
      #434343 93.5%) !important;
}

.inset-0 {
  inset: 0 !important;
}

@media (min-width: 992px) {
  .boots-col-count-lg-2 {
    -webkit-column-count: 2 !important;
    -moz-column-count: 2 !important;
    column-count: 2 !important;
    -webkit-column-gap: 8.75rem !important;
    -moz-column-gap: 8.75rem !important;
    column-gap: 8.75rem !important;
  }
}

.boots-empty-hidden:empty {
  display: none !important;
}

.boots-peer-checked {
  -webkit-transition: -webkit-box-shadow 48ms ease-in-out;
  transition: box-shadow 48ms ease-in-out;
  transition:
    box-shadow 48ms ease-in-out,
    -webkit-box-shadow 48ms ease-in-out;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
}

.boots-peer-checked:hover {
  opacity: 0.8;
}

.boots-peer:checked~.boots-peer-checked {
  -webkit-box-shadow:
    0 0 0 0.1875rem #fff,
    0 0 0 0.3125rem var(--bs-boots-yellow);
  box-shadow:
    0 0 0 0.1875rem #fff,
    0 0 0 0.3125rem var(--bs-boots-yellow);
}

.boots-peer:disabled~.boots-peer-checked {
  opacity: 0.4;
  cursor: not-allowed;
}

.boots-peer:disable:active~.boots-peer-checked {
  pointer-events: none;
}

.boots-peer-hover {
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  -webkit-transition:
    opacity,
    -webkit-transform 0.4s ease-in;
  transition:
    opacity,
    transform 0.4s ease-in;
  transition:
    opacity,
    transform 0.4s ease-in,
    -webkit-transform 0.4s ease-in;
  -webkit-transform: translateY(0.0625rem);
  transform: translateY(0.0625rem);
  z-index: -2;
}

@media (hover: hover) {
  .boots-peer:hover+.boots-peer-hover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    right: 100%;
    z-index: 2;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    clip: initial;
    height: auto;
    width: initial;
    margin: initial;
  }
}

.boots-group.is-active .boots-group-active--active-bde {
  border-right: 0.125rem solid #ffd400;
}

.boots-group.is-active .boots-group-active--active-bg {
  background: #fafafa;
}

.boots-group.is-highlight .boots-group-highlight--bg,
.boots-group.is-highlight.boots-group-highlight--bg {
  background: #fffceb;
}

.boots-group:hover .boots-group-hover-show {
  opacity: 1;
  -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.boots-group:not(:hover) .boots-group-hover-show {
  display: none !important;
  opacity: 0;
}

.boots-scale {
  -webkit-transform: scale(1.6) !important;
  transform: scale(1.6) !important;
}

.position-sticky--header {
  position: sticky;
  top: 4rem;
}

.boots-break-word {
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

.dropdown-divider:not([size]) {
  height: 0;
}

.boots-mask-gradient-end {
  -webkit-mask-image: -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      color-stop(32%, #000)) !important;
  -webkit-mask-image: linear-gradient(to left,
      transparent 0,
      #000 32%) !important;
  mask-image: -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      color-stop(32%, #000)) !important;
  mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
}

.boots-mask-gradient-none {
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (min-width: 576px) {
  .boots-mask-gradient-sm-end {
    -webkit-mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    -webkit-mask-image: linear-gradient(to left,
        transparent 0,
        #000 32%) !important;
    mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
  }

  .boots-mask-gradient-sm-none {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

@media (min-width: 768px) {
  .boots-mask-gradient-md-end {
    -webkit-mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    -webkit-mask-image: linear-gradient(to left,
        transparent 0,
        #000 32%) !important;
    mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
  }

  .boots-mask-gradient-md-none {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

@media (min-width: 992px) {
  .boots-mask-gradient-lg-end {
    -webkit-mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    -webkit-mask-image: linear-gradient(to left,
        transparent 0,
        #000 32%) !important;
    mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
  }

  .boots-mask-gradient-lg-none {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

@media (min-width: 1200px) {
  .boots-mask-gradient-xl-end {
    -webkit-mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    -webkit-mask-image: linear-gradient(to left,
        transparent 0,
        #000 32%) !important;
    mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
  }

  .boots-mask-gradient-xl-none {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

@media (min-width: 1400px) {
  .boots-mask-gradient-xxl-end {
    -webkit-mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    -webkit-mask-image: linear-gradient(to left,
        transparent 0,
        #000 32%) !important;
    mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
  }

  .boots-mask-gradient-xxl-none {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

@media (min-width: 1920px) {
  .boots-mask-gradient-xxxl-end {
    -webkit-mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    -webkit-mask-image: linear-gradient(to left,
        transparent 0,
        #000 32%) !important;
    mask-image: -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        color-stop(32%, #000)) !important;
    mask-image: linear-gradient(to left, transparent 0, #000 32%) !important;
  }

  .boots-mask-gradient-xxxl-none {
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
}

.boots-mask-gradient-end,
.boots-mask-gradient-none {}

:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0b0c0c;
  --bs-secondary: #6c757d;
  --bs-success: #00aa4a;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #ff0000;
  --bs-light: #fafafa;
  --bs-dark: #0b0c0c;
  --bs-boots-yellow: #ffd400;
  --bs-boots-yellow-b: #ffd400;
  --bs-boots-black: #0b0c0c;
  --bs-boots-gray: #59595c;
  --bs-boots-soft-gray: #9ca2a4;
  --bs-boots-light-gray: #e3e7e8;
  --bs-boots-mush: #f2f2f2;
  --bs-boots-off-white: #fafafa;
  --bs-boots-stroke: #f2f2f2;
  --bs-boots-simple: #59595c;
  --bs-boots-dark: #0b0c0c;
  --bs-boots-success: #00aa4a;
  --bs-boots-danger: #ff0000;
  --bs-boots-cyan: #1c78ff;
  --bs-boots-blue: #393a77;
  --bs-boots-facebook: #5a75b2;
  --bs-boots-twitter: #55acee;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 11, 12, 12;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif:
    "Calibri", system-ui, -apple-system, blinkmacsystemfont, "Segoe UI", roboto,
    "Helvetica Neue", arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace:
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
  --bs-gradient: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #0b0c0c;
  --bs-body-bg: #fff;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 0.5px;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.h1,
h1 {
  font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {

  .h1,
  h1 {
    font-size: 2.5rem;
  }
}

.h2,
h2 {
  font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {

  .h2,
  h2 {
    font-size: 2rem;
  }
}

.h3,
h3 {
  font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {

  .h3,
  h3 {
    font-size: 1.75rem;
  }
}

.h4,
h4 {
  font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {

  .h4,
  h4 {
    font-size: 1.5rem;
  }
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

abbr[data-bs-original-title],
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

address,
dl,
ol,
ul {
  margin-bottom: 1rem;
}

dl,
ol,
ul {
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote,
figure {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}

a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  direction: ltr;
  unicode-bidi: bidi-override;
}

samp {
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

pre code {
  font-size: inherit;
  word-break: normal;
}

code,
kbd,
pre {
  font-size: 0.875em;
}

code {
  color: #d63384;
  word-wrap: break-word;
}

a>code,
pre code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  color: #fff;
  background-color: #212529;
  border-radius: 0.5rem;
}

kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #6c757d;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label,
output {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

.form-control-color:not(:disabled):not([readonly]),
.form-control[type="file"]:not(:disabled):not([readonly]),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}

legend+* {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.5rem + 3vw);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-2 {
    font-size: 3.75rem;
  }
}

.display-3 {
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 1200px) {
  .display-3 {
    font-size: 2rem;
  }
}

.list-inline,
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote> :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "— ";
}

.img-fluid,
.img-thumbnail {
  max-width: 100%;
  height: auto;
  cursor: pointer;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #6c757d;
}

.boots-container,
.boots-header-container,
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .boots-container,
  .boots-header-container,
  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .boots-container,
  .boots-header-container,
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .boots-container,
  .boots-header-container,
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .boots-container,
  .boots-header-container,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .boots-container,
  .boots-header-container,
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-1>*,
.row-cols-auto>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1>* {
  width: 100%;
}

.row-cols-2>*,
.row-cols-3>*,
.row-cols-4>*,
.row-cols-5>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3>*,
.row-cols-4>*,
.row-cols-5>* {
  width: 33.3333333333%;
}

.row-cols-4>*,
.row-cols-5>* {
  width: 25%;
}

.row-cols-5>* {
  width: 20%;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-auto,
.row-cols-6>* {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-auto {
  width: auto;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5 {
  width: 8.33333333%;
}

.col-2,
.col-3,
.col-4,
.col-5 {
  width: 16.66666667%;
}

.col-3,
.col-4,
.col-5 {
  width: 25%;
}

.col-4,
.col-5 {
  width: 33.33333333%;
}

.col-5 {
  width: 41.66666667%;
}

.col-10,
.col-11,
.col-12,
.col-6,
.col-7,
.col-8,
.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-10,
.col-11,
.col-12,
.col-7,
.col-8,
.col-9 {
  width: 58.33333333%;
}

.col-10,
.col-11,
.col-12,
.col-8,
.col-9 {
  width: 66.66666667%;
}

.col-10,
.col-11,
.col-12,
.col-9 {
  width: 75%;
}

.col-10,
.col-11,
.col-12 {
  width: 83.33333333%;
}

.col-11,
.col-12 {
  width: 91.66666667%;
}

.col-12 {
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-sm-1>*,
  .row-cols-sm-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1>* {
    width: 100%;
  }

  .row-cols-sm-2>*,
  .row-cols-sm-3>*,
  .row-cols-sm-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3>*,
  .row-cols-sm-4>* {
    width: 33.3333333333%;
  }

  .row-cols-sm-4>* {
    width: 25%;
  }

  .col-sm-1,
  .col-sm-auto,
  .row-cols-sm-5>*,
  .row-cols-sm-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .col-sm-1,
  .col-sm-auto,
  .row-cols-sm-6>* {
    width: 16.6666666667%;
  }

  .col-sm-1,
  .col-sm-auto {
    width: auto;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7 {
    width: 25%;
  }

  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7 {
    width: 33.33333333%;
  }

  .col-sm-5,
  .col-sm-6,
  .col-sm-7 {
    width: 41.66666667%;
  }

  .col-sm-6,
  .col-sm-7 {
    width: 50%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-8,
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    width: 83.33333333%;
  }

  .col-sm-11,
  .col-sm-12 {
    width: 91.66666667%;
  }

  .col-sm-12 {
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-md-1>*,
  .row-cols-md-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1>* {
    width: 100%;
  }

  .row-cols-md-2>*,
  .row-cols-md-3>*,
  .row-cols-md-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3>*,
  .row-cols-md-4>* {
    width: 33.3333333333%;
  }

  .row-cols-md-4>* {
    width: 25%;
  }

  .col-md-1,
  .col-md-auto,
  .row-cols-md-5>*,
  .row-cols-md-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .col-md-1,
  .col-md-auto,
  .row-cols-md-6>* {
    width: 16.6666666667%;
  }

  .col-md-1,
  .col-md-auto {
    width: auto;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7 {
    width: 25%;
  }

  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7 {
    width: 33.33333333%;
  }

  .col-md-5,
  .col-md-6,
  .col-md-7 {
    width: 41.66666667%;
  }

  .col-md-6,
  .col-md-7 {
    width: 50%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-8,
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-9 {
    width: 75%;
  }

  .col-md-10,
  .col-md-11,
  .col-md-12 {
    width: 83.33333333%;
  }

  .col-md-11,
  .col-md-12 {
    width: 91.66666667%;
  }

  .col-md-12 {
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-lg-1>*,
  .row-cols-lg-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1>* {
    width: 100%;
  }

  .row-cols-lg-2>*,
  .row-cols-lg-3>*,
  .row-cols-lg-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3>*,
  .row-cols-lg-4>* {
    width: 33.3333333333%;
  }

  .row-cols-lg-4>* {
    width: 25%;
  }

  .col-lg-1,
  .col-lg-auto,
  .row-cols-lg-5>*,
  .row-cols-lg-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .col-lg-1,
  .col-lg-auto,
  .row-cols-lg-6>* {
    width: 16.6666666667%;
  }

  .col-lg-1,
  .col-lg-auto {
    width: auto;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7 {
    width: 25%;
  }

  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7 {
    width: 33.33333333%;
  }

  .col-lg-5,
  .col-lg-6,
  .col-lg-7 {
    width: 41.66666667%;
  }

  .col-lg-6,
  .col-lg-7 {
    width: 50%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-8,
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    width: 83.33333333%;
  }

  .col-lg-11,
  .col-lg-12 {
    width: 91.66666667%;
  }

  .col-lg-12 {
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xl-1>*,
  .row-cols-xl-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1>* {
    width: 100%;
  }

  .row-cols-xl-2>*,
  .row-cols-xl-3>*,
  .row-cols-xl-4>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3>*,
  .row-cols-xl-4>* {
    width: 33.3333333333%;
  }

  .row-cols-xl-4>* {
    width: 25%;
  }

  .col-xl-1,
  .col-xl-auto,
  .row-cols-xl-5>*,
  .row-cols-xl-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .col-xl-1,
  .col-xl-auto,
  .row-cols-xl-6>* {
    width: 16.6666666667%;
  }

  .col-xl-1,
  .col-xl-auto {
    width: auto;
  }

  .col-xl-1 {
    width: 8.33333333%;
  }

  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7 {
    width: 25%;
  }

  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7 {
    width: 33.33333333%;
  }

  .col-xl-5,
  .col-xl-6,
  .col-xl-7 {
    width: 41.66666667%;
  }

  .col-xl-6,
  .col-xl-7 {
    width: 50%;
  }

  .col-xl-7 {
    width: 58.33333333%;
  }

  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-8,
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-10,
  .col-xl-11,
  .col-xl-12,
  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    width: 83.33333333%;
  }

  .col-xl-11,
  .col-xl-12 {
    width: 91.66666667%;
  }

  .col-xl-12 {
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xxl-1>*,
  .row-cols-xxl-2>*,
  .row-cols-xxl-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1>*,
  .row-cols-xxl-2>* {
    width: 100%;
  }

  .row-cols-xxl-2>* {
    width: 50%;
  }

  .row-cols-xxl-3>*,
  .row-cols-xxl-4>*,
  .row-cols-xxl-5>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4>*,
  .row-cols-xxl-5>* {
    width: 25%;
  }

  .row-cols-xxl-5>* {
    width: 20%;
  }

  .col-xxl-1,
  .col-xxl-2,
  .col-xxl-auto,
  .row-cols-xxl-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .col-xxl-1,
  .col-xxl-2,
  .col-xxl-auto {
    width: auto;
  }

  .col-xxl-1,
  .col-xxl-2 {
    width: 8.33333333%;
  }

  .col-xxl-2 {
    width: 16.66666667%;
  }

  .col-xxl-3,
  .col-xxl-4,
  .col-xxl-5,
  .col-xxl-6,
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4,
  .col-xxl-5,
  .col-xxl-6,
  .col-xxl-7 {
    width: 33.33333333%;
  }

  .col-xxl-5,
  .col-xxl-6,
  .col-xxl-7 {
    width: 41.66666667%;
  }

  .col-xxl-6,
  .col-xxl-7 {
    width: 50%;
  }

  .col-xxl-7 {
    width: 58.33333333%;
  }

  .col-xxl-10,
  .col-xxl-11,
  .col-xxl-12,
  .col-xxl-8,
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-10,
  .col-xxl-11,
  .col-xxl-12,
  .col-xxl-9 {
    width: 75%;
  }

  .col-xxl-10,
  .col-xxl-11,
  .col-xxl-12 {
    width: 83.33333333%;
  }

  .col-xxl-11,
  .col-xxl-12 {
    width: 91.66666667%;
  }

  .col-xxl-12 {
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}

@media (min-width: 1920px) {
  .col-xxxl {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xxxl-auto>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxxl-1>*,
  .row-cols-xxxl-2>*,
  .row-cols-xxxl-3>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxxl-2>*,
  .row-cols-xxxl-3>* {
    width: 50%;
  }

  .row-cols-xxxl-3>* {
    width: 33.3333333333%;
  }

  .row-cols-xxxl-4>*,
  .row-cols-xxxl-5>*,
  .row-cols-xxxl-6>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxxl-5>*,
  .row-cols-xxxl-6>* {
    width: 20%;
  }

  .row-cols-xxxl-6>* {
    width: 16.6666666667%;
  }

  .col-xxxl-1,
  .col-xxxl-2,
  .col-xxxl-3,
  .col-xxxl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxxl-1,
  .col-xxxl-2,
  .col-xxxl-3 {
    width: 8.33333333%;
  }

  .col-xxxl-2,
  .col-xxxl-3 {
    width: 16.66666667%;
  }

  .col-xxxl-3 {
    width: 25%;
  }

  .col-xxxl-4,
  .col-xxxl-5,
  .col-xxxl-6,
  .col-xxxl-7,
  .col-xxxl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxxl-5,
  .col-xxxl-6,
  .col-xxxl-7,
  .col-xxxl-8 {
    width: 41.66666667%;
  }

  .col-xxxl-6,
  .col-xxxl-7,
  .col-xxxl-8 {
    width: 50%;
  }

  .col-xxxl-7,
  .col-xxxl-8 {
    width: 58.33333333%;
  }

  .col-xxxl-8 {
    width: 66.66666667%;
  }

  .col-xxxl-10,
  .col-xxxl-11,
  .col-xxxl-12,
  .col-xxxl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxxl-10,
  .col-xxxl-11,
  .col-xxxl-12 {
    width: 83.33333333%;
  }

  .col-xxxl-11,
  .col-xxxl-12 {
    width: 91.66666667%;
  }

  .col-xxxl-12 {
    width: 100%;
  }

  .offset-xxxl-0 {
    margin-left: 0;
  }

  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxxl-3 {
    margin-left: 25%;
  }

  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxxl-6 {
    margin-left: 50%;
  }

  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxxl-9 {
    margin-left: 75%;
  }

  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxxl-0,
  .gx-xxxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxxl-0,
  .gy-xxxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxxl-1,
  .gx-xxxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxxl-1,
  .gy-xxxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxxl-2,
  .gx-xxxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxxl-2,
  .gy-xxxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxxl-3,
  .gx-xxxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxxl-3,
  .gy-xxxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxxl-4,
  .gx-xxxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxxl-4,
  .gy-xxxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxxl-5,
  .gx-xxxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxxl-5,
  .gy-xxxl-5 {
    --bs-gutter-y: 3rem;
  }
}

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #0b0c0c;
  --bs-table-striped-bg: #f2f2f2;
  --bs-table-active-color: #0b0c0c;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #0b0c0c;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #0b0c0c;
  vertical-align: top;
  border-color: #f2f2f2;
}

.table> :not(caption)>*>* {
  padding: 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
  box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}

.table>tbody {
  vertical-align: inherit;
}

.table>thead {
  vertical-align: bottom;
}

.table> :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm> :not(caption)>*>* {
  padding: 0.25rem;
}

.table-bordered> :not(caption)>* {
  border-width: 1px 0;
}

.table-bordered> :not(caption)>*>* {
  border-width: 0 1px;
}

.table-borderless> :not(caption)>*>* {
  border-bottom-width: 0;
}

.table-borderless> :not(:first-child) {
  border-top-width: 0;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover>tbody>tr:hover>* {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c5d7f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bacbe6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bfd1ec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bacbe6;
}

.table-secondary {
  --bs-table-bg: #e2e3e5;
  --bs-table-striped-bg: #d7d8da;
  --bs-table-active-bg: #cbccce;
  --bs-table-hover-bg: #d1d2d4;
  border-color: #cbccce;
}

.table-info,
.table-secondary,
.table-success {
  --bs-table-striped-color: #000;
  --bs-table-active-color: #000;
  --bs-table-hover-color: #000;
  color: #000;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c7dbd2;
  --bs-table-active-bg: #bcd0c7;
  --bs-table-hover-bg: #c1d6cc;
  border-color: #bcd0c7;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c5e8ef;
  --bs-table-active-bg: #badce3;
  --bs-table-hover-bg: #bfe2e9;
  border-color: #badce3;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f2e7c3;
  --bs-table-active-bg: #e6dbb9;
  --bs-table-hover-bg: #ece1be;
  border-color: #e6dbb9;
}

.table-danger,
.table-light,
.table-warning {
  --bs-table-striped-color: #000;
  --bs-table-active-color: #000;
  --bs-table-hover-color: #000;
  color: #000;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #eccccf;
  --bs-table-active-bg: #dfc2c4;
  --bs-table-hover-bg: #e5c7ca;
  border-color: #dfc2c4;
}

.table-light {
  --bs-table-bg: #f8f9fa;
  --bs-table-striped-bg: #ecedee;
  --bs-table-active-bg: #dfe0e1;
  --bs-table-hover-bg: #e5e6e7;
  border-color: #dfe0e1;
}

.table-dark {
  --bs-table-bg: #212529;
  --bs-table-striped-bg: #2c3034;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #373b3e;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #323539;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #373b3e;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 1919.98px) {
  .table-responsive-xxxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: calc(0.7rem + 1px);
  padding-bottom: calc(0.7rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(1.5rem + 1px);
  padding-bottom: calc(1.5rem + 1px);
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.438rem + 1px);
  padding-bottom: calc(0.438rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0b0c0c;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #e3e7e8;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.5rem;
  -webkit-transition:
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control[type="file"] {
  overflow: hidden;
}

.form-control:focus {
  color: #0b0c0c;
  background-color: #fff;
  border-color: #0b0c0c;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: #fafafa;
  opacity: 1;
}

.form-control::file-selector-button {
  padding: 0.7rem 1.2rem;
  margin: -0.7rem -1.2rem;
  -webkit-margin-end: 1.2rem;
  margin-inline-end: 1.2rem;
  color: #0b0c0c;
  background-color: #fff;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }

  .form-control::file-selector-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #f2f2f2;
}

.form-control::-webkit-file-upload-button {
  padding: 0.7rem 1.2rem;
  margin: -0.7rem -1.2rem;
  -webkit-margin-end: 1.2rem;
  margin-inline-end: 1.2rem;
  color: #0b0c0c;
  background-color: #fff;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #f2f2f2;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.7rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #0b0c0c;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.876rem + 2px);
  padding: 0.438rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.form-control-sm::file-selector-button {
  padding: 0.438rem 1rem;
  margin: -0.438rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

.form-control-sm::-webkit-file-upload-button {
  padding: 0.438rem 1rem;
  margin: -0.438rem -1rem;
  -webkit-margin-end: 1rem;
  margin-inline-end: 1rem;
}

.form-control-lg {
  min-height: calc(1.5em + 3rem + 2px);
  padding: 1.5rem 1.8rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.form-control-lg::file-selector-button {
  padding: 1.5rem 1.8rem;
  margin: -1.5rem -1.8rem;
  -webkit-margin-end: 1.8rem;
  margin-inline-end: 1.8rem;
}

.form-control-lg::-webkit-file-upload-button {
  padding: 1.5rem 1.8rem;
  margin: -1.5rem -1.8rem;
  -webkit-margin-end: 1.8rem;
  margin-inline-end: 1.8rem;
}

textarea.form-control {
  min-height: calc(1.5em + 1.4rem + 2px);
}

textarea.form-control-sm {
  min-height: calc(1.5em + 0.876rem + 2px);
}

textarea.form-control-lg {
  min-height: calc(1.5em + 3rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.7rem;
}

.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.5rem;
}

.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.5rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.7rem 3.6rem 0.7rem 1.2rem;
  -moz-padding-start: calc(1.2rem - 3px);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0b0c0c;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 16px 12px;
  border: 1px solid #e3e7e8;
  border-radius: 0.5rem;
  -webkit-transition:
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-select {
    -webkit-transition: none;
    transition: none;
  }
}

.form-select:focus {
  border-color: #0b0c0c;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-select[multiple],
.form-select[size]:not([size="1"]) {
  padding-right: 1.2rem;
  background-image: none;
}

.form-select:disabled {
  background-color: #f2f2f2;
}

.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #0b0c0c;
}

.form-select-lg,
.form-select-sm {
  padding-top: 0.438rem;
  padding-bottom: 0.438rem;
  padding-left: 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.form-select-lg {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 1.8rem;
  font-size: 1.25rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}

.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
}

.form-check-input[type="checkbox"] {
  border-radius: 0.25em;
}

.form-check-input[type="radio"] {
  border-radius: 50%;
}

.form-check-input:active {
  -webkit-filter: brightness(96%);
  filter: brightness(96%);
}

.form-check-input:focus {
  border-color: #0b0c0c;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.form-check-input:checked[type="checkbox"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

.form-check-input:checked[type="radio"] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-input[type="checkbox"]:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}

.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.5;
}

.form-check-input:disabled~.form-check-label,
.form-check-input[disabled]~.form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}

.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}

.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle   r='3' fill='rgba%280,0,0,.25%29'/%3e%3c/svg%3e");
}

.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.btn-check:disabled+.btn,
.btn-check[disabled]+.btn {
  pointer-events: none;
  -webkit-filter: none;
  filter: none;
  opacity: 0.4;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-range:focus {
  outline: 0;
}

.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow:
    0 0 0 1px #fff,
    none;
  box-shadow:
    0 0 0 1px #fff,
    none;
}

.form-range:focus::-moz-range-thumb {
  box-shadow:
    0 0 0 1px #fff,
    none;
}

.form-range::-moz-focus-outer {
  border: 0;
}

.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}

.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.form-range:disabled {
  pointer-events: none;
}

.form-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.form-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.form-floating {
  position: relative;
}

.form-floating>.form-control,
.form-floating>.form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}

.form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1.2rem;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transition:
    opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition:
    opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .form-floating>label {
    -webkit-transition: none;
    transition: none;
  }
}

.form-floating>.form-control {
  padding: 1rem 1.2rem;
}

.form-floating>.form-control:not(:-moz-placeholder-shown),
.form-floating>.form-control:not(:-ms-input-placeholder) {
  padding-bottom: 1em;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding-bottom: 1em;
}

.form-floating>.form-control:-webkit-autofill {
  padding-top: 1rem;
  padding-bottom: 1em;
}

.form-floating>.form-select {
  padding-top: 1rem;
  padding-bottom: 1em;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label,
.form-floating>.form-control:not(:-ms-input-placeholder)~label {
  transform: scale(0.857) translateY(calc(-50% - 1px)) translateX(0.15rem);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  -webkit-transform: scale(0.857) translateY(calc(-50% - 1px)) translateX(0.15rem);
  transform: scale(0.857) translateY(calc(-50% - 1px)) translateX(0.15rem);
}

.form-floating>.form-control:-webkit-autofill~label {
  opacity: 0.65;
  -webkit-transform: scale(0.857) translateY(calc(-50% - 1px)) translateX(0.15rem);
  transform: scale(0.857) translateY(calc(-50% - 1px)) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

.input-group>.form-control,
.input-group>.form-select {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group .btn:focus,
.input-group>.form-control:focus,
.input-group>.form-select:focus {
  z-index: 3;
}

.input-group .btn {
  position: relative;
  z-index: 2;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.7rem 1.2rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0b0c0c;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #e3e7e8;
  border-radius: 0.5rem;
}

.input-group-lg>.btn,
.input-group-lg>.form-control,
.input-group-lg>.form-select,
.input-group-lg>.input-group-text {
  padding: 1.5rem 1.8rem;
  font-size: 1.25rem;
  border-radius: 0.5rem;
}

.input-group-sm>.btn,
.input-group-sm>.form-control,
.input-group-sm>.form-select,
.input-group-sm>.input-group-text {
  padding: 0.438rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.input-group-lg>.form-select,
.input-group-sm>.form-select {
  padding-right: 4.8rem;
}

.input-group.has-validation>.dropdown-toggle:nth-last-child(n + 4),
.input-group.has-validation> :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n + 3),
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group> :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #00aa4a;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(0, 170, 74, 0.9);
  border-radius: 0.5rem;
}

.is-valid~.valid-feedback,
.is-valid~.valid-tooltip,
.was-validated :valid~.valid-feedback,
.was-validated :valid~.valid-tooltip {
  display: block;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #00aa4a;
  padding-right: calc(1.5em + 1.4rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2300aa4a' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.35rem) center;
  background-size: calc(0.75em + 0.7rem) calc(0.75em + 0.7rem);
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #00aa4a;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 170, 74, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(0, 170, 74, 0.25);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1.4rem);
  background-position: top calc(0.375em + 0.35rem) right calc(0.375em + 0.35rem);
}

.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: #00aa4a;
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"] {
  padding-right: 6.6rem;
  background-position:
    right 1.2rem center,
    center right 3.6rem;
  background-size:
    16px 12px,
    calc(0.75em + 0.7rem) calc(0.75em + 0.7rem);
}

.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
  border-color: #00aa4a;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 170, 74, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(0, 170, 74, 0.25);
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
  border-color: #00aa4a;
}

.form-check-input.is-valid:checked,
.was-validated .form-check-input:valid:checked {
  background-color: #00aa4a;
}

.form-check-input.is-valid:focus,
.was-validated .form-check-input:valid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 170, 74, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(0, 170, 74, 0.25);
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
  color: #00aa4a;
}

.form-check-inline .form-check-input~.valid-feedback {
  margin-left: 0.5em;
}

.input-group .form-control.is-valid,
.input-group .form-select.is-valid,
.was-validated .input-group .form-control:valid,
.was-validated .input-group .form-select:valid {
  z-index: 1;
}

.input-group .form-control.is-valid:focus,
.input-group .form-select.is-valid:focus,
.was-validated .input-group .form-control:valid:focus,
.was-validated .input-group .form-select:valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: red;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #000;
  background-color: rgba(255, 0, 0, 0.9);
  border-radius: 0.5rem;
}

.is-invalid~.invalid-feedback,
.is-invalid~.invalid-tooltip,
.was-validated :invalid~.invalid-feedback,
.was-validated :invalid~.invalid-tooltip {
  display: block;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: red;
  padding-right: calc(1.5em + 1.4rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0000'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0000' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.35rem) center;
  background-size: calc(0.75em + 0.7rem) calc(0.75em + 0.7rem);
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: red;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1.4rem);
  background-position: top calc(0.375em + 0.35rem) right calc(0.375em + 0.35rem);
}

.form-select.is-invalid,
.was-validated .form-select:invalid {
  border-color: red;
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"] {
  padding-right: 6.6rem;
  background-image:
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),
    url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0000'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0000' stroke='none'/%3e%3c/svg%3e");
  background-position:
    right 1.2rem center,
    center right 3.6rem;
  background-size:
    16px 12px,
    calc(0.75em + 0.7rem) calc(0.75em + 0.7rem);
}

.form-select.is-invalid:focus,
.was-validated .form-select:invalid:focus {
  border-color: red;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
  border-color: red;
}

.form-check-input.is-invalid:checked,
.was-validated .form-check-input:invalid:checked {
  background-color: red;
}

.form-check-input.is-invalid:focus,
.was-validated .form-check-input:invalid:focus {
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 0, 0.25);
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
  color: red;
}

.form-check-inline .form-check-input~.invalid-feedback {
  margin-left: 0.5em;
}

.input-group .form-control.is-invalid,
.input-group .form-select.is-invalid,
.was-validated .input-group .form-control:invalid,
.was-validated .input-group .form-select:invalid {
  z-index: 2;
}

.input-group .form-control.is-invalid:focus,
.input-group .form-select.is-invalid:focus,
.was-validated .input-group .form-control:invalid:focus,
.was-validated .input-group .form-select:invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-weight: 400;
  line-height: 1.68;
  color: #0b0c0c;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}

.btn:hover {
  color: #0b0c0c;
}

.btn-check:focus+.btn,
.btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.4;
}

.btn-primary {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-primary:hover {
  border-color: #090a0a;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  color: #fff;
  background-color: #090a0a;
  border-color: #090a0a;
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-check:active+.btn-primary,
.btn-check:checked+.btn-primary,
.btn-primary.active,
.btn-primary:active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #090a0a;
  border-color: #080909;
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-primary.disabled,
.btn-primary:disabled {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover {
  border-color: #565e64;
}

.btn-check:focus+.btn-secondary,
.btn-secondary:focus {
  color: #fff;
  background-color: #5c636a;
  border-color: #565e64;
  -webkit-box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
  box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}

.btn-check:active+.btn-secondary,
.btn-check:checked+.btn-secondary,
.btn-secondary.active,
.btn-secondary:active,
.show>.btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #565e64;
  border-color: #51585e;
}

.btn-check:active+.btn-secondary:focus,
.btn-check:checked+.btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show>.btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
  box-shadow: 0 0 0 0 rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-success {
  color: #000;
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.btn-success:hover {
  border-color: #1ab35c;
}

.btn-check:focus+.btn-success,
.btn-success:focus {
  color: #000;
  background-color: #26b765;
  border-color: #1ab35c;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
}

.btn-check:active+.btn-success,
.btn-check:checked+.btn-success,
.btn-success.active,
.btn-success:active,
.show>.btn-success.dropdown-toggle {
  color: #000;
  background-color: #33bb6e;
  border-color: #1ab35c;
}

.btn-check:active+.btn-success:focus,
.btn-check:checked+.btn-success:focus,
.btn-success.active:focus,
.btn-success:active:focus,
.show>.btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
}

.btn-success.disabled,
.btn-success:disabled {
  color: #000;
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.btn-info {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-info:hover {
  border-color: #25cff2;
}

.btn-check:focus+.btn-info,
.btn-info:focus {
  color: #000;
  background-color: #31d2f2;
  border-color: #25cff2;
  -webkit-box-shadow: 0 0 0 0 rgba(11, 172, 204, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 172, 204, 0.5);
}

.btn-check:active+.btn-info,
.btn-check:checked+.btn-info,
.btn-info.active,
.btn-info:active,
.show>.btn-info.dropdown-toggle {
  color: #000;
  background-color: #3dd5f3;
  border-color: #25cff2;
}

.btn-check:active+.btn-info:focus,
.btn-check:checked+.btn-info:focus,
.btn-info.active:focus,
.btn-info:active:focus,
.show>.btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 172, 204, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 172, 204, 0.5);
}

.btn-info.disabled,
.btn-info:disabled {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  border-color: #ffc720;
}

.btn-check:focus+.btn-warning,
.btn-warning:focus {
  color: #000;
  background-color: #ffca2c;
  border-color: #ffc720;
  -webkit-box-shadow: 0 0 0 0 rgba(217, 164, 6, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 164, 6, 0.5);
}

.btn-check:active+.btn-warning,
.btn-check:checked+.btn-warning,
.btn-warning.active,
.btn-warning:active,
.show>.btn-warning.dropdown-toggle {
  color: #000;
  background-color: #ffcd39;
  border-color: #ffc720;
}

.btn-check:active+.btn-warning:focus,
.btn-check:checked+.btn-warning:focus,
.btn-warning.active:focus,
.btn-warning:active:focus,
.show>.btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(217, 164, 6, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 164, 6, 0.5);
}

.btn-warning.disabled,
.btn-warning:disabled {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #000;
  background-color: red;
  border-color: red;
}

.btn-danger:hover {
  border-color: #ff1a1a;
}

.btn-check:focus+.btn-danger,
.btn-danger:focus {
  color: #000;
  background-color: #ff2626;
  border-color: #ff1a1a;
  -webkit-box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
}

.btn-check:active+.btn-danger,
.btn-check:checked+.btn-danger,
.btn-danger.active,
.btn-danger:active,
.show>.btn-danger.dropdown-toggle {
  color: #000;
  background-color: #f33;
  border-color: #ff1a1a;
}

.btn-check:active+.btn-danger:focus,
.btn-check:checked+.btn-danger:focus,
.btn-danger.active:focus,
.btn-danger:active:focus,
.show>.btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
  color: #000;
  background-color: red;
  border-color: red;
}

.btn-light {
  color: #000;
  background-color: #fafafa;
  border-color: #fafafa;
}

.btn-light:hover {
  border-color: #fbfbfb;
}

.btn-check:focus+.btn-light,
.btn-light:focus {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
  -webkit-box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
}

.btn-check:active+.btn-light,
.btn-check:checked+.btn-light,
.btn-light.active,
.btn-light:active,
.show>.btn-light.dropdown-toggle {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}

.btn-check:active+.btn-light:focus,
.btn-check:checked+.btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show>.btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
}

.btn-light.disabled,
.btn-light:disabled {
  color: #000;
  background-color: #fafafa;
  border-color: #fafafa;
}

.btn-dark {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-dark:hover {
  border-color: #090a0a;
}

.btn-check:focus+.btn-dark,
.btn-dark:focus {
  color: #fff;
  background-color: #090a0a;
  border-color: #090a0a;
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-check:active+.btn-dark,
.btn-check:checked+.btn-dark,
.btn-dark.active,
.btn-dark:active,
.show>.btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #090a0a;
  border-color: #080909;
}

.btn-check:active+.btn-dark:focus,
.btn-check:checked+.btn-dark:focus,
.btn-dark.active:focus,
.btn-dark:active:focus,
.show>.btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-dark.disabled,
.btn-dark:disabled {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-boots-yellow,
.btn-boots-yellow-b {
  color: #000;
  background-color: #ffd400;
  border-color: #ffd400;
}

.btn-boots-yellow:hover {
  border-color: #ffd81a;
}

.btn-boots-yellow:focus,
.btn-check:focus+.btn-boots-yellow {
  color: #000;
  background-color: #ffda26;
  border-color: #ffd81a;
  -webkit-box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
}

.btn-boots-yellow.active,
.btn-boots-yellow:active,
.btn-check:active+.btn-boots-yellow,
.btn-check:checked+.btn-boots-yellow,
.show>.btn-boots-yellow.dropdown-toggle {
  color: #000;
  background-color: #fd3;
  border-color: #ffd81a;
}

.btn-boots-yellow.active:focus,
.btn-boots-yellow:active:focus,
.btn-check:active+.btn-boots-yellow:focus,
.btn-check:checked+.btn-boots-yellow:focus,
.show>.btn-boots-yellow.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
}

.btn-boots-yellow.disabled,
.btn-boots-yellow:disabled {
  color: #000;
  background-color: #ffd400;
  border-color: #ffd400;
}

.btn-boots-yellow-b:hover {
  border-color: #ffd81a;
}

.btn-boots-yellow-b:focus,
.btn-check:focus+.btn-boots-yellow-b {
  color: #000;
  background-color: #ffda26;
  border-color: #ffd81a;
  -webkit-box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
}

.btn-boots-yellow-b.active,
.btn-boots-yellow-b:active,
.btn-check:active+.btn-boots-yellow-b,
.btn-check:checked+.btn-boots-yellow-b,
.show>.btn-boots-yellow-b.dropdown-toggle {
  color: #000;
  background-color: #fd3;
  border-color: #ffd81a;
}

.btn-boots-yellow-b.active:focus,
.btn-boots-yellow-b:active:focus,
.btn-check:active+.btn-boots-yellow-b:focus,
.btn-check:checked+.btn-boots-yellow-b:focus,
.show>.btn-boots-yellow-b.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 180, 0, 0.5);
}

.btn-boots-yellow-b.disabled,
.btn-boots-yellow-b:disabled {
  color: #000;
  background-color: #ffd400;
  border-color: #ffd400;
}

.btn-boots-black {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-boots-black:hover {
  color: #fff;
  border-color: #090a0a;
}

.btn-boots-black:focus,
.btn-check:focus+.btn-boots-black {
  color: #fff;
  background-color: #090a0a;
  border-color: #090a0a;
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-boots-black.active,
.btn-boots-black:active,
.btn-check:active+.btn-boots-black,
.btn-check:checked+.btn-boots-black,
.show>.btn-boots-black.dropdown-toggle {
  color: #fff;
  background-color: #090a0a;
  border-color: #080909;
}

.btn-boots-black.active:focus,
.btn-boots-black:active:focus,
.btn-check:active+.btn-boots-black:focus,
.btn-check:checked+.btn-boots-black:focus,
.show>.btn-boots-black.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-boots-black.disabled,
.btn-boots-black:disabled {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-boots-gray {
  color: #fff;
  background-color: #59595c;
  border-color: #59595c;
}

.btn-boots-gray:hover {
  border-color: #47474a;
}

.btn-boots-gray:focus,
.btn-check:focus+.btn-boots-gray {
  color: #fff;
  background-color: #4c4c4e;
  border-color: #47474a;
  -webkit-box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
}

.btn-boots-gray.active,
.btn-boots-gray:active,
.btn-check:active+.btn-boots-gray,
.btn-check:checked+.btn-boots-gray,
.show>.btn-boots-gray.dropdown-toggle {
  color: #fff;
  background-color: #47474a;
  border-color: #434345;
}

.btn-boots-gray.active:focus,
.btn-boots-gray:active:focus,
.btn-check:active+.btn-boots-gray:focus,
.btn-check:checked+.btn-boots-gray:focus,
.show>.btn-boots-gray.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
}

.btn-boots-gray.disabled,
.btn-boots-gray:disabled {
  color: #fff;
  background-color: #59595c;
  border-color: #59595c;
}

.btn-boots-soft-gray {
  color: #000;
  background-color: #9ca2a4;
  border-color: #9ca2a4;
}

.btn-boots-soft-gray:hover {
  border-color: #a6abad;
}

.btn-boots-soft-gray:focus,
.btn-check:focus+.btn-boots-soft-gray {
  color: #000;
  background-color: #abb0b2;
  border-color: #a6abad;
  -webkit-box-shadow: 0 0 0 0 rgba(133, 138, 139, 0.5);
  box-shadow: 0 0 0 0 rgba(133, 138, 139, 0.5);
}

.btn-boots-soft-gray.active,
.btn-boots-soft-gray:active,
.btn-check:active+.btn-boots-soft-gray,
.btn-check:checked+.btn-boots-soft-gray,
.show>.btn-boots-soft-gray.dropdown-toggle {
  color: #000;
  background-color: #b0b5b6;
  border-color: #a6abad;
}

.btn-boots-soft-gray.active:focus,
.btn-boots-soft-gray:active:focus,
.btn-check:active+.btn-boots-soft-gray:focus,
.btn-check:checked+.btn-boots-soft-gray:focus,
.show>.btn-boots-soft-gray.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(133, 138, 139, 0.5);
  box-shadow: 0 0 0 0 rgba(133, 138, 139, 0.5);
}

.btn-boots-soft-gray.disabled,
.btn-boots-soft-gray:disabled {
  color: #000;
  background-color: #9ca2a4;
  border-color: #9ca2a4;
}

.btn-boots-light-gray {
  color: #000;
  background-color: #e3e7e8;
  border-color: #e3e7e8;
}

.btn-boots-light-gray:hover {
  border-color: #e6e9ea;
}

.btn-boots-light-gray:focus,
.btn-check:focus+.btn-boots-light-gray {
  color: #000;
  background-color: #e7ebeb;
  border-color: #e6e9ea;
  -webkit-box-shadow: 0 0 0 0 rgba(193, 196, 197, 0.5);
  box-shadow: 0 0 0 0 rgba(193, 196, 197, 0.5);
}

.btn-boots-light-gray.active,
.btn-boots-light-gray:active,
.btn-check:active+.btn-boots-light-gray,
.btn-check:checked+.btn-boots-light-gray,
.show>.btn-boots-light-gray.dropdown-toggle {
  color: #000;
  background-color: #e9eced;
  border-color: #e6e9ea;
}

.btn-boots-light-gray.active:focus,
.btn-boots-light-gray:active:focus,
.btn-check:active+.btn-boots-light-gray:focus,
.btn-check:checked+.btn-boots-light-gray:focus,
.show>.btn-boots-light-gray.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(193, 196, 197, 0.5);
  box-shadow: 0 0 0 0 rgba(193, 196, 197, 0.5);
}

.btn-boots-light-gray.disabled,
.btn-boots-light-gray:disabled {
  color: #000;
  background-color: #e3e7e8;
  border-color: #e3e7e8;
}

.btn-boots-mush {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-boots-mush:hover {
  border-color: #f3f3f3;
}

.btn-boots-mush:focus,
.btn-check:focus+.btn-boots-mush {
  color: #000;
  background-color: #f4f4f4;
  border-color: #f3f3f3;
  -webkit-box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
  box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
}

.btn-boots-mush.active,
.btn-boots-mush:active,
.btn-check:active+.btn-boots-mush,
.btn-check:checked+.btn-boots-mush,
.show>.btn-boots-mush.dropdown-toggle {
  color: #000;
  background-color: #f5f5f5;
  border-color: #f3f3f3;
}

.btn-boots-mush.active:focus,
.btn-boots-mush:active:focus,
.btn-check:active+.btn-boots-mush:focus,
.btn-check:checked+.btn-boots-mush:focus,
.show>.btn-boots-mush.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
  box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
}

.btn-boots-mush.disabled,
.btn-boots-mush:disabled {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-boots-off-white {
  color: #000;
  background-color: #fafafa;
  border-color: #fafafa;
}

.btn-boots-off-white:hover {
  border-color: #fbfbfb;
}

.btn-boots-off-white:focus,
.btn-check:focus+.btn-boots-off-white {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
  -webkit-box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
}

.btn-boots-off-white.active,
.btn-boots-off-white:active,
.btn-check:active+.btn-boots-off-white,
.btn-check:checked+.btn-boots-off-white,
.show>.btn-boots-off-white.dropdown-toggle {
  color: #000;
  background-color: #fbfbfb;
  border-color: #fbfbfb;
}

.btn-boots-off-white.active:focus,
.btn-boots-off-white:active:focus,
.btn-check:active+.btn-boots-off-white:focus,
.btn-check:checked+.btn-boots-off-white:focus,
.show>.btn-boots-off-white.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
  box-shadow: 0 0 0 0 rgba(213, 213, 213, 0.5);
}

.btn-boots-off-white.disabled,
.btn-boots-off-white:disabled {
  color: #000;
  background-color: #fafafa;
  border-color: #fafafa;
}

.btn-boots-stroke {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-boots-stroke:hover {
  border-color: #f3f3f3;
}

.btn-boots-stroke:focus,
.btn-check:focus+.btn-boots-stroke {
  color: #000;
  background-color: #f4f4f4;
  border-color: #f3f3f3;
  -webkit-box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
  box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
}

.btn-boots-stroke.active,
.btn-boots-stroke:active,
.btn-check:active+.btn-boots-stroke,
.btn-check:checked+.btn-boots-stroke,
.show>.btn-boots-stroke.dropdown-toggle {
  color: #000;
  background-color: #f5f5f5;
  border-color: #f3f3f3;
}

.btn-boots-stroke.active:focus,
.btn-boots-stroke:active:focus,
.btn-check:active+.btn-boots-stroke:focus,
.btn-check:checked+.btn-boots-stroke:focus,
.show>.btn-boots-stroke.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
  box-shadow: 0 0 0 0 rgba(206, 206, 206, 0.5);
}

.btn-boots-stroke.disabled,
.btn-boots-stroke:disabled {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-boots-simple {
  color: #fff;
}

.btn-check:focus+.btn-boots-simple {
  background-color: #4c4c4e;
}

.btn-boots-simple:focus,
.btn-check:focus+.btn-boots-simple {
  color: #fff;
  border-color: #47474a;
  -webkit-box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
}

.btn-boots-simple.active,
.btn-boots-simple:active,
.btn-check:active+.btn-boots-simple,
.btn-check:checked+.btn-boots-simple,
.show>.btn-boots-simple.dropdown-toggle {
  color: #fff;
  background-color: #47474a;
  border-color: #434345;
}

.btn-boots-simple.active:focus,
.btn-boots-simple:active:focus,
.btn-check:active+.btn-boots-simple:focus,
.btn-check:checked+.btn-boots-simple:focus,
.show>.btn-boots-simple.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
  box-shadow: 0 0 0 0 rgba(114, 114, 116, 0.5);
}

.btn-boots-dark {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-boots-dark:hover {
  color: #fff;
  border-color: #090a0a;
}

.btn-boots-dark:focus,
.btn-check:focus+.btn-boots-dark {
  color: #fff;
  background-color: #090a0a;
  border-color: #090a0a;
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-boots-dark.active,
.btn-boots-dark:active,
.btn-check:active+.btn-boots-dark,
.btn-check:checked+.btn-boots-dark,
.show>.btn-boots-dark.dropdown-toggle {
  color: #fff;
  background-color: #090a0a;
  border-color: #080909;
}

.btn-boots-dark.active:focus,
.btn-boots-dark:active:focus,
.btn-check:active+.btn-boots-dark:focus,
.btn-check:checked+.btn-boots-dark:focus,
.show>.btn-boots-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
  box-shadow: 0 0 0 0 rgba(48, 48, 48, 0.5);
}

.btn-boots-dark.disabled,
.btn-boots-dark:disabled {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-boots-success {
  color: #000;
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.btn-boots-success:hover {
  border-color: #1ab35c;
}

.btn-boots-success:focus,
.btn-check:focus+.btn-boots-success {
  color: #000;
  background-color: #26b765;
  border-color: #1ab35c;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
}

.btn-boots-success.active,
.btn-boots-success:active,
.btn-check:active+.btn-boots-success,
.btn-check:checked+.btn-boots-success,
.show>.btn-boots-success.dropdown-toggle {
  color: #000;
  background-color: #33bb6e;
  border-color: #1ab35c;
}

.btn-boots-success.active:focus,
.btn-boots-success:active:focus,
.btn-check:active+.btn-boots-success:focus,
.btn-check:checked+.btn-boots-success:focus,
.show>.btn-boots-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 145, 63, 0.5);
}

.btn-boots-success.disabled,
.btn-boots-success:disabled {
  color: #000;
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.btn-boots-danger {
  color: #000;
  background-color: red;
  border-color: red;
}

.btn-boots-danger:hover {
  border-color: #ff1a1a;
}

.btn-boots-danger:focus,
.btn-check:focus+.btn-boots-danger {
  color: #000;
  background-color: #ff2626;
  border-color: #ff1a1a;
  -webkit-box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
}

.btn-boots-danger.active,
.btn-boots-danger:active,
.btn-check:active+.btn-boots-danger,
.btn-check:checked+.btn-boots-danger,
.show>.btn-boots-danger.dropdown-toggle {
  color: #000;
  background-color: #f33;
  border-color: #ff1a1a;
}

.btn-boots-danger.active:focus,
.btn-boots-danger:active:focus,
.btn-check:active+.btn-boots-danger:focus,
.btn-check:checked+.btn-boots-danger:focus,
.show>.btn-boots-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(217, 0, 0, 0.5);
}

.btn-boots-danger.disabled,
.btn-boots-danger:disabled {
  color: #000;
  background-color: red;
  border-color: red;
}

.btn-boots-cyan {
  color: #000;
  background-color: #1c78ff;
  border-color: #1c78ff;
}

.btn-boots-cyan:hover {
  border-color: #3386ff;
}

.btn-boots-cyan:focus,
.btn-check:focus+.btn-boots-cyan {
  color: #000;
  background-color: #3e8cff;
  border-color: #3386ff;
  -webkit-box-shadow: 0 0 0 0 rgba(24, 102, 217, 0.5);
  box-shadow: 0 0 0 0 rgba(24, 102, 217, 0.5);
}

.btn-boots-cyan.active,
.btn-boots-cyan:active,
.btn-check:active+.btn-boots-cyan,
.btn-check:checked+.btn-boots-cyan,
.show>.btn-boots-cyan.dropdown-toggle {
  color: #000;
  background-color: #4993ff;
  border-color: #3386ff;
}

.btn-boots-cyan.active:focus,
.btn-boots-cyan:active:focus,
.btn-check:active+.btn-boots-cyan:focus,
.btn-check:checked+.btn-boots-cyan:focus,
.show>.btn-boots-cyan.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(24, 102, 217, 0.5);
  box-shadow: 0 0 0 0 rgba(24, 102, 217, 0.5);
}

.btn-boots-cyan.disabled,
.btn-boots-cyan:disabled {
  color: #000;
  background-color: #1c78ff;
  border-color: #1c78ff;
}

.btn-boots-blue {
  color: #fff;
  background-color: #393a77;
  border-color: #393a77;
}

.btn-boots-blue:hover {
  border-color: #2e2e5f;
}

.btn-boots-blue:focus,
.btn-check:focus+.btn-boots-blue {
  color: #fff;
  background-color: #303165;
  border-color: #2e2e5f;
  -webkit-box-shadow: 0 0 0 0 rgba(87, 88, 139, 0.5);
  box-shadow: 0 0 0 0 rgba(87, 88, 139, 0.5);
}

.btn-boots-blue.active,
.btn-boots-blue:active,
.btn-check:active+.btn-boots-blue,
.btn-check:checked+.btn-boots-blue,
.show>.btn-boots-blue.dropdown-toggle {
  color: #fff;
  background-color: #2e2e5f;
  border-color: #2b2c59;
}

.btn-boots-blue.active:focus,
.btn-boots-blue:active:focus,
.btn-check:active+.btn-boots-blue:focus,
.btn-check:checked+.btn-boots-blue:focus,
.show>.btn-boots-blue.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(87, 88, 139, 0.5);
  box-shadow: 0 0 0 0 rgba(87, 88, 139, 0.5);
}

.btn-boots-blue.disabled,
.btn-boots-blue:disabled {
  color: #fff;
  background-color: #393a77;
  border-color: #393a77;
}

.btn-boots-facebook {
  color: #fff;
  background-color: #5a75b2;
  border-color: #5a75b2;
}

.btn-boots-facebook:hover {
  border-color: #485e8e;
}

.btn-boots-facebook:focus,
.btn-check:focus+.btn-boots-facebook {
  color: #fff;
  background-color: #4d6397;
  border-color: #485e8e;
  -webkit-box-shadow: 0 0 0 0 rgba(115, 138, 190, 0.5);
  box-shadow: 0 0 0 0 rgba(115, 138, 190, 0.5);
}

.btn-boots-facebook.active,
.btn-boots-facebook:active,
.btn-check:active+.btn-boots-facebook,
.btn-check:checked+.btn-boots-facebook,
.show>.btn-boots-facebook.dropdown-toggle {
  color: #fff;
  background-color: #485e8e;
  border-color: #445886;
}

.btn-boots-facebook.active:focus,
.btn-boots-facebook:active:focus,
.btn-check:active+.btn-boots-facebook:focus,
.btn-check:checked+.btn-boots-facebook:focus,
.show>.btn-boots-facebook.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(115, 138, 190, 0.5);
  box-shadow: 0 0 0 0 rgba(115, 138, 190, 0.5);
}

.btn-boots-facebook.disabled,
.btn-boots-facebook:disabled {
  color: #fff;
  background-color: #5a75b2;
  border-color: #5a75b2;
}

.btn-boots-twitter {
  color: #000;
  background-color: #55acee;
  border-color: #55acee;
}

.btn-boots-twitter:hover {
  border-color: #66b4f0;
}

.btn-boots-twitter:focus,
.btn-check:focus+.btn-boots-twitter {
  color: #000;
  background-color: #6fb8f1;
  border-color: #66b4f0;
  -webkit-box-shadow: 0 0 0 0 rgba(72, 146, 202, 0.5);
  box-shadow: 0 0 0 0 rgba(72, 146, 202, 0.5);
}

.btn-boots-twitter.active,
.btn-boots-twitter:active,
.btn-check:active+.btn-boots-twitter,
.btn-check:checked+.btn-boots-twitter,
.show>.btn-boots-twitter.dropdown-toggle {
  color: #000;
  background-color: #77bdf1;
  border-color: #66b4f0;
}

.btn-boots-twitter.active:focus,
.btn-boots-twitter:active:focus,
.btn-check:active+.btn-boots-twitter:focus,
.btn-check:checked+.btn-boots-twitter:focus,
.show>.btn-boots-twitter.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(72, 146, 202, 0.5);
  box-shadow: 0 0 0 0 rgba(72, 146, 202, 0.5);
}

.btn-boots-twitter.disabled,
.btn-boots-twitter:disabled {
  color: #000;
  background-color: #55acee;
  border-color: #55acee;
}

.btn-outline-primary {
  color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-outline-primary:hover {
  color: #fff;
  border-color: #0b0c0c;
}

.btn-check:focus+.btn-outline-primary,
.btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-check:active+.btn-outline-primary,
.btn-check:checked+.btn-outline-primary,
.btn-outline-primary.active,
.btn-outline-primary.dropdown-toggle.show,
.btn-outline-primary:active {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-check:active+.btn-outline-primary:focus,
.btn-check:checked+.btn-outline-primary:focus,
.btn-outline-primary.active:focus,
.btn-outline-primary.dropdown-toggle.show:focus,
.btn-outline-primary:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: #0b0c0c;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  border-color: #6c757d;
}

.btn-check:focus+.btn-outline-secondary,
.btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-check:active+.btn-outline-secondary:focus,
.btn-check:checked+.btn-outline-secondary:focus,
.btn-outline-secondary.active:focus,
.btn-outline-secondary.dropdown-toggle.show:focus,
.btn-outline-secondary:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
  box-shadow: 0 0 0 0 rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled,
.btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-success {
  color: #00aa4a;
  border-color: #00aa4a;
}

.btn-outline-success:hover {
  color: #000;
  border-color: #00aa4a;
}

.btn-check:focus+.btn-outline-success,
.btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
}

.btn-check:active+.btn-outline-success,
.btn-check:checked+.btn-outline-success,
.btn-outline-success.active,
.btn-outline-success.dropdown-toggle.show,
.btn-outline-success:active {
  color: #000;
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.btn-check:active+.btn-outline-success:focus,
.btn-check:checked+.btn-outline-success:focus,
.btn-outline-success.active:focus,
.btn-outline-success.dropdown-toggle.show:focus,
.btn-outline-success:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
}

.btn-outline-success.disabled,
.btn-outline-success:disabled {
  color: #00aa4a;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-outline-info:hover {
  color: #000;
  border-color: #0dcaf0;
}

.btn-check:focus+.btn-outline-info,
.btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
  box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}

.btn-check:active+.btn-outline-info,
.btn-check:checked+.btn-outline-info,
.btn-outline-info.active,
.btn-outline-info.dropdown-toggle.show,
.btn-outline-info:active {
  color: #000;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-check:active+.btn-outline-info:focus,
.btn-check:checked+.btn-outline-info:focus,
.btn-outline-info.active:focus,
.btn-outline-info.dropdown-toggle.show:focus,
.btn-outline-info:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
  box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}

.btn-outline-info.disabled,
.btn-outline-info:disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #000;
  border-color: #ffc107;
}

.btn-check:focus+.btn-outline-warning,
.btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-check:active+.btn-outline-warning,
.btn-check:checked+.btn-outline-warning,
.btn-outline-warning.active,
.btn-outline-warning.dropdown-toggle.show,
.btn-outline-warning:active {
  color: #000;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-check:active+.btn-outline-warning:focus,
.btn-check:checked+.btn-outline-warning:focus,
.btn-outline-warning.active:focus,
.btn-outline-warning.dropdown-toggle.show:focus,
.btn-outline-warning:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled,
.btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: red;
  border-color: red;
}

.btn-outline-danger:hover {
  color: #000;
  border-color: red;
}

.btn-check:focus+.btn-outline-danger,
.btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}

.btn-check:active+.btn-outline-danger,
.btn-check:checked+.btn-outline-danger,
.btn-outline-danger.active,
.btn-outline-danger.dropdown-toggle.show,
.btn-outline-danger:active {
  color: #000;
  background-color: red;
  border-color: red;
}

.btn-check:active+.btn-outline-danger:focus,
.btn-check:checked+.btn-outline-danger:focus,
.btn-outline-danger.active:focus,
.btn-outline-danger.dropdown-toggle.show:focus,
.btn-outline-danger:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}

.btn-outline-danger.disabled,
.btn-outline-danger:disabled {
  color: red;
  background-color: transparent;
}

.btn-outline-light {
  color: #fafafa;
  border-color: #fafafa;
}

.btn-outline-light:hover {
  color: #000;
  border-color: #fafafa;
}

.btn-check:focus+.btn-outline-light,
.btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
}

.btn-check:active+.btn-outline-light,
.btn-check:checked+.btn-outline-light,
.btn-outline-light.active,
.btn-outline-light.dropdown-toggle.show,
.btn-outline-light:active {
  color: #000;
  background-color: #fafafa;
  border-color: #fafafa;
}

.btn-check:active+.btn-outline-light:focus,
.btn-check:checked+.btn-outline-light:focus,
.btn-outline-light.active:focus,
.btn-outline-light.dropdown-toggle.show:focus,
.btn-outline-light:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
}

.btn-outline-light.disabled,
.btn-outline-light:disabled {
  color: #fafafa;
  background-color: transparent;
}

.btn-outline-dark {
  color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-outline-dark:hover {
  color: #fff;
  border-color: #0b0c0c;
}

.btn-check:focus+.btn-outline-dark,
.btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-check:active+.btn-outline-dark,
.btn-check:checked+.btn-outline-dark,
.btn-outline-dark.active,
.btn-outline-dark.dropdown-toggle.show,
.btn-outline-dark:active {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-check:active+.btn-outline-dark:focus,
.btn-check:checked+.btn-outline-dark:focus,
.btn-outline-dark.active:focus,
.btn-outline-dark.dropdown-toggle.show:focus,
.btn-outline-dark:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-outline-dark.disabled,
.btn-outline-dark:disabled {
  color: #0b0c0c;
  background-color: transparent;
}

.btn-outline-boots-yellow,
.btn-outline-boots-yellow-b {
  color: #ffd400;
  border-color: #ffd400;
}

.btn-outline-boots-yellow:hover {
  color: #000;
  border-color: #ffd400;
}

.btn-check:focus+.btn-outline-boots-yellow,
.btn-outline-boots-yellow:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
}

.btn-check:active+.btn-outline-boots-yellow,
.btn-check:checked+.btn-outline-boots-yellow,
.btn-outline-boots-yellow.active,
.btn-outline-boots-yellow.dropdown-toggle.show,
.btn-outline-boots-yellow:active {
  color: #000;
  background-color: #ffd400;
  border-color: #ffd400;
}

.btn-check:active+.btn-outline-boots-yellow:focus,
.btn-check:checked+.btn-outline-boots-yellow:focus,
.btn-outline-boots-yellow.active:focus,
.btn-outline-boots-yellow.dropdown-toggle.show:focus,
.btn-outline-boots-yellow:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
}

.btn-outline-boots-yellow.disabled,
.btn-outline-boots-yellow:disabled {
  color: #ffd400;
  background-color: transparent;
}

.btn-outline-boots-yellow-b:hover {
  color: #000;
  border-color: #ffd400;
}

.btn-check:focus+.btn-outline-boots-yellow-b,
.btn-outline-boots-yellow-b:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
}

.btn-check:active+.btn-outline-boots-yellow-b,
.btn-check:checked+.btn-outline-boots-yellow-b,
.btn-outline-boots-yellow-b.active,
.btn-outline-boots-yellow-b.dropdown-toggle.show,
.btn-outline-boots-yellow-b:active {
  color: #000;
  background-color: #ffd400;
  border-color: #ffd400;
}

.btn-check:active+.btn-outline-boots-yellow-b:focus,
.btn-check:checked+.btn-outline-boots-yellow-b:focus,
.btn-outline-boots-yellow-b.active:focus,
.btn-outline-boots-yellow-b.dropdown-toggle.show:focus,
.btn-outline-boots-yellow-b:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.5);
}

.btn-outline-boots-yellow-b.disabled,
.btn-outline-boots-yellow-b:disabled {
  color: #ffd400;
  background-color: transparent;
}

.btn-outline-boots-black {
  color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-outline-boots-black:hover {
  color: #fff;
  border-color: #0b0c0c;
}

.btn-check:focus+.btn-outline-boots-black,
.btn-outline-boots-black:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-check:active+.btn-outline-boots-black,
.btn-check:checked+.btn-outline-boots-black,
.btn-outline-boots-black.active,
.btn-outline-boots-black.dropdown-toggle.show,
.btn-outline-boots-black:active {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-check:active+.btn-outline-boots-black:focus,
.btn-check:checked+.btn-outline-boots-black:focus,
.btn-outline-boots-black.active:focus,
.btn-outline-boots-black.dropdown-toggle.show:focus,
.btn-outline-boots-black:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-outline-boots-black.disabled,
.btn-outline-boots-black:disabled {
  color: #0b0c0c;
  background-color: transparent;
}

.btn-outline-boots-gray {
  color: #59595c;
  border-color: #59595c;
}

.btn-outline-boots-gray:hover {
  color: #fff;
  border-color: #59595c;
}

.btn-check:focus+.btn-outline-boots-gray,
.btn-outline-boots-gray:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
}

.btn-check:active+.btn-outline-boots-gray,
.btn-check:checked+.btn-outline-boots-gray,
.btn-outline-boots-gray.active,
.btn-outline-boots-gray.dropdown-toggle.show,
.btn-outline-boots-gray:active {
  color: #fff;
  background-color: #59595c;
  border-color: #59595c;
}

.btn-check:active+.btn-outline-boots-gray:focus,
.btn-check:checked+.btn-outline-boots-gray:focus,
.btn-outline-boots-gray.active:focus,
.btn-outline-boots-gray.dropdown-toggle.show:focus,
.btn-outline-boots-gray:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
}

.btn-outline-boots-gray.disabled,
.btn-outline-boots-gray:disabled {
  color: #59595c;
  background-color: transparent;
}

.btn-outline-boots-soft-gray {
  color: #9ca2a4;
  border-color: #9ca2a4;
}

.btn-outline-boots-soft-gray:hover {
  color: #000;
  border-color: #9ca2a4;
}

.btn-check:focus+.btn-outline-boots-soft-gray,
.btn-outline-boots-soft-gray:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(156, 162, 164, 0.5);
  box-shadow: 0 0 0 0 rgba(156, 162, 164, 0.5);
}

.btn-check:active+.btn-outline-boots-soft-gray,
.btn-check:checked+.btn-outline-boots-soft-gray,
.btn-outline-boots-soft-gray.active,
.btn-outline-boots-soft-gray.dropdown-toggle.show,
.btn-outline-boots-soft-gray:active {
  color: #000;
  background-color: #9ca2a4;
  border-color: #9ca2a4;
}

.btn-check:active+.btn-outline-boots-soft-gray:focus,
.btn-check:checked+.btn-outline-boots-soft-gray:focus,
.btn-outline-boots-soft-gray.active:focus,
.btn-outline-boots-soft-gray.dropdown-toggle.show:focus,
.btn-outline-boots-soft-gray:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(156, 162, 164, 0.5);
  box-shadow: 0 0 0 0 rgba(156, 162, 164, 0.5);
}

.btn-outline-boots-soft-gray.disabled,
.btn-outline-boots-soft-gray:disabled {
  color: #9ca2a4;
  background-color: transparent;
}

.btn-outline-boots-light-gray {
  color: #e3e7e8;
  border-color: #e3e7e8;
}

.btn-outline-boots-light-gray:hover {
  color: #000;
  border-color: #e3e7e8;
}

.btn-check:focus+.btn-outline-boots-light-gray,
.btn-outline-boots-light-gray:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(227, 231, 232, 0.5);
  box-shadow: 0 0 0 0 rgba(227, 231, 232, 0.5);
}

.btn-check:active+.btn-outline-boots-light-gray,
.btn-check:checked+.btn-outline-boots-light-gray,
.btn-outline-boots-light-gray.active,
.btn-outline-boots-light-gray.dropdown-toggle.show,
.btn-outline-boots-light-gray:active {
  color: #000;
  background-color: #e3e7e8;
  border-color: #e3e7e8;
}

.btn-check:active+.btn-outline-boots-light-gray:focus,
.btn-check:checked+.btn-outline-boots-light-gray:focus,
.btn-outline-boots-light-gray.active:focus,
.btn-outline-boots-light-gray.dropdown-toggle.show:focus,
.btn-outline-boots-light-gray:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(227, 231, 232, 0.5);
  box-shadow: 0 0 0 0 rgba(227, 231, 232, 0.5);
}

.btn-outline-boots-light-gray.disabled,
.btn-outline-boots-light-gray:disabled {
  color: #e3e7e8;
  background-color: transparent;
}

.btn-outline-boots-mush {
  color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-outline-boots-mush:hover {
  color: #000;
  border-color: #f2f2f2;
}

.btn-check:focus+.btn-outline-boots-mush,
.btn-outline-boots-mush:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
  box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
}

.btn-check:active+.btn-outline-boots-mush,
.btn-check:checked+.btn-outline-boots-mush,
.btn-outline-boots-mush.active,
.btn-outline-boots-mush.dropdown-toggle.show,
.btn-outline-boots-mush:active {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-check:active+.btn-outline-boots-mush:focus,
.btn-check:checked+.btn-outline-boots-mush:focus,
.btn-outline-boots-mush.active:focus,
.btn-outline-boots-mush.dropdown-toggle.show:focus,
.btn-outline-boots-mush:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
  box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
}

.btn-outline-boots-mush.disabled,
.btn-outline-boots-mush:disabled {
  color: #f2f2f2;
  background-color: transparent;
}

.btn-outline-boots-off-white {
  color: #fafafa;
  border-color: #fafafa;
}

.btn-outline-boots-off-white:hover {
  color: #000;
  border-color: #fafafa;
}

.btn-check:focus+.btn-outline-boots-off-white,
.btn-outline-boots-off-white:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
}

.btn-check:active+.btn-outline-boots-off-white,
.btn-check:checked+.btn-outline-boots-off-white,
.btn-outline-boots-off-white.active,
.btn-outline-boots-off-white.dropdown-toggle.show,
.btn-outline-boots-off-white:active {
  color: #000;
  background-color: #fafafa;
  border-color: #fafafa;
}

.btn-check:active+.btn-outline-boots-off-white:focus,
.btn-check:checked+.btn-outline-boots-off-white:focus,
.btn-outline-boots-off-white.active:focus,
.btn-outline-boots-off-white.dropdown-toggle.show:focus,
.btn-outline-boots-off-white:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
  box-shadow: 0 0 0 0 rgba(250, 250, 250, 0.5);
}

.btn-outline-boots-off-white.disabled,
.btn-outline-boots-off-white:disabled {
  color: #fafafa;
  background-color: transparent;
}

.btn-outline-boots-stroke {
  color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-outline-boots-stroke:hover {
  color: #000;
  border-color: #f2f2f2;
}

.btn-check:focus+.btn-outline-boots-stroke,
.btn-outline-boots-stroke:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
  box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
}

.btn-check:active+.btn-outline-boots-stroke,
.btn-check:checked+.btn-outline-boots-stroke,
.btn-outline-boots-stroke.active,
.btn-outline-boots-stroke.dropdown-toggle.show,
.btn-outline-boots-stroke:active {
  color: #000;
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.btn-check:active+.btn-outline-boots-stroke:focus,
.btn-check:checked+.btn-outline-boots-stroke:focus,
.btn-outline-boots-stroke.active:focus,
.btn-outline-boots-stroke.dropdown-toggle.show:focus,
.btn-outline-boots-stroke:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
  box-shadow: 0 0 0 0 rgba(242, 242, 242, 0.5);
}

.btn-outline-boots-stroke.disabled,
.btn-outline-boots-stroke:disabled {
  color: #f2f2f2;
  background-color: transparent;
}

.btn-outline-boots-simple {
  color: #59595c;
}

.btn-outline-boots-simple:hover {
  color: #fff;
}

.btn-check:focus+.btn-outline-boots-simple,
.btn-outline-boots-simple:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
}

.btn-check:active+.btn-outline-boots-simple,
.btn-check:checked+.btn-outline-boots-simple,
.btn-outline-boots-simple.active,
.btn-outline-boots-simple.dropdown-toggle.show,
.btn-outline-boots-simple:active {
  color: #fff;
  background-color: #59595c;
  border-color: #59595c;
}

.btn-check:active+.btn-outline-boots-simple:focus,
.btn-check:checked+.btn-outline-boots-simple:focus,
.btn-outline-boots-simple.active:focus,
.btn-outline-boots-simple.dropdown-toggle.show:focus,
.btn-outline-boots-simple:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
  box-shadow: 0 0 0 0 rgba(89, 89, 92, 0.5);
}

.btn-outline-boots-simple.disabled,
.btn-outline-boots-simple:disabled {
  color: #59595c;
  background-color: transparent;
}

.btn-outline-boots-dark {
  color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-outline-boots-dark:hover {
  color: #fff;
  border-color: #0b0c0c;
}

.btn-check:focus+.btn-outline-boots-dark,
.btn-outline-boots-dark:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-check:active+.btn-outline-boots-dark,
.btn-check:checked+.btn-outline-boots-dark,
.btn-outline-boots-dark.active,
.btn-outline-boots-dark.dropdown-toggle.show,
.btn-outline-boots-dark:active {
  color: #fff;
  background-color: #0b0c0c;
  border-color: #0b0c0c;
}

.btn-check:active+.btn-outline-boots-dark:focus,
.btn-check:checked+.btn-outline-boots-dark:focus,
.btn-outline-boots-dark.active:focus,
.btn-outline-boots-dark.dropdown-toggle.show:focus,
.btn-outline-boots-dark:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
  box-shadow: 0 0 0 0 rgba(11, 12, 12, 0.5);
}

.btn-outline-boots-dark.disabled,
.btn-outline-boots-dark:disabled {
  color: #0b0c0c;
  background-color: transparent;
}

.btn-outline-boots-success {
  color: #00aa4a;
  border-color: #00aa4a;
}

.btn-outline-boots-success:hover {
  color: #000;
  border-color: #00aa4a;
}

.btn-check:focus+.btn-outline-boots-success,
.btn-outline-boots-success:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
}

.btn-check:active+.btn-outline-boots-success,
.btn-check:checked+.btn-outline-boots-success,
.btn-outline-boots-success.active,
.btn-outline-boots-success.dropdown-toggle.show,
.btn-outline-boots-success:active {
  color: #000;
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.btn-check:active+.btn-outline-boots-success:focus,
.btn-check:checked+.btn-outline-boots-success:focus,
.btn-outline-boots-success.active:focus,
.btn-outline-boots-success.dropdown-toggle.show:focus,
.btn-outline-boots-success:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
  box-shadow: 0 0 0 0 rgba(0, 170, 74, 0.5);
}

.btn-outline-boots-success.disabled,
.btn-outline-boots-success:disabled {
  color: #00aa4a;
  background-color: transparent;
}

.btn-outline-boots-danger {
  color: red;
  border-color: red;
}

.btn-outline-boots-danger:hover {
  color: #000;
  border-color: red;
}

.btn-check:focus+.btn-outline-boots-danger,
.btn-outline-boots-danger:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}

.btn-check:active+.btn-outline-boots-danger,
.btn-check:checked+.btn-outline-boots-danger,
.btn-outline-boots-danger.active,
.btn-outline-boots-danger.dropdown-toggle.show,
.btn-outline-boots-danger:active {
  color: #000;
  background-color: red;
  border-color: red;
}

.btn-check:active+.btn-outline-boots-danger:focus,
.btn-check:checked+.btn-outline-boots-danger:focus,
.btn-outline-boots-danger.active:focus,
.btn-outline-boots-danger.dropdown-toggle.show:focus,
.btn-outline-boots-danger:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
}

.btn-outline-boots-danger.disabled,
.btn-outline-boots-danger:disabled {
  color: red;
  background-color: transparent;
}

.btn-outline-boots-cyan {
  color: #1c78ff;
  border-color: #1c78ff;
}

.btn-outline-boots-cyan:hover {
  color: #000;
  border-color: #1c78ff;
}

.btn-check:focus+.btn-outline-boots-cyan,
.btn-outline-boots-cyan:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(28, 120, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(28, 120, 255, 0.5);
}

.btn-check:active+.btn-outline-boots-cyan,
.btn-check:checked+.btn-outline-boots-cyan,
.btn-outline-boots-cyan.active,
.btn-outline-boots-cyan.dropdown-toggle.show,
.btn-outline-boots-cyan:active {
  color: #000;
  background-color: #1c78ff;
  border-color: #1c78ff;
}

.btn-check:active+.btn-outline-boots-cyan:focus,
.btn-check:checked+.btn-outline-boots-cyan:focus,
.btn-outline-boots-cyan.active:focus,
.btn-outline-boots-cyan.dropdown-toggle.show:focus,
.btn-outline-boots-cyan:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(28, 120, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(28, 120, 255, 0.5);
}

.btn-outline-boots-cyan.disabled,
.btn-outline-boots-cyan:disabled {
  color: #1c78ff;
  background-color: transparent;
}

.btn-outline-boots-blue {
  color: #393a77;
  border-color: #393a77;
}

.btn-outline-boots-blue:hover {
  color: #fff;
  border-color: #393a77;
}

.btn-check:focus+.btn-outline-boots-blue,
.btn-outline-boots-blue:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(57, 58, 119, 0.5);
  box-shadow: 0 0 0 0 rgba(57, 58, 119, 0.5);
}

.btn-check:active+.btn-outline-boots-blue,
.btn-check:checked+.btn-outline-boots-blue,
.btn-outline-boots-blue.active,
.btn-outline-boots-blue.dropdown-toggle.show,
.btn-outline-boots-blue:active {
  color: #fff;
  background-color: #393a77;
  border-color: #393a77;
}

.btn-check:active+.btn-outline-boots-blue:focus,
.btn-check:checked+.btn-outline-boots-blue:focus,
.btn-outline-boots-blue.active:focus,
.btn-outline-boots-blue.dropdown-toggle.show:focus,
.btn-outline-boots-blue:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(57, 58, 119, 0.5);
  box-shadow: 0 0 0 0 rgba(57, 58, 119, 0.5);
}

.btn-outline-boots-blue.disabled,
.btn-outline-boots-blue:disabled {
  color: #393a77;
  background-color: transparent;
}

.btn-outline-boots-facebook {
  color: #5a75b2;
  border-color: #5a75b2;
}

.btn-outline-boots-facebook:hover {
  color: #fff;
  border-color: #5a75b2;
}

.btn-check:focus+.btn-outline-boots-facebook,
.btn-outline-boots-facebook:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(90, 117, 178, 0.5);
  box-shadow: 0 0 0 0 rgba(90, 117, 178, 0.5);
}

.btn-check:active+.btn-outline-boots-facebook,
.btn-check:checked+.btn-outline-boots-facebook,
.btn-outline-boots-facebook.active,
.btn-outline-boots-facebook.dropdown-toggle.show,
.btn-outline-boots-facebook:active {
  color: #fff;
  background-color: #5a75b2;
  border-color: #5a75b2;
}

.btn-check:active+.btn-outline-boots-facebook:focus,
.btn-check:checked+.btn-outline-boots-facebook:focus,
.btn-outline-boots-facebook.active:focus,
.btn-outline-boots-facebook.dropdown-toggle.show:focus,
.btn-outline-boots-facebook:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(90, 117, 178, 0.5);
  box-shadow: 0 0 0 0 rgba(90, 117, 178, 0.5);
}

.btn-outline-boots-facebook.disabled,
.btn-outline-boots-facebook:disabled {
  color: #5a75b2;
  background-color: transparent;
}

.btn-outline-boots-twitter {
  color: #55acee;
  border-color: #55acee;
}

.btn-outline-boots-twitter:hover {
  color: #000;
  border-color: #55acee;
}

.btn-check:focus+.btn-outline-boots-twitter,
.btn-outline-boots-twitter:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(85, 172, 238, 0.5);
  box-shadow: 0 0 0 0 rgba(85, 172, 238, 0.5);
}

.btn-check:active+.btn-outline-boots-twitter,
.btn-check:checked+.btn-outline-boots-twitter,
.btn-outline-boots-twitter.active,
.btn-outline-boots-twitter.dropdown-toggle.show,
.btn-outline-boots-twitter:active {
  color: #000;
  background-color: #55acee;
  border-color: #55acee;
}

.btn-check:active+.btn-outline-boots-twitter:focus,
.btn-check:checked+.btn-outline-boots-twitter:focus,
.btn-outline-boots-twitter.active:focus,
.btn-outline-boots-twitter.dropdown-toggle.show:focus,
.btn-outline-boots-twitter:active:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(85, 172, 238, 0.5);
  box-shadow: 0 0 0 0 rgba(85, 172, 238, 0.5);
}

.btn-outline-boots-twitter.disabled,
.btn-outline-boots-twitter:disabled {
  color: #55acee;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #1c78ff;
  text-decoration: underline;
}

.btn-link:hover {
  color: #116f9d;
}

.btn-link.disabled,
.btn-link:disabled {
  color: #6c757d;
}

.btn-group-lg>.btn,
.btn-lg {
  padding: 1.125rem 1.8rem;
  font-size: calc(1.2625rem + 0.15vw);
  border-radius: 0.5rem;
}

@media (min-width: 1200px) {

  .btn-group-lg>.btn,
  .btn-lg {
    font-size: 1.375rem;
  }
}

.btn-group-sm>.btn,
.btn-sm {
  font-size: 0.875rem;
  border-radius: 0.5rem;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}

.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    -webkit-transition: none;
    transition: none;
  }
}

.dropdown,
.dropend,
.dropstart,
.dropup {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after,
.dropend .dropdown-toggle:empty::after,
.dropstart .dropdown-toggle:empty::after,
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #0b0c0c;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #f2f2f2;
  border-radius: 1rem;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }

  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }

  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }

  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }

  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }

  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }

  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }

  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }

  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }

  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }

  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1920px) {
  .dropdown-menu-xxxl-start {
    --bs-position: start;
  }

  .dropdown-menu-xxxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxxl-end {
    --bs-position: end;
  }

  .dropdown-menu-xxxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropend .dropdown-toggle::after,
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropend .dropdown-toggle::after {
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropstart .dropdown-toggle::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  display: none;
}

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #f2f2f2;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: #1e2125;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: #f2f2f2;
}

.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
  color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
  border-color: #f2f2f2;
}

.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
  color: #adb5bd;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group-vertical>.btn,
.btn-group>.btn {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.btn-group-vertical>.btn-check:checked+.btn,
.btn-group-vertical>.btn-check:focus+.btn,
.btn-group-vertical>.btn.active,
.btn-group-vertical>.btn:active,
.btn-group-vertical>.btn:focus,
.btn-group-vertical>.btn:hover,
.btn-group>.btn-check:checked+.btn,
.btn-group>.btn-check:focus+.btn,
.btn-group>.btn.active,
.btn-group>.btn:active,
.btn-group>.btn:focus,
.btn-group>.btn:hover {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group>.btn-group:not(:first-child),
.btn-group>.btn:not(:first-child) {
  margin-left: -1px;
}

.btn-group>.btn-group:not(:last-child)>.btn,
.btn-group>.btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group>.btn-group:not(:first-child)>.btn,
.btn-group>.btn:nth-child(n + 3),
.btn-group> :not(.btn-check)+.btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.9rem;
  padding-left: 0.9rem;
}

.dropdown-toggle-split::after,
.dropend .dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-group-sm>.btn+.dropdown-toggle-split,
.btn-sm+.dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-lg>.btn+.dropdown-toggle-split,
.btn-lg+.dropdown-toggle-split {
  padding-right: 1.35rem;
  padding-left: 1.35rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-group-vertical>.btn,
.btn-group-vertical>.btn-group {
  width: 100%;
}

.btn-group-vertical>.btn-group:not(:first-child),
.btn-group-vertical>.btn:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn,
.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn,
.btn-group-vertical>.btn~.btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #0d6efd;
  text-decoration: none;
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    transition: none;
  }
}

.nav-link:focus,
.nav-link:hover {
  color: #0a58ca;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #f2f2f2;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: 0 0;
  border: 1px solid transparent;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #f2f2f2;
  isolation: isolate;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #0b0c0c;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: 0 0;
  border: 0;
  border-radius: 0.5rem;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill .nav-item,
.nav-fill>.nav-link {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item,
.nav-justified>.nav-link {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content>.tab-pane {
  display: none;
}

.tab-content>.active {
  display: block;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid #f2f2f2;
  border-radius: 0.5rem;
}

.card>hr {
  margin-right: 0;
  margin-left: 0;
}

.card>.list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card>.list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.card>.list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
  border-top: 0;
}

.card-body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link+.card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: #fafafa;
  border-bottom: 1px solid #f2f2f2;
}

.card-header:first-child {
  border-radius: calc(0.5rem - 1px) calc(0.5rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: #fafafa;
  border-top: 1px solid #f2f2f2;
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.5rem - 1px) calc(0.5rem - 1px);
}

.card-header-tabs {
  margin-bottom: -0.5rem;
  border-bottom: 0;
}

.card-header-pills,
.card-header-tabs {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.5rem - 1px);
}

.card-img,
.card-img-bottom,
.card-img-top {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.card-group>.card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
  }

  .card-group>.card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 0;
  }

  .card-group>.card+.card {
    margin-left: 0;
    border-left: 0;
  }

  .card-group>.card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .card-group>.card:not(:last-child) .card-header,
  .card-group>.card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }

  .card-group>.card:not(:last-child) .card-footer,
  .card-group>.card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }

  .card-group>.card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .card-group>.card:not(:first-child) .card-header,
  .card-group>.card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }

  .card-group>.card:not(:first-child) .card-footer,
  .card-group>.card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  color: #0b0c0c;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    border-radius 0.15s ease,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease,
    -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    -webkit-transition: none;
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  -webkit-box-shadow: inset 0 -1px 0 #f2f2f2;
  box-shadow: inset 0 -1px 0 #f2f2f2;
}

.accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion-button::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    -webkit-transition: none;
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #0b0c0c;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid #f2f2f2;
}

.accordion-item:first-of-type {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.accordion-item:not(:first-of-type) {
  border-top: 0;
}

.accordion-item:last-of-type,
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb,
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.breadcrumb {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}

.breadcrumb-item+.breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  padding-left: 0;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  -webkit-transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .page-link {
    -webkit-transition: none;
    transition: none;
  }
}

.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link,
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.page-item:last-child .page-link,
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.5rem;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 3rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-primary {
  color: #070707;
  background-color: #cecece;
  border-color: #b6b6b6;
}

.alert-primary .alert-link {
  color: #060606;
}

.alert-secondary {
  color: #41464b;
  background-color: #e2e3e5;
  border-color: #d3d6d8;
}

.alert-secondary .alert-link {
  color: #34383c;
}

.alert-success {
  color: #00662c;
  background-color: #cceedb;
  border-color: #b3e6c9;
}

.alert-success .alert-link {
  color: #005223;
}

.alert-info {
  color: #055160;
  background-color: #cff4fc;
  border-color: #b6effb;
}

.alert-info .alert-link {
  color: #04414d;
}

.alert-warning {
  color: #664d03;
  background-color: #fff3cd;
  border-color: #ffecb5;
}

.alert-warning .alert-link {
  color: #523e02;
}

.alert-danger {
  color: #900;
  background-color: #fcc;
  border-color: #ffb3b3;
}

.alert-danger .alert-link {
  color: #7a0000;
}

.alert-light {
  color: #646464;
  background-color: #fefefe;
  border-color: #fefefe;
}

.alert-light .alert-link {
  color: #505050;
}

.alert-dark {
  color: #070707;
  background-color: #cecece;
  border-color: #b6b6b6;
}

.alert-dark .alert-link {
  color: #060606;
}

.alert-boots-yellow,
.alert-boots-yellow-b {
  color: #650;
  background-color: #fff6cc;
  border-color: #fff2b3;
}

.alert-boots-yellow .alert-link,
.alert-boots-yellow-b .alert-link {
  color: #524400;
}

.alert-boots-black {
  color: #070707;
  background-color: #cecece;
  border-color: #b6b6b6;
}

.alert-boots-black .alert-link {
  color: #060606;
}

.alert-boots-gray {
  color: #353537;
  background-color: #dedede;
  border-color: #cdcdce;
}

.alert-boots-gray .alert-link {
  color: #2a2a2c;
}

.alert-boots-soft-gray {
  color: #5e6162;
  background-color: #ebeced;
  border-color: #e1e3e4;
}

.alert-boots-soft-gray .alert-link {
  color: #4b4e4e;
}

.alert-boots-light-gray {
  color: #5b5c5d;
  background-color: #f9fafa;
  border-color: #f7f8f8;
}

.alert-boots-light-gray .alert-link {
  color: #494a4a;
}

.alert-boots-mush {
  color: #616161;
  background-color: #fcfcfc;
  border-color: #fbfbfb;
}

.alert-boots-mush .alert-link {
  color: #4e4e4e;
}

.alert-boots-off-white {
  color: #646464;
  background-color: #fefefe;
  border-color: #fefefe;
}

.alert-boots-off-white .alert-link {
  color: #505050;
}

.alert-boots-stroke {
  color: #616161;
  background-color: #fcfcfc;
  border-color: #fbfbfb;
}

.alert-boots-stroke .alert-link {
  color: #4e4e4e;
}

.alert-boots-simple .alert-link {
  color: #2a2a2c;
}

.alert-boots-dark {
  color: #070707;
  background-color: #cecece;
  border-color: #b6b6b6;
}

.alert-boots-dark .alert-link {
  color: #060606;
}

.alert-boots-success {
  color: #00662c;
  background-color: #cceedb;
  border-color: #b3e6c9;
}

.alert-boots-success .alert-link {
  color: #005223;
}

.alert-boots-danger {
  color: #900;
  background-color: #fcc;
  border-color: #ffb3b3;
}

.alert-boots-danger .alert-link {
  color: #7a0000;
}

.alert-boots-cyan {
  color: #114899;
  background-color: #d2e4ff;
  border-color: #bbd7ff;
}

.alert-boots-cyan .alert-link {
  color: #0e3a7a;
}

.alert-boots-blue {
  color: #222347;
  background-color: #d7d8e4;
  border-color: #c4c4d6;
}

.alert-boots-blue .alert-link {
  color: #1b1c39;
}

.alert-boots-facebook {
  color: #36466b;
  background-color: #dee3f0;
  border-color: #ced6e8;
}

.alert-boots-facebook .alert-link {
  color: #2b3856;
}

.alert-boots-twitter {
  color: #33678f;
  background-color: #ddeefc;
  border-color: #cce6fa;
}

.alert-boots-twitter .alert-link {
  color: #295272;
}

.progress,
.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.progress {
  height: 1rem;
  font-size: 0.75rem;
  background-color: #f2f2f2;
  border-radius: 0.5rem;
}

.progress-bar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg,
      rgba(255, 255, 255, 0.15) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.15) 75%,
      transparent 75%,
      transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
  animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
    animation: none;
  }
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.5rem;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}

.list-group-numbered>li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #0b0c0c;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #0b0c0c;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #f2f2f2;
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled,
.list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.list-group-item+.list-group-item {
  border-top-width: 0;
}

.list-group-item+.list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.list-group-horizontal>.list-group-item:first-child {
  border-bottom-left-radius: 0.5rem;
  border-top-right-radius: 0;
}

.list-group-horizontal>.list-group-item:last-child {
  border-top-right-radius: 0.5rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal>.list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal>.list-group-item+.list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal>.list-group-item+.list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-sm>.list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-sm>.list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-sm>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-sm>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-sm>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-md>.list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-md>.list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-md>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-md>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-md>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-lg>.list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-lg>.list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-lg>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-lg>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-lg>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xl>.list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xl>.list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xl>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xl>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xl>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xxl>.list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xxl>.list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xxl>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xxl>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xxl>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1920px) {
  .list-group-horizontal-xxxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .list-group-horizontal-xxxl>.list-group-item:first-child {
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 0;
  }

  .list-group-horizontal-xxxl>.list-group-item:last-child {
    border-top-right-radius: 0.5rem;
    border-bottom-left-radius: 0;
  }

  .list-group-horizontal-xxxl>.list-group-item.active {
    margin-top: 0;
  }

  .list-group-horizontal-xxxl>.list-group-item+.list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }

  .list-group-horizontal-xxxl>.list-group-item+.list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush>.list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush>.list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #070707;
  background-color: #cecece;
}

.list-group-item-primary.list-group-item-action:focus,
.list-group-item-primary.list-group-item-action:hover {
  color: #070707;
  background-color: #b9b9b9;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}

.list-group-item-secondary {
  color: #41464b;
  background-color: #e2e3e5;
}

.list-group-item-secondary.list-group-item-action:focus,
.list-group-item-secondary.list-group-item-action:hover {
  color: #41464b;
  background-color: #cbccce;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #41464b;
  border-color: #41464b;
}

.list-group-item-success {
  color: #00662c;
  background-color: #cceedb;
}

.list-group-item-success.list-group-item-action:focus,
.list-group-item-success.list-group-item-action:hover {
  color: #00662c;
  background-color: #b8d6c5;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #00662c;
  border-color: #00662c;
}

.list-group-item-info {
  color: #055160;
  background-color: #cff4fc;
}

.list-group-item-info.list-group-item-action:focus,
.list-group-item-info.list-group-item-action:hover {
  color: #055160;
  background-color: #badce3;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #055160;
  border-color: #055160;
}

.list-group-item-warning {
  color: #664d03;
  background-color: #fff3cd;
}

.list-group-item-warning.list-group-item-action:focus,
.list-group-item-warning.list-group-item-action:hover {
  color: #664d03;
  background-color: #e6dbb9;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #664d03;
  border-color: #664d03;
}

.list-group-item-danger {
  color: #900;
  background-color: #fcc;
}

.list-group-item-danger.list-group-item-action:focus,
.list-group-item-danger.list-group-item-action:hover {
  color: #900;
  background-color: #e6b8b8;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #900;
  border-color: #900;
}

.list-group-item-light {
  color: #646464;
  background-color: #fefefe;
}

.list-group-item-light.list-group-item-action:focus,
.list-group-item-light.list-group-item-action:hover {
  color: #646464;
  background-color: #e5e5e5;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}

.list-group-item-dark {
  color: #070707;
  background-color: #cecece;
}

.list-group-item-dark.list-group-item-action:focus,
.list-group-item-dark.list-group-item-action:hover {
  color: #070707;
  background-color: #b9b9b9;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}

.list-group-item-boots-yellow,
.list-group-item-boots-yellow-b {
  color: #650;
  background-color: #fff6cc;
}

.list-group-item-boots-yellow.list-group-item-action:focus,
.list-group-item-boots-yellow.list-group-item-action:hover {
  color: #650;
  background-color: #e6ddb8;
}

.list-group-item-boots-yellow.list-group-item-action.active {
  color: #fff;
  background-color: #650;
  border-color: #650;
}

.list-group-item-boots-yellow-b.list-group-item-action:focus,
.list-group-item-boots-yellow-b.list-group-item-action:hover {
  color: #650;
  background-color: #e6ddb8;
}

.list-group-item-boots-yellow-b.list-group-item-action.active {
  color: #fff;
  background-color: #650;
  border-color: #650;
}

.list-group-item-boots-black {
  color: #070707;
  background-color: #cecece;
}

.list-group-item-boots-black.list-group-item-action:focus,
.list-group-item-boots-black.list-group-item-action:hover {
  color: #070707;
  background-color: #b9b9b9;
}

.list-group-item-boots-black.list-group-item-action.active {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}

.list-group-item-boots-gray {
  color: #353537;
  background-color: #dedede;
}

.list-group-item-boots-gray.list-group-item-action:focus,
.list-group-item-boots-gray.list-group-item-action:hover {
  color: #353537;
  background-color: #c8c8c8;
}

.list-group-item-boots-gray.list-group-item-action.active {
  color: #fff;
  background-color: #353537;
  border-color: #353537;
}

.list-group-item-boots-soft-gray {
  color: #5e6162;
  background-color: #ebeced;
}

.list-group-item-boots-soft-gray.list-group-item-action:focus,
.list-group-item-boots-soft-gray.list-group-item-action:hover {
  color: #5e6162;
  background-color: #d4d4d5;
}

.list-group-item-boots-soft-gray.list-group-item-action.active {
  color: #fff;
  background-color: #5e6162;
  border-color: #5e6162;
}

.list-group-item-boots-light-gray {
  color: #5b5c5d;
  background-color: #f9fafa;
}

.list-group-item-boots-light-gray.list-group-item-action:focus,
.list-group-item-boots-light-gray.list-group-item-action:hover {
  color: #5b5c5d;
  background-color: #e0e1e1;
}

.list-group-item-boots-light-gray.list-group-item-action.active {
  color: #fff;
  background-color: #5b5c5d;
  border-color: #5b5c5d;
}

.list-group-item-boots-mush {
  color: #616161;
  background-color: #fcfcfc;
}

.list-group-item-boots-mush.list-group-item-action:focus,
.list-group-item-boots-mush.list-group-item-action:hover {
  color: #616161;
  background-color: #e3e3e3;
}

.list-group-item-boots-mush.list-group-item-action.active {
  color: #fff;
  background-color: #616161;
  border-color: #616161;
}

.list-group-item-boots-off-white {
  color: #646464;
  background-color: #fefefe;
}

.list-group-item-boots-off-white.list-group-item-action:focus,
.list-group-item-boots-off-white.list-group-item-action:hover {
  color: #646464;
  background-color: #e5e5e5;
}

.list-group-item-boots-off-white.list-group-item-action.active {
  color: #fff;
  background-color: #646464;
  border-color: #646464;
}

.list-group-item-boots-stroke {
  color: #616161;
  background-color: #fcfcfc;
}

.list-group-item-boots-stroke.list-group-item-action:focus,
.list-group-item-boots-stroke.list-group-item-action:hover {
  color: #616161;
  background-color: #e3e3e3;
}

.list-group-item-boots-stroke.list-group-item-action.active {
  color: #fff;
  background-color: #616161;
  border-color: #616161;
}

.list-group-item-boots-simple {
  color: #353537;
  background-color: #dedede;
}

.list-group-item-boots-simple.list-group-item-action:focus,
.list-group-item-boots-simple.list-group-item-action:hover {
  color: #353537;
  background-color: #c8c8c8;
}

.list-group-item-boots-simple.list-group-item-action.active {
  color: #fff;
  background-color: #353537;
  border-color: #353537;
}

.list-group-item-boots-dark {
  color: #070707;
  background-color: #cecece;
}

.list-group-item-boots-dark.list-group-item-action:focus,
.list-group-item-boots-dark.list-group-item-action:hover {
  color: #070707;
  background-color: #b9b9b9;
}

.list-group-item-boots-dark.list-group-item-action.active {
  color: #fff;
  background-color: #070707;
  border-color: #070707;
}

.list-group-item-boots-success {
  color: #00662c;
  background-color: #cceedb;
}

.list-group-item-boots-success.list-group-item-action:focus,
.list-group-item-boots-success.list-group-item-action:hover {
  color: #00662c;
  background-color: #b8d6c5;
}

.list-group-item-boots-success.list-group-item-action.active {
  color: #fff;
  background-color: #00662c;
  border-color: #00662c;
}

.list-group-item-boots-danger {
  color: #900;
  background-color: #fcc;
}

.list-group-item-boots-danger.list-group-item-action:focus,
.list-group-item-boots-danger.list-group-item-action:hover {
  color: #900;
  background-color: #e6b8b8;
}

.list-group-item-boots-danger.list-group-item-action.active {
  color: #fff;
  background-color: #900;
  border-color: #900;
}

.list-group-item-boots-cyan {
  color: #114899;
  background-color: #d2e4ff;
}

.list-group-item-boots-cyan.list-group-item-action:focus,
.list-group-item-boots-cyan.list-group-item-action:hover {
  color: #114899;
  background-color: #bdcde6;
}

.list-group-item-boots-cyan.list-group-item-action.active {
  color: #fff;
  background-color: #114899;
  border-color: #114899;
}

.list-group-item-boots-blue {
  color: #222347;
  background-color: #d7d8e4;
}

.list-group-item-boots-blue.list-group-item-action:focus,
.list-group-item-boots-blue.list-group-item-action:hover {
  color: #222347;
  background-color: #c2c2cd;
}

.list-group-item-boots-blue.list-group-item-action.active {
  color: #fff;
  background-color: #222347;
  border-color: #222347;
}

.list-group-item-boots-facebook {
  color: #36466b;
  background-color: #dee3f0;
}

.list-group-item-boots-facebook.list-group-item-action:focus,
.list-group-item-boots-facebook.list-group-item-action:hover {
  color: #36466b;
  background-color: #c8ccd8;
}

.list-group-item-boots-facebook.list-group-item-action.active {
  color: #fff;
  background-color: #36466b;
  border-color: #36466b;
}

.list-group-item-boots-twitter {
  color: #33678f;
  background-color: #ddeefc;
}

.list-group-item-boots-twitter.list-group-item-action:focus,
.list-group-item-boots-twitter.list-group-item-action:hover {
  color: #33678f;
  background-color: #c7d6e3;
}

.list-group-item-boots-twitter.list-group-item-action.active {
  color: #fff;
  background-color: #33678f;
  border-color: #33678f;
}

.btn-close {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em;
  color: #000;
  border: 0;
  border-radius: 0.5rem;
  opacity: 1;
}

.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

.btn-close:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.5;
}

.btn-close.disabled,
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition:
    transform 0.3s ease-out,
    -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-content,
.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal-dialog-centered {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.188rem;
  border-bottom: 1px solid transparent;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.modal-header .btn-close {
  padding: 1.094rem;
  margin: -1.094rem -1.094rem -1.094rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid transparent;
  border-bottom-right-radius: calc(0.5rem - 1px);
  border-bottom-left-radius: calc(0.5rem - 1px);
}

.modal-footer>* {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1919.98px) {
  .modal-fullscreen-xxxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xxxl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xxxl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xxxl-down .modal-footer {
    border-radius: 0;
  }
}

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-auto[data-popper-placement^="top"],
.bs-tooltip-top {
  padding: 0.4rem 0;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow,
.bs-tooltip-top .tooltip-arrow {
  bottom: 0;
}

.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-auto[data-popper-placement^="right"],
.bs-tooltip-end {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow,
.bs-tooltip-end .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.bs-tooltip-end .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-auto[data-popper-placement^="bottom"],
.bs-tooltip-bottom {
  padding: 0.4rem 0;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow,
.bs-tooltip-bottom .tooltip-arrow {
  top: 0;
}

.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.bs-tooltip-bottom .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-auto[data-popper-placement^="left"],
.bs-tooltip-start {
  padding: 0 0.4rem;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow,
.bs-tooltip-start .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #000;
}

.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.5rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-sans-serif);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #f2f2f2;
  border-radius: 0.5rem;
}

.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}

.popover .popover-arrow::after,
.popover .popover-arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow,
.bs-popover-top>.popover-arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::before,
.bs-popover-top>.popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #f2f2f2;
}

.bs-popover-auto[data-popper-placement^="top"]>.popover-arrow::after,
.bs-popover-top>.popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow,
.bs-popover-end>.popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::before,
.bs-popover-end>.popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #f2f2f2;
}

.bs-popover-auto[data-popper-placement^="right"]>.popover-arrow::after,
.bs-popover-end>.popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow,
.bs-popover-bottom>.popover-arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::before,
.bs-popover-bottom>.popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: #f2f2f2;
}

.bs-popover-auto[data-popper-placement^="bottom"]>.popover-arrow::after,
.bs-popover-bottom>.popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before,
.bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow,
.bs-popover-start>.popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}

.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::before,
.bs-popover-start>.popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #f2f2f2;
}

.bs-popover-auto[data-popper-placement^="left"]>.popover-arrow::after,
.bs-popover-start>.popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid #f2f2f2;
  border-top-left-radius: calc(0.5rem - 1px);
  border-top-right-radius: calc(0.5rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1rem;
  color: #0b0c0c;
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
  animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
  animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {

  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
  }
}

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 92147483003;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition:
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    -webkit-transition: none;
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #0b0c0c;
}

.offcanvas-backdrop.fade {
  opacity: 0;
}

.offcanvas-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 0;
}

.offcanvas-header .btn-close {
  padding: 1rem 0;
  margin-top: -1rem;
  margin-right: 0;
  margin-bottom: -1rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding: 2rem 0;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid transparent;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid transparent;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.offcanvas-bottom,
.offcanvas-top {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
}

.offcanvas-top {
  top: 0;
  border-bottom: 1px solid transparent;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.offcanvas-bottom {
  border-top: 1px solid transparent;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}

.offcanvas.show {
  -webkit-transform: none;
  transform: none;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0b0c0c;
}

.link-primary:focus,
.link-primary:hover {
  color: #090a0a;
}

.link-secondary {
  color: #6c757d;
}

.link-secondary:focus,
.link-secondary:hover {
  color: #565e64;
}

.link-success {
  color: #00aa4a;
}

.link-success:focus,
.link-success:hover {
  color: #33bb6e;
}

.link-info {
  color: #0dcaf0;
}

.link-info:focus,
.link-info:hover {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}

.link-warning:focus,
.link-warning:hover {
  color: #ffcd39;
}

.link-danger {
  color: red;
}

.link-danger:focus,
.link-danger:hover {
  color: #f33;
}

.link-light {
  color: #fafafa;
}

.link-light:focus,
.link-light:hover {
  color: #fbfbfb;
}

.link-dark {
  color: #0b0c0c;
}

.link-dark:focus,
.link-dark:hover {
  color: #090a0a;
}

.link-boots-yellow,
.link-boots-yellow-b {
  color: #ffd400;
}

.link-boots-yellow-b:focus,
.link-boots-yellow-b:hover,
.link-boots-yellow:focus,
.link-boots-yellow:hover {
  color: #fd3;
}

.link-boots-black {
  color: #0b0c0c;
}

.link-boots-black:focus,
.link-boots-black:hover {
  color: #090a0a;
}

.link-boots-gray {
  color: #59595c;
}

.link-boots-gray:focus,
.link-boots-gray:hover {
  color: #47474a;
}

.link-boots-soft-gray {
  color: #9ca2a4;
}

.link-boots-soft-gray:focus,
.link-boots-soft-gray:hover {
  color: #b0b5b6;
}

.link-boots-light-gray {
  color: #e3e7e8;
}

.link-boots-light-gray:focus,
.link-boots-light-gray:hover {
  color: #e9eced;
}

.link-boots-mush {
  color: #f2f2f2;
}

.link-boots-mush:focus,
.link-boots-mush:hover {
  color: #f5f5f5;
}

.link-boots-off-white {
  color: #fafafa;
}

.link-boots-off-white:focus,
.link-boots-off-white:hover {
  color: #fbfbfb;
}

.link-boots-stroke {
  color: #f2f2f2;
}

.link-boots-stroke:focus,
.link-boots-stroke:hover {
  color: #f5f5f5;
}

.link-boots-simple {
  color: #59595c;
}

.link-boots-simple:focus,
.link-boots-simple:hover {
  color: #47474a;
}

.link-boots-dark {
  color: #0b0c0c;
}

.link-boots-dark:focus,
.link-boots-dark:hover {
  color: #090a0a;
}

.link-boots-success {
  color: #00aa4a;
}

.link-boots-success:focus,
.link-boots-success:hover {
  color: #33bb6e;
}

.link-boots-danger {
  color: red;
}

.link-boots-danger:focus,
.link-boots-danger:hover {
  color: #f33;
}

.link-boots-cyan {
  color: #1c78ff;
}

.link-boots-cyan:focus,
.link-boots-cyan:hover {
  color: #4993ff;
}

.link-boots-blue {
  color: #393a77;
}

.link-boots-blue:focus,
.link-boots-blue:hover {
  color: #2e2e5f;
}

.link-boots-facebook {
  color: #5a75b2;
}

.link-boots-facebook:focus,
.link-boots-facebook:hover {
  color: #485e8e;
}

.link-boots-twitter {
  color: #55acee;
}

.link-boots-twitter:focus,
.link-boots-twitter:hover {
  color: #77bdf1;
}

.ratio,
.ratio>* {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}

.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-bottom,
.fixed-top {
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-top {
  top: 0;
}

.fixed-bottom {
  bottom: 0;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

@media (min-width: 1920px) {
  .sticky-xxxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.hstack,
.vstack {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.hstack {
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.vstack {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.boots-cardprod-name,
.boots-cardprod-store,
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.inset-y-0,
.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0,
.inset-y-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.inset-x-0,
.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0,
.inset-x-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #f2f2f2 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #f2f2f2 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #f2f2f2 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #f2f2f2 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #f2f2f2 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0b0c0c !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #00aa4a !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: red !important;
}

.border-light {
  border-color: #fafafa !important;
}

.border-dark {
  border-color: #0b0c0c !important;
}

.border-boots-yellow,
.border-boots-yellow-b {
  border-color: #ffd400 !important;
}

.border-boots-black {
  border-color: #0b0c0c !important;
}

.border-boots-gray {
  border-color: #59595c !important;
}

.border-boots-soft-gray {
  border-color: #9ca2a4 !important;
}

.border-boots-light-gray {
  border-color: #e3e7e8 !important;
}

.border-boots-mush {
  border-color: #f2f2f2 !important;
}

.border-boots-off-white {
  border-color: #fafafa !important;
}

.border-boots-stroke {
  border-color: #f2f2f2 !important;
}

.border-boots-simple {
  border-color: #59595c !important;
}

.border-boots-dark {
  border-color: #0b0c0c !important;
}

.border-boots-success {
  border-color: #00aa4a !important;
}

.border-boots-danger {
  border-color: red !important;
}

.border-boots-cyan {
  border-color: #1c78ff !important;
}

.border-boots-blue {
  border-color: #393a77 !important;
}

.border-boots-facebook {
  border-color: #5a75b2 !important;
}

.border-boots-twitter {
  border-color: #55acee !important;
}

.border-white {
  border-color: #fff !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;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-column,
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-column-reverse,
.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-2p {
  gap: 0.125rem !important;
}

.gap-12p {
  gap: 0.75rem !important;
}

.gap-20p {
  gap: 1.25rem !important;
}

.gap-28p {
  gap: 1.75rem !important;
}

.gap-32p {
  gap: 2rem !important;
}

.gap-40p {
  gap: 2.5rem !important;
}

.gap-64p {
  gap: 4rem !important;
}

.gap-80p {
  gap: 5rem !important;
}

.gap-96p {
  gap: 6rem !important;
}

.gap-128p {
  gap: 8rem !important;
}

.gap-256p {
  gap: 16rem !important;
}

.gap-340p {
  gap: 21.25rem !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  order: 5 !important;
}

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-2p {
  margin: 0.125rem !important;
}

.m-12p {
  margin: 0.75rem !important;
}

.m-20p {
  margin: 1.25rem !important;
}

.m-28p {
  margin: 1.75rem !important;
}

.m-32p {
  margin: 2rem !important;
}

.m-40p {
  margin: 2.5rem !important;
}

.m-64p {
  margin: 4rem !important;
}

.m-80p {
  margin: 5rem !important;
}

.m-96p {
  margin: 6rem !important;
}

.m-128p {
  margin: 8rem !important;
}

.m-256p {
  margin: 16rem !important;
}

.m-340p {
  margin: 21.25rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-2p {
  margin-right: 0.125rem !important;
  margin-left: 0.125rem !important;
}

.mx-12p {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.mx-20p {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-28p {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.mx-32p {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-40p {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-64p {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.mx-80p {
  margin-right: 5rem !important;
  margin-left: 5rem !important;
}

.mx-96p {
  margin-right: 6rem !important;
  margin-left: 6rem !important;
}

.mx-128p {
  margin-right: 8rem !important;
  margin-left: 8rem !important;
}

.mx-256p {
  margin-right: 16rem !important;
  margin-left: 16rem !important;
}

.mx-340p {
  margin-right: 21.25rem !important;
  margin-left: 21.25rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-2p {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}

.my-12p {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-20p {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-28p {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.my-32p {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-40p {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-64p {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-80p {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.my-96p {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.my-128p {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.my-256p {
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}

.my-340p {
  margin-top: 21.25rem !important;
  margin-bottom: 21.25rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-2p {
  margin-top: 0.125rem !important;
}

.mt-12p {
  margin-top: 0.75rem !important;
}

.mt-20p {
  margin-top: 1.25rem !important;
}

.mt-28p {
  margin-top: 1.75rem !important;
}

.mt-32p {
  margin-top: 2rem !important;
}

.mt-40p {
  margin-top: 2.5rem !important;
}

.mt-64p {
  margin-top: 4rem !important;
}

.mt-80p {
  margin-top: 5rem !important;
}

.mt-96p {
  margin-top: 6rem !important;
}

.mt-128p {
  margin-top: 8rem !important;
}

.mt-256p {
  margin-top: 16rem !important;
}

.mt-340p {
  margin-top: 21.25rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-2p {
  margin-right: 0.125rem !important;
}

.me-12p {
  margin-right: 0.75rem !important;
}

.me-20p {
  margin-right: 1.25rem !important;
}

.me-28p {
  margin-right: 1.75rem !important;
}

.me-32p {
  margin-right: 2rem !important;
}

.me-40p {
  margin-right: 2.5rem !important;
}

.me-64p {
  margin-right: 4rem !important;
}

.me-80p {
  margin-right: 5rem !important;
}

.me-96p {
  margin-right: 6rem !important;
}

.me-128p {
  margin-right: 8rem !important;
}

.me-256p {
  margin-right: 16rem !important;
}

.me-340p {
  margin-right: 21.25rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-2p {
  margin-bottom: 0.125rem !important;
}

.mb-12p {
  margin-bottom: 0.75rem !important;
}

.mb-20p {
  margin-bottom: 1.25rem !important;
}

.mb-28p {
  margin-bottom: 1.75rem !important;
}

.mb-32p {
  margin-bottom: 2rem !important;
}

.mb-40p {
  margin-bottom: 2.5rem !important;
}

.mb-64p {
  margin-bottom: 4rem !important;
}

.mb-80p {
  margin-bottom: 5rem !important;
}

.mb-96p {
  margin-bottom: 6rem !important;
}

.mb-128p {
  margin-bottom: 8rem !important;
}

.mb-256p {
  margin-bottom: 16rem !important;
}

.mb-340p {
  margin-bottom: 21.25rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-2p {
  margin-left: 0.125rem !important;
}

.ms-12p {
  margin-left: 0.75rem !important;
}

.ms-20p {
  margin-left: 1.25rem !important;
}

.ms-28p {
  margin-left: 1.75rem !important;
}

.ms-32p {
  margin-left: 2rem !important;
}

.ms-40p {
  margin-left: 2.5rem !important;
}

.ms-64p {
  margin-left: 4rem !important;
}

.ms-80p {
  margin-left: 5rem !important;
}

.ms-96p {
  margin-left: 6rem !important;
}

.ms-128p {
  margin-left: 8rem !important;
}

.ms-256p {
  margin-left: 16rem !important;
}

.ms-340p {
  margin-left: 21.25rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.m-n2p {
  margin: -0.125rem !important;
}

.m-n12p {
  margin: -0.75rem !important;
}

.m-n20p {
  margin: -1.25rem !important;
}

.m-n28p {
  margin: -1.75rem !important;
}

.m-n32p {
  margin: -2rem !important;
}

.m-n40p {
  margin: -2.5rem !important;
}

.m-n64p {
  margin: -4rem !important;
}

.m-n80p {
  margin: -5rem !important;
}

.m-n96p {
  margin: -6rem !important;
}

.m-n128p {
  margin: -8rem !important;
}

.m-n256p {
  margin: -16rem !important;
}

.m-n340p {
  margin: -21.25rem !important;
}

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n4 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n5 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.mx-n2p {
  margin-right: -0.125rem !important;
  margin-left: -0.125rem !important;
}

.mx-n12p {
  margin-right: -0.75rem !important;
  margin-left: -0.75rem !important;
}

.mx-n20p {
  margin-right: -1.25rem !important;
  margin-left: -1.25rem !important;
}

.mx-n28p {
  margin-right: -1.75rem !important;
  margin-left: -1.75rem !important;
}

.mx-n32p {
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}

.mx-n40p {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

.mx-n64p {
  margin-right: -4rem !important;
  margin-left: -4rem !important;
}

.mx-n80p {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}

.mx-n96p {
  margin-right: -6rem !important;
  margin-left: -6rem !important;
}

.mx-n128p {
  margin-right: -8rem !important;
  margin-left: -8rem !important;
}

.mx-n256p {
  margin-right: -16rem !important;
  margin-left: -16rem !important;
}

.mx-n340p {
  margin-right: -21.25rem !important;
  margin-left: -21.25rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n4 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n5 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n2p {
  margin-top: -0.125rem !important;
  margin-bottom: -0.125rem !important;
}

.my-n12p {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.my-n20p {
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.my-n28p {
  margin-top: -1.75rem !important;
  margin-bottom: -1.75rem !important;
}

.my-n32p {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.my-n40p {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.my-n64p {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.my-n80p {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.my-n96p {
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.my-n128p {
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.my-n256p {
  margin-top: -16rem !important;
  margin-bottom: -16rem !important;
}

.my-n340p {
  margin-top: -21.25rem !important;
  margin-bottom: -21.25rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mt-n2p {
  margin-top: -0.125rem !important;
}

.mt-n12p {
  margin-top: -0.75rem !important;
}

.mt-n20p {
  margin-top: -1.25rem !important;
}

.mt-n28p {
  margin-top: -1.75rem !important;
}

.mt-n32p {
  margin-top: -2rem !important;
}

.mt-n40p {
  margin-top: -2.5rem !important;
}

.mt-n64p {
  margin-top: -4rem !important;
}

.mt-n80p {
  margin-top: -5rem !important;
}

.mt-n96p {
  margin-top: -6rem !important;
}

.mt-n128p {
  margin-top: -8rem !important;
}

.mt-n256p {
  margin-top: -16rem !important;
}

.mt-n340p {
  margin-top: -21.25rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.me-n2p {
  margin-right: -0.125rem !important;
}

.me-n12p {
  margin-right: -0.75rem !important;
}

.me-n20p {
  margin-right: -1.25rem !important;
}

.me-n28p {
  margin-right: -1.75rem !important;
}

.me-n32p {
  margin-right: -2rem !important;
}

.me-n40p {
  margin-right: -2.5rem !important;
}

.me-n64p {
  margin-right: -4rem !important;
}

.me-n80p {
  margin-right: -5rem !important;
}

.me-n96p {
  margin-right: -6rem !important;
}

.me-n128p {
  margin-right: -8rem !important;
}

.me-n256p {
  margin-right: -16rem !important;
}

.me-n340p {
  margin-right: -21.25rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.mb-n2p {
  margin-bottom: -0.125rem !important;
}

.mb-n12p {
  margin-bottom: -0.75rem !important;
}

.mb-n20p {
  margin-bottom: -1.25rem !important;
}

.mb-n28p {
  margin-bottom: -1.75rem !important;
}

.mb-n32p {
  margin-bottom: -2rem !important;
}

.mb-n40p {
  margin-bottom: -2.5rem !important;
}

.mb-n64p {
  margin-bottom: -4rem !important;
}

.mb-n80p {
  margin-bottom: -5rem !important;
}

.mb-n96p {
  margin-bottom: -6rem !important;
}

.mb-n128p {
  margin-bottom: -8rem !important;
}

.mb-n256p {
  margin-bottom: -16rem !important;
}

.mb-n340p {
  margin-bottom: -21.25rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.ms-n2p {
  margin-left: -0.125rem !important;
}

.ms-n12p {
  margin-left: -0.75rem !important;
}

.ms-n20p {
  margin-left: -1.25rem !important;
}

.ms-n28p {
  margin-left: -1.75rem !important;
}

.ms-n32p {
  margin-left: -2rem !important;
}

.ms-n40p {
  margin-left: -2.5rem !important;
}

.ms-n64p {
  margin-left: -4rem !important;
}

.ms-n80p {
  margin-left: -5rem !important;
}

.ms-n96p {
  margin-left: -6rem !important;
}

.ms-n128p {
  margin-left: -8rem !important;
}

.ms-n256p {
  margin-left: -16rem !important;
}

.ms-n340p {
  margin-left: -21.25rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-2p {
  padding: 0.125rem !important;
}

.p-12p {
  padding: 0.75rem !important;
}

.p-20p {
  padding: 1.25rem !important;
}

.p-28p {
  padding: 1.75rem !important;
}

.p-32p {
  padding: 2rem !important;
}

.p-40p {
  padding: 2.5rem !important;
}

.p-64p {
  padding: 4rem !important;
}

.p-80p {
  padding: 5rem !important;
}

.p-96p {
  padding: 6rem !important;
}

.p-128p {
  padding: 8rem !important;
}

.p-256p {
  padding: 16rem !important;
}

.p-340p {
  padding: 21.25rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-2p {
  padding-right: 0.125rem !important;
  padding-left: 0.125rem !important;
}

.px-12p {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.px-20p {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-28p {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.px-32p {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-40p {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-64p {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.px-80p {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

.px-96p {
  padding-right: 6rem !important;
  padding-left: 6rem !important;
}

.px-128p {
  padding-right: 8rem !important;
  padding-left: 8rem !important;
}

.px-256p {
  padding-right: 16rem !important;
  padding-left: 16rem !important;
}

.px-340p {
  padding-right: 21.25rem !important;
  padding-left: 21.25rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-2p {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}

.py-12p {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-20p {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-28p {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.py-32p {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-40p {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-64p {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-80p {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.py-96p {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.py-128p {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.py-256p {
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.py-340p {
  padding-top: 21.25rem !important;
  padding-bottom: 21.25rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-2p {
  padding-top: 0.125rem !important;
}

.pt-12p {
  padding-top: 0.75rem !important;
}

.pt-20p {
  padding-top: 1.25rem !important;
}

.pt-28p {
  padding-top: 1.75rem !important;
}

.pt-32p {
  padding-top: 2rem !important;
}

.pt-40p {
  padding-top: 2.5rem !important;
}

.pt-64p {
  padding-top: 4rem !important;
}

.pt-80p {
  padding-top: 5rem !important;
}

.pt-96p {
  padding-top: 6rem !important;
}

.pt-128p {
  padding-top: 8rem !important;
}

.pt-256p {
  padding-top: 16rem !important;
}

.pt-340p {
  padding-top: 21.25rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pe-2p {
  padding-right: 0.125rem !important;
}

.pe-12p {
  padding-right: 0.75rem !important;
}

.pe-20p {
  padding-right: 1.25rem !important;
}

.pe-28p {
  padding-right: 1.75rem !important;
}

.pe-32p {
  padding-right: 2rem !important;
}

.pe-40p {
  padding-right: 2.5rem !important;
}

.pe-64p {
  padding-right: 4rem !important;
}

.pe-80p {
  padding-right: 5rem !important;
}

.pe-96p {
  padding-right: 6rem !important;
}

.pe-128p {
  padding-right: 8rem !important;
}

.pe-256p {
  padding-right: 16rem !important;
}

.pe-340p {
  padding-right: 21.25rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-2p {
  padding-bottom: 0.125rem !important;
}

.pb-12p {
  padding-bottom: 0.75rem !important;
}

.pb-20p {
  padding-bottom: 1.25rem !important;
}

.pb-28p {
  padding-bottom: 1.75rem !important;
}

.pb-32p {
  padding-bottom: 2rem !important;
}

.pb-40p {
  padding-bottom: 2.5rem !important;
}

.pb-64p {
  padding-bottom: 4rem !important;
}

.pb-80p {
  padding-bottom: 5rem !important;
}

.pb-96p {
  padding-bottom: 6rem !important;
}

.pb-128p {
  padding-bottom: 8rem !important;
}

.pb-256p {
  padding-bottom: 16rem !important;
}

.pb-340p {
  padding-bottom: 21.25rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-2p {
  padding-left: 0.125rem !important;
}

.ps-12p {
  padding-left: 0.75rem !important;
}

.ps-20p {
  padding-left: 1.25rem !important;
}

.ps-28p {
  padding-left: 1.75rem !important;
}

.ps-32p {
  padding-left: 2rem !important;
}

.ps-40p {
  padding-left: 2.5rem !important;
}

.ps-64p {
  padding-left: 4rem !important;
}

.ps-80p {
  padding-left: 5rem !important;
}

.ps-96p {
  padding-left: 6rem !important;
}

.ps-128p {
  padding-left: 8rem !important;
}

.ps-256p {
  padding-left: 16rem !important;
}

.ps-340p {
  padding-left: 21.25rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary,
.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info,
.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger,
.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-black,
.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-body,
.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.text-black-50,
.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb),
      var(--bs-bg-opacity)) !important;
}

.bg-secondary,
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb),
      var(--bs-bg-opacity)) !important;
}

.bg-success {
  background-color: rgba(var(--bs-success-rgb),
      var(--bs-bg-opacity)) !important;
}

.bg-info,
.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  background-color: rgba(var(--bs-warning-rgb),
      var(--bs-bg-opacity)) !important;
}

.bg-danger,
.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black,
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body,
.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  background-color: rgba(var(--bs-body-bg-rgb),
      var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.rounded-1,
.rounded-2,
.rounded-3 {
  border-radius: 0.5rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.boots-badge--icon,
.boots-badge--md,
.boots-badge-business,
.boots-badge-circle,
.boots-badge-corp,
.boots-badge-discount,
.boots-badge-pro,
.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-end,
.rounded-top {
  border-top-right-radius: 0.5rem !important;
}

.rounded-top {
  border-top-left-radius: 0.5rem !important;
}

.rounded-end {
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-bottom,
.rounded-start {
  border-bottom-left-radius: 0.5rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-start {
  border-top-left-radius: 0.5rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.boots-bg-black {
  background-color: #0b0c0c !important;
}

.boots-bg-white {
  background-color: #fff !important;
}

.boots-bg-warning {
  background-color: #b47700 !important;
}

.boots-bg-yellow {
  background-color: #ffd400 !important;
}

.boots-bg-green {
  background-color: #00aa4a !important;
}

.boots-bg-cyan {
  background-color: #1c78ff !important;
}

.boots-bg-red {
  background-color: red !important;
}

.boots-bg-blue {
  background-color: #393a77 !important;
}

.boots-bg-gray {
  background-color: #59595c !important;
}

.boots-bg-soft-gray {
  background-color: #9ca2a4 !important;
}

.boots-bg-light-gray {
  background-color: #e3e7e8 !important;
}

.boots-bg-mush,
.boots-bg-stroke {
  background-color: #f2f2f2 !important;
}

.boots-bg-off-white {
  background-color: #fafafa !important;
}

.boots-txt-black {
  color: #0b0c0c !important;
}

.boots-txt-white {
  color: #fff !important;
}

.boots-txt-warning {
  color: #b47700 !important;
}

.boots-txt-yellow {
  color: #ffd400 !important;
}

.boots-txt-green {
  color: #00aa4a !important;
}

.boots-txt-cyan {
  color: #1c78ff !important;
}

.boots-txt-red {
  color: red !important;
}

.boots-txt-blue {
  color: #393a77 !important;
}

.boots-txt-gray {
  color: #59595c !important;
}

.boots-txt-soft-gray {
  color: #9ca2a4 !important;
}

.boots-txt-light-gray {
  color: #e3e7e8 !important;
}

.boots-txt-mush,
.boots-txt-stroke {
  color: #f2f2f2 !important;
}

.boots-txt-off-white {
  color: #fafafa !important;
}

.boots-position-static {
  position: static !important;
}

.boots-position-absolute {
  position: absolute !important;
}

.boots-position-relative {
  position: relative !important;
}

.boots-position-fixed {
  position: fixed !important;
}

.boots-position-sticky {
  position: sticky !important;
}

.boots-fw-book {
  font-weight: 400 !important;
}

.boots-fw-medium {
  font-weight: 500 !important;
}

.boots-fw-bold {
  font-weight: 600 !important;
}

.boots-fw-black {
  font-weight: 700 !important;
}

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-column,
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-column-reverse,
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-2p {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }

  .mx-sm-12p {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-sm-20p {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-sm-28p {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-sm-32p {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-sm-40p {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-sm-64p {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-sm-80p {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-sm-96p {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-sm-128p {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-sm-256p {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }

  .mx-sm-340p {
    margin-right: 21.25rem !important;
    margin-left: 21.25rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-2p {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .my-sm-12p {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-sm-20p {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-sm-28p {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-sm-32p {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-sm-40p {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-sm-64p {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-sm-80p {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-sm-96p {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-sm-128p {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-sm-256p {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .my-sm-340p {
    margin-top: 21.25rem !important;
    margin-bottom: 21.25rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-2p {
    margin-top: 0.125rem !important;
  }

  .mt-sm-12p {
    margin-top: 0.75rem !important;
  }

  .mt-sm-20p {
    margin-top: 1.25rem !important;
  }

  .mt-sm-28p {
    margin-top: 1.75rem !important;
  }

  .mt-sm-32p {
    margin-top: 2rem !important;
  }

  .mt-sm-40p {
    margin-top: 2.5rem !important;
  }

  .mt-sm-64p {
    margin-top: 4rem !important;
  }

  .mt-sm-80p {
    margin-top: 5rem !important;
  }

  .mt-sm-96p {
    margin-top: 6rem !important;
  }

  .mt-sm-128p {
    margin-top: 8rem !important;
  }

  .mt-sm-256p {
    margin-top: 16rem !important;
  }

  .mt-sm-340p {
    margin-top: 21.25rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-2p {
    margin-right: 0.125rem !important;
  }

  .me-sm-12p {
    margin-right: 0.75rem !important;
  }

  .me-sm-20p {
    margin-right: 1.25rem !important;
  }

  .me-sm-28p {
    margin-right: 1.75rem !important;
  }

  .me-sm-32p {
    margin-right: 2rem !important;
  }

  .me-sm-40p {
    margin-right: 2.5rem !important;
  }

  .me-sm-64p {
    margin-right: 4rem !important;
  }

  .me-sm-80p {
    margin-right: 5rem !important;
  }

  .me-sm-96p {
    margin-right: 6rem !important;
  }

  .me-sm-128p {
    margin-right: 8rem !important;
  }

  .me-sm-256p {
    margin-right: 16rem !important;
  }

  .me-sm-340p {
    margin-right: 21.25rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-2p {
    margin-bottom: 0.125rem !important;
  }

  .mb-sm-12p {
    margin-bottom: 0.75rem !important;
  }

  .mb-sm-20p {
    margin-bottom: 1.25rem !important;
  }

  .mb-sm-28p {
    margin-bottom: 1.75rem !important;
  }

  .mb-sm-32p {
    margin-bottom: 2rem !important;
  }

  .mb-sm-40p {
    margin-bottom: 2.5rem !important;
  }

  .mb-sm-64p {
    margin-bottom: 4rem !important;
  }

  .mb-sm-80p {
    margin-bottom: 5rem !important;
  }

  .mb-sm-96p {
    margin-bottom: 6rem !important;
  }

  .mb-sm-128p {
    margin-bottom: 8rem !important;
  }

  .mb-sm-256p {
    margin-bottom: 16rem !important;
  }

  .mb-sm-340p {
    margin-bottom: 21.25rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-2p {
    margin-left: 0.125rem !important;
  }

  .ms-sm-12p {
    margin-left: 0.75rem !important;
  }

  .ms-sm-20p {
    margin-left: 1.25rem !important;
  }

  .ms-sm-28p {
    margin-left: 1.75rem !important;
  }

  .ms-sm-32p {
    margin-left: 2rem !important;
  }

  .ms-sm-40p {
    margin-left: 2.5rem !important;
  }

  .ms-sm-64p {
    margin-left: 4rem !important;
  }

  .ms-sm-80p {
    margin-left: 5rem !important;
  }

  .ms-sm-96p {
    margin-left: 6rem !important;
  }

  .ms-sm-128p {
    margin-left: 8rem !important;
  }

  .ms-sm-256p {
    margin-left: 16rem !important;
  }

  .ms-sm-340p {
    margin-left: 21.25rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-column,
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-column-reverse,
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .gap-md-2p {
    gap: 0.125rem !important;
  }

  .gap-md-12p {
    gap: 0.75rem !important;
  }

  .gap-md-20p {
    gap: 1.25rem !important;
  }

  .gap-md-28p {
    gap: 1.75rem !important;
  }

  .gap-md-32p {
    gap: 2rem !important;
  }

  .gap-md-40p {
    gap: 2.5rem !important;
  }

  .gap-md-64p {
    gap: 4rem !important;
  }

  .gap-md-80p {
    gap: 5rem !important;
  }

  .gap-md-96p {
    gap: 6rem !important;
  }

  .gap-md-128p {
    gap: 8rem !important;
  }

  .gap-md-256p {
    gap: 16rem !important;
  }

  .gap-md-340p {
    gap: 21.25rem !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-2p {
    margin: 0.125rem !important;
  }

  .m-md-12p {
    margin: 0.75rem !important;
  }

  .m-md-20p {
    margin: 1.25rem !important;
  }

  .m-md-28p {
    margin: 1.75rem !important;
  }

  .m-md-32p {
    margin: 2rem !important;
  }

  .m-md-40p {
    margin: 2.5rem !important;
  }

  .m-md-64p {
    margin: 4rem !important;
  }

  .m-md-80p {
    margin: 5rem !important;
  }

  .m-md-96p {
    margin: 6rem !important;
  }

  .m-md-128p {
    margin: 8rem !important;
  }

  .m-md-256p {
    margin: 16rem !important;
  }

  .m-md-340p {
    margin: 21.25rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-2p {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }

  .mx-md-12p {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-md-20p {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-md-28p {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-md-32p {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-md-40p {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-md-64p {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-md-80p {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-md-96p {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-md-128p {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-md-256p {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }

  .mx-md-340p {
    margin-right: 21.25rem !important;
    margin-left: 21.25rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-2p {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .my-md-12p {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-md-20p {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-md-28p {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-md-32p {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-md-40p {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-md-64p {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-md-80p {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-md-96p {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-md-128p {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-md-256p {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .my-md-340p {
    margin-top: 21.25rem !important;
    margin-bottom: 21.25rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-2p {
    margin-top: 0.125rem !important;
  }

  .mt-md-12p {
    margin-top: 0.75rem !important;
  }

  .mt-md-20p {
    margin-top: 1.25rem !important;
  }

  .mt-md-28p {
    margin-top: 1.75rem !important;
  }

  .mt-md-32p {
    margin-top: 2rem !important;
  }

  .mt-md-40p {
    margin-top: 2.5rem !important;
  }

  .mt-md-64p {
    margin-top: 4rem !important;
  }

  .mt-md-80p {
    margin-top: 5rem !important;
  }

  .mt-md-96p {
    margin-top: 6rem !important;
  }

  .mt-md-128p {
    margin-top: 8rem !important;
  }

  .mt-md-256p {
    margin-top: 16rem !important;
  }

  .mt-md-340p {
    margin-top: 21.25rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-2p {
    margin-right: 0.125rem !important;
  }

  .me-md-12p {
    margin-right: 0.75rem !important;
  }

  .me-md-20p {
    margin-right: 1.25rem !important;
  }

  .me-md-28p {
    margin-right: 1.75rem !important;
  }

  .me-md-32p {
    margin-right: 2rem !important;
  }

  .me-md-40p {
    margin-right: 2.5rem !important;
  }

  .me-md-64p {
    margin-right: 4rem !important;
  }

  .me-md-80p {
    margin-right: 5rem !important;
  }

  .me-md-96p {
    margin-right: 6rem !important;
  }

  .me-md-128p {
    margin-right: 8rem !important;
  }

  .me-md-256p {
    margin-right: 16rem !important;
  }

  .me-md-340p {
    margin-right: 21.25rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-2p {
    margin-bottom: 0.125rem !important;
  }

  .mb-md-12p {
    margin-bottom: 0.75rem !important;
  }

  .mb-md-20p {
    margin-bottom: 1.25rem !important;
  }

  .mb-md-28p {
    margin-bottom: 1.75rem !important;
  }

  .mb-md-32p {
    margin-bottom: 2rem !important;
  }

  .mb-md-40p {
    margin-bottom: 2.5rem !important;
  }

  .mb-md-64p {
    margin-bottom: 4rem !important;
  }

  .mb-md-80p {
    margin-bottom: 5rem !important;
  }

  .mb-md-96p {
    margin-bottom: 6rem !important;
  }

  .mb-md-128p {
    margin-bottom: 8rem !important;
  }

  .mb-md-256p {
    margin-bottom: 16rem !important;
  }

  .mb-md-340p {
    margin-bottom: 21.25rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-2p {
    margin-left: 0.125rem !important;
  }

  .ms-md-12p {
    margin-left: 0.75rem !important;
  }

  .ms-md-20p {
    margin-left: 1.25rem !important;
  }

  .ms-md-28p {
    margin-left: 1.75rem !important;
  }

  .ms-md-32p {
    margin-left: 2rem !important;
  }

  .ms-md-40p {
    margin-left: 2.5rem !important;
  }

  .ms-md-64p {
    margin-left: 4rem !important;
  }

  .ms-md-80p {
    margin-left: 5rem !important;
  }

  .ms-md-96p {
    margin-left: 6rem !important;
  }

  .ms-md-128p {
    margin-left: 8rem !important;
  }

  .ms-md-256p {
    margin-left: 16rem !important;
  }

  .ms-md-340p {
    margin-left: 21.25rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .m-md-n2p {
    margin: -0.125rem !important;
  }

  .m-md-n12p {
    margin: -0.75rem !important;
  }

  .m-md-n20p {
    margin: -1.25rem !important;
  }

  .m-md-n28p {
    margin: -1.75rem !important;
  }

  .m-md-n32p {
    margin: -2rem !important;
  }

  .m-md-n40p {
    margin: -2.5rem !important;
  }

  .m-md-n64p {
    margin: -4rem !important;
  }

  .m-md-n80p {
    margin: -5rem !important;
  }

  .m-md-n96p {
    margin: -6rem !important;
  }

  .m-md-n128p {
    margin: -8rem !important;
  }

  .m-md-n256p {
    margin: -16rem !important;
  }

  .m-md-n340p {
    margin: -21.25rem !important;
  }

  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-md-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-md-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-md-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-md-n2p {
    margin-right: -0.125rem !important;
    margin-left: -0.125rem !important;
  }

  .mx-md-n12p {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-md-n20p {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-md-n28p {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-md-n32p {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-md-n40p {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-md-n64p {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-md-n80p {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .mx-md-n96p {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }

  .mx-md-n128p {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }

  .mx-md-n256p {
    margin-right: -16rem !important;
    margin-left: -16rem !important;
  }

  .mx-md-n340p {
    margin-right: -21.25rem !important;
    margin-left: -21.25rem !important;
  }

  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-md-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-md-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-md-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-md-n2p {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .my-md-n12p {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-md-n20p {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-md-n28p {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-md-n32p {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-md-n40p {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-md-n64p {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-md-n80p {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .my-md-n96p {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-md-n128p {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .my-md-n256p {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .my-md-n340p {
    margin-top: -21.25rem !important;
    margin-bottom: -21.25rem !important;
  }

  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-md-n3 {
    margin-top: -1rem !important;
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-md-n5 {
    margin-top: -3rem !important;
  }

  .mt-md-n2p {
    margin-top: -0.125rem !important;
  }

  .mt-md-n12p {
    margin-top: -0.75rem !important;
  }

  .mt-md-n20p {
    margin-top: -1.25rem !important;
  }

  .mt-md-n28p {
    margin-top: -1.75rem !important;
  }

  .mt-md-n32p {
    margin-top: -2rem !important;
  }

  .mt-md-n40p {
    margin-top: -2.5rem !important;
  }

  .mt-md-n64p {
    margin-top: -4rem !important;
  }

  .mt-md-n80p {
    margin-top: -5rem !important;
  }

  .mt-md-n96p {
    margin-top: -6rem !important;
  }

  .mt-md-n128p {
    margin-top: -8rem !important;
  }

  .mt-md-n256p {
    margin-top: -16rem !important;
  }

  .mt-md-n340p {
    margin-top: -21.25rem !important;
  }

  .me-md-n1 {
    margin-right: -0.25rem !important;
  }

  .me-md-n2 {
    margin-right: -0.5rem !important;
  }

  .me-md-n3 {
    margin-right: -1rem !important;
  }

  .me-md-n4 {
    margin-right: -1.5rem !important;
  }

  .me-md-n5 {
    margin-right: -3rem !important;
  }

  .me-md-n2p {
    margin-right: -0.125rem !important;
  }

  .me-md-n12p {
    margin-right: -0.75rem !important;
  }

  .me-md-n20p {
    margin-right: -1.25rem !important;
  }

  .me-md-n28p {
    margin-right: -1.75rem !important;
  }

  .me-md-n32p {
    margin-right: -2rem !important;
  }

  .me-md-n40p {
    margin-right: -2.5rem !important;
  }

  .me-md-n64p {
    margin-right: -4rem !important;
  }

  .me-md-n80p {
    margin-right: -5rem !important;
  }

  .me-md-n96p {
    margin-right: -6rem !important;
  }

  .me-md-n128p {
    margin-right: -8rem !important;
  }

  .me-md-n256p {
    margin-right: -16rem !important;
  }

  .me-md-n340p {
    margin-right: -21.25rem !important;
  }

  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-md-n2p {
    margin-bottom: -0.125rem !important;
  }

  .mb-md-n12p {
    margin-bottom: -0.75rem !important;
  }

  .mb-md-n20p {
    margin-bottom: -1.25rem !important;
  }

  .mb-md-n28p {
    margin-bottom: -1.75rem !important;
  }

  .mb-md-n32p {
    margin-bottom: -2rem !important;
  }

  .mb-md-n40p {
    margin-bottom: -2.5rem !important;
  }

  .mb-md-n64p {
    margin-bottom: -4rem !important;
  }

  .mb-md-n80p {
    margin-bottom: -5rem !important;
  }

  .mb-md-n96p {
    margin-bottom: -6rem !important;
  }

  .mb-md-n128p {
    margin-bottom: -8rem !important;
  }

  .mb-md-n256p {
    margin-bottom: -16rem !important;
  }

  .mb-md-n340p {
    margin-bottom: -21.25rem !important;
  }

  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-md-n3 {
    margin-left: -1rem !important;
  }

  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-md-n5 {
    margin-left: -3rem !important;
  }

  .ms-md-n2p {
    margin-left: -0.125rem !important;
  }

  .ms-md-n12p {
    margin-left: -0.75rem !important;
  }

  .ms-md-n20p {
    margin-left: -1.25rem !important;
  }

  .ms-md-n28p {
    margin-left: -1.75rem !important;
  }

  .ms-md-n32p {
    margin-left: -2rem !important;
  }

  .ms-md-n40p {
    margin-left: -2.5rem !important;
  }

  .ms-md-n64p {
    margin-left: -4rem !important;
  }

  .ms-md-n80p {
    margin-left: -5rem !important;
  }

  .ms-md-n96p {
    margin-left: -6rem !important;
  }

  .ms-md-n128p {
    margin-left: -8rem !important;
  }

  .ms-md-n256p {
    margin-left: -16rem !important;
  }

  .ms-md-n340p {
    margin-left: -21.25rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .p-md-2p {
    padding: 0.125rem !important;
  }

  .p-md-12p {
    padding: 0.75rem !important;
  }

  .p-md-20p {
    padding: 1.25rem !important;
  }

  .p-md-28p {
    padding: 1.75rem !important;
  }

  .p-md-32p {
    padding: 2rem !important;
  }

  .p-md-40p {
    padding: 2.5rem !important;
  }

  .p-md-64p {
    padding: 4rem !important;
  }

  .p-md-80p {
    padding: 5rem !important;
  }

  .p-md-96p {
    padding: 6rem !important;
  }

  .p-md-128p {
    padding: 8rem !important;
  }

  .p-md-256p {
    padding: 16rem !important;
  }

  .p-md-340p {
    padding: 21.25rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-md-2p {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }

  .px-md-12p {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-md-20p {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-md-28p {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-md-32p {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-md-40p {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-md-64p {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-md-80p {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-md-96p {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-md-128p {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-md-256p {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }

  .px-md-340p {
    padding-right: 21.25rem !important;
    padding-left: 21.25rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-md-2p {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .py-md-12p {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-md-20p {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-md-28p {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-md-32p {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-md-40p {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-md-64p {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-md-80p {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-md-96p {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-md-128p {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-md-256p {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .py-md-340p {
    padding-top: 21.25rem !important;
    padding-bottom: 21.25rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pt-md-2p {
    padding-top: 0.125rem !important;
  }

  .pt-md-12p {
    padding-top: 0.75rem !important;
  }

  .pt-md-20p {
    padding-top: 1.25rem !important;
  }

  .pt-md-28p {
    padding-top: 1.75rem !important;
  }

  .pt-md-32p {
    padding-top: 2rem !important;
  }

  .pt-md-40p {
    padding-top: 2.5rem !important;
  }

  .pt-md-64p {
    padding-top: 4rem !important;
  }

  .pt-md-80p {
    padding-top: 5rem !important;
  }

  .pt-md-96p {
    padding-top: 6rem !important;
  }

  .pt-md-128p {
    padding-top: 8rem !important;
  }

  .pt-md-256p {
    padding-top: 16rem !important;
  }

  .pt-md-340p {
    padding-top: 21.25rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pe-md-2p {
    padding-right: 0.125rem !important;
  }

  .pe-md-12p {
    padding-right: 0.75rem !important;
  }

  .pe-md-20p {
    padding-right: 1.25rem !important;
  }

  .pe-md-28p {
    padding-right: 1.75rem !important;
  }

  .pe-md-32p {
    padding-right: 2rem !important;
  }

  .pe-md-40p {
    padding-right: 2.5rem !important;
  }

  .pe-md-64p {
    padding-right: 4rem !important;
  }

  .pe-md-80p {
    padding-right: 5rem !important;
  }

  .pe-md-96p {
    padding-right: 6rem !important;
  }

  .pe-md-128p {
    padding-right: 8rem !important;
  }

  .pe-md-256p {
    padding-right: 16rem !important;
  }

  .pe-md-340p {
    padding-right: 21.25rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pb-md-2p {
    padding-bottom: 0.125rem !important;
  }

  .pb-md-12p {
    padding-bottom: 0.75rem !important;
  }

  .pb-md-20p {
    padding-bottom: 1.25rem !important;
  }

  .pb-md-28p {
    padding-bottom: 1.75rem !important;
  }

  .pb-md-32p {
    padding-bottom: 2rem !important;
  }

  .pb-md-40p {
    padding-bottom: 2.5rem !important;
  }

  .pb-md-64p {
    padding-bottom: 4rem !important;
  }

  .pb-md-80p {
    padding-bottom: 5rem !important;
  }

  .pb-md-96p {
    padding-bottom: 6rem !important;
  }

  .pb-md-128p {
    padding-bottom: 8rem !important;
  }

  .pb-md-256p {
    padding-bottom: 16rem !important;
  }

  .pb-md-340p {
    padding-bottom: 21.25rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .ps-md-2p {
    padding-left: 0.125rem !important;
  }

  .ps-md-12p {
    padding-left: 0.75rem !important;
  }

  .ps-md-20p {
    padding-left: 1.25rem !important;
  }

  .ps-md-28p {
    padding-left: 1.75rem !important;
  }

  .ps-md-32p {
    padding-left: 2rem !important;
  }

  .ps-md-40p {
    padding-left: 2.5rem !important;
  }

  .ps-md-64p {
    padding-left: 4rem !important;
  }

  .ps-md-80p {
    padding-left: 5rem !important;
  }

  .ps-md-96p {
    padding-left: 6rem !important;
  }

  .ps-md-128p {
    padding-left: 8rem !important;
  }

  .ps-md-256p {
    padding-left: 16rem !important;
  }

  .ps-md-340p {
    padding-left: 21.25rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .boots-position-md-static {
    position: static !important;
  }

  .boots-position-md-absolute {
    position: absolute !important;
  }

  .boots-position-md-relative {
    position: relative !important;
  }

  .boots-position-md-fixed {
    position: fixed !important;
  }

  .boots-position-md-sticky {
    position: sticky !important;
  }
}

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-column,
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-column-reverse,
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .gap-lg-2p {
    gap: 0.125rem !important;
  }

  .gap-lg-12p {
    gap: 0.75rem !important;
  }

  .gap-lg-20p {
    gap: 1.25rem !important;
  }

  .gap-lg-28p {
    gap: 1.75rem !important;
  }

  .gap-lg-32p {
    gap: 2rem !important;
  }

  .gap-lg-40p {
    gap: 2.5rem !important;
  }

  .gap-lg-64p {
    gap: 4rem !important;
  }

  .gap-lg-80p {
    gap: 5rem !important;
  }

  .gap-lg-96p {
    gap: 6rem !important;
  }

  .gap-lg-128p {
    gap: 8rem !important;
  }

  .gap-lg-256p {
    gap: 16rem !important;
  }

  .gap-lg-340p {
    gap: 21.25rem !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-2p {
    margin: 0.125rem !important;
  }

  .m-lg-12p {
    margin: 0.75rem !important;
  }

  .m-lg-20p {
    margin: 1.25rem !important;
  }

  .m-lg-28p {
    margin: 1.75rem !important;
  }

  .m-lg-32p {
    margin: 2rem !important;
  }

  .m-lg-40p {
    margin: 2.5rem !important;
  }

  .m-lg-64p {
    margin: 4rem !important;
  }

  .m-lg-80p {
    margin: 5rem !important;
  }

  .m-lg-96p {
    margin: 6rem !important;
  }

  .m-lg-128p {
    margin: 8rem !important;
  }

  .m-lg-256p {
    margin: 16rem !important;
  }

  .m-lg-340p {
    margin: 21.25rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-2p {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }

  .mx-lg-12p {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-lg-20p {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-lg-28p {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-lg-32p {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-lg-40p {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-lg-64p {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-lg-80p {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-lg-96p {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-lg-128p {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-lg-256p {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }

  .mx-lg-340p {
    margin-right: 21.25rem !important;
    margin-left: 21.25rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-2p {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .my-lg-12p {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-lg-20p {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-lg-28p {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-lg-32p {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-lg-40p {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-lg-64p {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-lg-80p {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-lg-96p {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-lg-128p {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-lg-256p {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .my-lg-340p {
    margin-top: 21.25rem !important;
    margin-bottom: 21.25rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-2p {
    margin-top: 0.125rem !important;
  }

  .mt-lg-12p {
    margin-top: 0.75rem !important;
  }

  .mt-lg-20p {
    margin-top: 1.25rem !important;
  }

  .mt-lg-28p {
    margin-top: 1.75rem !important;
  }

  .mt-lg-32p {
    margin-top: 2rem !important;
  }

  .mt-lg-40p {
    margin-top: 2.5rem !important;
  }

  .mt-lg-64p {
    margin-top: 4rem !important;
  }

  .mt-lg-80p {
    margin-top: 5rem !important;
  }

  .mt-lg-96p {
    margin-top: 6rem !important;
  }

  .mt-lg-128p {
    margin-top: 8rem !important;
  }

  .mt-lg-256p {
    margin-top: 16rem !important;
  }

  .mt-lg-340p {
    margin-top: 21.25rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-2p {
    margin-right: 0.125rem !important;
  }

  .me-lg-12p {
    margin-right: 0.75rem !important;
  }

  .me-lg-20p {
    margin-right: 1.25rem !important;
  }

  .me-lg-28p {
    margin-right: 1.75rem !important;
  }

  .me-lg-32p {
    margin-right: 2rem !important;
  }

  .me-lg-40p {
    margin-right: 2.5rem !important;
  }

  .me-lg-64p {
    margin-right: 4rem !important;
  }

  .me-lg-80p {
    margin-right: 5rem !important;
  }

  .me-lg-96p {
    margin-right: 6rem !important;
  }

  .me-lg-128p {
    margin-right: 8rem !important;
  }

  .me-lg-256p {
    margin-right: 16rem !important;
  }

  .me-lg-340p {
    margin-right: 21.25rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-2p {
    margin-bottom: 0.125rem !important;
  }

  .mb-lg-12p {
    margin-bottom: 0.75rem !important;
  }

  .mb-lg-20p {
    margin-bottom: 1.25rem !important;
  }

  .mb-lg-28p {
    margin-bottom: 1.75rem !important;
  }

  .mb-lg-32p {
    margin-bottom: 2rem !important;
  }

  .mb-lg-40p {
    margin-bottom: 2.5rem !important;
  }

  .mb-lg-64p {
    margin-bottom: 4rem !important;
  }

  .mb-lg-80p {
    margin-bottom: 5rem !important;
  }

  .mb-lg-96p {
    margin-bottom: 6rem !important;
  }

  .mb-lg-128p {
    margin-bottom: 8rem !important;
  }

  .mb-lg-256p {
    margin-bottom: 16rem !important;
  }

  .mb-lg-340p {
    margin-bottom: 21.25rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-2p {
    margin-left: 0.125rem !important;
  }

  .ms-lg-12p {
    margin-left: 0.75rem !important;
  }

  .ms-lg-20p {
    margin-left: 1.25rem !important;
  }

  .ms-lg-28p {
    margin-left: 1.75rem !important;
  }

  .ms-lg-32p {
    margin-left: 2rem !important;
  }

  .ms-lg-40p {
    margin-left: 2.5rem !important;
  }

  .ms-lg-64p {
    margin-left: 4rem !important;
  }

  .ms-lg-80p {
    margin-left: 5rem !important;
  }

  .ms-lg-96p {
    margin-left: 6rem !important;
  }

  .ms-lg-128p {
    margin-left: 8rem !important;
  }

  .ms-lg-256p {
    margin-left: 16rem !important;
  }

  .ms-lg-340p {
    margin-left: 21.25rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .m-lg-n2p {
    margin: -0.125rem !important;
  }

  .m-lg-n12p {
    margin: -0.75rem !important;
  }

  .m-lg-n20p {
    margin: -1.25rem !important;
  }

  .m-lg-n28p {
    margin: -1.75rem !important;
  }

  .m-lg-n32p {
    margin: -2rem !important;
  }

  .m-lg-n40p {
    margin: -2.5rem !important;
  }

  .m-lg-n64p {
    margin: -4rem !important;
  }

  .m-lg-n80p {
    margin: -5rem !important;
  }

  .m-lg-n96p {
    margin: -6rem !important;
  }

  .m-lg-n128p {
    margin: -8rem !important;
  }

  .m-lg-n256p {
    margin: -16rem !important;
  }

  .m-lg-n340p {
    margin: -21.25rem !important;
  }

  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-lg-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-lg-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-lg-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-lg-n2p {
    margin-right: -0.125rem !important;
    margin-left: -0.125rem !important;
  }

  .mx-lg-n12p {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-lg-n20p {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-lg-n28p {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-lg-n32p {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-lg-n40p {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-lg-n64p {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-lg-n80p {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .mx-lg-n96p {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }

  .mx-lg-n128p {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }

  .mx-lg-n256p {
    margin-right: -16rem !important;
    margin-left: -16rem !important;
  }

  .mx-lg-n340p {
    margin-right: -21.25rem !important;
    margin-left: -21.25rem !important;
  }

  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-lg-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-lg-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-lg-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-lg-n2p {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .my-lg-n12p {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-lg-n20p {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-lg-n28p {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-lg-n32p {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-lg-n40p {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-lg-n64p {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-lg-n80p {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .my-lg-n96p {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-lg-n128p {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .my-lg-n256p {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .my-lg-n340p {
    margin-top: -21.25rem !important;
    margin-bottom: -21.25rem !important;
  }

  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-lg-n3 {
    margin-top: -1rem !important;
  }

  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-lg-n5 {
    margin-top: -3rem !important;
  }

  .mt-lg-n2p {
    margin-top: -0.125rem !important;
  }

  .mt-lg-n12p {
    margin-top: -0.75rem !important;
  }

  .mt-lg-n20p {
    margin-top: -1.25rem !important;
  }

  .mt-lg-n28p {
    margin-top: -1.75rem !important;
  }

  .mt-lg-n32p {
    margin-top: -2rem !important;
  }

  .mt-lg-n40p {
    margin-top: -2.5rem !important;
  }

  .mt-lg-n64p {
    margin-top: -4rem !important;
  }

  .mt-lg-n80p {
    margin-top: -5rem !important;
  }

  .mt-lg-n96p {
    margin-top: -6rem !important;
  }

  .mt-lg-n128p {
    margin-top: -8rem !important;
  }

  .mt-lg-n256p {
    margin-top: -16rem !important;
  }

  .mt-lg-n340p {
    margin-top: -21.25rem !important;
  }

  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .me-lg-n3 {
    margin-right: -1rem !important;
  }

  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .me-lg-n5 {
    margin-right: -3rem !important;
  }

  .me-lg-n2p {
    margin-right: -0.125rem !important;
  }

  .me-lg-n12p {
    margin-right: -0.75rem !important;
  }

  .me-lg-n20p {
    margin-right: -1.25rem !important;
  }

  .me-lg-n28p {
    margin-right: -1.75rem !important;
  }

  .me-lg-n32p {
    margin-right: -2rem !important;
  }

  .me-lg-n40p {
    margin-right: -2.5rem !important;
  }

  .me-lg-n64p {
    margin-right: -4rem !important;
  }

  .me-lg-n80p {
    margin-right: -5rem !important;
  }

  .me-lg-n96p {
    margin-right: -6rem !important;
  }

  .me-lg-n128p {
    margin-right: -8rem !important;
  }

  .me-lg-n256p {
    margin-right: -16rem !important;
  }

  .me-lg-n340p {
    margin-right: -21.25rem !important;
  }

  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-lg-n2p {
    margin-bottom: -0.125rem !important;
  }

  .mb-lg-n12p {
    margin-bottom: -0.75rem !important;
  }

  .mb-lg-n20p {
    margin-bottom: -1.25rem !important;
  }

  .mb-lg-n28p {
    margin-bottom: -1.75rem !important;
  }

  .mb-lg-n32p {
    margin-bottom: -2rem !important;
  }

  .mb-lg-n40p {
    margin-bottom: -2.5rem !important;
  }

  .mb-lg-n64p {
    margin-bottom: -4rem !important;
  }

  .mb-lg-n80p {
    margin-bottom: -5rem !important;
  }

  .mb-lg-n96p {
    margin-bottom: -6rem !important;
  }

  .mb-lg-n128p {
    margin-bottom: -8rem !important;
  }

  .mb-lg-n256p {
    margin-bottom: -16rem !important;
  }

  .mb-lg-n340p {
    margin-bottom: -21.25rem !important;
  }

  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-lg-n3 {
    margin-left: -1rem !important;
  }

  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-lg-n5 {
    margin-left: -3rem !important;
  }

  .ms-lg-n2p {
    margin-left: -0.125rem !important;
  }

  .ms-lg-n12p {
    margin-left: -0.75rem !important;
  }

  .ms-lg-n20p {
    margin-left: -1.25rem !important;
  }

  .ms-lg-n28p {
    margin-left: -1.75rem !important;
  }

  .ms-lg-n32p {
    margin-left: -2rem !important;
  }

  .ms-lg-n40p {
    margin-left: -2.5rem !important;
  }

  .ms-lg-n64p {
    margin-left: -4rem !important;
  }

  .ms-lg-n80p {
    margin-left: -5rem !important;
  }

  .ms-lg-n96p {
    margin-left: -6rem !important;
  }

  .ms-lg-n128p {
    margin-left: -8rem !important;
  }

  .ms-lg-n256p {
    margin-left: -16rem !important;
  }

  .ms-lg-n340p {
    margin-left: -21.25rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .p-lg-2p {
    padding: 0.125rem !important;
  }

  .p-lg-12p {
    padding: 0.75rem !important;
  }

  .p-lg-20p {
    padding: 1.25rem !important;
  }

  .p-lg-28p {
    padding: 1.75rem !important;
  }

  .p-lg-32p {
    padding: 2rem !important;
  }

  .p-lg-40p {
    padding: 2.5rem !important;
  }

  .p-lg-64p {
    padding: 4rem !important;
  }

  .p-lg-80p {
    padding: 5rem !important;
  }

  .p-lg-96p {
    padding: 6rem !important;
  }

  .p-lg-128p {
    padding: 8rem !important;
  }

  .p-lg-256p {
    padding: 16rem !important;
  }

  .p-lg-340p {
    padding: 21.25rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-lg-2p {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }

  .px-lg-12p {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-lg-20p {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-lg-28p {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-lg-32p {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-lg-40p {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-lg-64p {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-lg-80p {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-lg-96p {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-lg-128p {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-lg-256p {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }

  .px-lg-340p {
    padding-right: 21.25rem !important;
    padding-left: 21.25rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-lg-2p {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .py-lg-12p {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-lg-20p {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-lg-28p {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-lg-32p {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-lg-40p {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-lg-64p {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-lg-80p {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-lg-96p {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-lg-128p {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-lg-256p {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .py-lg-340p {
    padding-top: 21.25rem !important;
    padding-bottom: 21.25rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pt-lg-2p {
    padding-top: 0.125rem !important;
  }

  .pt-lg-12p {
    padding-top: 0.75rem !important;
  }

  .pt-lg-20p {
    padding-top: 1.25rem !important;
  }

  .pt-lg-28p {
    padding-top: 1.75rem !important;
  }

  .pt-lg-32p {
    padding-top: 2rem !important;
  }

  .pt-lg-40p {
    padding-top: 2.5rem !important;
  }

  .pt-lg-64p {
    padding-top: 4rem !important;
  }

  .pt-lg-80p {
    padding-top: 5rem !important;
  }

  .pt-lg-96p {
    padding-top: 6rem !important;
  }

  .pt-lg-128p {
    padding-top: 8rem !important;
  }

  .pt-lg-256p {
    padding-top: 16rem !important;
  }

  .pt-lg-340p {
    padding-top: 21.25rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pe-lg-2p {
    padding-right: 0.125rem !important;
  }

  .pe-lg-12p {
    padding-right: 0.75rem !important;
  }

  .pe-lg-20p {
    padding-right: 1.25rem !important;
  }

  .pe-lg-28p {
    padding-right: 1.75rem !important;
  }

  .pe-lg-32p {
    padding-right: 2rem !important;
  }

  .pe-lg-40p {
    padding-right: 2.5rem !important;
  }

  .pe-lg-64p {
    padding-right: 4rem !important;
  }

  .pe-lg-80p {
    padding-right: 5rem !important;
  }

  .pe-lg-96p {
    padding-right: 6rem !important;
  }

  .pe-lg-128p {
    padding-right: 8rem !important;
  }

  .pe-lg-256p {
    padding-right: 16rem !important;
  }

  .pe-lg-340p {
    padding-right: 21.25rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pb-lg-2p {
    padding-bottom: 0.125rem !important;
  }

  .pb-lg-12p {
    padding-bottom: 0.75rem !important;
  }

  .pb-lg-20p {
    padding-bottom: 1.25rem !important;
  }

  .pb-lg-28p {
    padding-bottom: 1.75rem !important;
  }

  .pb-lg-32p {
    padding-bottom: 2rem !important;
  }

  .pb-lg-40p {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-64p {
    padding-bottom: 4rem !important;
  }

  .pb-lg-80p {
    padding-bottom: 5rem !important;
  }

  .pb-lg-96p {
    padding-bottom: 6rem !important;
  }

  .pb-lg-128p {
    padding-bottom: 8rem !important;
  }

  .pb-lg-256p {
    padding-bottom: 16rem !important;
  }

  .pb-lg-340p {
    padding-bottom: 21.25rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .ps-lg-2p {
    padding-left: 0.125rem !important;
  }

  .ps-lg-12p {
    padding-left: 0.75rem !important;
  }

  .ps-lg-20p {
    padding-left: 1.25rem !important;
  }

  .ps-lg-28p {
    padding-left: 1.75rem !important;
  }

  .ps-lg-32p {
    padding-left: 2rem !important;
  }

  .ps-lg-40p {
    padding-left: 2.5rem !important;
  }

  .ps-lg-64p {
    padding-left: 4rem !important;
  }

  .ps-lg-80p {
    padding-left: 5rem !important;
  }

  .ps-lg-96p {
    padding-left: 6rem !important;
  }

  .ps-lg-128p {
    padding-left: 8rem !important;
  }

  .ps-lg-256p {
    padding-left: 16rem !important;
  }

  .ps-lg-340p {
    padding-left: 21.25rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .boots-position-lg-static {
    position: static !important;
  }

  .boots-position-lg-absolute {
    position: absolute !important;
  }

  .boots-position-lg-relative {
    position: relative !important;
  }

  .boots-position-lg-fixed {
    position: fixed !important;
  }

  .boots-position-lg-sticky {
    position: sticky !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-column,
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-column-reverse,
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .gap-xl-2p {
    gap: 0.125rem !important;
  }

  .gap-xl-12p {
    gap: 0.75rem !important;
  }

  .gap-xl-20p {
    gap: 1.25rem !important;
  }

  .gap-xl-28p {
    gap: 1.75rem !important;
  }

  .gap-xl-32p {
    gap: 2rem !important;
  }

  .gap-xl-40p {
    gap: 2.5rem !important;
  }

  .gap-xl-64p {
    gap: 4rem !important;
  }

  .gap-xl-80p {
    gap: 5rem !important;
  }

  .gap-xl-96p {
    gap: 6rem !important;
  }

  .gap-xl-128p {
    gap: 8rem !important;
  }

  .gap-xl-256p {
    gap: 16rem !important;
  }

  .gap-xl-340p {
    gap: 21.25rem !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-2p {
    margin: 0.125rem !important;
  }

  .m-xl-12p {
    margin: 0.75rem !important;
  }

  .m-xl-20p {
    margin: 1.25rem !important;
  }

  .m-xl-28p {
    margin: 1.75rem !important;
  }

  .m-xl-32p {
    margin: 2rem !important;
  }

  .m-xl-40p {
    margin: 2.5rem !important;
  }

  .m-xl-64p {
    margin: 4rem !important;
  }

  .m-xl-80p {
    margin: 5rem !important;
  }

  .m-xl-96p {
    margin: 6rem !important;
  }

  .m-xl-128p {
    margin: 8rem !important;
  }

  .m-xl-256p {
    margin: 16rem !important;
  }

  .m-xl-340p {
    margin: 21.25rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-2p {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }

  .mx-xl-12p {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-xl-20p {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xl-28p {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-xl-32p {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xl-40p {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xl-64p {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xl-80p {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-xl-96p {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-xl-128p {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-xl-256p {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }

  .mx-xl-340p {
    margin-right: 21.25rem !important;
    margin-left: 21.25rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-2p {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .my-xl-12p {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-xl-20p {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xl-28p {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-xl-32p {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xl-40p {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xl-64p {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xl-80p {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xl-96p {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xl-128p {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-xl-256p {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .my-xl-340p {
    margin-top: 21.25rem !important;
    margin-bottom: 21.25rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-2p {
    margin-top: 0.125rem !important;
  }

  .mt-xl-12p {
    margin-top: 0.75rem !important;
  }

  .mt-xl-20p {
    margin-top: 1.25rem !important;
  }

  .mt-xl-28p {
    margin-top: 1.75rem !important;
  }

  .mt-xl-32p {
    margin-top: 2rem !important;
  }

  .mt-xl-40p {
    margin-top: 2.5rem !important;
  }

  .mt-xl-64p {
    margin-top: 4rem !important;
  }

  .mt-xl-80p {
    margin-top: 5rem !important;
  }

  .mt-xl-96p {
    margin-top: 6rem !important;
  }

  .mt-xl-128p {
    margin-top: 8rem !important;
  }

  .mt-xl-256p {
    margin-top: 16rem !important;
  }

  .mt-xl-340p {
    margin-top: 21.25rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-2p {
    margin-right: 0.125rem !important;
  }

  .me-xl-12p {
    margin-right: 0.75rem !important;
  }

  .me-xl-20p {
    margin-right: 1.25rem !important;
  }

  .me-xl-28p {
    margin-right: 1.75rem !important;
  }

  .me-xl-32p {
    margin-right: 2rem !important;
  }

  .me-xl-40p {
    margin-right: 2.5rem !important;
  }

  .me-xl-64p {
    margin-right: 4rem !important;
  }

  .me-xl-80p {
    margin-right: 5rem !important;
  }

  .me-xl-96p {
    margin-right: 6rem !important;
  }

  .me-xl-128p {
    margin-right: 8rem !important;
  }

  .me-xl-256p {
    margin-right: 16rem !important;
  }

  .me-xl-340p {
    margin-right: 21.25rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-2p {
    margin-bottom: 0.125rem !important;
  }

  .mb-xl-12p {
    margin-bottom: 0.75rem !important;
  }

  .mb-xl-20p {
    margin-bottom: 1.25rem !important;
  }

  .mb-xl-28p {
    margin-bottom: 1.75rem !important;
  }

  .mb-xl-32p {
    margin-bottom: 2rem !important;
  }

  .mb-xl-40p {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-64p {
    margin-bottom: 4rem !important;
  }

  .mb-xl-80p {
    margin-bottom: 5rem !important;
  }

  .mb-xl-96p {
    margin-bottom: 6rem !important;
  }

  .mb-xl-128p {
    margin-bottom: 8rem !important;
  }

  .mb-xl-256p {
    margin-bottom: 16rem !important;
  }

  .mb-xl-340p {
    margin-bottom: 21.25rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-2p {
    margin-left: 0.125rem !important;
  }

  .ms-xl-12p {
    margin-left: 0.75rem !important;
  }

  .ms-xl-20p {
    margin-left: 1.25rem !important;
  }

  .ms-xl-28p {
    margin-left: 1.75rem !important;
  }

  .ms-xl-32p {
    margin-left: 2rem !important;
  }

  .ms-xl-40p {
    margin-left: 2.5rem !important;
  }

  .ms-xl-64p {
    margin-left: 4rem !important;
  }

  .ms-xl-80p {
    margin-left: 5rem !important;
  }

  .ms-xl-96p {
    margin-left: 6rem !important;
  }

  .ms-xl-128p {
    margin-left: 8rem !important;
  }

  .ms-xl-256p {
    margin-left: 16rem !important;
  }

  .ms-xl-340p {
    margin-left: 21.25rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .m-xl-n2p {
    margin: -0.125rem !important;
  }

  .m-xl-n12p {
    margin: -0.75rem !important;
  }

  .m-xl-n20p {
    margin: -1.25rem !important;
  }

  .m-xl-n28p {
    margin: -1.75rem !important;
  }

  .m-xl-n32p {
    margin: -2rem !important;
  }

  .m-xl-n40p {
    margin: -2.5rem !important;
  }

  .m-xl-n64p {
    margin: -4rem !important;
  }

  .m-xl-n80p {
    margin: -5rem !important;
  }

  .m-xl-n96p {
    margin: -6rem !important;
  }

  .m-xl-n128p {
    margin: -8rem !important;
  }

  .m-xl-n256p {
    margin: -16rem !important;
  }

  .m-xl-n340p {
    margin: -21.25rem !important;
  }

  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-xl-n2p {
    margin-right: -0.125rem !important;
    margin-left: -0.125rem !important;
  }

  .mx-xl-n12p {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-xl-n20p {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-xl-n28p {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-xl-n32p {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-xl-n40p {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-xl-n64p {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-xl-n80p {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .mx-xl-n96p {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }

  .mx-xl-n128p {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }

  .mx-xl-n256p {
    margin-right: -16rem !important;
    margin-left: -16rem !important;
  }

  .mx-xl-n340p {
    margin-right: -21.25rem !important;
    margin-left: -21.25rem !important;
  }

  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-xl-n2p {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .my-xl-n12p {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-xl-n20p {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-xl-n28p {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-xl-n32p {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-xl-n40p {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-xl-n64p {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-xl-n80p {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .my-xl-n96p {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-xl-n128p {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .my-xl-n256p {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .my-xl-n340p {
    margin-top: -21.25rem !important;
    margin-bottom: -21.25rem !important;
  }

  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xl-n5 {
    margin-top: -3rem !important;
  }

  .mt-xl-n2p {
    margin-top: -0.125rem !important;
  }

  .mt-xl-n12p {
    margin-top: -0.75rem !important;
  }

  .mt-xl-n20p {
    margin-top: -1.25rem !important;
  }

  .mt-xl-n28p {
    margin-top: -1.75rem !important;
  }

  .mt-xl-n32p {
    margin-top: -2rem !important;
  }

  .mt-xl-n40p {
    margin-top: -2.5rem !important;
  }

  .mt-xl-n64p {
    margin-top: -4rem !important;
  }

  .mt-xl-n80p {
    margin-top: -5rem !important;
  }

  .mt-xl-n96p {
    margin-top: -6rem !important;
  }

  .mt-xl-n128p {
    margin-top: -8rem !important;
  }

  .mt-xl-n256p {
    margin-top: -16rem !important;
  }

  .mt-xl-n340p {
    margin-top: -21.25rem !important;
  }

  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xl-n3 {
    margin-right: -1rem !important;
  }

  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xl-n5 {
    margin-right: -3rem !important;
  }

  .me-xl-n2p {
    margin-right: -0.125rem !important;
  }

  .me-xl-n12p {
    margin-right: -0.75rem !important;
  }

  .me-xl-n20p {
    margin-right: -1.25rem !important;
  }

  .me-xl-n28p {
    margin-right: -1.75rem !important;
  }

  .me-xl-n32p {
    margin-right: -2rem !important;
  }

  .me-xl-n40p {
    margin-right: -2.5rem !important;
  }

  .me-xl-n64p {
    margin-right: -4rem !important;
  }

  .me-xl-n80p {
    margin-right: -5rem !important;
  }

  .me-xl-n96p {
    margin-right: -6rem !important;
  }

  .me-xl-n128p {
    margin-right: -8rem !important;
  }

  .me-xl-n256p {
    margin-right: -16rem !important;
  }

  .me-xl-n340p {
    margin-right: -21.25rem !important;
  }

  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-xl-n2p {
    margin-bottom: -0.125rem !important;
  }

  .mb-xl-n12p {
    margin-bottom: -0.75rem !important;
  }

  .mb-xl-n20p {
    margin-bottom: -1.25rem !important;
  }

  .mb-xl-n28p {
    margin-bottom: -1.75rem !important;
  }

  .mb-xl-n32p {
    margin-bottom: -2rem !important;
  }

  .mb-xl-n40p {
    margin-bottom: -2.5rem !important;
  }

  .mb-xl-n64p {
    margin-bottom: -4rem !important;
  }

  .mb-xl-n80p {
    margin-bottom: -5rem !important;
  }

  .mb-xl-n96p {
    margin-bottom: -6rem !important;
  }

  .mb-xl-n128p {
    margin-bottom: -8rem !important;
  }

  .mb-xl-n256p {
    margin-bottom: -16rem !important;
  }

  .mb-xl-n340p {
    margin-bottom: -21.25rem !important;
  }

  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xl-n5 {
    margin-left: -3rem !important;
  }

  .ms-xl-n2p {
    margin-left: -0.125rem !important;
  }

  .ms-xl-n12p {
    margin-left: -0.75rem !important;
  }

  .ms-xl-n20p {
    margin-left: -1.25rem !important;
  }

  .ms-xl-n28p {
    margin-left: -1.75rem !important;
  }

  .ms-xl-n32p {
    margin-left: -2rem !important;
  }

  .ms-xl-n40p {
    margin-left: -2.5rem !important;
  }

  .ms-xl-n64p {
    margin-left: -4rem !important;
  }

  .ms-xl-n80p {
    margin-left: -5rem !important;
  }

  .ms-xl-n96p {
    margin-left: -6rem !important;
  }

  .ms-xl-n128p {
    margin-left: -8rem !important;
  }

  .ms-xl-n256p {
    margin-left: -16rem !important;
  }

  .ms-xl-n340p {
    margin-left: -21.25rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .p-xl-2p {
    padding: 0.125rem !important;
  }

  .p-xl-12p {
    padding: 0.75rem !important;
  }

  .p-xl-20p {
    padding: 1.25rem !important;
  }

  .p-xl-28p {
    padding: 1.75rem !important;
  }

  .p-xl-32p {
    padding: 2rem !important;
  }

  .p-xl-40p {
    padding: 2.5rem !important;
  }

  .p-xl-64p {
    padding: 4rem !important;
  }

  .p-xl-80p {
    padding: 5rem !important;
  }

  .p-xl-96p {
    padding: 6rem !important;
  }

  .p-xl-128p {
    padding: 8rem !important;
  }

  .p-xl-256p {
    padding: 16rem !important;
  }

  .p-xl-340p {
    padding: 21.25rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xl-2p {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }

  .px-xl-12p {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-xl-20p {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xl-28p {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-xl-32p {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xl-40p {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xl-64p {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xl-80p {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-xl-96p {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-xl-128p {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-xl-256p {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }

  .px-xl-340p {
    padding-right: 21.25rem !important;
    padding-left: 21.25rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xl-2p {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .py-xl-12p {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-xl-20p {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xl-28p {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-xl-32p {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xl-40p {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xl-64p {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xl-80p {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-xl-96p {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xl-128p {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-xl-256p {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .py-xl-340p {
    padding-top: 21.25rem !important;
    padding-bottom: 21.25rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pt-xl-2p {
    padding-top: 0.125rem !important;
  }

  .pt-xl-12p {
    padding-top: 0.75rem !important;
  }

  .pt-xl-20p {
    padding-top: 1.25rem !important;
  }

  .pt-xl-28p {
    padding-top: 1.75rem !important;
  }

  .pt-xl-32p {
    padding-top: 2rem !important;
  }

  .pt-xl-40p {
    padding-top: 2.5rem !important;
  }

  .pt-xl-64p {
    padding-top: 4rem !important;
  }

  .pt-xl-80p {
    padding-top: 5rem !important;
  }

  .pt-xl-96p {
    padding-top: 6rem !important;
  }

  .pt-xl-128p {
    padding-top: 8rem !important;
  }

  .pt-xl-256p {
    padding-top: 16rem !important;
  }

  .pt-xl-340p {
    padding-top: 21.25rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pe-xl-2p {
    padding-right: 0.125rem !important;
  }

  .pe-xl-12p {
    padding-right: 0.75rem !important;
  }

  .pe-xl-20p {
    padding-right: 1.25rem !important;
  }

  .pe-xl-28p {
    padding-right: 1.75rem !important;
  }

  .pe-xl-32p {
    padding-right: 2rem !important;
  }

  .pe-xl-40p {
    padding-right: 2.5rem !important;
  }

  .pe-xl-64p {
    padding-right: 4rem !important;
  }

  .pe-xl-80p {
    padding-right: 5rem !important;
  }

  .pe-xl-96p {
    padding-right: 6rem !important;
  }

  .pe-xl-128p {
    padding-right: 8rem !important;
  }

  .pe-xl-256p {
    padding-right: 16rem !important;
  }

  .pe-xl-340p {
    padding-right: 21.25rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xl-2p {
    padding-bottom: 0.125rem !important;
  }

  .pb-xl-12p {
    padding-bottom: 0.75rem !important;
  }

  .pb-xl-20p {
    padding-bottom: 1.25rem !important;
  }

  .pb-xl-28p {
    padding-bottom: 1.75rem !important;
  }

  .pb-xl-32p {
    padding-bottom: 2rem !important;
  }

  .pb-xl-40p {
    padding-bottom: 2.5rem !important;
  }

  .pb-xl-64p {
    padding-bottom: 4rem !important;
  }

  .pb-xl-80p {
    padding-bottom: 5rem !important;
  }

  .pb-xl-96p {
    padding-bottom: 6rem !important;
  }

  .pb-xl-128p {
    padding-bottom: 8rem !important;
  }

  .pb-xl-256p {
    padding-bottom: 16rem !important;
  }

  .pb-xl-340p {
    padding-bottom: 21.25rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .ps-xl-2p {
    padding-left: 0.125rem !important;
  }

  .ps-xl-12p {
    padding-left: 0.75rem !important;
  }

  .ps-xl-20p {
    padding-left: 1.25rem !important;
  }

  .ps-xl-28p {
    padding-left: 1.75rem !important;
  }

  .ps-xl-32p {
    padding-left: 2rem !important;
  }

  .ps-xl-40p {
    padding-left: 2.5rem !important;
  }

  .ps-xl-64p {
    padding-left: 4rem !important;
  }

  .ps-xl-80p {
    padding-left: 5rem !important;
  }

  .ps-xl-96p {
    padding-left: 6rem !important;
  }

  .ps-xl-128p {
    padding-left: 8rem !important;
  }

  .ps-xl-256p {
    padding-left: 16rem !important;
  }

  .ps-xl-340p {
    padding-left: 21.25rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .boots-position-xl-static {
    position: static !important;
  }

  .boots-position-xl-absolute {
    position: absolute !important;
  }

  .boots-position-xl-relative {
    position: relative !important;
  }

  .boots-position-xl-fixed {
    position: fixed !important;
  }

  .boots-position-xl-sticky {
    position: sticky !important;
  }
}

@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xxl-column,
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xxl-column-reverse,
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .gap-xxl-2p {
    gap: 0.125rem !important;
  }

  .gap-xxl-12p {
    gap: 0.75rem !important;
  }

  .gap-xxl-20p {
    gap: 1.25rem !important;
  }

  .gap-xxl-28p {
    gap: 1.75rem !important;
  }

  .gap-xxl-32p {
    gap: 2rem !important;
  }

  .gap-xxl-40p {
    gap: 2.5rem !important;
  }

  .gap-xxl-64p {
    gap: 4rem !important;
  }

  .gap-xxl-80p {
    gap: 5rem !important;
  }

  .gap-xxl-96p {
    gap: 6rem !important;
  }

  .gap-xxl-128p {
    gap: 8rem !important;
  }

  .gap-xxl-256p {
    gap: 16rem !important;
  }

  .gap-xxl-340p {
    gap: 21.25rem !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-2p {
    margin: 0.125rem !important;
  }

  .m-xxl-12p {
    margin: 0.75rem !important;
  }

  .m-xxl-20p {
    margin: 1.25rem !important;
  }

  .m-xxl-28p {
    margin: 1.75rem !important;
  }

  .m-xxl-32p {
    margin: 2rem !important;
  }

  .m-xxl-40p {
    margin: 2.5rem !important;
  }

  .m-xxl-64p {
    margin: 4rem !important;
  }

  .m-xxl-80p {
    margin: 5rem !important;
  }

  .m-xxl-96p {
    margin: 6rem !important;
  }

  .m-xxl-128p {
    margin: 8rem !important;
  }

  .m-xxl-256p {
    margin: 16rem !important;
  }

  .m-xxl-340p {
    margin: 21.25rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-2p {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }

  .mx-xxl-12p {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-xxl-20p {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xxl-28p {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-xxl-32p {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xxl-40p {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxl-64p {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xxl-80p {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-xxl-96p {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-xxl-128p {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-xxl-256p {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }

  .mx-xxl-340p {
    margin-right: 21.25rem !important;
    margin-left: 21.25rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-2p {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .my-xxl-12p {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-xxl-20p {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xxl-28p {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-xxl-32p {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xxl-40p {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxl-64p {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xxl-80p {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xxl-96p {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xxl-128p {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-xxl-256p {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .my-xxl-340p {
    margin-top: 21.25rem !important;
    margin-bottom: 21.25rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-2p {
    margin-top: 0.125rem !important;
  }

  .mt-xxl-12p {
    margin-top: 0.75rem !important;
  }

  .mt-xxl-20p {
    margin-top: 1.25rem !important;
  }

  .mt-xxl-28p {
    margin-top: 1.75rem !important;
  }

  .mt-xxl-32p {
    margin-top: 2rem !important;
  }

  .mt-xxl-40p {
    margin-top: 2.5rem !important;
  }

  .mt-xxl-64p {
    margin-top: 4rem !important;
  }

  .mt-xxl-80p {
    margin-top: 5rem !important;
  }

  .mt-xxl-96p {
    margin-top: 6rem !important;
  }

  .mt-xxl-128p {
    margin-top: 8rem !important;
  }

  .mt-xxl-256p {
    margin-top: 16rem !important;
  }

  .mt-xxl-340p {
    margin-top: 21.25rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-2p {
    margin-right: 0.125rem !important;
  }

  .me-xxl-12p {
    margin-right: 0.75rem !important;
  }

  .me-xxl-20p {
    margin-right: 1.25rem !important;
  }

  .me-xxl-28p {
    margin-right: 1.75rem !important;
  }

  .me-xxl-32p {
    margin-right: 2rem !important;
  }

  .me-xxl-40p {
    margin-right: 2.5rem !important;
  }

  .me-xxl-64p {
    margin-right: 4rem !important;
  }

  .me-xxl-80p {
    margin-right: 5rem !important;
  }

  .me-xxl-96p {
    margin-right: 6rem !important;
  }

  .me-xxl-128p {
    margin-right: 8rem !important;
  }

  .me-xxl-256p {
    margin-right: 16rem !important;
  }

  .me-xxl-340p {
    margin-right: 21.25rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-2p {
    margin-bottom: 0.125rem !important;
  }

  .mb-xxl-12p {
    margin-bottom: 0.75rem !important;
  }

  .mb-xxl-20p {
    margin-bottom: 1.25rem !important;
  }

  .mb-xxl-28p {
    margin-bottom: 1.75rem !important;
  }

  .mb-xxl-32p {
    margin-bottom: 2rem !important;
  }

  .mb-xxl-40p {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxl-64p {
    margin-bottom: 4rem !important;
  }

  .mb-xxl-80p {
    margin-bottom: 5rem !important;
  }

  .mb-xxl-96p {
    margin-bottom: 6rem !important;
  }

  .mb-xxl-128p {
    margin-bottom: 8rem !important;
  }

  .mb-xxl-256p {
    margin-bottom: 16rem !important;
  }

  .mb-xxl-340p {
    margin-bottom: 21.25rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-2p {
    margin-left: 0.125rem !important;
  }

  .ms-xxl-12p {
    margin-left: 0.75rem !important;
  }

  .ms-xxl-20p {
    margin-left: 1.25rem !important;
  }

  .ms-xxl-28p {
    margin-left: 1.75rem !important;
  }

  .ms-xxl-32p {
    margin-left: 2rem !important;
  }

  .ms-xxl-40p {
    margin-left: 2.5rem !important;
  }

  .ms-xxl-64p {
    margin-left: 4rem !important;
  }

  .ms-xxl-80p {
    margin-left: 5rem !important;
  }

  .ms-xxl-96p {
    margin-left: 6rem !important;
  }

  .ms-xxl-128p {
    margin-left: 8rem !important;
  }

  .ms-xxl-256p {
    margin-left: 16rem !important;
  }

  .ms-xxl-340p {
    margin-left: 21.25rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .m-xxl-n2p {
    margin: -0.125rem !important;
  }

  .m-xxl-n12p {
    margin: -0.75rem !important;
  }

  .m-xxl-n20p {
    margin: -1.25rem !important;
  }

  .m-xxl-n28p {
    margin: -1.75rem !important;
  }

  .m-xxl-n32p {
    margin: -2rem !important;
  }

  .m-xxl-n40p {
    margin: -2.5rem !important;
  }

  .m-xxl-n64p {
    margin: -4rem !important;
  }

  .m-xxl-n80p {
    margin: -5rem !important;
  }

  .m-xxl-n96p {
    margin: -6rem !important;
  }

  .m-xxl-n128p {
    margin: -8rem !important;
  }

  .m-xxl-n256p {
    margin: -16rem !important;
  }

  .m-xxl-n340p {
    margin: -21.25rem !important;
  }

  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-xxl-n2p {
    margin-right: -0.125rem !important;
    margin-left: -0.125rem !important;
  }

  .mx-xxl-n12p {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-xxl-n20p {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-xxl-n28p {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-xxl-n32p {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-xxl-n40p {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-xxl-n64p {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-xxl-n80p {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .mx-xxl-n96p {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }

  .mx-xxl-n128p {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }

  .mx-xxl-n256p {
    margin-right: -16rem !important;
    margin-left: -16rem !important;
  }

  .mx-xxl-n340p {
    margin-right: -21.25rem !important;
    margin-left: -21.25rem !important;
  }

  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-xxl-n2p {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .my-xxl-n12p {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-xxl-n20p {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-xxl-n28p {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-xxl-n32p {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-xxl-n40p {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-xxl-n64p {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-xxl-n80p {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .my-xxl-n96p {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-xxl-n128p {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .my-xxl-n256p {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .my-xxl-n340p {
    margin-top: -21.25rem !important;
    margin-bottom: -21.25rem !important;
  }

  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mt-xxl-n2p {
    margin-top: -0.125rem !important;
  }

  .mt-xxl-n12p {
    margin-top: -0.75rem !important;
  }

  .mt-xxl-n20p {
    margin-top: -1.25rem !important;
  }

  .mt-xxl-n28p {
    margin-top: -1.75rem !important;
  }

  .mt-xxl-n32p {
    margin-top: -2rem !important;
  }

  .mt-xxl-n40p {
    margin-top: -2.5rem !important;
  }

  .mt-xxl-n64p {
    margin-top: -4rem !important;
  }

  .mt-xxl-n80p {
    margin-top: -5rem !important;
  }

  .mt-xxl-n96p {
    margin-top: -6rem !important;
  }

  .mt-xxl-n128p {
    margin-top: -8rem !important;
  }

  .mt-xxl-n256p {
    margin-top: -16rem !important;
  }

  .mt-xxl-n340p {
    margin-top: -21.25rem !important;
  }

  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xxl-n3 {
    margin-right: -1rem !important;
  }

  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xxl-n5 {
    margin-right: -3rem !important;
  }

  .me-xxl-n2p {
    margin-right: -0.125rem !important;
  }

  .me-xxl-n12p {
    margin-right: -0.75rem !important;
  }

  .me-xxl-n20p {
    margin-right: -1.25rem !important;
  }

  .me-xxl-n28p {
    margin-right: -1.75rem !important;
  }

  .me-xxl-n32p {
    margin-right: -2rem !important;
  }

  .me-xxl-n40p {
    margin-right: -2.5rem !important;
  }

  .me-xxl-n64p {
    margin-right: -4rem !important;
  }

  .me-xxl-n80p {
    margin-right: -5rem !important;
  }

  .me-xxl-n96p {
    margin-right: -6rem !important;
  }

  .me-xxl-n128p {
    margin-right: -8rem !important;
  }

  .me-xxl-n256p {
    margin-right: -16rem !important;
  }

  .me-xxl-n340p {
    margin-right: -21.25rem !important;
  }

  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-xxl-n2p {
    margin-bottom: -0.125rem !important;
  }

  .mb-xxl-n12p {
    margin-bottom: -0.75rem !important;
  }

  .mb-xxl-n20p {
    margin-bottom: -1.25rem !important;
  }

  .mb-xxl-n28p {
    margin-bottom: -1.75rem !important;
  }

  .mb-xxl-n32p {
    margin-bottom: -2rem !important;
  }

  .mb-xxl-n40p {
    margin-bottom: -2.5rem !important;
  }

  .mb-xxl-n64p {
    margin-bottom: -4rem !important;
  }

  .mb-xxl-n80p {
    margin-bottom: -5rem !important;
  }

  .mb-xxl-n96p {
    margin-bottom: -6rem !important;
  }

  .mb-xxl-n128p {
    margin-bottom: -8rem !important;
  }

  .mb-xxl-n256p {
    margin-bottom: -16rem !important;
  }

  .mb-xxl-n340p {
    margin-bottom: -21.25rem !important;
  }

  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }

  .ms-xxl-n2p {
    margin-left: -0.125rem !important;
  }

  .ms-xxl-n12p {
    margin-left: -0.75rem !important;
  }

  .ms-xxl-n20p {
    margin-left: -1.25rem !important;
  }

  .ms-xxl-n28p {
    margin-left: -1.75rem !important;
  }

  .ms-xxl-n32p {
    margin-left: -2rem !important;
  }

  .ms-xxl-n40p {
    margin-left: -2.5rem !important;
  }

  .ms-xxl-n64p {
    margin-left: -4rem !important;
  }

  .ms-xxl-n80p {
    margin-left: -5rem !important;
  }

  .ms-xxl-n96p {
    margin-left: -6rem !important;
  }

  .ms-xxl-n128p {
    margin-left: -8rem !important;
  }

  .ms-xxl-n256p {
    margin-left: -16rem !important;
  }

  .ms-xxl-n340p {
    margin-left: -21.25rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .p-xxl-2p {
    padding: 0.125rem !important;
  }

  .p-xxl-12p {
    padding: 0.75rem !important;
  }

  .p-xxl-20p {
    padding: 1.25rem !important;
  }

  .p-xxl-28p {
    padding: 1.75rem !important;
  }

  .p-xxl-32p {
    padding: 2rem !important;
  }

  .p-xxl-40p {
    padding: 2.5rem !important;
  }

  .p-xxl-64p {
    padding: 4rem !important;
  }

  .p-xxl-80p {
    padding: 5rem !important;
  }

  .p-xxl-96p {
    padding: 6rem !important;
  }

  .p-xxl-128p {
    padding: 8rem !important;
  }

  .p-xxl-256p {
    padding: 16rem !important;
  }

  .p-xxl-340p {
    padding: 21.25rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xxl-2p {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }

  .px-xxl-12p {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-xxl-20p {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xxl-28p {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-xxl-32p {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xxl-40p {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxl-64p {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xxl-80p {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-xxl-96p {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-xxl-128p {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-xxl-256p {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }

  .px-xxl-340p {
    padding-right: 21.25rem !important;
    padding-left: 21.25rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xxl-2p {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .py-xxl-12p {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-xxl-20p {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xxl-28p {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-xxl-32p {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xxl-40p {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxl-64p {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xxl-80p {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-xxl-96p {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xxl-128p {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-xxl-256p {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .py-xxl-340p {
    padding-top: 21.25rem !important;
    padding-bottom: 21.25rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pt-xxl-2p {
    padding-top: 0.125rem !important;
  }

  .pt-xxl-12p {
    padding-top: 0.75rem !important;
  }

  .pt-xxl-20p {
    padding-top: 1.25rem !important;
  }

  .pt-xxl-28p {
    padding-top: 1.75rem !important;
  }

  .pt-xxl-32p {
    padding-top: 2rem !important;
  }

  .pt-xxl-40p {
    padding-top: 2.5rem !important;
  }

  .pt-xxl-64p {
    padding-top: 4rem !important;
  }

  .pt-xxl-80p {
    padding-top: 5rem !important;
  }

  .pt-xxl-96p {
    padding-top: 6rem !important;
  }

  .pt-xxl-128p {
    padding-top: 8rem !important;
  }

  .pt-xxl-256p {
    padding-top: 16rem !important;
  }

  .pt-xxl-340p {
    padding-top: 21.25rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pe-xxl-2p {
    padding-right: 0.125rem !important;
  }

  .pe-xxl-12p {
    padding-right: 0.75rem !important;
  }

  .pe-xxl-20p {
    padding-right: 1.25rem !important;
  }

  .pe-xxl-28p {
    padding-right: 1.75rem !important;
  }

  .pe-xxl-32p {
    padding-right: 2rem !important;
  }

  .pe-xxl-40p {
    padding-right: 2.5rem !important;
  }

  .pe-xxl-64p {
    padding-right: 4rem !important;
  }

  .pe-xxl-80p {
    padding-right: 5rem !important;
  }

  .pe-xxl-96p {
    padding-right: 6rem !important;
  }

  .pe-xxl-128p {
    padding-right: 8rem !important;
  }

  .pe-xxl-256p {
    padding-right: 16rem !important;
  }

  .pe-xxl-340p {
    padding-right: 21.25rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xxl-2p {
    padding-bottom: 0.125rem !important;
  }

  .pb-xxl-12p {
    padding-bottom: 0.75rem !important;
  }

  .pb-xxl-20p {
    padding-bottom: 1.25rem !important;
  }

  .pb-xxl-28p {
    padding-bottom: 1.75rem !important;
  }

  .pb-xxl-32p {
    padding-bottom: 2rem !important;
  }

  .pb-xxl-40p {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxl-64p {
    padding-bottom: 4rem !important;
  }

  .pb-xxl-80p {
    padding-bottom: 5rem !important;
  }

  .pb-xxl-96p {
    padding-bottom: 6rem !important;
  }

  .pb-xxl-128p {
    padding-bottom: 8rem !important;
  }

  .pb-xxl-256p {
    padding-bottom: 16rem !important;
  }

  .pb-xxl-340p {
    padding-bottom: 21.25rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .ps-xxl-2p {
    padding-left: 0.125rem !important;
  }

  .ps-xxl-12p {
    padding-left: 0.75rem !important;
  }

  .ps-xxl-20p {
    padding-left: 1.25rem !important;
  }

  .ps-xxl-28p {
    padding-left: 1.75rem !important;
  }

  .ps-xxl-32p {
    padding-left: 2rem !important;
  }

  .ps-xxl-40p {
    padding-left: 2.5rem !important;
  }

  .ps-xxl-64p {
    padding-left: 4rem !important;
  }

  .ps-xxl-80p {
    padding-left: 5rem !important;
  }

  .ps-xxl-96p {
    padding-left: 6rem !important;
  }

  .ps-xxl-128p {
    padding-left: 8rem !important;
  }

  .ps-xxl-256p {
    padding-left: 16rem !important;
  }

  .ps-xxl-340p {
    padding-left: 21.25rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }

  .boots-position-xxl-static {
    position: static !important;
  }

  .boots-position-xxl-absolute {
    position: absolute !important;
  }

  .boots-position-xxl-relative {
    position: relative !important;
  }

  .boots-position-xxl-fixed {
    position: fixed !important;
  }

  .boots-position-xxl-sticky {
    position: sticky !important;
  }
}

@media (min-width: 1920px) {
  .float-xxxl-start {
    float: left !important;
  }

  .float-xxxl-end {
    float: right !important;
  }

  .float-xxxl-none {
    float: none !important;
  }

  .d-xxxl-inline {
    display: inline !important;
  }

  .d-xxxl-inline-block {
    display: inline-block !important;
  }

  .d-xxxl-block {
    display: block !important;
  }

  .d-xxxl-grid {
    display: grid !important;
  }

  .d-xxxl-table {
    display: table !important;
  }

  .d-xxxl-table-row {
    display: table-row !important;
  }

  .d-xxxl-table-cell {
    display: table-cell !important;
  }

  .d-xxxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxxl-none {
    display: none !important;
  }

  .flex-xxxl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xxxl-column,
  .flex-xxxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xxxl-column {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xxxl-column-reverse,
  .flex-xxxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xxxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xxxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xxxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xxxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xxxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-xxxl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xxxl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xxxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxxl-0 {
    gap: 0 !important;
  }

  .gap-xxxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxxl-3 {
    gap: 1rem !important;
  }

  .gap-xxxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxxl-5 {
    gap: 3rem !important;
  }

  .gap-xxxl-2p {
    gap: 0.125rem !important;
  }

  .gap-xxxl-12p {
    gap: 0.75rem !important;
  }

  .gap-xxxl-20p {
    gap: 1.25rem !important;
  }

  .gap-xxxl-28p {
    gap: 1.75rem !important;
  }

  .gap-xxxl-32p {
    gap: 2rem !important;
  }

  .gap-xxxl-40p {
    gap: 2.5rem !important;
  }

  .gap-xxxl-64p {
    gap: 4rem !important;
  }

  .gap-xxxl-80p {
    gap: 5rem !important;
  }

  .gap-xxxl-96p {
    gap: 6rem !important;
  }

  .gap-xxxl-128p {
    gap: 8rem !important;
  }

  .gap-xxxl-256p {
    gap: 16rem !important;
  }

  .gap-xxxl-340p {
    gap: 21.25rem !important;
  }

  .justify-content-xxxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xxxl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xxxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xxxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xxxl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .justify-content-xxxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xxxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xxxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xxxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xxxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xxxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xxxl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xxxl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xxxl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xxxl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xxxl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xxxl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xxxl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xxxl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xxxl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xxxl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xxxl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xxxl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }

  .order-xxxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    order: -1 !important;
  }

  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    order: 0 !important;
  }

  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    order: 1 !important;
  }

  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
  }

  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    order: 3 !important;
  }

  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    order: 4 !important;
  }

  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    order: 5 !important;
  }

  .order-xxxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    order: 6 !important;
  }

  .m-xxxl-0 {
    margin: 0 !important;
  }

  .m-xxxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxxl-3 {
    margin: 1rem !important;
  }

  .m-xxxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxxl-5 {
    margin: 3rem !important;
  }

  .m-xxxl-2p {
    margin: 0.125rem !important;
  }

  .m-xxxl-12p {
    margin: 0.75rem !important;
  }

  .m-xxxl-20p {
    margin: 1.25rem !important;
  }

  .m-xxxl-28p {
    margin: 1.75rem !important;
  }

  .m-xxxl-32p {
    margin: 2rem !important;
  }

  .m-xxxl-40p {
    margin: 2.5rem !important;
  }

  .m-xxxl-64p {
    margin: 4rem !important;
  }

  .m-xxxl-80p {
    margin: 5rem !important;
  }

  .m-xxxl-96p {
    margin: 6rem !important;
  }

  .m-xxxl-128p {
    margin: 8rem !important;
  }

  .m-xxxl-256p {
    margin: 16rem !important;
  }

  .m-xxxl-340p {
    margin: 21.25rem !important;
  }

  .m-xxxl-auto {
    margin: auto !important;
  }

  .mx-xxxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxxl-2p {
    margin-right: 0.125rem !important;
    margin-left: 0.125rem !important;
  }

  .mx-xxxl-12p {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-xxxl-20p {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xxxl-28p {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-xxxl-32p {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xxxl-40p {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxxl-64p {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xxxl-80p {
    margin-right: 5rem !important;
    margin-left: 5rem !important;
  }

  .mx-xxxl-96p {
    margin-right: 6rem !important;
    margin-left: 6rem !important;
  }

  .mx-xxxl-128p {
    margin-right: 8rem !important;
    margin-left: 8rem !important;
  }

  .mx-xxxl-256p {
    margin-right: 16rem !important;
    margin-left: 16rem !important;
  }

  .mx-xxxl-340p {
    margin-right: 21.25rem !important;
    margin-left: 21.25rem !important;
  }

  .mx-xxxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxxl-2p {
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .my-xxxl-12p {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-xxxl-20p {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xxxl-28p {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-xxxl-32p {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xxxl-40p {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxxl-64p {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xxxl-80p {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xxxl-96p {
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .my-xxxl-128p {
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .my-xxxl-256p {
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .my-xxxl-340p {
    margin-top: 21.25rem !important;
    margin-bottom: 21.25rem !important;
  }

  .my-xxxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxxl-2p {
    margin-top: 0.125rem !important;
  }

  .mt-xxxl-12p {
    margin-top: 0.75rem !important;
  }

  .mt-xxxl-20p {
    margin-top: 1.25rem !important;
  }

  .mt-xxxl-28p {
    margin-top: 1.75rem !important;
  }

  .mt-xxxl-32p {
    margin-top: 2rem !important;
  }

  .mt-xxxl-40p {
    margin-top: 2.5rem !important;
  }

  .mt-xxxl-64p {
    margin-top: 4rem !important;
  }

  .mt-xxxl-80p {
    margin-top: 5rem !important;
  }

  .mt-xxxl-96p {
    margin-top: 6rem !important;
  }

  .mt-xxxl-128p {
    margin-top: 8rem !important;
  }

  .mt-xxxl-256p {
    margin-top: 16rem !important;
  }

  .mt-xxxl-340p {
    margin-top: 21.25rem !important;
  }

  .mt-xxxl-auto {
    margin-top: auto !important;
  }

  .me-xxxl-0 {
    margin-right: 0 !important;
  }

  .me-xxxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxxl-2p {
    margin-right: 0.125rem !important;
  }

  .me-xxxl-12p {
    margin-right: 0.75rem !important;
  }

  .me-xxxl-20p {
    margin-right: 1.25rem !important;
  }

  .me-xxxl-28p {
    margin-right: 1.75rem !important;
  }

  .me-xxxl-32p {
    margin-right: 2rem !important;
  }

  .me-xxxl-40p {
    margin-right: 2.5rem !important;
  }

  .me-xxxl-64p {
    margin-right: 4rem !important;
  }

  .me-xxxl-80p {
    margin-right: 5rem !important;
  }

  .me-xxxl-96p {
    margin-right: 6rem !important;
  }

  .me-xxxl-128p {
    margin-right: 8rem !important;
  }

  .me-xxxl-256p {
    margin-right: 16rem !important;
  }

  .me-xxxl-340p {
    margin-right: 21.25rem !important;
  }

  .me-xxxl-auto {
    margin-right: auto !important;
  }

  .mb-xxxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxxl-2p {
    margin-bottom: 0.125rem !important;
  }

  .mb-xxxl-12p {
    margin-bottom: 0.75rem !important;
  }

  .mb-xxxl-20p {
    margin-bottom: 1.25rem !important;
  }

  .mb-xxxl-28p {
    margin-bottom: 1.75rem !important;
  }

  .mb-xxxl-32p {
    margin-bottom: 2rem !important;
  }

  .mb-xxxl-40p {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxxl-64p {
    margin-bottom: 4rem !important;
  }

  .mb-xxxl-80p {
    margin-bottom: 5rem !important;
  }

  .mb-xxxl-96p {
    margin-bottom: 6rem !important;
  }

  .mb-xxxl-128p {
    margin-bottom: 8rem !important;
  }

  .mb-xxxl-256p {
    margin-bottom: 16rem !important;
  }

  .mb-xxxl-340p {
    margin-bottom: 21.25rem !important;
  }

  .mb-xxxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxxl-2p {
    margin-left: 0.125rem !important;
  }

  .ms-xxxl-12p {
    margin-left: 0.75rem !important;
  }

  .ms-xxxl-20p {
    margin-left: 1.25rem !important;
  }

  .ms-xxxl-28p {
    margin-left: 1.75rem !important;
  }

  .ms-xxxl-32p {
    margin-left: 2rem !important;
  }

  .ms-xxxl-40p {
    margin-left: 2.5rem !important;
  }

  .ms-xxxl-64p {
    margin-left: 4rem !important;
  }

  .ms-xxxl-80p {
    margin-left: 5rem !important;
  }

  .ms-xxxl-96p {
    margin-left: 6rem !important;
  }

  .ms-xxxl-128p {
    margin-left: 8rem !important;
  }

  .ms-xxxl-256p {
    margin-left: 16rem !important;
  }

  .ms-xxxl-340p {
    margin-left: 21.25rem !important;
  }

  .ms-xxxl-auto {
    margin-left: auto !important;
  }

  .m-xxxl-n1 {
    margin: -0.25rem !important;
  }

  .m-xxxl-n2 {
    margin: -0.5rem !important;
  }

  .m-xxxl-n3 {
    margin: -1rem !important;
  }

  .m-xxxl-n4 {
    margin: -1.5rem !important;
  }

  .m-xxxl-n5 {
    margin: -3rem !important;
  }

  .m-xxxl-n2p {
    margin: -0.125rem !important;
  }

  .m-xxxl-n12p {
    margin: -0.75rem !important;
  }

  .m-xxxl-n20p {
    margin: -1.25rem !important;
  }

  .m-xxxl-n28p {
    margin: -1.75rem !important;
  }

  .m-xxxl-n32p {
    margin: -2rem !important;
  }

  .m-xxxl-n40p {
    margin: -2.5rem !important;
  }

  .m-xxxl-n64p {
    margin: -4rem !important;
  }

  .m-xxxl-n80p {
    margin: -5rem !important;
  }

  .m-xxxl-n96p {
    margin: -6rem !important;
  }

  .m-xxxl-n128p {
    margin: -8rem !important;
  }

  .m-xxxl-n256p {
    margin: -16rem !important;
  }

  .m-xxxl-n340p {
    margin: -21.25rem !important;
  }

  .mx-xxxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xxxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xxxl-n3 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xxxl-n4 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xxxl-n5 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-xxxl-n2p {
    margin-right: -0.125rem !important;
    margin-left: -0.125rem !important;
  }

  .mx-xxxl-n12p {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-xxxl-n20p {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-xxxl-n28p {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-xxxl-n32p {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-xxxl-n40p {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-xxxl-n64p {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-xxxl-n80p {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .mx-xxxl-n96p {
    margin-right: -6rem !important;
    margin-left: -6rem !important;
  }

  .mx-xxxl-n128p {
    margin-right: -8rem !important;
    margin-left: -8rem !important;
  }

  .mx-xxxl-n256p {
    margin-right: -16rem !important;
    margin-left: -16rem !important;
  }

  .mx-xxxl-n340p {
    margin-right: -21.25rem !important;
    margin-left: -21.25rem !important;
  }

  .my-xxxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xxxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xxxl-n3 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xxxl-n4 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xxxl-n5 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-xxxl-n2p {
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .my-xxxl-n12p {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-xxxl-n20p {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-xxxl-n28p {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-xxxl-n32p {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-xxxl-n40p {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-xxxl-n64p {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-xxxl-n80p {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .my-xxxl-n96p {
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .my-xxxl-n128p {
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .my-xxxl-n256p {
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .my-xxxl-n340p {
    margin-top: -21.25rem !important;
    margin-bottom: -21.25rem !important;
  }

  .mt-xxxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xxxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xxxl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xxxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xxxl-n5 {
    margin-top: -3rem !important;
  }

  .mt-xxxl-n2p {
    margin-top: -0.125rem !important;
  }

  .mt-xxxl-n12p {
    margin-top: -0.75rem !important;
  }

  .mt-xxxl-n20p {
    margin-top: -1.25rem !important;
  }

  .mt-xxxl-n28p {
    margin-top: -1.75rem !important;
  }

  .mt-xxxl-n32p {
    margin-top: -2rem !important;
  }

  .mt-xxxl-n40p {
    margin-top: -2.5rem !important;
  }

  .mt-xxxl-n64p {
    margin-top: -4rem !important;
  }

  .mt-xxxl-n80p {
    margin-top: -5rem !important;
  }

  .mt-xxxl-n96p {
    margin-top: -6rem !important;
  }

  .mt-xxxl-n128p {
    margin-top: -8rem !important;
  }

  .mt-xxxl-n256p {
    margin-top: -16rem !important;
  }

  .mt-xxxl-n340p {
    margin-top: -21.25rem !important;
  }

  .me-xxxl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xxxl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xxxl-n3 {
    margin-right: -1rem !important;
  }

  .me-xxxl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xxxl-n5 {
    margin-right: -3rem !important;
  }

  .me-xxxl-n2p {
    margin-right: -0.125rem !important;
  }

  .me-xxxl-n12p {
    margin-right: -0.75rem !important;
  }

  .me-xxxl-n20p {
    margin-right: -1.25rem !important;
  }

  .me-xxxl-n28p {
    margin-right: -1.75rem !important;
  }

  .me-xxxl-n32p {
    margin-right: -2rem !important;
  }

  .me-xxxl-n40p {
    margin-right: -2.5rem !important;
  }

  .me-xxxl-n64p {
    margin-right: -4rem !important;
  }

  .me-xxxl-n80p {
    margin-right: -5rem !important;
  }

  .me-xxxl-n96p {
    margin-right: -6rem !important;
  }

  .me-xxxl-n128p {
    margin-right: -8rem !important;
  }

  .me-xxxl-n256p {
    margin-right: -16rem !important;
  }

  .me-xxxl-n340p {
    margin-right: -21.25rem !important;
  }

  .mb-xxxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xxxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xxxl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xxxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xxxl-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-xxxl-n2p {
    margin-bottom: -0.125rem !important;
  }

  .mb-xxxl-n12p {
    margin-bottom: -0.75rem !important;
  }

  .mb-xxxl-n20p {
    margin-bottom: -1.25rem !important;
  }

  .mb-xxxl-n28p {
    margin-bottom: -1.75rem !important;
  }

  .mb-xxxl-n32p {
    margin-bottom: -2rem !important;
  }

  .mb-xxxl-n40p {
    margin-bottom: -2.5rem !important;
  }

  .mb-xxxl-n64p {
    margin-bottom: -4rem !important;
  }

  .mb-xxxl-n80p {
    margin-bottom: -5rem !important;
  }

  .mb-xxxl-n96p {
    margin-bottom: -6rem !important;
  }

  .mb-xxxl-n128p {
    margin-bottom: -8rem !important;
  }

  .mb-xxxl-n256p {
    margin-bottom: -16rem !important;
  }

  .mb-xxxl-n340p {
    margin-bottom: -21.25rem !important;
  }

  .ms-xxxl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xxxl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xxxl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xxxl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xxxl-n5 {
    margin-left: -3rem !important;
  }

  .ms-xxxl-n2p {
    margin-left: -0.125rem !important;
  }

  .ms-xxxl-n12p {
    margin-left: -0.75rem !important;
  }

  .ms-xxxl-n20p {
    margin-left: -1.25rem !important;
  }

  .ms-xxxl-n28p {
    margin-left: -1.75rem !important;
  }

  .ms-xxxl-n32p {
    margin-left: -2rem !important;
  }

  .ms-xxxl-n40p {
    margin-left: -2.5rem !important;
  }

  .ms-xxxl-n64p {
    margin-left: -4rem !important;
  }

  .ms-xxxl-n80p {
    margin-left: -5rem !important;
  }

  .ms-xxxl-n96p {
    margin-left: -6rem !important;
  }

  .ms-xxxl-n128p {
    margin-left: -8rem !important;
  }

  .ms-xxxl-n256p {
    margin-left: -16rem !important;
  }

  .ms-xxxl-n340p {
    margin-left: -21.25rem !important;
  }

  .p-xxxl-0 {
    padding: 0 !important;
  }

  .p-xxxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxxl-3 {
    padding: 1rem !important;
  }

  .p-xxxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxxl-5 {
    padding: 3rem !important;
  }

  .p-xxxl-2p {
    padding: 0.125rem !important;
  }

  .p-xxxl-12p {
    padding: 0.75rem !important;
  }

  .p-xxxl-20p {
    padding: 1.25rem !important;
  }

  .p-xxxl-28p {
    padding: 1.75rem !important;
  }

  .p-xxxl-32p {
    padding: 2rem !important;
  }

  .p-xxxl-40p {
    padding: 2.5rem !important;
  }

  .p-xxxl-64p {
    padding: 4rem !important;
  }

  .p-xxxl-80p {
    padding: 5rem !important;
  }

  .p-xxxl-96p {
    padding: 6rem !important;
  }

  .p-xxxl-128p {
    padding: 8rem !important;
  }

  .p-xxxl-256p {
    padding: 16rem !important;
  }

  .p-xxxl-340p {
    padding: 21.25rem !important;
  }

  .px-xxxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xxxl-2p {
    padding-right: 0.125rem !important;
    padding-left: 0.125rem !important;
  }

  .px-xxxl-12p {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-xxxl-20p {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xxxl-28p {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-xxxl-32p {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xxxl-40p {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxxl-64p {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xxxl-80p {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .px-xxxl-96p {
    padding-right: 6rem !important;
    padding-left: 6rem !important;
  }

  .px-xxxl-128p {
    padding-right: 8rem !important;
    padding-left: 8rem !important;
  }

  .px-xxxl-256p {
    padding-right: 16rem !important;
    padding-left: 16rem !important;
  }

  .px-xxxl-340p {
    padding-right: 21.25rem !important;
    padding-left: 21.25rem !important;
  }

  .py-xxxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xxxl-2p {
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .py-xxxl-12p {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-xxxl-20p {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xxxl-28p {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-xxxl-32p {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xxxl-40p {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxxl-64p {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xxxl-80p {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .py-xxxl-96p {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .py-xxxl-128p {
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .py-xxxl-256p {
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .py-xxxl-340p {
    padding-top: 21.25rem !important;
    padding-bottom: 21.25rem !important;
  }

  .pt-xxxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxxl-5 {
    padding-top: 3rem !important;
  }

  .pt-xxxl-2p {
    padding-top: 0.125rem !important;
  }

  .pt-xxxl-12p {
    padding-top: 0.75rem !important;
  }

  .pt-xxxl-20p {
    padding-top: 1.25rem !important;
  }

  .pt-xxxl-28p {
    padding-top: 1.75rem !important;
  }

  .pt-xxxl-32p {
    padding-top: 2rem !important;
  }

  .pt-xxxl-40p {
    padding-top: 2.5rem !important;
  }

  .pt-xxxl-64p {
    padding-top: 4rem !important;
  }

  .pt-xxxl-80p {
    padding-top: 5rem !important;
  }

  .pt-xxxl-96p {
    padding-top: 6rem !important;
  }

  .pt-xxxl-128p {
    padding-top: 8rem !important;
  }

  .pt-xxxl-256p {
    padding-top: 16rem !important;
  }

  .pt-xxxl-340p {
    padding-top: 21.25rem !important;
  }

  .pe-xxxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxxl-5 {
    padding-right: 3rem !important;
  }

  .pe-xxxl-2p {
    padding-right: 0.125rem !important;
  }

  .pe-xxxl-12p {
    padding-right: 0.75rem !important;
  }

  .pe-xxxl-20p {
    padding-right: 1.25rem !important;
  }

  .pe-xxxl-28p {
    padding-right: 1.75rem !important;
  }

  .pe-xxxl-32p {
    padding-right: 2rem !important;
  }

  .pe-xxxl-40p {
    padding-right: 2.5rem !important;
  }

  .pe-xxxl-64p {
    padding-right: 4rem !important;
  }

  .pe-xxxl-80p {
    padding-right: 5rem !important;
  }

  .pe-xxxl-96p {
    padding-right: 6rem !important;
  }

  .pe-xxxl-128p {
    padding-right: 8rem !important;
  }

  .pe-xxxl-256p {
    padding-right: 16rem !important;
  }

  .pe-xxxl-340p {
    padding-right: 21.25rem !important;
  }

  .pb-xxxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxxl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xxxl-2p {
    padding-bottom: 0.125rem !important;
  }

  .pb-xxxl-12p {
    padding-bottom: 0.75rem !important;
  }

  .pb-xxxl-20p {
    padding-bottom: 1.25rem !important;
  }

  .pb-xxxl-28p {
    padding-bottom: 1.75rem !important;
  }

  .pb-xxxl-32p {
    padding-bottom: 2rem !important;
  }

  .pb-xxxl-40p {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxxl-64p {
    padding-bottom: 4rem !important;
  }

  .pb-xxxl-80p {
    padding-bottom: 5rem !important;
  }

  .pb-xxxl-96p {
    padding-bottom: 6rem !important;
  }

  .pb-xxxl-128p {
    padding-bottom: 8rem !important;
  }

  .pb-xxxl-256p {
    padding-bottom: 16rem !important;
  }

  .pb-xxxl-340p {
    padding-bottom: 21.25rem !important;
  }

  .ps-xxxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxxl-5 {
    padding-left: 3rem !important;
  }

  .ps-xxxl-2p {
    padding-left: 0.125rem !important;
  }

  .ps-xxxl-12p {
    padding-left: 0.75rem !important;
  }

  .ps-xxxl-20p {
    padding-left: 1.25rem !important;
  }

  .ps-xxxl-28p {
    padding-left: 1.75rem !important;
  }

  .ps-xxxl-32p {
    padding-left: 2rem !important;
  }

  .ps-xxxl-40p {
    padding-left: 2.5rem !important;
  }

  .ps-xxxl-64p {
    padding-left: 4rem !important;
  }

  .ps-xxxl-80p {
    padding-left: 5rem !important;
  }

  .ps-xxxl-96p {
    padding-left: 6rem !important;
  }

  .ps-xxxl-128p {
    padding-left: 8rem !important;
  }

  .ps-xxxl-256p {
    padding-left: 16rem !important;
  }

  .ps-xxxl-340p {
    padding-left: 21.25rem !important;
  }

  .text-xxxl-start {
    text-align: left !important;
  }

  .text-xxxl-end {
    text-align: right !important;
  }

  .text-xxxl-center {
    text-align: center !important;
  }

  .boots-position-xxxl-static {
    position: static !important;
  }

  .boots-position-xxxl-absolute {
    position: absolute !important;
  }

  .boots-position-xxxl-relative {
    position: relative !important;
  }

  .boots-position-xxxl-fixed {
    position: fixed !important;
  }

  .boots-position-xxxl-sticky {
    position: sticky !important;
  }
}

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}

.boots-accordion-button:not(.collapsed) {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #0b0c0c;
}

.accordion-button {
  font-size: 0.875rem;
}

.boots-accordion-button--readmore::after {
  --contentBtn: "Ver mais";
  background: 0 0;
  width: auto;
  height: auto;
  color: #9ca2a4;
  content: var(--contentBtn);
}

.boots-accordion-button--readmore:not(.collapsed)::after {
  --contentBtn: "Ver menos";
  -webkit-transform: none;
  transform: none;
  background-image: none;
}

.boots-alert {
  color: #59595c;
  font-size: clamp(1rem, 0.7vw + 0.9rem, 1.5rem);
  text-align: center;
}

.boots-alert .icon-v-style {
  --boots-size-icon: 6.25rem;
}

.alert-boots-simple {
  background-color: #fafafa;
  border-color: #f2f2f2;
  color: #0b0c0c;
}

.alert-boots-info {
  background-color: #b3e2f9;
  border-color: #8dd3f6;
  color: #09384f;
}

.boots-avatar {
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.boots-avatar::after {
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}

.boots-avatar img,
.boots-avatar::after {
  height: 100%;
  width: 100%;
}

.boots-avatar--edit {
  border: 0;
  font-size: var(--avatar-edit-fz, 0.75rem);
  padding: 0;
}

.boots-avatar--edit>span {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity ease-in 300ms;
  transition: opacity ease-in 300ms;
  width: 100%;
  z-index: 3;
}

.boots-avatar--edit>span::before {
  color: #fff;
  content: "Trocar imagem";
  position: relative;
  z-index: 4;
}

.boots-avatar--edit>span::after {
  background-color: #0b0c0c;
  content: "";
  height: inherit;
  left: 0;
  position: absolute;
  top: 0;
  width: inherit;
}

.boots-avatar--edit:active>span,
.boots-avatar--edit:focus>span,
.boots-avatar--edit:hover>span {
  opacity: 1;
  -webkit-transition: opacity ease-out 300ms;
  transition: opacity ease-out 300ms;
}

.badge,
.boots-badge {
  font-weight: 600;
}

.boots-badge-simple {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border: 0.5px solid #f2f2f2;
  border-radius: 35px;
  color: #0b0c0c;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: var(--badge-simple-pd, 0.625rem 0.75rem 0.625rem 0.625rem);
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  white-space: pre-wrap;
}

.boots-badge-simple.is-selected {
  --badge-simple-pd: 0.625rem 0.75rem 0.625rem 1.125rem;
}

.boots-badge-simple.is-selected::after {
  --boots-size-icon: 1rem;
  -webkit-mask-image: var(--icon-x-thin);
  mask-image: var(--icon-x-thin);
  display: inline-block;
  line-height: 14px;
  margin-left: 6px;
}

.boots-badge-simple.is-selected,
.boots-badge-simple:active,
.boots-badge-simple:focus,
.boots-badge-simple:hover {
  background-color: #f2f2f2;
  color: inherit;
  cursor: pointer;
}

.boots-badge.boots-badge-light,
.boots-badge.boots-bg-off-white,
.boots-badge.boots-bg-yellow,
.boots-badge.boots-bgc-yellow {
  color: #0b0c0c;
}

.boots-badge-light {
  background-color: #f2f2f2;
}

.boots-badge-pro {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.625rem;
  text-transform: capitalize;
  line-height: 1;
  padding: 0.1875rem 0.375rem 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.boots-badge-business {
  font-weight: 500;
}

.boots-badge-business,
.boots-badge-corp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.625rem;
  text-transform: capitalize;
  line-height: 1;
  padding: 0.1875rem 0.375rem 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.on-ios .boots-badge-business,
.on-ios .boots-badge-corp,
.on-ios .boots-badge-pro,
.on-mac.on-firefox .boots-badge-business,
.on-mac.on-firefox .boots-badge-corp,
.on-mac.on-firefox .boots-badge-pro {
  padding: 0.25rem 0.375rem 0.1875rem;
}

.boots-badge-corp,
.boots-badge-pro {
  background-color: var(--bs-boots-white, #fff);
  color: #0b0c0c;
  border: 0.5px solid #f2f2f2;
  font-weight: 700;
}

.boots-badge--md.badge {
  font-weight: 600;
  line-height: 1.5;
  padding: 0.25rem 0.5625rem;
}

.boots-badge-business {
  background-color: var(--bs-boots-yellow, #ffd400);
  color: var(--bs-boots-black, #0b0c0c);
}

.boots-badge-border,
.boots-badge-discount {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 0.625rem;
}

.boots-badge-border {
  border: 0.03125rem solid rgba(156, 162, 164, 0.48);
  border-radius: 0.75rem;
  padding: 0.125rem 0.375rem 0.1875rem;
  line-height: 0.8125rem;
}

.boots-badge-border.boots-badge-border--icon {
  --boots-size-icon: 0.625rem;
  gap: 0.25rem;
  padding: 0.125rem 0.5rem 0.1875rem 0.375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.boots-badge-discount {
  border: 0.0625rem solid var(--bs-boots-black, #0b0c0c);
  padding: 0.0625rem 0.375rem 0;
  line-height: 0.875rem;
  color: #fff;
  min-height: 1.0625rem;
}

.boots-badge-circle,
.boots-badge-discount {
  background-color: #0b0c0c;
}

.boots-badge-circle:not([class^="fs-boots-"]):not([class*=" fs-boots-"]) {
  font-size: 0.75rem;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 600;
}

.boots-badge--icon,
.boots-badge-circle.badge {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boots-badge-circle.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  letter-spacing: 0;
  padding: 0 0.25rem;
  line-height: 1;
  min-width: var(--boots-bdg-size, 1.5rem);
  min-height: var(--boots-bdg-size, 1.5rem);
}

.boots-badge--icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.3125rem;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  font-size: 0.625rem;
  color: #0b0c0c;
}

@media (min-width: 768px) {
  .boots-badge--icon {
    font-size: 0.75rem;
  }
}

@media (min-width: 992px) and (max-width: 1399.98px) {
  .boots-badge--icon.boots-badge--text-small-lg-xxl {
    font-size: 0.625rem;
  }
}

.boots-badge--icon .icon-v-style {
  --boots-size-icon: 1rem;
  height: 1rem;
  color: var(--bs-boots-gray, #59595c);
}

.boots-badgelist ul {
  list-style: none;
  padding: 0;
}

.boots-badgelist li {
  --badgelist-m: 0.625rem;
  margin-bottom: var(--badgelist-m);
}

.boots-badgelist--row ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.boots-badgelist--row li {
  margin-right: var(--badgelist-m);
}

.boots-badgelist--row li:last-child {
  --badgelist-m: 0;
}

.boots-barprog {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 23.75rem;
  min-height: var(--barprogrs-h, 100%);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--barprogrs-w, 100%);
}

@media (max-width: 991.98px) {
  .boots-barprog {
    --barprogrs-w: 80%;
    --barprogrs-h: 82px;
  }
}

.boots-barprog::after {
  z-index: 1;
}

.boots-barprog::after,
.boots-barprog::before {
  background-color: #f2f2f2;
  content: "";
  height: 2px;
  position: absolute;
  top: calc(100% - var(--barprogs-top, 28px));
  width: 100%;
}

@media (max-width: 991.98px) {

  .boots-barprog::after,
  .boots-barprog::before {
    --barprogs-top: 47px;
  }
}

.boots-barprog::before {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: var(--barprogrs-line-active, 0%);
  z-index: 2;
}

.boots-barprog-item {
  text-align: var(--baprogrs-item-txtalign, center);
  z-index: 3;
}

.boots-barprog-item:first-child {
  --baprogrs-item-txtalign: left;
}

.boots-barprog-item:last-child {
  --baprogrs-item-txtalign: right;
}

.boots-barprog-item span {
  display: block;
  font-size: 10px;
  padding-top: 2px;
}

.boots-barprog-item:first-child span {
  -webkit-transform: translateX(-15px);
  transform: translateX(-15px);
}

.boots-barprog-item:last-child span {
  -webkit-transform: translateX(15px);
  transform: translateX(15px);
}

.boots-barprog-item-circle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--circle-color-active, #f2f2f2);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease 0.1s;
  transition: all 0.2s ease 0.1s;
  width: 20px;
}

.boots-barprog-item-circle .icon-v-style {
  --boots-size-icon: 0.5rem;
  color: var(--circle-icon-color-active, #f2f2f2);
  font-size: 8px;
  opacity: var(--icon-v-style-show, 0);
  -webkit-transform: scale(var(--icon-v-style-show, 0));
  transform: scale(var(--icon-v-style-show, 0));
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.2s ease 0.15s;
  transition: all 0.2s ease 0.15s;
}

.boots-barprog[data-progress="0"] {
  --barprogrs-line-active: 2%;
}

.boots-barprog[data-progress="0"] .boots-barprog-item:nth-child(1),
.boots-barprog[data-progress="100"] .boots-barprog-item:nth-child(1),
.boots-barprog[data-progress="100"] .boots-barprog-item:nth-child(2),
.boots-barprog[data-progress="100"] .boots-barprog-item:nth-child(3),
.boots-barprog[data-progress="50"] .boots-barprog-item:nth-child(1),
.boots-barprog[data-progress="50"] .boots-barprog-item:nth-child(2) {
  --circle-color-active: #f2f2f2;
  --circle-icon-color-active: #0b0c0c;
  --icon-v-style-show: 1;
}

.boots-barprog[data-progress="50"] {
  --barprogrs-line-active: 50%;
}

.boots-barprog[data-progress="100"] {
  --barprogrs-line-active: 100%;
}

.boots-breadcrumb {
  font-size: 0.75rem;
}

.boots-breadcrumb .breadcrumb-item {
  color: #0b0c0c;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.boots-breadcrumb .breadcrumb-item+.breadcrumb-item {
  padding-left: 0.25rem;
}

.boots-breadcrumb .breadcrumb-item:not(:first-child)::before {
  --boots-size-icon: 0.5rem;
  -webkit-mask-image: var(--icon-caret-right-thin);
  mask-image: var(--icon-caret-right-thin);
  margin-right: 0.25rem;
}

.boots-breadcrumb .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
}

.boots-breadcrumb .breadcrumb-item.active,
.boots-breadcrumb .breadcrumb-item:hover a {
  color: #59595c;
}

.btn[class*="btn-boots-"],
.btn[class*="btn-outline-boots"] {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn[class*="btn-boots-"]>.icon-v-style:first-child,
.btn[class*="btn-outline-boots"]>.icon-v-style:first-child {
  margin-right: 0.1875rem;
}

.btn[class*="btn-boots-"]>.icon-v-style:last-child,
.btn[class*="btn-outline-boots"]>.icon-v-style:last-child {
  margin-left: 0.1875rem;
}

.btn[class*="btn-boots-"]>.icon-v-style:only-child,
.btn[class*="btn-outline-boots"]>.icon-v-style:only-child {
  margin-left: 0;
  margin-right: 0;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}

.btn-boots-group {
  background-color: #fff;
  border-color: #e3e7e8;
}

.btn-boots-group .icon-close {
  font-size: 1.6875rem;
}

.btn-boots-group:hover {
  background-color: #f2f2f2;
}

.btn-boots-group.disabled,
.btn-boots-group:disabled {
  background-color: #f2f2f2;
}

.btn-boots__desc {
  color: #9ca2a4;
  text-align: left;
}

.btn-boots__desc b {
  color: #0b0c0c;
  display: block;
  font-weight: 400;
}

.btn-close {
  background-size: 0.75rem;
}

.btn-goback {
  --boots-size-icon: 1.5rem;
  background: 0 0;
  border: 0;
  color: var(--bs-boots-soft-gray, #9ca2a4);
  font-size: 1.5rem;
  line-height: 1;
  outline: 0;
  padding: 0.25rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.btn-goback__txt {
  font-size: 0.875rem;
}

.btn-goback:active,
.btn-goback:focus,
.btn-goback:hover {
  color: inherit;
  cursor: pointer;
  opacity: 0.7;
}

.btn-primary {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:hover {
  background-color: #fff;
  color: #0b0c0c;
}

.btn-primary.btn-boots-nohover:active,
.btn-primary.btn-boots-nohover:focus,
.btn-primary.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #0b0c0c;
}

.btn-outline-primary {
  --btn-bg-outline: transparent;
  --btn-color: #0b0c0c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-primary:active,
.btn-outline-primary:hover {
  --btn-color: #fff;
  background-color: #0b0c0c;
  color: var(--btn-color);
}

.btn-outline-primary.btn-boots-nohover:active,
.btn-outline-primary.btn-boots-nohover:focus,
.btn-outline-primary.btn-boots-nohover:hover {
  --btn-color: #0b0c0c;
  background-color: #fff;
}

.btn-secondary {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-secondary.active,
.btn-secondary:active,
.btn-secondary:hover {
  background-color: #fff;
  color: #6c757d;
}

.btn-secondary.btn-boots-nohover:active,
.btn-secondary.btn-boots-nohover:focus,
.btn-secondary.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #6c757d;
}

.btn-outline-secondary {
  --btn-bg-outline: transparent;
  --btn-color: #6c757d;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-secondary:active,
.btn-outline-secondary:hover {
  --btn-color: #fff;
  background-color: #6c757d;
  color: var(--btn-color);
}

.btn-outline-secondary.btn-boots-nohover:active,
.btn-outline-secondary.btn-boots-nohover:focus,
.btn-outline-secondary.btn-boots-nohover:hover {
  --btn-color: #6c757d;
  background-color: #fff;
}

.btn-success {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-success.active,
.btn-success:active,
.btn-success:hover {
  background-color: #fff;
  color: #00aa4a;
}

.btn-success.btn-boots-nohover:active,
.btn-success.btn-boots-nohover:focus,
.btn-success.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #00aa4a;
}

.btn-outline-success {
  --btn-bg-outline: transparent;
  --btn-color: #00aa4a;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-success:active,
.btn-outline-success:hover {
  --btn-color: #fff;
  background-color: #00aa4a;
  color: var(--btn-color);
}

.btn-outline-success.btn-boots-nohover:active,
.btn-outline-success.btn-boots-nohover:focus,
.btn-outline-success.btn-boots-nohover:hover {
  --btn-color: #00aa4a;
  background-color: #fff;
}

.btn-info {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-info.active,
.btn-info:active,
.btn-info:hover {
  background-color: #fff;
  color: #0dcaf0;
}

.btn-info.btn-boots-nohover:active,
.btn-info.btn-boots-nohover:focus,
.btn-info.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #0dcaf0;
}

.btn-outline-info {
  --btn-bg-outline: transparent;
  --btn-color: #0dcaf0;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-info:active,
.btn-outline-info:hover {
  --btn-color: #fff;
  background-color: #0dcaf0;
  color: var(--btn-color);
}

.btn-outline-info.btn-boots-nohover:active,
.btn-outline-info.btn-boots-nohover:focus,
.btn-outline-info.btn-boots-nohover:hover {
  --btn-color: #0dcaf0;
  background-color: #fff;
}

.btn-warning {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-warning.active,
.btn-warning:active,
.btn-warning:hover {
  background-color: #fff;
  color: #ffc107;
}

.btn-warning.btn-boots-nohover:active,
.btn-warning.btn-boots-nohover:focus,
.btn-warning.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #ffc107;
}

.btn-outline-warning {
  --btn-bg-outline: transparent;
  --btn-color: #ffc107;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-warning:active,
.btn-outline-warning:hover {
  --btn-color: #fff;
  background-color: #ffc107;
  color: var(--btn-color);
}

.btn-outline-warning.btn-boots-nohover:active,
.btn-outline-warning.btn-boots-nohover:focus,
.btn-outline-warning.btn-boots-nohover:hover {
  --btn-color: #ffc107;
  background-color: #fff;
}

.btn-danger {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-danger.active,
.btn-danger:active,
.btn-danger:hover {
  background-color: #fff;
  color: red;
}

.btn-danger.btn-boots-nohover:active,
.btn-danger.btn-boots-nohover:focus,
.btn-danger.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: red;
}

.btn-outline-danger {
  --btn-bg-outline: transparent;
  --btn-color: #ff0000;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-danger:active,
.btn-outline-danger:hover {
  --btn-color: #fff;
  background-color: red;
  color: var(--btn-color);
}

.btn-outline-danger.btn-boots-nohover:active,
.btn-outline-danger.btn-boots-nohover:focus,
.btn-outline-danger.btn-boots-nohover:hover {
  --btn-color: #ff0000;
  background-color: #fff;
}

.btn-light {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-light.active,
.btn-light:active,
.btn-light:hover {
  background-color: #fff;
  color: #fafafa;
}

.btn-light.btn-boots-nohover:active,
.btn-light.btn-boots-nohover:focus,
.btn-light.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #fafafa;
}

.btn-outline-light {
  --btn-bg-outline: transparent;
  --btn-color: #fafafa;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-light:active,
.btn-outline-light:hover {
  --btn-color: #fff;
  background-color: #fafafa;
  color: var(--btn-color);
}

.btn-outline-light.btn-boots-nohover:active,
.btn-outline-light.btn-boots-nohover:focus,
.btn-outline-light.btn-boots-nohover:hover {
  --btn-color: #fafafa;
  background-color: #fff;
}

.btn-dark {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-dark.active,
.btn-dark:active,
.btn-dark:hover {
  background-color: #fff;
  color: #0b0c0c;
}

.btn-dark.btn-boots-nohover:active,
.btn-dark.btn-boots-nohover:focus,
.btn-dark.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #0b0c0c;
}

.btn-outline-dark {
  --btn-bg-outline: transparent;
  --btn-color: #0b0c0c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-dark:active,
.btn-outline-dark:hover {
  --btn-color: #fff;
  background-color: #0b0c0c;
  color: var(--btn-color);
}

.btn-outline-dark.btn-boots-nohover:active,
.btn-outline-dark.btn-boots-nohover:focus,
.btn-outline-dark.btn-boots-nohover:hover {
  --btn-color: #0b0c0c;
  background-color: #fff;
}

.btn-boots-yellow {
  --btn-color: #0b0c0c;
  color: var(--btn-color);
}

.btn-boots-yellow.active,
.btn-boots-yellow:active,
.btn-boots-yellow:hover {
  background-color: #fff;
  color: #0b0c0c;
  background:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.05)),
      to(rgba(0, 0, 0, 0.05))),
    #ffd400;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), #ffd400;
}

.btn-boots-yellow.btn-boots-nohover:active,
.btn-boots-yellow.btn-boots-nohover:focus,
.btn-boots-yellow.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #ffd400;
}

.btn-outline-boots-yellow {
  --btn-bg-outline: transparent;
  --btn-color: #0b0c0c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-yellow:active,
.btn-outline-boots-yellow:hover {
  --btn-color: #fff;
  background-color: #ffd400;
  color: var(--btn-color);
  --btn-color: #0b0c0c;
}

.btn-outline-boots-yellow.btn-boots-nohover:active,
.btn-outline-boots-yellow.btn-boots-nohover:focus,
.btn-outline-boots-yellow.btn-boots-nohover:hover {
  --btn-color: #0b0c0c;
  background-color: #fff;
}

.btn-boots-yellow-b {
  --btn-color: #0b0c0c;
  color: var(--btn-color);
}

.btn-boots-yellow-b.active,
.btn-boots-yellow-b:active,
.btn-boots-yellow-b:hover {
  background-color: #fff;
  color: #0b0c0c;
  background:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(rgba(0, 0, 0, 0.05)),
      to(rgba(0, 0, 0, 0.05))),
    #ffd400;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)), #ffd400;
}

.btn-boots-yellow-b.btn-boots-nohover:active,
.btn-boots-yellow-b.btn-boots-nohover:focus,
.btn-boots-yellow-b.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #ffd400;
}

.btn-outline-boots-yellow-b {
  --btn-bg-outline: transparent;
  --btn-color: #0b0c0c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-yellow-b:active,
.btn-outline-boots-yellow-b:hover {
  --btn-color: #fff;
  background-color: #ffd400;
  color: var(--btn-color);
  --btn-color: #0b0c0c;
}

.btn-outline-boots-yellow-b.btn-boots-nohover:active,
.btn-outline-boots-yellow-b.btn-boots-nohover:focus,
.btn-outline-boots-yellow-b.btn-boots-nohover:hover {
  --btn-color: #0b0c0c;
  background-color: #fff;
}

.btn-boots-black {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-black.active,
.btn-boots-black:active,
.btn-boots-black:hover {
  background-color: #fff;
  background-color: rgba(11, 12, 12, 0.8);
}

.btn-boots-black.btn-boots-nohover:active,
.btn-boots-black.btn-boots-nohover:focus,
.btn-boots-black.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #0b0c0c;
}

.btn-outline-boots-black {
  --btn-bg-outline: transparent;
  --btn-color: #0b0c0c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-black:active,
.btn-outline-boots-black:hover {
  --btn-color: #fff;
  background-color: #0b0c0c;
  color: var(--btn-color);
}

.btn-outline-boots-black.btn-boots-nohover:active,
.btn-outline-boots-black.btn-boots-nohover:focus,
.btn-outline-boots-black.btn-boots-nohover:hover {
  --btn-color: #0b0c0c;
  background-color: #fff;
}

.btn-boots-gray {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-gray.active,
.btn-boots-gray:active,
.btn-boots-gray:hover {
  background-color: #fff;
  color: #59595c;
}

.btn-boots-gray.btn-boots-nohover:active,
.btn-boots-gray.btn-boots-nohover:focus,
.btn-boots-gray.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #59595c;
}

.btn-outline-boots-gray {
  --btn-bg-outline: transparent;
  --btn-color: #59595c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-gray:active,
.btn-outline-boots-gray:hover {
  --btn-color: #fff;
  background-color: #59595c;
  color: var(--btn-color);
}

.btn-outline-boots-gray.btn-boots-nohover:active,
.btn-outline-boots-gray.btn-boots-nohover:focus,
.btn-outline-boots-gray.btn-boots-nohover:hover {
  --btn-color: #59595c;
  background-color: #fff;
}

.btn-boots-soft-gray {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-soft-gray.active,
.btn-boots-soft-gray:active,
.btn-boots-soft-gray:hover {
  background-color: #fff;
  color: #9ca2a4;
}

.btn-boots-soft-gray.btn-boots-nohover:active,
.btn-boots-soft-gray.btn-boots-nohover:focus,
.btn-boots-soft-gray.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #9ca2a4;
}

.btn-outline-boots-soft-gray {
  --btn-bg-outline: transparent;
  --btn-color: #9ca2a4;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-soft-gray:active,
.btn-outline-boots-soft-gray:hover {
  --btn-color: #fff;
  background-color: #9ca2a4;
  color: var(--btn-color);
}

.btn-outline-boots-soft-gray.btn-boots-nohover:active,
.btn-outline-boots-soft-gray.btn-boots-nohover:focus,
.btn-outline-boots-soft-gray.btn-boots-nohover:hover {
  --btn-color: #9ca2a4;
  background-color: #fff;
}

.btn-boots-light-gray {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-light-gray.active,
.btn-boots-light-gray:active,
.btn-boots-light-gray:hover {
  background-color: #fff;
  color: #e3e7e8;
}

.btn-boots-light-gray.btn-boots-nohover:active,
.btn-boots-light-gray.btn-boots-nohover:focus,
.btn-boots-light-gray.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #e3e7e8;
}

.btn-outline-boots-light-gray {
  --btn-bg-outline: transparent;
  --btn-color: #e3e7e8;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-light-gray:active,
.btn-outline-boots-light-gray:hover {
  --btn-color: #fff;
  background-color: #e3e7e8;
  color: var(--btn-color);
}

.btn-outline-boots-light-gray.btn-boots-nohover:active,
.btn-outline-boots-light-gray.btn-boots-nohover:focus,
.btn-outline-boots-light-gray.btn-boots-nohover:hover {
  --btn-color: #e3e7e8;
  background-color: #fff;
}

.btn-boots-mush {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-mush.active,
.btn-boots-mush:active,
.btn-boots-mush:hover {
  background-color: #fff;
  color: #f2f2f2;
}

.btn-boots-mush.btn-boots-nohover:active,
.btn-boots-mush.btn-boots-nohover:focus,
.btn-boots-mush.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #f2f2f2;
}

.btn-outline-boots-mush {
  --btn-bg-outline: transparent;
  --btn-color: #f2f2f2;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-mush:active,
.btn-outline-boots-mush:hover {
  --btn-color: #fff;
  background-color: #f2f2f2;
  color: var(--btn-color);
}

.btn-outline-boots-mush.btn-boots-nohover:active,
.btn-outline-boots-mush.btn-boots-nohover:focus,
.btn-outline-boots-mush.btn-boots-nohover:hover {
  --btn-color: #f2f2f2;
  background-color: #fff;
}

.btn-boots-off-white {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-off-white.active,
.btn-boots-off-white:active,
.btn-boots-off-white:hover {
  background-color: #fff;
  color: #fafafa;
}

.btn-boots-off-white.btn-boots-nohover:active,
.btn-boots-off-white.btn-boots-nohover:focus,
.btn-boots-off-white.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #fafafa;
}

.btn-outline-boots-off-white {
  --btn-bg-outline: transparent;
  --btn-color: #fafafa;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-off-white:active,
.btn-outline-boots-off-white:hover {
  --btn-color: #fff;
  background-color: #fafafa;
  color: var(--btn-color);
}

.btn-outline-boots-off-white.btn-boots-nohover:active,
.btn-outline-boots-off-white.btn-boots-nohover:focus,
.btn-outline-boots-off-white.btn-boots-nohover:hover {
  --btn-color: #fafafa;
  background-color: #fff;
}

.btn-boots-stroke {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-stroke.active,
.btn-boots-stroke:active,
.btn-boots-stroke:hover {
  background-color: #fff;
  color: #f2f2f2;
}

.btn-boots-stroke.btn-boots-nohover:active,
.btn-boots-stroke.btn-boots-nohover:focus,
.btn-boots-stroke.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #f2f2f2;
}

.btn-outline-boots-stroke {
  --btn-bg-outline: transparent;
  --btn-color: #f2f2f2;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-stroke:active,
.btn-outline-boots-stroke:hover {
  --btn-color: #fff;
  background-color: #f2f2f2;
  color: var(--btn-color);
}

.btn-outline-boots-stroke.btn-boots-nohover:active,
.btn-outline-boots-stroke.btn-boots-nohover:focus,
.btn-outline-boots-stroke.btn-boots-nohover:hover {
  --btn-color: #f2f2f2;
  background-color: #fff;
}

.btn-boots-simple {
  --btn-color: #0b0c0c;
  background-color: #fff;
  border-color: #f2f2f2;
  color: var(--btn-color);
}

.btn-boots-simple.active,
.btn-boots-simple:active,
.btn-boots-simple:hover {
  background-color: #fafafa;
  border-color: #f2f2f2;
  color: #0b0c0c;
}

.btn-boots-simple:focus {
  background-color: #fafafa;
  color: var(--btn-color);
}

.btn-boots-simple.disabled,
.btn-boots-simple:disabled {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: #9ca2a4;
  opacity: 1;
}

.btn-boots-simple.btn-boots-nohover:active,
.btn-boots-simple.btn-boots-nohover:focus,
.btn-boots-simple.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #fff;
}

.btn-outline-boots-simple {
  --btn-bg-outline: transparent;
  --btn-color: #59595c;
  border-color: #f2f2f2;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-simple:active,
.btn-outline-boots-simple:hover {
  --btn-color: #fff;
  color: var(--btn-color);
  --btn-color: #0b0c0c;
  background-color: #f2f2f2;
  border-color: #9ca2a4;
}

.btn-outline-boots-simple.btn-boots-nohover:active,
.btn-outline-boots-simple.btn-boots-nohover:focus,
.btn-outline-boots-simple.btn-boots-nohover:hover {
  --btn-color: #59595c;
  background-color: #fff;
}

.btn-outline-boots-simple.btn-boots-nobd:active,
.btn-outline-boots-simple.btn-boots-nobd:focus,
.btn-outline-boots-simple.btn-boots-nobd:hover {
  text-decoration: underline;
  background-color: transparent;
}

.btn-boots-dark {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-dark.active,
.btn-boots-dark:active,
.btn-boots-dark:hover {
  background-color: #fff;
  background-color: rgba(11, 12, 12, 0.8);
}

.btn-boots-dark.btn-boots-nohover:active,
.btn-boots-dark.btn-boots-nohover:focus,
.btn-boots-dark.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #0b0c0c;
}

.btn-outline-boots-dark {
  --btn-bg-outline: transparent;
  --btn-color: #0b0c0c;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-dark:active,
.btn-outline-boots-dark:hover {
  --btn-color: #fff;
  background-color: #0b0c0c;
  color: var(--btn-color);
}

.btn-outline-boots-dark.btn-boots-nohover:active,
.btn-outline-boots-dark.btn-boots-nohover:focus,
.btn-outline-boots-dark.btn-boots-nohover:hover {
  --btn-color: #0b0c0c;
  background-color: #fff;
}

.btn-boots-success {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-success.active,
.btn-boots-success:active,
.btn-boots-success:hover {
  background-color: #fff;
  color: #00aa4a;
}

.btn-boots-success.btn-boots-nohover:active,
.btn-boots-success.btn-boots-nohover:focus,
.btn-boots-success.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #00aa4a;
}

.btn-outline-boots-success {
  --btn-bg-outline: transparent;
  --btn-color: #00aa4a;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-success:active,
.btn-outline-boots-success:hover {
  --btn-color: #fff;
  background-color: #00aa4a;
  color: var(--btn-color);
}

.btn-outline-boots-success.btn-boots-nohover:active,
.btn-outline-boots-success.btn-boots-nohover:focus,
.btn-outline-boots-success.btn-boots-nohover:hover {
  --btn-color: #00aa4a;
  background-color: #fff;
}

.btn-boots-danger {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-danger.active,
.btn-boots-danger:active,
.btn-boots-danger:hover {
  background-color: #fff;
  color: red;
}

.btn-boots-danger.btn-boots-nohover:active,
.btn-boots-danger.btn-boots-nohover:focus,
.btn-boots-danger.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: red;
}

.btn-outline-boots-danger {
  --btn-bg-outline: transparent;
  --btn-color: #ff0000;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-danger:active,
.btn-outline-boots-danger:hover {
  --btn-color: #fff;
  background-color: red;
  color: var(--btn-color);
}

.btn-outline-boots-danger.btn-boots-nohover:active,
.btn-outline-boots-danger.btn-boots-nohover:focus,
.btn-outline-boots-danger.btn-boots-nohover:hover {
  --btn-color: #ff0000;
  background-color: #fff;
}

.btn-boots-cyan {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-cyan.active,
.btn-boots-cyan:active,
.btn-boots-cyan:hover {
  background-color: #fff;
  color: #1c78ff;
}

.btn-boots-cyan.btn-boots-nohover:active,
.btn-boots-cyan.btn-boots-nohover:focus,
.btn-boots-cyan.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #1c78ff;
}

.btn-outline-boots-cyan {
  --btn-bg-outline: transparent;
  --btn-color: #1c78ff;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-cyan:active,
.btn-outline-boots-cyan:hover {
  --btn-color: #fff;
  background-color: #1c78ff;
  color: var(--btn-color);
}

.btn-outline-boots-cyan.btn-boots-nohover:active,
.btn-outline-boots-cyan.btn-boots-nohover:focus,
.btn-outline-boots-cyan.btn-boots-nohover:hover {
  --btn-color: #1c78ff;
  background-color: #fff;
}

.btn-boots-blue {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-blue.active,
.btn-boots-blue:active,
.btn-boots-blue:hover {
  background-color: #fff;
  color: #393a77;
}

.btn-boots-blue.btn-boots-nohover:active,
.btn-boots-blue.btn-boots-nohover:focus,
.btn-boots-blue.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #393a77;
}

.btn-outline-boots-blue {
  --btn-bg-outline: transparent;
  --btn-color: #393a77;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-blue:active,
.btn-outline-boots-blue:hover {
  --btn-color: #fff;
  background-color: #393a77;
  color: var(--btn-color);
}

.btn-outline-boots-blue.btn-boots-nohover:active,
.btn-outline-boots-blue.btn-boots-nohover:focus,
.btn-outline-boots-blue.btn-boots-nohover:hover {
  --btn-color: #393a77;
  background-color: #fff;
}

.btn-boots-facebook {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-facebook.active,
.btn-boots-facebook:active,
.btn-boots-facebook:hover {
  background-color: #fff;
  color: #5a75b2;
}

.btn-boots-facebook.btn-boots-nohover:active,
.btn-boots-facebook.btn-boots-nohover:focus,
.btn-boots-facebook.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #5a75b2;
}

.btn-outline-boots-facebook {
  --btn-bg-outline: transparent;
  --btn-color: #5a75b2;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-facebook:active,
.btn-outline-boots-facebook:hover {
  --btn-color: #fff;
  background-color: #5a75b2;
  color: var(--btn-color);
}

.btn-outline-boots-facebook.btn-boots-nohover:active,
.btn-outline-boots-facebook.btn-boots-nohover:focus,
.btn-outline-boots-facebook.btn-boots-nohover:hover {
  --btn-color: #5a75b2;
  background-color: #fff;
}

.btn-boots-twitter {
  --btn-color: #fff;
  color: var(--btn-color);
}

.btn-boots-twitter.active,
.btn-boots-twitter:active,
.btn-boots-twitter:hover {
  background-color: #fff;
  color: #55acee;
}

.btn-boots-twitter.btn-boots-nohover:active,
.btn-boots-twitter.btn-boots-nohover:focus,
.btn-boots-twitter.btn-boots-nohover:hover {
  color: var(--btn-color);
  background-color: #55acee;
}

.btn-outline-boots-twitter {
  --btn-bg-outline: transparent;
  --btn-color: #55acee;
  background-color: var(--btn-bg-outline);
  color: var(--btn-color);
}

.btn-outline-boots-twitter:active,
.btn-outline-boots-twitter:hover {
  --btn-color: #fff;
  background-color: #55acee;
  color: var(--btn-color);
}

.btn-outline-boots-twitter.btn-boots-nohover:active,
.btn-outline-boots-twitter.btn-boots-nohover:focus,
.btn-outline-boots-twitter.btn-boots-nohover:hover {
  --btn-color: #55acee;
  background-color: #fff;
}

.btn.btn-show-more {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 24.375rem;
}

.btn-boots-nobd,
.btn-boots-nobd:hover {
  border-color: transparent;
}

.btn.btn-boots-hover-opacity:hover {
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  opacity: 1;
}

.btn-boots-circle {
  --boots-size-icon: 1.25rem;
  border-radius: 50%;
  font-size: var(--btncircle-fz, 0.9375rem);
  height: var(--btncircle-h, 2.25rem);
  line-height: 0;
  padding: 0;
  width: var(--btncircle-w, 2.25rem);
}

@media (min-width: 576px) {
  .btn-boots-circle {
    --boots-size-icon: 1.5rem;
    --btncircle-w: 2.5rem;
    --btncircle-h: 2.5rem;
    --btncircle-fz: 1.25rem;
  }
}

.btn-boots-action {
  background-color: var(--btnaction-bgc, #fff);
  border-color: var(--btnaction-bdc, #f2f2f2);
  border-radius: 50%;
  border-style: solid;
  border-width: 0.5px;
  color: var(--btnaction-cl, #0b0c0c);
  font-size: var(--btnaction-fz, 0.9375rem);
  height: var(--btnaction-h, 2.375rem);
  line-height: 1;
  width: var(--btnaction-w, 2.375rem);
  padding: 0;
}

.btn-boots-action:active,
.btn-boots-action:focus,
.btn-boots-action:hover {
  --btnaction-bgc-hv: #f2f2f2;
  --btnaction-bdc: transparent;
  background-color: var(--btnaction-bgc-hv);
}

@media (min-width: 576px) {
  .btn-boots-action {
    --btnaction-w: 2.5rem;
    --btnaction-h: 2.5rem;
    --btnaction-fz: 1.25rem;
  }
}

.btn-boots-check {
  background-color: #fff;
  border: 0.5px solid #f2f2f2;
  border-radius: 0.5rem;
  color: #0b0c0c;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 3.75rem;
  position: relative;
  text-decoration: none;
}

.btn-boots-check:not(label)::after {
  --boots-size-icon: 1.25rem;
  -webkit-mask-image: var(--icon-check-circle-fill);
  mask-image: var(--icon-check-circle-fill);
  position: absolute;
  right: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

.btn-boots-check:active:not(.collapsed),
.btn-boots-check:focus:not(.collapsed),
.btn-boots-check:hover {
  color: #0b0c0c;
  text-decoration: none;
  -webkit-box-shadow: rgba(11, 12, 12, 0.5) 0 0 0 0.0625rem;
  box-shadow: rgba(11, 12, 12, 0.5) 0 0 0 0.0625rem;
  border-color: transparent;
}

.btn-boots-check.btn-lg,
.btn-group-lg>.btn-boots-check.btn {
  padding: 2.5rem 4rem 2.5rem 0.75rem;
}

@media (min-width: 576px) {

  .btn-boots-check.btn-lg,
  .btn-group-lg>.btn-boots-check.btn {
    padding: 3rem 5.5rem 3rem 3rem;
  }
}

.btn-boots-check.btn-lg .btn-boots__desc,
.btn-group-lg>.btn-boots-check.btn .btn-boots__desc {
  font-size: 0.875rem;
  line-height: 1.2;
}

@media (min-width: 576px) {

  .btn-boots-check.btn-lg .btn-boots__desc,
  .btn-group-lg>.btn-boots-check.btn .btn-boots__desc {
    font-size: 1rem;
  }
}

.btn-boots-check.btn-lg .btn-boots__desc b,
.btn-group-lg>.btn-boots-check.btn .btn-boots__desc b {
  font-size: 1.5rem;
}

.btn-boots-check.btn-lg+.boots-collapse,
.btn-group-lg>.btn-boots-check.btn+.boots-collapse {
  padding: 0 0.75rem;
}

@media (min-width: 576px) {

  .btn-boots-check.btn-lg+.boots-collapse,
  .btn-group-lg>.btn-boots-check.btn+.boots-collapse {
    padding: 0 3rem;
  }
}

.btn-boots-check[aria-expanded="false"]::after {
  opacity: 0;
}

.btn-boots-check.nav-link.active,
.btn-boots-check[aria-expanded="true"] {
  background-color: #fafafa;
}

.btn-boots-check.nav-link.active::after,
.btn-boots-check[aria-expanded="true"]::after,
label.btn-boots-check.is-selected>.icon-v-style {
  opacity: 1;
}

.btn.btn-boots-check.active:not(.btn-boots-check--desc),
.btn.btn-boots-check[aria-expanded="true"]:not(.btn-boots-check--desc) {
  -webkit-box-shadow: rgba(11, 12, 12, 0.8) 0 0 0 0.0625rem;
  box-shadow: rgba(11, 12, 12, 0.8) 0 0 0 0.0625rem;
  border-color: transparent;
}

.btn-boots-check.nav-link {
  padding-left: 2.5rem;
  padding-right: 3.125rem;
}

.btn-boots-check.nav-link::after {
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
  opacity: 0;
}

.nav-tabs .btn-boots-check.nav-link.active {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #0b0c0c;
  border: 0.0625rem solid #0b0c0c;
}

label.btn-boots-check>input {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

label.btn-boots-check>input:checked+.icon-v-style {
  opacity: 1;
}

label.btn-boots-check>.icon-v-style {
  --boots-size-icon: 1.25rem;
  opacity: 0;
  position: absolute;
  right: 0;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
}

label.btn-boots-check.is-selected {
  background-color: #fafafa;
  -webkit-box-shadow: #0b0c0c 0 0 0 0.0625rem;
  box-shadow: #0b0c0c 0 0 0 0.0625rem;
  border-color: transparent;
}

.btn.btn-boots-check--desc {
  --check-desc-bg: #fff;
  --check-desc-bg-true: #fafafa;
  background-color: var(--check-desc-bg);
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  width: 100%;
}

.btn.btn-boots-check--desc:focus,
.btn.btn-boots-check--desc:hover {
  color: #59595c;
}

.btn.btn-boots-check--desc[aria-expanded="true"] {
  background-color: var(--check-desc-bg-true);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border: 0.0625rem solid #0b0c0c;
  border-bottom: none;
  -webkit-box-shadow: 0 -0.0625rem 0 0 #f2f2f2 inset;
  box-shadow: 0 -0.0625rem 0 0 #f2f2f2 inset;
}

.btn.btn-boots-check--desc[aria-expanded="true"]+.boots-collapse.boots-collapse--nobdt {
  border: 0.0625rem solid #0b0c0c;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

.btn.btn-boots-check--desc[aria-expanded="true"]::after {
  color: #0b0c0c;
}

@media (max-width: 991.98px) {

  .btn[class*="btn-boots-"].btn-boots-mobile,
  .btn[class*="btn-outline-boots"].btn-boots-mobile {
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: var(--btncircle-fz, 0.9375rem);
    height: var(--btncircle-h, 2.25rem);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 0;
    padding: 0;
    width: var(--btncircle-w, 2.25rem);
  }

  .btn[class*="btn-boots-"].btn-boots-mobile>.icon-v-style:first-child,
  .btn[class*="btn-outline-boots"].btn-boots-mobile>.icon-v-style:first-child {
    margin-right: 0;
  }

  .btn[class*="btn-boots-"].btn-boots-mobile>.icon-v-style:last-child,
  .btn[class*="btn-outline-boots"].btn-boots-mobile>.icon-v-style:last-child {
    margin-left: 0;
  }

  .btn[class*="btn-boots-"].btn-boots-mobile span,
  .btn[class*="btn-outline-boots"].btn-boots-mobile span {
    display: none;
  }
}

.btn.btn-boots-check.btn-boots-check--toggle-arrow:not(.collapsed)::after,
.btn.btn-boots-check.btn-boots-check--toggle-arrow[aria-expanded="false"]::after {
  --boots-size-icon: 3rem;
  opacity: 1;
  font-size: 3rem;
  -webkit-mask-image: var(--icon-caret-down-thin);
  mask-image: var(--icon-caret-down-thin);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateX(-2px);
  transform: translateX(-2px);
}

.btn.btn-boots-check.btn-boots-check--toggle-arrow[aria-expanded="true"]::after {
  -webkit-transform: rotate(180deg) translateX(2px);
  transform: rotate(180deg) translateX(2px);
}

.btn-group-lg>.btn.btn-boots-check.btn-boots-check--toggle-arrow:not(.collapsed)::after,
.btn-group-lg>.btn.btn-boots-check.btn-boots-check--toggle-arrow[aria-expanded="false"]::after,
.btn.btn-boots-check.btn-boots-check--toggle-arrow.btn-lg:not(.collapsed)::after,
.btn.btn-boots-check.btn-boots-check--toggle-arrow.btn-lg[aria-expanded="false"]::after {
  font-size: 3.875rem;
  --boots-size-icon: 32px;
}

@media (min-width: 576px) {

  .btn-group-lg>.btn.btn-boots-check.btn-boots-check--toggle-arrow:not(.collapsed)::after,
  .btn-group-lg>.btn.btn-boots-check.btn-boots-check--toggle-arrow[aria-expanded="false"]::after,
  .btn.btn-boots-check.btn-boots-check--toggle-arrow.btn-lg:not(.collapsed)::after,
  .btn.btn-boots-check.btn-boots-check--toggle-arrow.btn-lg[aria-expanded="false"]::after {
    -webkit-transform: translateX(-44px);
    transform: translateX(-44px);
  }

  .btn-group-lg>.btn.btn-boots-check.btn-boots-check--toggle-arrow[aria-expanded="true"]::after,
  .btn.btn-boots-check.btn-boots-check--toggle-arrow.btn-lg[aria-expanded="true"]::after {
    -webkit-transform: rotate(180deg) translateX(44px);
    transform: rotate(180deg) translateX(44px);
  }

  .btn[class*="btn-boots-"].btn-boots-mw,
  .btn[class*="btn-outline-boots"].btn-boots-mw {
    min-width: 6.25rem;
  }

  .btn[class*="btn-boots-"].btn-boots-mw-lg,
  .btn[class*="btn-outline-boots"].btn-boots-mw-lg {
    min-width: 8.75rem;
  }
}

.btn-boots-check:not(.is-selected)>input[type="checkbox"]~.is-checked,
.btn-boots-check:not(.is-selected)>input[type="radio"]~.is-checked {
  display: none;
}

.btn-boots-check:not(.is-selected)>input[type="checkbox"]:checked~.is-checked,
.btn-boots-check:not(.is-selected)>input[type="radio"]:checked~.is-checked {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  top: -1px;
  left: -1px;
  z-index: 1;
  -webkit-box-shadow: #0b0c0c 0 0 0 0.0625rem;
  box-shadow: #0b0c0c 0 0 0 0.0625rem;
  border-radius: 0.5rem;
  background-color: rgba(242, 242, 242, 0.2);
}

input[type="checkbox"],
input[type="radio"] {
  accent-color: #0b0c0c;
}

.form-check-input[type="checkbox"]:indeterminate,
input[type="checkbox"]:indeterminate {
  background-color: currentColor;
  border-color: currentColor;
}

.toggle-icon {
  position: relative;
}

.toggle-icon:hover:not(.hover-none),
.toggle-icon:hover:not(.is-selected) {
  background-color: var(--bs-boots-off-white, #fafafa);
}

.toggle-icon:active:not(.is-selected),
.toggle-icon:focus:not(.is-selected) {
  background-color: var(--bs-boots-white, #fff);
}

.toggle-icon .icon-v-style {
  display: none;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  margin: 4px;
  top: 0;
  right: 0;
}

@media (min-width: 768px) {
  .toggle-icon .icon-v-style {
    margin: auto;
    bottom: 0;
    right: 1.25rem;
  }
}

.toggle-icon.is-selected {
  background: var(--bs-boots-mush, #f2f2f2);
  position: relative;
}

.toggle-icon.is-selected .icon-v-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.btn-group-sm>.btn,
.btn-sm {
  line-height: 1.125rem;
  padding: 0.5rem 1rem;
}

.boots-card {
  --boots-card-bgc: #fafafa;
  --boots-card-bdc: #f2f2f2;
  background-color: var(--boots-card-bgc);
  border-color: var(--boots-card-bdc);
}

.boots-card .card-header {
  --card-header-padding: 1.5rem 1.25rem;
  font-size: 1.25rem;
  padding: var(--card-header-padding);
  line-height: 1;
}

@media (min-width: 992px) {
  .boots-card .card-header {
    --card-header-padding: 2rem;
  }
}

.boots-card .card-header~.boots-card--divisor,
.boots-card .card-header~.card-body {
  --card-body-padding: 1.25rem;
  padding: var(--card-body-padding);
}

@media (min-width: 992px) {

  .boots-card .card-header~.boots-card--divisor,
  .boots-card .card-header~.card-body {
    --card-body-padding: 1.25rem 2rem;
  }
}

.boots-card--divisor {
  border-bottom: 0.5px solid #f2f2f2;
  border-bottom-color: var(--boots-card-bdc);
}

.boots-card .card-body.bg-white {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List,
.boots-card--htouch,
.boots-list--htouch {
  --bs-gutter-x-tm: var(--bs-gutter-x);
  --bs-padding-x-tm: var(--bs-gutter-x);
  scroll-padding-left: var(--bs-gutter-x);
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  scroll-snap-align: start;
  margin-left: calc(var(--bs-gutter-x-tm) * -1);
  margin-right: calc(var(--bs-gutter-x-tm) * -1);
  padding-left: var(--bs-padding-x-tm);
  padding-right: var(--bs-padding-x-tm);
  overflow: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List::-webkit-scrollbar,
.boots-card--htouch::-webkit-scrollbar,
.boots-list--htouch::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

@media (hover: hover) {

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List,
  .boots-card--htouch,
  .boots-list--htouch {
    padding-bottom: 0.5rem;
    margin-bottom: -1rem;
  }

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List:hover,
  .boots-card--htouch:hover,
  .boots-list--htouch:hover {
    overflow-x: auto;
    scrollbar-color: #f2f2f2 transparent;
    scrollbar-width: thin;
  }

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List:hover::-webkit-scrollbar-track,
  .boots-card--htouch:hover::-webkit-scrollbar-track,
  .boots-list--htouch:hover::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: transparent;
  }

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List:hover::-webkit-scrollbar,
  .boots-card--htouch:hover::-webkit-scrollbar,
  .boots-list--htouch:hover::-webkit-scrollbar {
    height: 0.5rem;
    background-color: transparent;
    display: block;
  }

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List:hover::-webkit-scrollbar-thumb,
  .boots-card--htouch:hover::-webkit-scrollbar-thumb,
  .boots-list--htouch:hover::-webkit-scrollbar-thumb {
    background-color: #f2f2f2;
    border: 0.125rem solid #fff;
  }
}

@media (min-width: 576px) {

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List,
  .boots-card--htouch,
  .boots-list--htouch {
    --bs-gutter-x-tm: 0;
    --bs-padding-x-tm: 0;
  }
}

.aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List .card,
.boots-card--htouch .card,
.boots-list--htouch .card {
  scroll-snap-align: center;
  --bs-mw-tm: 11.75rem;
  min-width: var(--bs-mw-tm);
  overflow: hidden;
}

@media (min-width: 576px) {

  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List .card,
  .boots-card--htouch .card,
  .boots-list--htouch .card {
    --bs-mw-tm: initial;
  }
}

.boots-card--warning {
  border-color: #fbdec2;
  background-color: #ffebd8;
}

.boots-card--warning .card-header {
  border-color: #fbdec2;
  background-color: transparent;
}

.boots-cardprod,
.boots-cardprod-wrapimg {
  position: relative;
}

.boots-cardprod a {
  color: var(--bs-boots-black, #0b0c0c);
  text-decoration: none;
}

.boots-cardprod:hover .boots-cardprod-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.boots-cardprod:hover .boots-cardprod-dragico {
  opacity: 1;
  -webkit-transition: opacity ease-out 0.3s;
  transition: opacity ease-out 0.3s;
}

@media (max-width: 991.98px) {
  .boots-cardprod .boots-cardprod-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.boots-cardprod-actions {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
  gap: 0.25rem;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: var(--actions-pdr, 0.625rem);
  padding-top: var(--actions-pdt, 0.625rem);
  width: 100%;
}

.boots-cardprod-actions .btn-boots-action {
  --btnaction-bgc-hv: #fff;
}

@media (min-width: 576px) {
  .boots-cardprod-actions {
    --actions-pdt: 1.5rem;
    --actions-pdr: 0.875rem;
  }
}

.boots-cardprod-fav {
  display: inline-block;
  padding: 0.5rem;
}

@media (max-width: 575.98px) {
  .boots-cardprod-fav {
    padding-right: 0;
  }
}

.boots-cardprod-wrapimg {
  margin-bottom: 0.75rem;
}

.boots-cardprod-wrapimg>a {
  display: block;
}

.boots-cardprod-wrapimg picture {
  border: 0.5px solid #f2f2f2;
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border-radius: 0.5rem;
}

.boots-cardprod-wrapimg picture::after {
  background-color: #0b0c0c;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  opacity: 0.05;
}

.boots-cardprod-wrapimg .img-fluid,
.boots-img img {
  position: relative;
  z-index: 1;
}

@media (max-width: 575.98px) {
  .boots-cardprod-wrapimg .img-fluid {
    width: 100%;
  }
}

.boots-cardprod .boots-badge-outdoor,
.boots-cardprod-actions,
.boots-cardprod-sealpro {
  position: absolute;
  z-index: 4;
}

.boots-cardprod-sealpro {
  bottom: var(--sealpro-bottom, 0.875rem);
  right: var(--sealpro-right, 0.625rem);
  width: var(--sealpro-w, 2.125rem);
}

@media (min-width: 576px) {
  .boots-cardprod-sealpro {
    --sealpro-bottom: 1.5625rem;
    --sealpro-right: 1.25rem;
    --sealpro-w: 3rem;
  }
}

.boots-cardprod .boots-badge-outdoor {
  bottom: var(--outdoor-bottom, 0.625rem);
  left: var(--outdoor-left, 0.625rem);
}

@media (max-width: 575.98px) {
  .boots-cardprod .boots-badge-outdoor {
    --boots-badge-size: 1.875rem;
  }
}

@media (min-width: 576px) {
  .boots-cardprod .boots-badge-outdoor {
    --outdoor-bottom: 1.25rem;
    --outdoor-left: 1.25rem;
  }
}

.boots-cardprod-wrap {
  font-size: 0.875rem;
}

.boots-cardprod-name,
.boots-cardprod-store {
  margin-bottom: 0;
}

.boots-cardprod-name,
.table-boots thead a {
  color: #0b0c0c;
}

.boots-cardprod a:focus .boots-cardprod-name,
.boots-cardprod a:hover .boots-cardprod-name {
  text-decoration: underline;
}

.boots-cardprod-store {
  color: #59595c;
}

.boots-cardprod-name,
.boots-cardprod-name a,
.boots-cardprod-store,
.boots-cardprod-store a {
  letter-spacing: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.boots-cardprod-name a,
.boots-cardprod-store a {
  color: inherit;
  text-decoration: none;
}

.boots-cardprod-name a:hover,
.boots-cardprod-store a:hover {
  opacity: 0.8;
}

.boots-cardprod-values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 0.5rem;
  margin-bottom: 0;
}

.col:not(.swiper-slide) .boots-cardprod-values {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 576px) {
  .col:not(.swiper-slide) .boots-cardprod-values {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.boots-cardprod-values p {
  margin-bottom: 0;
  color: #59595c;
  font-size: 0.875rem;
  letter-spacing: 0;
}

.boots-cardprod-values .value-promo {
  color: red;
  text-decoration: line-through;
}

.boots-cardprod-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.375rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.boots-cardprod-badges:not(.boots-zindex) {
  z-index: 2;
}

.boots-cardprod-badges .badge {
  line-height: 1;
  color: #0b0c0c;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.boots-cardprod-actions.boots-cardprod-actions--visible,
.boots-cardprod-badges .badge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.boots-cardprod-dragico {
  background-color: rgba(0, 0, 0, 0.5);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity ease-in 0.15s;
  transition: opacity ease-in 0.15s;
  width: 100%;
  z-index: 3;
  border-radius: 0.5rem;
}

.boots-cardprod-endcard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  border-radius: 0.5rem;
  width: 19.875rem;
  height: 28.125rem;
  aspect-ratio: 318/450;
  text-decoration: none;
}

.boots-cardprod-endcard:active,
.boots-cardprod-endcard:hover {
  text-decoration: underline;
}

.boots-cardprod-endcard .icon-v-style {
  position: absolute;
  bottom: 5.25rem;
}

.boots-cartmodal {
  max-width: calc(100% - 2rem);
  width: 100%;
}

@media (min-width: 576px) {
  .boots-cartmodal {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .boots-cart {
    min-width: 23.125rem;
  }
}

.boots-cart-header {
  text-align: center;
}

.boots-cart-header-title {
  padding-bottom: 1.75rem;
  text-align: left;
  border-bottom: 0.5px solid #f2f2f2;
}

.boots-cartprod {
  padding: 2rem 0;
}

.boots-cartprod:not(:last-child),
.boots-dropmenu-notify li:not(:last-child) .boots-dropmenu-notify-item__wrap {
  border-bottom: 0.5px solid #f2f2f2;
}

.boots-cartprod-img {
  padding-left: 0;
  padding-right: 0;
}

.boots-cartprod-img>a {
  display: block;
}

.boots-cartprod-amount,
.boots-cartprod-boxinfo,
.datepicker .calendar-table td,
.daterangepicker .calendar-table td {
  font-size: 0.875rem;
}

.boots-cartprod-boxinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 1rem;
  padding-right: 0;
  position: relative;
}

.boots-cartprod-infos {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.boots-cartprod-name,
.boots-cartprod-store {
  line-height: 1.25rem;
  margin-bottom: 0;
  padding-right: 2rem;
}

.boots-cartprod-remove {
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: -1.25rem;
}

.boots-cartprod-remove .icon-v-style {
  --boots-size-icon: 1rem;
}

.boots-cartprod-amount {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.boots-cartprod-amount input {
  text-align: center;
  width: 2.5rem;
  height: 2rem;
  border: 0.5px solid #f2f2f2;
  border-radius: 0.25rem;
  color: var(--bs-boots-gray, #59595c);
}

.boots-cartprod-amount input:focus,
.boots-cartprod-amount input:focus-visible {
  border-color: #0b0c0c;
  outline: 0;
}

.boots-cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 0.5px solid #f2f2f2;
}

.boots-cart-total {
  list-style: none;
  padding-left: 0;
}

.boots-cart-total-info,
.boots-cart-total-txt,
.boots-cart-total-val {
  margin-bottom: 0;
}

.boots-cart-total-line {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.3125rem;
}

.boots-cart-total-info {
  font-size: 0.6875rem;
}

.boots-cart-total-val,
.boots-cart-total-val b {
  font-weight: 600;
}

.offcanvas-header {
  padding-bottom: 1.75rem;
}

.offcanvas-title,
.table-boots thead th {
  font-weight: 600;
}

.offcanvas-body {
  --me-for-scroll: 0;
  -ms-overflow-style: none;
  overflow-x: hidden;
  --me-for-scroll: 1.125rem;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  overflow-y: auto;
  mask-image:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(#f2f2f2)),
    -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      to(#f2f2f2));
  mask-image:
    linear-gradient(to top, transparent, #f2f2f2),
    linear-gradient(to left,
      transparent var(--me-for-scroll),
      #f2f2f2 var(--me-for-scroll));
  mask-size: 100% 125rem;
  -webkit-mask-image:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(#f2f2f2)),
    -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      to(#f2f2f2));
  -webkit-mask-image:
    linear-gradient(to top, transparent, #f2f2f2),
    linear-gradient(to left,
      transparent var(--me-for-scroll),
      #f2f2f2 var(--me-for-scroll));
  -webkit-mask-size: 100% 125rem;
  transition:
    mask-position 0.3s,
    -webkit-mask-position 0.3s;
  scrollbar-color: #f2f2f2 transparent;
  scrollbar-width: thin;
}

.offcanvas-body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: block;
}

@media (hover: hover) {
  .offcanvas-body:hover {
    -webkit-mask-position: left top;
    mask-position: left top;
  }
}

.offcanvas-body::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.offcanvas-body::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
  border: 0.125rem solid #fff;
}

.offcanvas-body form {
  margin-right: -8px;
  max-width: 24.9375rem;
}

.boots-container,
.boots-header-container {
  --bs-gutter-x: 1rem;
}

@media (min-width: 992px) {

  .boots-container,
  .boots-header-container {
    --bs-gutter-x: 2rem;
  }
}

@media (min-width: 1200px) {

  .boots-container,
  .boots-header-container {
    --bs-gutter-x: 3rem;
  }
}

@media (max-width: 1399.98px) {

  .boots-container,
  .boots-header-container {
    max-width: 100%;
  }
}

@media (min-width: 1400px) {

  .boots-container,
  .boots-header-container {
    max-width: 120rem;
  }
}

.boots-dropmenu-header,
.boots-dropmenu-menu-header,
.boots-dropmenu-menu-item {
  padding-left: var(--boots-dropmenu-px);
  padding-right: var(--boots-dropmenu-px);
}

.boots-dropdown-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
}

.boots-dropdown-btn::after {
  display: none;
}

.boots-dropdown-btnuser {
  width: var(--dropbtn-user-w, 2.75rem);
  border: 0;
  padding: 0.625rem;
}

.boots-dropdown-btnnotify,
.boots-dropdown-btnstore {
  font-size: var(--dropbtn-fs, 1.25rem);
  border: 0;
}

.boots-dropdown-btnnotify {
  position: relative;
}

.boots-dropdown-btnnotify .boots-badge {
  font-size: 0.5625rem;
  padding-bottom: 0.25rem;
  padding-top: 0.25rem;
  position: absolute;
  right: -0.125rem;
  top: -0.125rem;
  font-weight: 600;
}

.boots-dropmenu {
  --boots-dropmenu-px: 1.5rem;
  min-width: 16rem;
  padding-top: 1.5rem;
  padding-bottom: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.boots-dropmenu-header {
  text-align: left;
}

.boots-dropmenu-header+.boots-dropmenu-divisor {
  --dropmenu-divisor-my: 1.25rem;
}

.boots-dropmenu-header-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.boots-dropmenu-header-name {
  display: inline-block;
  max-width: var(--boots-dropmenu-title-mw, 10.625rem);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: -0.01em;
  margin-right: 4px;
}

.boots-dropmenu-header-name--sm {
  --boots-dropmenu-title-mw: 8.625rem;
}

.boots-dropmenu-header .boots-badge-business+.boots-badge-pro {
  margin-left: 0.25rem;
}

.boots-dropmenu-header .boots-avatar {
  width: 3rem;
}

.boots-dropmenu-header-icon {
  font-size: 2.25rem;
}

.boots-dropmenu-header-block {
  border-bottom: 0.5px solid #f2f2f2;
  text-align: left;
  line-height: 1.5rem;
  font-size: 1rem;
  padding: 1.25rem var(--boots-dropmenu-px, 0);
  font-weight: 400;
}

.boots-dropmenu-header-block p {
  margin-bottom: 0.625rem;
}

.boots-dropmenu-menu {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

.boots-dropmenu-menu li:active,
.boots-dropmenu-menu li:not(.is-empty):hover {
  color: var(--bs-boots-gray, #59595c);
}

.boots-dropmenu-menu-header {
  color: var(--bs-boots-gray, #59595c);
  margin-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.boots-dropmenu-menu-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0b0c0c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.boots-dropmenu-menu-item:focus,
.boots-dropmenu-menu-item:hover {
  background-color: var(--bs-boots-off-white, #fafafa);
  color: var(--bs-boots-black, #0b0c0c);
}

.boots-dropmenu-menu-item .icon-v-style {
  --boots-size-icon: 1rem;
  position: relative;
  color: var(--bs-boots-gray, #59595c);
}

.boots-header-dropuser .boots-dropmenu-menu-item .icon-caret-right-thin {
  left: 12.5rem;
  position: absolute;
}

.boots-dropmenu-menu-item span {
  font-size: 1rem;
  line-height: 1.5rem;
}

.boots-dropmenu-divisor {
  background-color: #f2f2f2;
  height: 0.5px;
  margin-bottom: var(--dropmenu-divisor-my, 0.75rem);
  margin-top: var(--dropmenu-divisor-my, 0.75rem);
}

.boots-dropmenu-menu.boots-dropmenu-menu-close {
  --boots-dropmenu-px: 0;
  border-top: 0.5px solid #f2f2f2;
}

.boots-dropmenu-menu.boots-dropmenu-menu-close .boots-dropmenu-menu-item {
  font-size: 0.75rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  padding: 1rem;
  color: var(--bs-boots-gray, #59595c);
  border-radius: 0 0 1rem 1rem;
}

.boots-dropmenu-menu.boots-dropmenu-menu-close .boots-dropmenu-menu-item:focus,
.boots-dropmenu-menu.boots-dropmenu-menu-close .boots-dropmenu-menu-item:hover {
  color: var(--bs-boots-black, #0b0c0c);
}

.boots-dropmenu-body {
  max-height: calc(100vh - 20rem);
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.boots-dropmenu-body:not(:hover) .boots-dropmenu-menu-item {
  padding-right: calc(var(--me-for-scroll) + 0.875rem);
}

@media (min-width: 768px) {
  .boots-dropmenu-body {
    max-height: calc(100vh - 19.375rem);
  }
}

.boots-dropdown-menu--notify {
  -webkit-transform: translate(0, 1.625rem);
  transform: translate(0, 1.625rem);
  width: 23.125rem;
  max-width: 92vw;
  padding-top: 0;
  position: absolute;
  inset: 0 0 auto auto;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
}

.boots-dropmenu-notify {
  max-width: 23.125rem;
  height: 38.75rem;
  max-height: calc(100vh - 13rem);
  font-size: 0.75rem;
  line-height: 1.2;
  color: #59595c;
  padding: 0 1.125rem;
  padding-right: var(--me-for-scroll, 1.625rem);
  overflow: hidden auto;
}

@media (min-width: 768px) {
  .boots-dropmenu-notify {
    overflow: hidden;
  }
}

.boots-dropmenu-notify .is-empty {
  padding: 2rem 1rem;
  text-align: center;
}

.boots-dropmenu-notify::after {
  position: absolute;
  width: 100%;
  content: " ";
  height: 4.5rem;
  left: 0;
  bottom: 0;
  z-index: 3;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(-15.15%, rgba(255, 255, 255, 0)),
      color-stop(78.79%, #fff));
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) -15.15%,
      #fff 78.79%);
  border-radius: 0 0 1rem 1rem;
}

.boots-dropmenu-notify li:last-child {
  margin-bottom: 2rem;
}

.boots-dropmenu-notify-item {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.25rem 0.625rem 0;
  text-decoration: none;
  color: #59595c;
  position: relative;
}

.boots-dropmenu-notify-item:hover {
  color: #0b0c0c;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}

.boots-dropmenu-notify-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 3.25rem;
  padding-bottom: 1.5rem;
  padding-right: 2rem;
}

.boots-dropmenu-notify-item__wrap .btn {
  position: absolute;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.boots-dropmenu-notify-item__text {
  line-height: 1.5rem;
  font-size: 1rem;
  color: var(--bs-boots-black, #0b0c0c);
}

.boots-dropmenu-notify-item__date {
  font-family: "Calibri";
  font-weight: 400;
  color: var(--bs-boots-gray, #59595c);
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

.boots-dropmenu-notify li:not(.has-see) {
  position: relative;
}

.boots-dropmenu-notify li:not(.has-see)::after {
  content: "";
  position: absolute;
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  top: 0;
  background: red;
  bottom: 0;
  margin: auto;
  border-radius: 100%;
  left: -6px;
}

.boots-dropmenu-notify .boots-img {
  border-radius: 100%;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  margin-bottom: 1.5rem;
  max-width: 2.5rem;
  aspect-ratio: 1/1;
}

@media (min-width: 768px) {
  .boots-dropmenu-notify:hover {
    --me-for-scroll: 1.125rem;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    mask-image:
      -webkit-gradient(linear,
        left bottom,
        left top,
        from(transparent),
        to(#f2f2f2)),
      -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        to(#f2f2f2));
    mask-image:
      linear-gradient(to top, transparent, #f2f2f2),
      linear-gradient(to left,
        transparent var(--me-for-scroll),
        #f2f2f2 var(--me-for-scroll));
    mask-size: 100% 125rem;
    -webkit-mask-image:
      -webkit-gradient(linear,
        left bottom,
        left top,
        from(transparent),
        to(#f2f2f2)),
      -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        to(#f2f2f2));
    -webkit-mask-image:
      linear-gradient(to top, transparent, #f2f2f2),
      linear-gradient(to left,
        transparent var(--me-for-scroll),
        #f2f2f2 var(--me-for-scroll));
    -webkit-mask-size: 100% 125rem;
    transition:
      mask-position 0.3s,
      -webkit-mask-position 0.3s;
    scrollbar-color: #f2f2f2 transparent;
    scrollbar-width: thin;
    overflow-y: scroll;
  }
}

@media (min-width: 768px) and (hover: hover) {
  .boots-dropmenu-notify:hover:hover {
    -webkit-mask-position: left top;
    mask-position: left top;
  }
}

@media (min-width: 768px) {
  .boots-dropmenu-notify:hover::-webkit-scrollbar {
    display: block;
  }

  .boots-dropmenu-notify:hover::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: transparent;
  }

  .boots-dropmenu-notify:hover::-webkit-scrollbar {
    width: 0.5rem;
    background-color: transparent;
  }

  .boots-dropmenu-notify:hover::-webkit-scrollbar-thumb {
    background-color: #f2f2f2;
    border: 0.125rem solid #fff;
  }

  html.on-firefox .boots-dropmenu-notify:hover {
    --me-for-scroll: 1.625rem;
  }
}

.boots-footer {
  background-color: #fff;
  color: var(--bs-boots-black, #0b0c0c);
  border-top: 0.5px solid #f2f2f2;
  padding-top: var(--footer-pt, 5rem);
  padding-inline: var(--footer-px, 1rem);
}

@media (min-width: 992px) {
  .boots-footer {
    --footer-pt: 11.25rem;
    --footer-px: 2.5rem;
  }

  .has-sidebarmenu+.boots-footer {
    padding-left: 8.625rem;
  }
}

main+.boots-footer {
  margin-top: var(--footer-pt, 5rem);
}

@media (min-width: 992px) {

  .boots-footer-news,
  .boots-footer:not(.boots-footer--small) .boots-container {
    --bs-gutter-x: 8px;
  }
}

@media (min-width: 1400px) {
  .boots-footer.boots-footer--small .boots-container {
    --bs-gutter-x: 1.5rem;
  }
}

.boots-footer-social {
  font-size: 0.875rem;
  margin-bottom: 3.5rem;
}

.boots-footer-social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  list-style: none;
  padding-left: 0;
  max-width: 9.5rem;
}

.boots-footer-social-list:hover .icon-v-style {
  opacity: 0.2;
}

.boots-footer-social-list .icon-v-style {
  color: var(--bs-boots-black, #0b0c0c);
  text-decoration: none;
  display: block;
  -webkit-transition: opacity 0.05s ease;
  transition: opacity 0.05s ease;
}

.boots-footer-social-list .icon-v-style:focus,
.boots-footer-social-list .icon-v-style:hover {
  opacity: 1;
}

@media (min-width: 992px) {
  .boots-footer-info {
    padding-bottom: 6.5rem;
  }
}

@media (min-width: 1400px) {
  .boots-footer-info {
    padding-bottom: 9.75rem;
  }
}

.boots-footer-info-title {
  font-size: 1rem;
  margin-bottom: 0;
}

.boots-footer-info-menu ul {
  list-style: none;
  margin-bottom: 3.5rem;
  padding-left: 0;
}

.boots-footer-info-link {
  color: var(--bs-boots-black, #0b0c0c);
  font-size: var(--infolink-fz, 1.5rem);
  line-height: var(--infolink-lh, 2rem);
  text-decoration: none;
  display: inline-block;
  padding: 0;
  letter-spacing: -0.03em;
}

.boots-footer-info-link:active,
.boots-footer-info-link:hover {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 992px) {
  .boots-footer-info-link {
    --infolink-fz: 2rem;
    --infolink-lh: 2.5rem;
  }
}

.boots-footer-newsletter {
  margin-bottom: 3.5rem;
  max-width: 21.5rem;
}

.boots-footer-social+.boots-footer-newsletter {
  margin-top: -1.125rem;
}

.boots-footer-copyright {
  padding-bottom: var(--boots-fc-pb, 4rem);
}

@media (min-width: 992px) {
  .boots-footer-copyright {
    --boots-fc-pb: 2.5rem;
  }
}

.boots-footer-copyright-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 1.5rem;
}

.boots-footer-copyright-nav__link {
  font-size: var(--boots-copyright-link-fz, 0.875rem);
  line-height: var(--boots-copyright-link-lh, 1.25rem);
  color: var(--bs-boots-black, #0b0c0c);
  text-decoration: none;
}

@media (min-width: 992px) {
  .boots-footer-copyright-nav__link {
    --boots-copyright-link-fz: 0.625rem;
    --boots-copyright-link-lh: 1rem;
  }
}

.boots-footer-copyright-nav__link:active,
.boots-footer-copyright-nav__link:hover {
  color: inherit;
  text-decoration: underline;
}

.boots-footer-copyright__text {
  color: var(--bs-boots-black, #0b0c0c);
  font-size: 0.625rem;
  line-height: 1rem;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}

.boots-footer--check {
  --footer-pt: 0.6875rem;
}

@media (min-width: 992px) {
  .boots-footer--small {
    --footer-pt: 2rem;
  }
}

.fs-boots-2xs {
  letter-spacing: -0.02em;
  font-weight: 400;
  font-size: calc(var(--font-adjust, 1) * 1.25rem);
  line-height: calc(var(--font-adjust-lh, 1) * 120%);
}

.bootbox .modal-title,
.fs-boots-xs {
  letter-spacing: -0.03em;
  font-weight: 400;
  font-size: calc(var(--font-adjust, 1) * 1.5rem);
  line-height: calc(var(--font-adjust-lh, 1) * 116%);
}

.fs-boots-s {
  letter-spacing: -0.04em;
  font-weight: 600;
  font-size: calc(var(--font-adjust, 1) * 2rem);
  line-height: calc(var(--font-adjust-lh, 1) * 108%);
}

.fs-boots-m {
  letter-spacing: -0.05em;
  font-weight: 700;
  font-size: calc(var(--font-adjust, 1) * 2.75rem);
  line-height: calc(var(--font-adjust-lh, 1) * 104%);
}

.fs-boots-l {
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: calc(var(--font-adjust, 1) * 4rem);
  line-height: calc(var(--font-adjust-lh, 1) * 100%);
}

.fs-boots-2xl,
.fs-boots-3xl,
.fs-boots-xl {
  font-weight: 700;
  line-height: calc(var(--font-adjust-lh, 1) * 90%);
}

.fs-boots-xl {
  letter-spacing: -0.04em;
  font-size: calc(var(--font-adjust, 1) * 5rem);
}

.fs-boots-2xl,
.fs-boots-3xl {
  letter-spacing: -0.06em;
}

.fs-boots-2xl {
  font-size: calc(var(--font-adjust, 1) * 6.5rem);
}

.fs-boots-3xl {
  font-size: calc(var(--font-adjust, 1) * 8rem);
}

.fs-boots-text-l {
  letter-spacing: -0.02em;
  font-weight: 400;
  font-size: calc(var(--font-adjust, 1) * 1.125rem);
  line-height: calc(var(--font-adjust-lh, 1) * 128%);
}

.fs-boots-text-m {
  letter-spacing: -0.01em;
  font-size: calc(var(--font-adjust, 1) * 1rem);
}

.boots-badge--md,
.fs-boots-text-m,
.fs-boots-text-s,
.fs-boots-text-xs {
  font-weight: 400;
  line-height: calc(var(--font-adjust-lh, 1) * 128%);
}

.fs-boots-text-s {
  letter-spacing: 0;
  font-size: calc(var(--font-adjust, 1) * 0.875rem);
}

.boots-badge--md,
.fs-boots-text-xs {
  letter-spacing: 0.02em;
  font-size: calc(var(--font-adjust, 1) * 0.75rem);
}

.fs-boots-text-2xs {
  letter-spacing: 0.04em;
  font-weight: 400;
  font-size: calc(var(--font-adjust, 1) * 0.625rem);
  line-height: calc(var(--font-adjust-lh, 1) * 140%);
}

@media (min-width: 992px) {
  .fs-lg-boots-2xs {
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: calc(var(--font-adjust, 1) * 1.25rem);
    line-height: calc(var(--font-adjust-lh, 1) * 120%);
  }

  .fs-lg-boots-xs {
    letter-spacing: -0.03em;
    font-weight: 400;
    font-size: calc(var(--font-adjust, 1) * 1.5rem);
    line-height: calc(var(--font-adjust-lh, 1) * 116%);
  }

  .fs-lg-boots-s {
    letter-spacing: -0.04em;
    font-weight: 600;
    font-size: calc(var(--font-adjust, 1) * 2rem);
    line-height: calc(var(--font-adjust-lh, 1) * 108%);
  }

  .fs-lg-boots-m {
    letter-spacing: -0.05em;
    font-weight: 700;
    font-size: calc(var(--font-adjust, 1) * 2.75rem);
    line-height: calc(var(--font-adjust-lh, 1) * 104%);
  }

  .fs-lg-boots-l {
    letter-spacing: -0.04em;
    font-weight: 700;
    font-size: calc(var(--font-adjust, 1) * 4rem);
    line-height: calc(var(--font-adjust-lh, 1) * 100%);
  }

  .fs-lg-boots-2xl,
  .fs-lg-boots-3xl,
  .fs-lg-boots-xl {
    font-weight: 700;
    line-height: calc(var(--font-adjust-lh, 1) * 90%);
  }

  .fs-lg-boots-xl {
    letter-spacing: -0.04em;
    font-size: calc(var(--font-adjust, 1) * 5rem);
  }

  .fs-lg-boots-2xl,
  .fs-lg-boots-3xl {
    letter-spacing: -0.06em;
  }

  .fs-lg-boots-2xl {
    font-size: calc(var(--font-adjust, 1) * 6.5rem);
  }

  .fs-lg-boots-3xl {
    font-size: calc(var(--font-adjust, 1) * 8rem);
  }

  .fs-lg-boots-text-l {
    letter-spacing: -0.02em;
    font-weight: 400;
    font-size: calc(var(--font-adjust, 1) * 1.125rem);
    line-height: calc(var(--font-adjust-lh, 1) * 128%);
  }

  .fs-lg-boots-text-m {
    letter-spacing: -0.01em;
    font-size: calc(var(--font-adjust, 1) * 1rem);
  }

  .fs-lg-boots-text-m,
  .fs-lg-boots-text-s,
  .fs-lg-boots-text-xs {
    font-weight: 400;
    line-height: calc(var(--font-adjust-lh, 1) * 128%);
  }

  .fs-lg-boots-text-s {
    letter-spacing: 0;
    font-size: calc(var(--font-adjust, 1) * 0.875rem);
  }

  .fs-lg-boots-text-xs {
    letter-spacing: 0.02em;
    font-size: calc(var(--font-adjust, 1) * 0.75rem);
  }

  .fs-lg-boots-text-2xs {
    letter-spacing: 0.04em;
    font-weight: 400;
    font-size: calc(var(--font-adjust, 1) * 0.625rem);
    line-height: calc(var(--font-adjust-lh, 1) * 140%);
  }
}

.is-artwork .boots-font-ppmonument {
  font-family: "Calibri";
  --font-adjust: 0.62 !important;
  --font-adjust-lh: 1.2 !important;
}

.boots-gridprod {
  list-style: none;
  padding-left: 0;
}

.boots-gridprod li {
  margin-bottom: var(--gridprod-row-mb, 2.5rem);
}

@media (max-width: 424px) {
  .boots-gridprod li {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}

@media (min-width: 576px) {
  .boots-gridprod li {
    --gridprod-row-mb: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .boots-gridprod li {
    --gridprod-row-mb: 6.25rem;
  }
}

.boots-main {
  padding-top: 6.625rem;
}

.boots-main .l-wrap__content {
  padding-top: 1.25rem;
}

@media (min-width: 768px) {
  .boots-main .l-wrap__content {
    padding-top: 2rem;
  }
}

.boots-header {
  background-color: #fff;
  border-bottom: 0.5px solid #f2f2f2;
  position: relative;
  z-index: 102;
}

.boots-header-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--header-h, 3.625rem);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

body:not(.has-algolia) .boots-header-container {
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}

.boots-header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: var(--header-logo-w, 6rem);
  margin-right: auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.boots-header-btnshare span,
.boots-header-logo__img+.boots-header-logo__img,
.boots-header-logo__img--sm-art {
  display: none;
}

.boots-header .badge.boots-bg-red.boots-badge--icon,
.boots-header .badge.boots-bg-red.boots-badge--md,
.boots-header .badge.boots-bg-red.boots-badge-business,
.boots-header .badge.boots-bg-red.boots-badge-circle,
.boots-header .badge.boots-bg-red.boots-badge-corp,
.boots-header .badge.boots-bg-red.boots-badge-discount,
.boots-header .badge.boots-bg-red.boots-badge-pro,
.boots-header .badge.boots-bg-red.rounded-pill {
  display: grid;
  padding: 0;
  font-size: 9px;
  line-height: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 0.75rem;
  min-height: 0.75rem;
  position: absolute;
  -webkit-box-shadow: 0 0 0 0.0625rem #fff;
  box-shadow: 0 0 0 0.0625rem #fff;
  font-weight: 700;
  font-style: normal;
  top: initial;
  right: 0.375rem;
  bottom: 0.5rem;
}

.boots-header .badge.boots-bg-red.boots-badge--icon:empty,
.boots-header .badge.boots-bg-red.boots-badge--md:empty,
.boots-header .badge.boots-bg-red.boots-badge-business:empty,
.boots-header .badge.boots-bg-red.boots-badge-circle:empty,
.boots-header .badge.boots-bg-red.boots-badge-corp:empty,
.boots-header .badge.boots-bg-red.boots-badge-discount:empty,
.boots-header .badge.boots-bg-red.boots-badge-pro:empty,
.boots-header .badge.boots-bg-red.rounded-pill:empty {
  display: none;
}

.boots-dropmenu-menu-item {
  position: relative;
}

.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge--icon,
.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge--md,
.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge-business,
.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge-circle,
.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge-corp,
.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge-discount,
.boots-dropmenu-menu-item .badge.boots-bg-red.boots-badge-pro,
.boots-dropmenu-menu-item .badge.boots-bg-red.rounded-pill {
  position: absolute;
  right: initial;
  left: 2.1875rem;
  bottom: 0.5rem;
}

.boots-header-logo__img,
.boots-header-logo__img--sm {
  -webkit-transition:
    opacity 0.05s ease-in,
    -webkit-transform 0.8s ease-in;
  transition:
    opacity 0.05s ease-in,
    transform 0.8s ease-in;
  transition:
    opacity 0.05s ease-in,
    transform 0.8s ease-in,
    -webkit-transform 0.8s ease-in;
  width: var(--bhli-width, initial);
  opacity: var(--bhli-opacity, 1);
  -webkit-transform: translateY(var(--bhli-translatey, 0.625rem));
  transform: translateY(var(--bhli-translatey, 0.625rem));
}

.boots-header-logo__img--sm {
  --bhli-width: 1.3125rem;
  --bhli-opacity: 0;
  --bhli-translatey: -0.25rem;
}

.boots-header-btn {
  --boots-size-icon: 1.25rem;
  --icon-filter: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.25rem;
  position: relative;
  border: 0;
}

.boots-header-btngroup,
.boots-header-btnshare {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.boots-header-btnshare {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.875rem;
  gap: 0.3125rem;
  text-decoration: none;
}

@media (min-width: 992px) {
  .boots-header-btnshare span {
    display: inline;
  }
}

.boots-header-btnshare .icon-v-style {
  --boots-size-icon: 1.5rem;
  --icon-filter: none;
  font-size: 1.625rem;
}

.boots-header-btnshare:hover {
  color: #59595c;
}

.boots-header-btngroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.boots-header-btngroup .btn:not(.btn-boots-simple):hover {
  color: #9ca2a4;
}

.boots-header-btngroup>.btn,
.boots-header-dropuser .boots-dropmenu-btn {
  padding: 0.75rem;
}

.boots-header-dropuser {
  margin-right: -0.75rem;
}

.boots-header-dropuser .btn {
  border-radius: 0.5rem;
  --boots-size-icon: 1rem;
}

.boots-header-dropuser .btn .boots-badge.badge.boots-bg-red {
  z-index: 3;
  bottom: 0.5625rem;
  right: 0.5rem;
  color: transparent;
  min-height: 0.5rem;
  width: 0.5rem;
  min-width: initial;
}

body:not(.boots-header--scroll):not(.has-submenu) .boots-header-theme--transparent .boots-header-dropuser .btn {
  border-color: transparent;
}

.boots-header-btnactions .btn {
  font-size: 0.625rem;
  margin-right: 0.3125rem;
}

.boots-header-btnactions .btn:last-child {
  margin-right: 0;
}

.boots-header--global {
  width: 100%;
  padding-top: 0.0625rem;
  margin-top: -0.0625rem;
}

body:not(.boots-header--scroll) .boots-header--global:not(.has-border) {
  border-bottom: 0 none;
}

@media (max-width: 991.98px) {
  .boots-header--global.has-border.has-border-mobile-not {
    border-bottom: 0 none;
  }
}

.boots-header--global .boots-header-container {
  --bs-gutter-x: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: var(--linetop-h, 4.5rem);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 992px) {
  .boots-header--global .boots-header-container {
    --linetop-h: 5.5rem;
    --bs-gutter-x: 2rem;
  }
}

@media (min-width: 1200px) {
  .boots-header--global .boots-header-container {
    --bs-gutter-x: 3rem;
  }
}

.boots-header--global .boots-header-btngroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}

.boots-header--global .boots-menu {
  display: none;
}

@media (min-width: 992px) {
  .boots-header--global .boots-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.boots-header--global .boots-menu-item,
.boots-header--global .boots-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: var(--linetop-h);
}

.boots-header--global .boots-menu-item {
  -webkit-transition: 0.4s ease 0.15s;
  transition: 0.4s ease 0.15s;
  -webkit-transition-property:
    height,
    opacity,
    -webkit-transform;
  transition-property: height, opacity, transform;
  transition-property:
    height,
    opacity,
    transform,
    -webkit-transform;
}

.boots-header--global .boots-menu-link {
  position: relative;
  color: var(--bs-boots-black, #0b0c0c);
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}

.boots-header--global .boots-menu-item .boots-menu-link::after {
  content: "";
  border-bottom: 0.5px solid;
  width: calc(100% - 1rem);
  display: block;
  position: absolute;
  bottom: 0;
  opacity: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  z-index: 2;
}

@media (min-width: 1200px) {
  .boots-header--global .boots-menu-item .boots-menu-link::after {
    width: calc(100% - 2rem);
  }
}

.boots-header--global .boots-menu-item .boots-menu-link:active::after,
.boots-header--global .boots-menu-item:hover .boots-menu-link::after {
  opacity: 1;
  -webkit-transform: translate(0, 0.5px);
  transform: translate(0, 0.5px);
}

.boots-header--global .boots-menu-dropdown,
.boots-header--global .boots-menu-dropdown-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  background: #fff;
  clip-path: circle(0);
}

.boots-header--global .boots-menu-dropdown {
  --menuitem-gap: 0;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  width: 100%;
  text-align: center;
  opacity: 0.6;
  -webkit-transition:
    padding-top 0.3s ease,
    opacity 0.8s ease-in-out;
  transition:
    padding-top 0.3s ease,
    opacity 0.8s ease-in-out;
}

.boots-header--global .boots-menu-dropdown-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  border-top: 0.5px solid transparent;
  opacity: 1;
}

.boots-header--global .boots-menu-dropdown.boots-menu-list--more {
  -webkit-transition: opacity 0.8s ease-in-out;
  transition: opacity 0.8s ease-in-out;
}

body:not(.boots-header--scroll) .boots-header--global .boots-menu-dropdown {
  padding-top: 3rem;
}

.boots-header--global .boots-menu-dropdown .boots-menu-link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}

.boots-header--global .boots-menu-dropdown .boots-menu-link::after {
  display: none;
}

.boots-header--global .boots-menu-dropdown .boots-menu-item {
  height: 100%;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boots-header--global .boots-menu-dropdown .boots-menu-item :not(.badge)>.icon-v-style {
  --boots-size-icon: 2rem;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  color: var(--bs-boots-gray);
  margin-bottom: 0.5rem;
}

.boots-header--global .boots-menu-dropdown .boots-menu-item__title {
  font-size: 1.5rem;
  line-height: 1.75rem;
  font-weight: 600;
}

.boots-header--global .boots-menu-dropdown .boots-menu-item__subtitle {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: var(--bs-boots-gray, #59595c);
}

.boots-header--global .boots-menu-dropdown:not(.boots-menu-list--highlights) .boots-menu-item {
  padding: 0 0 2.75rem;
}

.boots-header--global .boots-menu-dropdown.boots-menu-list--more .boots-menu-item:hover {
  background-color: var(--bs-boots-off-white, #fafafa);
}

.boots-header--global .boots-menu-dropdown.boots-menu-list--more .boots-menu-item::after {
  content: "";
  width: 0.5px;
  height: 4rem;
  background: var(--bmi--bg, #f2f2f2);
  position: absolute;
  display: block;
  right: 0;
  top: 5rem;
  left: var(--bmi--divisor, initial);
}

.boots-header--global .boots-menu-dropdown.boots-menu-list--more .boots-menu-item:last-child::after {
  --bmi--divisor: -0.5px;
  --bmi--bg: transparent;
}

.boots-header--global .boots-menu-dropdown.boots-menu-list--more .boots-menu-item:hover::after {
  --bmi--divisor: -0.5px;
  --bmi--bg: #fff;
}

.boots-header--global .boots-menu-item--dropdown.boots-menu-item--more.has-hover .boots-menu-dropdown-wrap,
body:not(.boots-header--scroll) .boots-header--global .boots-menu-item--dropdown.has-hover .boots-menu-dropdown-wrap {
  visibility: visible;
  opacity: 1;
  border-color: var(--bs-boots-stroke, #f2f2f2);
  -webkit-box-shadow: 0 2.125rem 3rem -0.25rem rgba(242, 242, 242, 0.3);
  box-shadow: 0 2.125rem 3rem -0.25rem rgba(242, 242, 242, 0.3);
  clip-path: none;
}

.boots-header--global .boots-menu-item--dropdown.boots-menu-item--more.has-hover .boots-menu-dropdown-wrap .boots-menu-list--more,
body:not(.boots-header--scroll) .boots-header--global .boots-menu-item--dropdown.has-hover .boots-menu-dropdown {
  visibility: visible;
  opacity: 1;
  padding-bottom: 0;
  clip-path: none;
  padding-top: 3rem;
}

.boots-header--global .boots-menu-item--dropdown.has-hover .boots-menu-dropdown.boots-menu-list--more .boots-menu-item {
  margin-top: -3rem;
  padding-top: 3rem;
  min-height: 13.5rem;
}

.boots-header--global .boots-menu-list--highlights {
  padding: 3rem 0;
}

.boots-header-btnmenu,
.boots-header-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.boots-header-btnmenu {
  border-radius: 0;
  font-size: 1.25rem;
  padding: 0.75rem;
  padding-left: 0;
  color: var(--bs-boots-gray, #59595c);
}

.boots-header-search {
  --boots-header-search-size: 0px;
  --boots-header-search-pl: 0.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  height: 100%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 110;
  padding-right: var(--bs-gutter-x);
  padding-left: var(--boots-header-search-pl);
  margin-left: var(--boots-header-search-size);
  width: calc(100% - var(--boots-header-search-size));
}

@media (min-width: 768px) {
  .boots-header-search {
    --boots-header-search-size: 11.875rem;
    --boots-header-search-pl: 0;
  }
}

@media (min-width: 992px) {
  .boots-header-search {
    --boots-header-search-size: 10.75rem;
  }
}

@media (min-width: 1921px) {
  .boots-header-search {
    --boots-header-search-size: 20%;
  }
}

@media (min-width: 2560px) {
  .boots-header-search {
    --boots-header-search-size: 30%;
  }
}

@media (min-width: 3940px) {
  .boots-header-search {
    --boots-header-search-size: 40%;
  }
}

.boots-header-search-field {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: grid;
  gap: 0.625rem;
  grid-template-columns: 1fr 3.125rem;
  width: 100%;
}

@media (min-width: 768px) {
  .boots-header-search-field {
    width: 90%;
  }
}

.boots-header-search-field .form-control {
  height: 2.5rem;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  font-size: 1.125rem;
  border: 0;
  letter-spacing: -0.02em;
}

.boots-header-search-field .btn-close {
  padding: 0.625rem 0;
  width: 3.125rem;
  line-height: 0.75rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bs-boots-gray);
  background: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjIwIiBoZWlnaHQ9IjIwIiB2aWV3Qm94PSIwIDAgMjAgMjAiPgo8dGl0bGU+eC10aGluPC90aXRsZT4KPHBhdGggZD0iTTE1Ljg0NCAxNS40MDZjMC4wNTcgMC4wNTUgMC4wOTMgMC4xMzMgMC4wOTMgMC4yMTlzLTAuMDM1IDAuMTYzLTAuMDkzIDAuMjE5bC0wIDBjLTAuMDU1IDAuMDU3LTAuMTMzIDAuMDkzLTAuMjE5IDAuMDkzcy0wLjE2My0wLjAzNS0wLjIxOS0wLjA5M2wtMC0wLTUuNDA2LTUuMzk4LTUuNDA2IDUuMzk4Yy0wLjA1NSAwLjA1Ny0wLjEzMyAwLjA5My0wLjIxOSAwLjA5M3MtMC4xNjMtMC4wMzUtMC4yMTktMC4wOTNsLTAtMGMtMC4wNTctMC4wNTUtMC4wOTMtMC4xMzMtMC4wOTMtMC4yMTlzMC4wMzUtMC4xNjMgMC4wOTMtMC4yMTlsMC0wIDUuMzk4LTUuNDA2LTUuMzk4LTUuNDA2Yy0wLjAzOS0wLjA1Mi0wLjA2My0wLjExNy0wLjA2My0wLjE4NyAwLTAuMTczIDAuMTQtMC4zMTMgMC4zMTMtMC4zMTMgMC4wNzEgMCAwLjEzNiAwLjAyMyAwLjE4OCAwLjA2M2wtMC4wMDEtMC4wMDEgNS40MDYgNS4zOTggNS40MDYtNS4zOThjMC4wNTgtMC4wNzYgMC4xNDgtMC4xMjUgMC4yNS0wLjEyNSAwLjE3MyAwIDAuMzEzIDAuMTQgMC4zMTMgMC4zMTMgMCAwLjEwMi0wLjA0OSAwLjE5Mi0wLjEyNCAwLjI0OWwtMC4wMDEgMC4wMDEtNS4zOTggNS40MDZ6Ij48L3BhdGg+Cjwvc3ZnPgo=") 2.125rem center no-repeat;
  background-size: 1.25rem;
}

.boots-header-search-field .btn-close span {
  --btnclose-text: none;
  display: var(--btnclose-text);
}

@media (min-width: 768px) {
  .boots-header-search-field .btn-close span {
    --btnclose-text: inline-block;
  }
}

.boots-header--global {
  position: sticky;
  top: 0;
}

.boots-header--scroll .boots-header-container {
  --linetop-h: 4rem;
}

.boots-header--scroll .boots-header-logo__img--sm-art {
  display: none;
}

.boots-header--scroll .boots-header-logo__img,
.boots-menu-mobile--open .boots-header-container .boots-header-logo__img {
  --bhli-opacity: 0;
  --bhli-translatey: 0.3125rem;
}

.boots-header--scroll .boots-header-logo__img--sm,
.boots-menu-mobile--open .boots-header-container .boots-header-logo__img--sm {
  --bhli-opacity: 1;
  --bhli-translatey: -0.5rem;
}

.boots-header--checkout>.boots-header-container {
  --header-h: auto;
  display: block;
}

@media (min-width: 992px) {
  .boots-header--checkout>.boots-header-container {
    --header-h: 5rem;
  }
}

.boots-header--checkout .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: inherit;
}

@media (max-width: 991.98px) {
  .boots-header--checkout .row>div:first-child {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0.5px solid #f2f2f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 4.0625rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.boots-header--access .btn {
  display: none;
}

@media (min-width: 992px) {
  .boots-header--access .boots-header-container {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 5.875rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .boots-header--access .btn {
    display: block;
    font-size: 0.875rem;
  }
}

.boots-header--actions .boots-header-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .boots-header--actions .boots-header-container {
    position: relative;
  }
}

.boots-header--actions .boots-header-logo,
.boots-header-search .aa-InputWrapperPrefix .aa-SubmitButton svg {
  display: none;
}

@media (min-width: 992px) {
  .boots-header--actions .boots-header-logo {
    display: block;
  }
}

.boots-header--actions .boots-header-btnactions {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .boots-header--actions .boots-header-btnactions {
    position: absolute;
    right: 0.75rem;
  }
}

.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) {
  --boots-header-bg: #0b0c0c;
  --boots-header-bdc: transparent;
  --boots-header-cl: white;
}

.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) .boots-header.boots-header--global.o-header,
body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent.boots-header.boots-header--global.o-header {
  background: var(--boots-header-bg);
}

.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) .boots-menu>.boots-menu-list.boots-menu-list--inline>.boots-menu-item>.boots-menu-link,
body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-menu>.boots-menu-list.boots-menu-list--inline>.boots-menu-item>.boots-menu-link {
  color: var(--boots-header-cl);
}

.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) .boots-header-btngroup>.btn,
.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) .boots-header-btngroup>.icon-v-style,
body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-header-btngroup>.btn,
body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-header-btngroup>.icon-v-style {
  color: var(--boots-header-cl);
  border-color: var(--boots-header-cl);
  background-color: transparent;
}

.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) .boots-header--global .boots-menu-item--dropdown .boots-menu-dropdown-wrap {
  border-color: var(--bs-boots-black, #0b0c0c);
}

.boots-header-theme--dark.has-submenu:not(.boots-header--scroll) .boots-header--global .boots-menu-item--dropdown.has-hover .boots-menu-dropdown-wrap {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: var(--bs-boots-black, #0b0c0c);
  border-color: #232424;
  -webkit-transition: 0.8s ease 0s;
  transition: 0.8s ease 0s;
  -webkit-transition-property: border-color;
  transition-property: border-color;
}

.boots-header--art .boots-header-logo__img--sm-art,
.boots-header--art .boots-header-logo__img-art,
.boots-header-theme--art .boots-header-logo__img-art {
  display: block;
}

.boots-header-theme--transparent~.l-wrap {
  --wrap-pt: 0;
}

body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent {
  --boots-header-bg: linear-gradient(180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0.15) 80%,
      transparent 98%);
  --boots-header-bdc: transparent;
  --boots-header-cl: white;
}

body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent.boots-header--txt-black {
  --boots-header-bg: transparent;
  --boots-header-cl: var(--bs-boots-black);
}

body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-header-btnmenu,
body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-header-btnmenu .icon-v-style {
  color: var(--boots-header-cl);
  opacity: 1;
}

body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-header--global .boots-menu-item--dropdown.has-hover .boots-menu-dropdown {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: var(--boots-header-bdc);
}

body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent .boots-header-logo {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

body:not(.boots-header--scroll):not(.has-submenu):not(.has-algolia):not(.boots-menu-mobile--open) .boots-header-theme--transparent.boots-header--txt-black .boots-header-logo {
  -webkit-filter: brightness(0.1) invert(0);
  filter: brightness(0.1) invert(0);
}

.boots-img {
  display: inline-block;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

.boots-img.is-selected {
  -webkit-box-shadow: rgba(11, 12, 12, 0.8) 0 0 0 0.125rem;
  box-shadow: rgba(11, 12, 12, 0.8) 0 0 0 0.125rem;
  border-color: transparent;
}

.boots-img::after {
  background-color: #0b0c0c;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  border-radius: var(--bootsimg-bdrda, 0.5rem);
  opacity: 0.03;
}

.boots-img,
.boots-img-r {
  border-radius: var(--bootsimg-bdrd, 0.5rem);
}

.boots-form-floating-group>label {
  height: auto;
  padding-block: 0;
  -webkit-transform: scale(0.857) translateX(1.2rem) translateY(calc(-50% + 1px));
  transform: scale(0.857) translateX(1.2rem) translateY(calc(-50% + 1px));
  z-index: 5;
  color: var(--bs-boots-gray, #59595c);
}

.boots-form-floating-group .form-control {
  height: calc(3.5rem + 2px);
}

.input-group-text {
  min-width: 4.375rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.input-group>.form-floating:first-child .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group>.input-group-text:first-child+.form-floating:last-child .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.form-floating>label {
  color: var(--bs-boots-soft-gray, #9ca2a4);
  line-height: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-floating>label:not([class^="fs-boots-"]):not([class*=" fs-boots-"]) {
  font-size: 0.875rem;
}

.form-floating .form-control-lg+label:not([class^="fs-boots-"]):not([class*=" fs-boots-"]) {
  font-size: 1rem;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label,
.form-floating>.form-control:not(:-ms-input-placeholder)~label {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  opacity: 1;
  color: var(--bs-boots-black, #0b0c0c);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  padding-top: 0;
  padding-bottom: 0;
  height: auto;
  opacity: 1;
  color: var(--bs-boots-black, #0b0c0c);
}

.form-floating>.form-control:not(:focus)~label,
.form-floating>.form-select:not(:focus)~label {
  color: var(--bs-boots-gray, #59595c);
}

.form-floating>.form-control:not(:-moz-placeholder-shown),
.form-floating>.form-control:not(:-ms-input-placeholder) {
  padding: 1rem 1.2rem;
}

.form-floating>.form-control:focus,
.form-floating>.form-control:not(:placeholder-shown) {
  padding: 1rem 1.2rem;
}

.form-floating>.form-control::-webkit-input-placeholder {
  color: #fff !important;
}

.form-floating>.form-control::-moz-placeholder {
  color: #fff !important;
}

.form-floating>.form-control:-ms-input-placeholder {
  color: #fff !important;
}

.form-floating>.form-control::-ms-input-placeholder {
  color: #fff !important;
}

.form-floating>.form-control::placeholder {
  color: #fff !important;
}

.form-floating>.form-control:is(:-webkit-autofill, :autofill) {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.form-floating--show-active {
  display: none;
  position: absolute;
  -ms-flex-item-align: center;
  align-self: center;
  inset: 0;
  right: initial;
  margin-left: 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form-floating>.form-control:focus::-webkit-input-placeholder,
.form-floating>.form-control:not(:placeholder-shown)::-webkit-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.form-floating>.form-control:focus::-moz-placeholder,
.form-floating>.form-control:not(:placeholder-shown)::-moz-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.form-floating>.form-control:focus:-ms-input-placeholder,
.form-floating>.form-control:not(:placeholder-shown):-ms-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.form-floating>.form-control:focus::-ms-input-placeholder,
.form-floating>.form-control:not(:placeholder-shown)::-ms-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)::placeholder,
.form-floating>.form-control:not(:-ms-input-placeholder)::placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.form-floating>.form-control:focus::placeholder,
.form-floating>.form-control:not(:placeholder-shown)::placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~.form-floating--show-active {
  display: flex;
}

.form-floating>.form-control:not(:-ms-input-placeholder)~.form-floating--show-active {
  display: -ms-flexbox;
  display: flex;
}

.form-floating>.form-control:focus~.form-floating--show-active,
.form-floating>.form-control:not(:placeholder-shown)~.form-floating--show-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label:before,
.form-floating>.form-control:not(:-ms-input-placeholder)~label:before {
  content: "";
  height: auto;
  background-image: linear-gradient(180deg, #fff 0, #fff 84%, transparent 84%);
  position: absolute;
  width: auto;
  z-index: -1;
  margin: 0 1.2rem;
  left: -0.25rem;
  right: -0.25rem;
  bottom: 0;
  top: 0.25rem;
  border-radius: 0.25rem;
  color: var(--bs-boots-gray, #59595c);
  transition: none;
}

.form-floating>.form-control:not(:-moz-placeholder-shown)~label:before {
  -moz-transition: none;
}

.form-floating>.form-control:not(:-ms-input-placeholder)~label:before {
  -ms-transition: none;
}

.boots-form-floating-group>label:before,
.form-floating>.form-control:focus~label:before,
.form-floating>.form-control:not(:placeholder-shown)~label:before,
.form-floating>.form-select~label:before {
  content: "";
  height: auto;
  background-image: -webkit-gradient(linear,
      left top,
      left bottom,
      from(#fff),
      color-stop(84%, #fff),
      color-stop(84%, transparent));
  background-image: linear-gradient(180deg, #fff 0, #fff 84%, transparent 84%);
  position: absolute;
  width: auto;
  z-index: -1;
  margin: 0 1.2rem;
  left: -0.25rem;
  right: -0.25rem;
  bottom: 0;
  top: 0.25rem;
  border-radius: 0.25rem;
  color: var(--bs-boots-gray, #59595c);
  -webkit-transition: none;
  transition: none;
}

.boots-list-group {
  list-style: none;
}

.boots-list-group .list-group-item.active {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
}

.boots-list-group .list-group-item-action {
  cursor: pointer;
}

.boots-list-group--lg .list-group-item {
  padding: 1.5rem 1.25rem;
}

.boots-list-group--check .list-group-item-action {
  position: relative;
}

.boots-list-group--check .list-group-item-action.active::before {
  --boots-size-icon: 1.25rem;
  -webkit-mask-image: var(--icon-check-circle-fill);
  mask-image: var(--icon-check-circle-fill);
  color: #0b0c0c;
  position: absolute;
  right: 1rem;
  bottom: 0;
  margin: auto;
  top: 0;
}

.boots-listchoice-v-style {
  overflow-y: auto;
  max-height: 16.75rem;
  overflow: hidden auto;
}

.boots-listchoice-v-style .list-group-item {
  position: relative;
  padding: 0;
}

.boots-listchoice-v-style .list-group-item figure {
  width: 4rem;
  height: 4rem;
}

.boots-listchoice-v-style .list-group-item-action:active,
.boots-listchoice-v-style .list-group-item-action:focus,
.boots-listchoice-v-style .list-group-item-action:hover {
  background-color: var(--bg-lgia, transparent);
}

@media (min-width: 768px) {

  .boots-listchoice-v-style .list-group-item-action:active,
  .boots-listchoice-v-style .list-group-item-action:focus,
  .boots-listchoice-v-style .list-group-item-action:hover {
    --bg-lgia: #fafafa;
  }
}

.boots-listchoice-v-style__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin: 0 0 0 1rem;
  max-width: 13.25rem;
}

.boots-listchoice-v-style .btn {
  position: absolute;
  left: var(--boots-lcbtn-l, calc(100% - 3.25rem));
  border: 0;
}

@media (min-width: 992px) {
  .boots-listchoice-v-style {
    --boots-lcbtn-l: 19.75rem;
  }

  .boots-listchoice-v-style:hover {
    --me-for-scroll: 1.125rem;
    -ms-scroll-chaining: none;
    overscroll-behavior: contain;
    mask-image:
      -webkit-gradient(linear,
        left bottom,
        left top,
        from(transparent),
        to(#f2f2f2)),
      -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        to(#f2f2f2));
    mask-image:
      linear-gradient(to top, transparent, #f2f2f2),
      linear-gradient(to left,
        transparent var(--me-for-scroll),
        #f2f2f2 var(--me-for-scroll));
    mask-size: 100% 125rem;
    -webkit-mask-image:
      -webkit-gradient(linear,
        left bottom,
        left top,
        from(transparent),
        to(#f2f2f2)),
      -webkit-gradient(linear,
        right top,
        left top,
        from(transparent),
        to(#f2f2f2));
    -webkit-mask-image:
      linear-gradient(to top, transparent, #f2f2f2),
      linear-gradient(to left,
        transparent var(--me-for-scroll),
        #f2f2f2 var(--me-for-scroll));
    -webkit-mask-size: 100% 125rem;
    transition:
      mask-position 0.3s,
      -webkit-mask-position 0.3s;
    scrollbar-color: #f2f2f2 transparent;
    scrollbar-width: thin;
    overflow-y: auto;
  }
}

@media (min-width: 992px) and (hover: hover) {
  .boots-listchoice-v-style:hover:hover {
    -webkit-mask-position: left top;
    mask-position: left top;
  }
}

@media (min-width: 992px) {
  .boots-listchoice-v-style:hover::-webkit-scrollbar {
    display: block;
  }

  .boots-listchoice-v-style:hover::-webkit-scrollbar-track {
    -webkit-box-shadow: none;
    background-color: transparent;
  }

  .boots-listchoice-v-style:hover::-webkit-scrollbar {
    width: 0.5rem;
    background-color: transparent;
  }

  .boots-listchoice-v-style:hover::-webkit-scrollbar-thumb {
    background-color: #f2f2f2;
    border: 0.125rem solid #fff;
  }
}

.boots-menu-list {
  list-style: none;
  padding-left: 0;
}

.boots-menu-link {
  color: #0b0c0c;
  display: block;
  font-size: var(--menuitem-fz, 1.25rem);
  line-height: var(--menu-item-lh, 2rem);
  padding: var(--menu-item-pad, 1rem 0);
  text-decoration: none;
}

.boots-menu-link:active,
.boots-menu-link:hover {
  color: inherit;
}

.boots-menu-divisor {
  background-color: var(--menu-divisor-bgc, #0b0c0c);
  margin-left: 0.9375rem;
  margin-right: 0.9375rem;
  width: 0.03125rem;
}

.boots-menu-mobile,
.boots-sidemenu {
  background-color: #fff;
  width: 100%;
  position: fixed;
  opacity: 0;
  -webkit-transition:
    opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out;
  transition:
    opacity 0.3s ease-in-out,
    transform 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateY(-1rem);
  transform: translateY(-1rem);
  top: -400%;
  overflow-y: auto;
}

.boots-menu-mobile .boots-menu-item,
.boots-sidemenu .boots-menu-item {
  border-bottom: var(--menu-item-bd, 0.5px solid #f2f2f2);
}

.boots-menu-mobile .boots-menu-list,
.boots-sidemenu .boots-menu-list {
  margin-bottom: 0.5rem;
}

.boots-menu-mobile .accordion-button:after {
  opacity: 0.76;
}

.boots-menu-list--inline {
  --menuitem-fz: 0.875rem;
  --menuitem-gap: 0;
  --menu-item-pad: 0 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  gap: var(--menuitem-gap);
}

@media (min-width: 1200px) {
  .boots-menu-list--inline {
    --menu-item-pad: 0 1rem;
  }
}

.boots-menu-list.boots-menu-list--highlights {
  --menu-item-pad: 0;
  gap: 0 4.875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.boots-menu-list.boots-menu-list--highlights .boots-menu-item__title {
  max-width: 10.375rem;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.25rem;
  letter-spacing: -0.04em;
  text-align: left;
}

.boots-menu-list.boots-menu-list--highlights .boots-menu-item__title--sm {
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: -0.03em;
}

.boots-menu-list.boots-menu-list--highlights .boots-menu-item__title+.boots-menu-list {
  width: 10.75rem;
}

.boots-menu-list.boots-menu-list--highlights .boots-menu-item {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
}

.boots-menu-list.boots-menu-list--highlights .boots-menu-link {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  letter-spacing: -0.015em;
  border-radius: 1.5rem;
}

.boots-menu-list.boots-menu-list--highlights .boots-menu-link:hover {
  --menu-item-pad: 0 0.75rem;
  margin-inline: -0.75rem;
  background-color: #f2f2f2;
}

.boots-menu-list.boots-menu-list--highlights .boots-cardprod {
  max-width: 20rem;
}

.boots-menu-list.boots-menu-list--creators,
.boots-menu-list.boots-menu-list--creators>.boots-menu-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.boots-menu-list.boots-menu-list--creators {
  gap: 1.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boots-menu-list.boots-menu-list--creators>.boots-menu-item {
  max-width: 55.5rem;
  margin: 0 auto;
}

.boots-menu-list.boots-menu-list--pro {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  overflow: hidden;
  height: var(--pro-h, 80vh);
  max-height: 50rem;
}

.boots-header-theme--transparent .boots-menu-list.boots-menu-list--pro {
  height: calc(var(--pro-h, 80vh) - var(--linetop-h));
  max-height: calc(50rem - var(--linetop-h));
}

@media (min-width: 1400px) {
  .boots-menu-list.boots-menu-list--pro {
    --pro-h: 90vh;
  }
}

.boots-menu-list.boots-menu-list--pro figure {
  max-width: 60.5rem;
  margin: 0 auto;
}

.boots-menu-list.boots-menu-list--pro .boots-menu-item {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.boots-menu-list--submenu .boots-header-container.boots-content-menu {
  position: absolute;
  display: none;
  width: 100%;
  background: #fafafa;
  left: 0;
  right: 0;
}

.boots-menu-list--submenu li:hover .content-menu,
.boots-menu-mobile--open .boots-menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.offcanvas-end {
  overflow-x: hidden;
  overflow-y: auto;
}

.boots-menu-mobile--open {
  overflow: hidden;
}

.boots-menu-mobile--open .boots-menu-mobile {
  z-index: 103;
  opacity: 1;
  height: 100%;
  -webkit-transform: translateY(-0.5rem);
  transform: translateY(-0.5rem);
  top: 3.5rem;
}

.boots-menu-mobile--open .boots-menu-mobile .boots-menu {
  width: 100%;
  padding: 0.75rem 1.25rem 10rem;
  overflow: auto;
}

@media (min-width: 448px) {
  .boots-menu-mobile--open .boots-menu-mobile .boots-menu {
    padding-inline: 3rem;
  }
}

.boots-menu-mobile--open .boots-header {
  border-bottom: 0 none;
}

.boots-menu-mobile--open .boots-header-container {
  --linetop-h: 3rem;
}

.boots-menu-list--small {
  border: 0;
  padding: 0;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
}

.boots-menu-list--small .boots-menu-item {
  --menu-item-bd: 0 none;
  overflow: hidden;
}

.boots-menu-list--small .boots-menu-link {
  --menu-item-pad: 0.5rem 0;
  --menu-item-lh: 1.25rem;
}

.boots-menu-list--small:not(.boots-menu-list--fzsm-not) .boots-menu-link {
  --menuitem-fz: 0.875rem;
}

.boots-menu-list--small.boots-menu-list--fzsm-not .boots-menu-link {
  --menuitem-fz: 1.125rem;
}

.boots-accordion-collapse .boots-menu-list--small {
  margin-top: -0.5rem;
}

.has-algolia::before,
.has-submenu:not(.has-blur-none)::before {
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
  background: rgba(255, 255, 255, 0.84);
  width: 100vw;
  height: 100vmax;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 999;
  content: " ";
  opacity: 1;
}

.has-submenu.boots-header--scroll::before {
  pointer-events: none;
  opacity: 0;
}

.modal-backdrop,
.offcanvas-backdrop {
  background: rgba(11, 12, 12, 0.4);
}

.modal-backdrop.show,
.offcanvas-backdrop.show {
  opacity: 1;
}

.boots-modal-md {
  max-width: 25rem;
}

@media (min-width: 1200px) {
  .boots-modal-xl {
    max-width: 55.5rem;
  }
}

@media (min-width: 992px) {
  .boots-modal__title {
    font-size: 2rem;
    line-height: 2.25rem;
    letter-spacing: -0.04em;
  }
}

.boots-modal__subtitle {
  font-size: 1rem;
}

@media (min-width: 1400px) {
  .boots-modal__subtitle {
    font-size: 1.125rem;
  }
}

.boots-modal-header,
.bootbox .modal-header {
  padding: 2rem;
  padding-bottom: 0;
}

.bootbox .modal-header {
  padding-bottom: 1rem;
}

.boots-modal-btnclose {
  background-size: 1.25rem;
  color: #59595c;
}

.boots-modal-btnclose:hover {
  color: #9ca2a4;
}

.boots-modal-btnclose.btn-close {
  background: 0 0;
  width: 2rem;
  height: 2rem;
  padding: 0.75rem;
}

.boots-modal-btnclose.btn-close::before {
  --boots-size-icon: 2rem;
  --filter-icon: none;
  -webkit-mask-image: var(--icon-x-thin);
  mask-image: var(--icon-x-thin);
}

.boots-modal-body,
.bootbox .modal-body {
  padding: 2rem;
  padding-top: 0;
}

@media (min-width: 576px) {

  .boots-modal-body,
  .bootbox .modal-body {
    padding-top: 1rem;
  }
}

.boots-modal-footer,
.bootbox .modal-footer {
  padding: 1.875rem;
  padding-top: 0;
}

.boots-modal-close-btn {
  margin: 2rem;
}

.boots-modal-cards {
  max-width: var(--modal-mw, 37.5rem);
}

@media (min-width: 992px) {
  .boots-modal-cards.modal-lg {
    --modal-mw: 56.25rem;
  }
}

.boots-modal-close-btn {
  --boots-size-icon: 24px;
  position: absolute;
  z-index: 1;
  padding: 0;
  right: 0;
  top: 0;
  border: 0;
  background: 0 0;
  margin: 32px;
}

.boots-modal-close-btn:hover {
  opacity: 0.56;
}

.boots-modal-close-btn.boots-badge--icon,
.boots-modal-close-btn.boots-badge--md,
.boots-modal-close-btn.boots-badge-business,
.boots-modal-close-btn.boots-badge-circle,
.boots-modal-close-btn.boots-badge-corp,
.boots-modal-close-btn.boots-badge-discount,
.boots-modal-close-btn.boots-badge-pro,
.boots-modal-close-btn.rounded-pill {
  --boots-size-icon: 16px;
  padding: 11px;
}

.modal-dialog-bottom-start {
  margin: 0;
  padding: var(--modal-p-bs, 1rem);
  padding-right: 0;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  max-width: 100%;
}

@media (min-width: 576px) {
  .modal-dialog-bottom-start {
    --modal-p-bs: 1.5rem;
    max-width: calc(22.5rem + var(--modal-p-bs));
  }
}

.modal-dialog-bottom-end {
  margin: 0;
  padding: var(--modal-p-bs, 1rem);
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  max-width: 100%;
}

@media (min-width: 576px) {
  .modal-dialog-bottom-end {
    --modal-p-bs: 1.5rem;
    max-width: calc(22.5rem + var(--modal-p-bs));
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: auto;
  }
}

.card-fixed-b-l,
.card-fixed-b-r {
  position: fixed;
  margin: 0;
  bottom: 1rem;
  left: var(--cf-l, 1rem);
  right: var(--cf-r, 1rem);
  z-index: 150;
  width: auto;
  -webkit-box-shadow: 0.625rem 0.875rem 2.75rem 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0.625rem 0.875rem 2.75rem 0 rgba(0, 0, 0, 0.16);
}

@media (min-width: 480px) {
  .card-fixed-b-l {
    --cf-r: auto;
  }

  .card-fixed-b-r {
    --cf-l: auto;
  }
}

.btn.btn-modal-white {
  background-color: #fff;
  color: var(--bs-boots-black);
  border: 0.5px solid transparent !important;
}

.btn.btn-modal-white i {
  color: var(--bs-boots-black) !important;
}

@media (min-width: 992px) {
  .btn.btn-modal-white-lg {
    background-color: #fff;
    color: var(--bs-boots-black);
    border: 0.5px solid transparent !important;
  }

  .btn.btn-modal-white-lg i {
    color: var(--bs-boots-black) !important;
  }

  .btn.btn-modal-white-lg.active,
  .btn.btn-modal-white-lg:active,
  .btn.btn-modal-white-lg:hover {
    background-color: var(--bs-boots-mush);
    border-color: transparent;
    color: var(--bs-boots-black);
  }
}

.btn.btn-modal-white.active,
.btn.btn-modal-white:active,
.btn.btn-modal-white:hover {
  background-color: var(--bs-boots-mush);
  border-color: transparent;
  color: var(--bs-boots-black);
}

.boots-modal-collections .modal-dialog,
.boots-modal-favorites .modal-dialog {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  min-height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boots-modal-collections.fade .modal-dialog,
.boots-modal-favorites.fade .modal-dialog {
  -webkit-transform: translate(var(--md-translate, 0, 3rem));
  transform: translate(var(--md-translate, 0, 3rem));
}

.boots-modal-collections.show .modal-dialog,
.boots-modal-favorites.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}

.boots-modal-collections .modal-content,
.boots-modal-favorites .modal-content {
  border: 0;
  max-width: var(--md-maxw, 100%);
  border-radius: var(--md-rounded, 0.5rem 0.5rem 0 0);
}

@media (min-width: 992px) {

  .boots-modal-collections .modal-content,
  .boots-modal-favorites .modal-content {
    --md-maxw: 23.25rem;
    border: 0.5px solid #f2f2f2;
    width: var(--md-maxw);
  }

  .boots-modal-collections,
  .boots-modal-favorites {
    --md-translate: 0, 0.75rem;
    --md-rounded: 0.5rem;
    -webkit-box-shadow: 0 1.25rem 1.25rem 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 1.25rem 1.25rem 0 rgba(0, 0, 0, 0.04);
    width: auto;
    height: auto;
    overflow: hidden;
    border-radius: var(--md-rounded);
    background-color: transparent;
    margin: 0;
  }

  .boots-modal-collections:before,
  .boots-modal-favorites:before {
    content: "";
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    border-radius: 0 0 0 0.375rem;
    margin: -3rem 1.6875rem -0.625rem var(--mod-arrow-ms, auto);
    position: relative;
    border: 0.5px solid #f2f2f2;
    z-index: 1;
  }

  .boots-modal-collections.fade:before,
  .boots-modal-favorites.fade:before {
    -webkit-transition: margin 0.3s ease-out;
    transition: margin 0.3s ease-out;
  }

  .boots-modal-collections.show:before,
  .boots-modal-favorites.show:before {
    margin-top: 0.125rem;
  }
}

.boots-modal .modal-content {
  border-radius: 1rem;
}

@media (max-width: 575.98px) {
  .boots-modal.boots-modal-mobile-bottom .modal-dialog {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    min-height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .boots-modal.boots-modal-mobile-bottom .modal-content {
    border: 0;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .boots-modal.boots-modal-mobile-bottom--rdn .modal-content {
    border-radius: 0 !important;
  }

  .boots-modal.boots-modal-mobile-bottom.fade .modal-dialog {
    -webkit-transform: translate(var(--md-translate, 0, 2rem));
    transform: translate(var(--md-translate, 0, 2rem));
  }

  .boots-modal.boots-modal-mobile-bottom.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
  }
}

.boots-modalshare-title {
  font-weight: 400;
  text-align: center;
}

.boots-modalshare-txt {
  color: #59595c;
  font-size: 0.875rem;
}

.boots-modalshare-btns {
  display: grid;
  gap: 1.5625rem;
  grid-template-columns: repeat(3, 1fr);
}

.boots-modalshare-btns .icon-v-style {
  --boots-size-icon: 2rem;
  font-size: 1.875rem;
}

.boots-navctrl {
  background-color: #fff;
  border-top: 0.5px solid #f2f2f2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.75rem;
}

.boots-navctrl__container {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  margin-left: auto;
  margin-right: auto;
  max-width: 50rem;
  width: 100%;
}

@media (min-width: 992px) {
  .boots-navctrl__container {
    grid-template-columns: repeat(2, 180px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.boots-navctrl .btn {
  font-size: 0.875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 576px) {
  .boots-navctrl .btn {
    font-size: 1.125rem;
  }
}

.boots-nav-tabs .nav-link {
  color: var(--bs-boots-black, #0b0c0c);
}

.boots-nav-tabs .nav-item.show .nav-link,
.boots-nav-tabs .nav-link.active {
  border-color: var(--bs-boots-stroke, #f2f2f2) var(--bs-boots-stroke, #f2f2f2) transparent;
}

.boots-nav-tabs.boots-nav-tabs--bd-bottom {
  border-bottom: var(--nav-bd);
  gap: 0.75rem 2rem;
}

.boots-nav-tabs.boots-nav-tabs--bd-bottom .nav-link {
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: var(--nav-bd);
  font-size: 1.125rem;
  font-weight: 600;
}

.boots-nav-tabs.boots-nav-tabs--bd-bottom .nav-link.active {
  --nav-bd: 0.125rem solid var(--bs-boots-black, #0b0c0c);
}

.boots-pagination,
.boots-pagination .page-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boots-pagination {
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

.boots-pagination>li {
  list-style: none;
  margin-bottom: 0.3125rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.boots-pagination .page-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
  color: #59595c;
  float: none;
  height: 2.5rem;
  padding: 0;
  width: 2.5rem;
  border: 0.5px solid #f2f2f2;
}

.boots-pagination .active .page-link:active,
.boots-pagination .active .page-link:focus,
.boots-pagination .active .page-link:hover,
.boots-pagination .page-link:active,
.boots-pagination .page-link:focus,
.boots-pagination .page-link:hover {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: #0b0c0c;
}

.boots-pagination .boots-pagination__next,
.boots-pagination .boots-pagination__prev {
  background-color: transparent;
  border: 0;
  font-size: 1.875rem;
}

.boots-pagination .boots-pagination__next:active,
.boots-pagination .boots-pagination__next:hover,
.boots-pagination .boots-pagination__prev:active,
.boots-pagination .boots-pagination__prev:hover {
  background-color: transparent;
  opacity: 0.5;
}

.boots-pagination .disabled .boots-pagination__next,
.boots-pagination .disabled .boots-pagination__prev {
  opacity: 0.5;
}

.boots-pagination .active .page-link {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  color: #0b0c0c;
}

.boots-pagination .page-item:first-child .page-link,
.boots-pagination .page-item:last-child .page-link {
  border-radius: 50%;
}

.boots-tooltip.show {
  opacity: 1;
}

.boots-tooltip .tooltip-inner {
  background-color: #ffd400;
  color: #0b0c0c;
  font-size: 0.75rem;
}

.boots-tooltip .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #ffd400;
}

.boots-tooltip .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #ffd400;
}

.boots-tooltip .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: #ffd400;
}

.boots-tooltip .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before,
.boots-tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: #ffd400;
}

.boots-tooltip-cardprod.show {
  opacity: 1;
}

.boots-tooltip-cardprod .tooltip-inner {
  background-color: #fff;
  color: #0b0c0c;
  font-size: 0.75rem;
  line-height: 1.2;
}

.boots-tooltip-cardprod[data-popper-placement^="top"] .tooltip-arrow::before {
  border-top-color: #fff;
}

.boots-tooltip-cardprod.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
  border-right-color: #fff;
}

.boots-tooltip-cardprod.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
  border-bottom-color: #fff;
}

.boots-tooltip-cardprod.bs-tooltip-start .tooltip-arrow::before,
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
  border-left-color: #fff;
}

.table-boots> :not(:first-child) {
  border-top-color: #f2f2f2;
  border-top-width: 1px;
}

.table-boots thead a:focus,
.table-boots thead a:hover {
  color: inherit;
  text-decoration: none;
}

.boots-table--gray {
  background-color: #fafafa;
  border: 0.5px solid #f2f2f2;
  border-color: #f2f2f2;
}

.boots-table--hover-mush {
  --bs-table-hover-bg: #f2f2f2;
}

.boots-table--hover-off-white {
  --bs-table-hover-bg: #fafafa;
}

.boots-table-txt--alt {
  color: #9ca2a4;
}

.boots-switch {
  -webkit-box-align: var(--boots-sw-ai, initial);
  -ms-flex-align: var(--boots-sw-ai, initial);
  align-items: var(--boots-sw-ai, initial);
  display: var(--boots-sw-d, block);
  min-height: var(--boots-sw-h, initial);
}

.boots-switch .form-check-input {
  --boots-fci-bdc: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  -ms-flex-item-align: start;
  align-self: flex-start;
  height: var(--boots-sw-h, 0.875rem);
  width: var(--boots-sw-w, 2rem);
  border-color: var(--boots-fci-bdc);
}

.boots-switch .form-check-input:active,
.boots-switch .form-check-input:focus {
  border-color: var(--boots-fci-bdc);
  background-color: #fff;
}

.boots-switch .form-check-input:checked {
  background-color: #00aa4a;
  border-color: #00aa4a;
}

.boots-switch .form-check-label {
  margin-left: var(--boots-sw-lab-ml, initial);
}

.boots-switch--md,
.boots-switch--xl {
  --boots-sw-ai: center;
  --boots-sw-d: flex;
  --boots-sw-lab-ml: 0.3125rem;
}

.boots-switch--md {
  --boots-sw-w: 2.5rem;
  --boots-sw-h: 1.25rem;
}

.boots-switch--xl {
  --boots-sw-w: 3.125rem;
  --boots-sw-h: 1.75rem;
}

.boots-form-txtand {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--form-txtand-cl, #59595c);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.boots-form-txtand>p {
  margin-bottom: 0;
}

.boots-border-focus:not(.boots-border-focus-none):focus,
.form-select:not(.boots-border-focus-none):focus {
  border-color: #e3e7e8;
  -webkit-box-shadow:
    0 0 0 0.125rem #fff,
    0 0 0 0.3125rem var(--bs-boots-yellow);
  box-shadow:
    0 0 0 0.125rem #fff,
    0 0 0 0.3125rem var(--bs-boots-yellow);
}

.boots-border-focus:not(.boots-border-focus-none).boots-border-focus--light:focus,
.form-select:not(.boots-border-focus-none).boots-border-focus--light:focus {
  border-color: var(--bs-boots-soft-gray);
  -webkit-box-shadow:
    0 0 0 0.125rem #fff,
    0 0 0 0.3125rem rgba(242, 242, 242, 0.4);
  box-shadow:
    0 0 0 0.125rem #fff,
    0 0 0 0.3125rem rgba(242, 242, 242, 0.4);
}

.form-check-input.is-invalid:focus,
.form-control.is-invalid:focus,
.form-select.is-invalid:focus,
.was-validated .form-check-input:invalid:focus,
.was-validated .form-control:invalid:focus,
.was-validated .form-select:invalid:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.form-check-input.is-invalid.boots-border-focus:not(.boots-border-focus-none):focus,
.form-control.is-invalid.boots-border-focus:not(.boots-border-focus-none):focus,
.form-select.is-invalid.boots-border-focus:not(.boots-border-focus-none):focus,
.form-select.is-invalid:not(.boots-border-focus-none):focus,
.was-validated .form-check-input:invalid.boots-border-focus:not(.boots-border-focus-none):focus,
.was-validated .form-control:invalid.boots-border-focus:not(.boots-border-focus-none):focus,
.was-validated .form-select:invalid.boots-border-focus:not(.boots-border-focus-none):focus,
.was-validated .form-select:invalid:not(.boots-border-focus-none):focus {
  border-color: #fff;
  -webkit-box-shadow:
    0 0 0 0.125rem #fff,
    0 0 0 0.3125rem var(--bs-boots-danger);
  box-shadow:
    0 0 0 0.125rem #fff,
    0 0 0 0.3125rem var(--bs-boots-danger);
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid,
.form-control.form-select:not(.boots-border-focus-none).is-invalid {
  background-image: none;
  background-color: rgba(220, 53, 69, 0.06);
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid~* i,
.form-control.form-select:not(.boots-border-focus-none).is-invalid,
.form-control.form-select:not(.boots-border-focus-none).is-invalid~*,
.form-control.form-select:not(.boots-border-focus-none).is-invalid~* i {
  color: var(--bs-boots-danger) !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid::-webkit-input-placeholder,
.form-control.form-select:not(.boots-border-focus-none).is-invalid::-webkit-input-placeholder {
  color: transparent !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid::-moz-placeholder,
.form-control.form-select:not(.boots-border-focus-none).is-invalid::-moz-placeholder {
  color: transparent !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid:-ms-input-placeholder,
.form-control.form-select:not(.boots-border-focus-none).is-invalid:-ms-input-placeholder {
  color: transparent !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid::-ms-input-placeholder,
.form-control.form-select:not(.boots-border-focus-none).is-invalid::-ms-input-placeholder {
  color: transparent !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid::placeholder,
.form-control.form-select:not(.boots-border-focus-none).is-invalid::placeholder {
  color: transparent !important;
}

.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"],
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"],
.form-select:not(.boots-border-focus-none).is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e") !important;
  background-color: rgba(220, 53, 69, 0.06);
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid,
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"],
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"],
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"],
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"],
.form-select:not(.boots-border-focus-none).is-invalid {
  border-color: var(--bs-boots-danger) !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid,
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"],
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"]~*,
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"],
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"]~*,
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid~*,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"],
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"]~*,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"],
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"]~*,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid~*,
.form-select:not(.boots-border-focus-none).is-invalid,
.form-select:not(.boots-border-focus-none).is-invalid~* {
  color: var(--bs-boots-danger) !important;
}

.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid:focus,
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"]:focus,
.form-control.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"]:focus,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid:focus,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class*=" border-boots-"]:focus,
.form-select.boots-border-focus:not(.boots-border-focus-none).is-invalid[class^="border-boots-"]:focus,
.form-select:not(.boots-border-focus-none).is-invalid:focus {
  border-color: #fff !important;
}

.boots-form-range {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 0;
  background: 0 0;
  outline: 0;
  padding: 0;
  margin: 0;
}

.boots-form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: #ffd400;
  cursor: pointer;
  -webkit-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0.25rem 0.0625rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0.25rem 0.0625rem rgba(0, 0, 0, 0.15);
}

.boots-form-range::-webkit-slider-thumb:hover {
  background: #fff;
  border: 0.0625rem solid #ffd400;
}

.boots-form-range::-moz-range-thumb {
  -moz-appearance: none;
  appearance: none;
  width: 1rem;
  height: 1rem;
  background: #ffd400;
  cursor: pointer;
  border: 0;
  -moz-transition: background 0.15s ease-in-out;
  transition: background 0.15s ease-in-out;
  border-radius: 50%;
  box-shadow: 0 0 0.25rem 0.0625rem rgba(0, 0, 0, 0.15);
}

.boots-form-range::-moz-range-thumb:hover {
  background: #fff;
  border: 0.0625rem solid #ffd400;
}

.boots-form-range::-moz-focus-inner,
.boots-form-range::-moz-focus-outer {
  border: 0;
}

.boots-range-text {
  min-width: 2rem;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.form-check-input {
  width: 0.875rem;
  height: 0.875rem;
}

.boots-collapse {
  --boots-card-bdc: #f2f2f2;
  background-color: var(--boots-card-bgc);
  border-color: var(--boots-card-bdc);
  --boots-card-bgc: #fafafa;
  border: 0.5px solid #f2f2f2;
  padding: 0 1.25rem;
}

.boots-collapse .boots-navctrl {
  margin: 0 -0.75rem;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

@media (min-width: 576px) {
  .boots-collapse .boots-navctrl {
    margin: 0 -3rem;
    padding: 3rem;
  }
}

.boots-collapse .boots-navctrl .boots-navctrl__container {
  max-width: 100%;
  padding: 0;
}

[aria-expanded="true"] .boots-hide-toggle {
  -webkit-transform: scaleY(0.96) translateY(0.25rem);
  transform: scaleY(0.96) translateY(0.25rem);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}

.boots-collapse--nobdt {
  border-top: none;
}

.algolia-autocomplete .aa-hint,
.algolia-autocomplete .aa-input {
  width: 100%;
}

.algolia-autocomplete .aa-hint {
  color: #59595c;
}

.algolia-autocomplete .aa-dropdown-menu {
  width: 100%;
  background-color: #fff;
  border-top: none;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion {
  cursor: pointer;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
  background-color: #fafafa;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em {
  font-weight: 600;
  font-style: normal;
  color: #0b0c0c;
}

.algolia-autocomplete .boots-algolia-suggestion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #0b0c0c;
  text-decoration: none;
  gap: 0.5rem;
  padding: 0.25rem 0.3125rem;
  width: 100%;
  min-height: 2rem;
}

.algolia-autocomplete .boots-algolia-suggestion__image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.algolia-autocomplete .boots-algolia-suggestion__image:not(.boots-avatar) {
  border-radius: 1rem;
}

.algolia-autocomplete .boots-algolia-suggestion__image img {
  width: 4rem;
  display: block;
}

.algolia-autocomplete .boots-algolia-suggestion .boots-avatar {
  max-width: 4rem;
  margin-left: auto;
  margin-right: auto;
}

.algolia-autocomplete .boots-algolia-suggestion__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-family: "Calibri";
  font-size: 0.875rem;
}

.algolia-autocomplete .boots-algolia-suggestion__product-name {
  font-weight: 500;
  display: block;
  line-height: 1.25rem;
  color: var(--bs-boots-black, #0b0c0c);
}

.algolia-autocomplete .boots-algolia-suggestion__creative-name {
  color: #9ca2a4;
}

.algolia-autocomplete .boots-algolia-suggestion__creative-link {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 5.5rem;
  overflow: hidden;
}

:root {
  --aa-search-input-height: 40px;
  --aa-text-color-rgb: #0b0c0c;
  --aa-spacing-half: 0;
  --aa-font-size: 14px;
  --aa-panel-shadow: 0 0 0 1px #f2f2f2, 0 6px 16px -4px #f2f2f2;
}

.boots-header-search .aa-Form {
  border-color: transparent;
}

.boots-header-search .aa-InputWrapperPrefix {
  margin-right: 0.5rem;
}

@media (min-width: 768px) {
  .boots-header-search .aa-InputWrapperPrefix {
    margin-right: 0;
  }
}

.boots-header-search .aa-InputWrapperPrefix .aa-SubmitButton {
  padding: 0;
  width: 2rem;
  color: var(--bs-boots-gray, #59595c);
}

.boots-header-search .aa-InputWrapperPrefix .aa-SubmitButton:before {
  --boots-size-icon: 1.25rem;
  -webkit-mask-image: var(--icon-magnifying-glass-thin);
  mask-image: var(--icon-magnifying-glass-thin);
}

.boots-header-search .aa-Form:focus-within {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: transparent;
  outline: 0;
}

.algolia-autocomplete .aa-PanelLayout {
  max-height: calc(100vh - 72px);
  padding: 0 1rem;
}

.algolia-autocomplete .aa-Panel--scrollable {
  scrollbar-color: var(--bs-boots-stroke) transparent;
  scrollbar-width: thin;
}

.algolia-autocomplete .aa-Panel--scrollable::-webkit-scrollbar {
  display: block;
}

.algolia-autocomplete .aa-Panel--scrollable::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.algolia-autocomplete .aa-Panel--scrollable::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}

.algolia-autocomplete .aa-Panel--scrollable::-webkit-scrollbar-thumb {
  background-color: var(--bs-boots-stroke);
  border: 0.125rem solid #fff;
}

@media (max-width: 767.98px) {
  .algolia-autocomplete .aa-Panel--scrollable {
    padding-bottom: 6rem;
  }
}

.algolia-autocomplete .aa-List {
  padding: 0;
}

.algolia-autocomplete.aa-Panel {
  position: fixed;
  margin: 0 0.0625rem 0 0;
  z-index: 1030;
  max-width: 100% !important;
  width: 100% !important;
  padding-bottom: 3rem;
  border-radius: 0;
  -webkit-box-shadow:
    0 -0.0625rem 0 0 #f2f2f2,
    0 2.125rem 3rem -0.25rem var(--bs-boots-mush, #f2f2f2);
  box-shadow:
    0 -0.0625rem 0 0 #f2f2f2,
    0 2.125rem 3rem -0.25rem var(--bs-boots-mush, #f2f2f2);
  top: 4.5rem !important;
}

body:not(.has-algolia) .algolia-autocomplete.aa-Panel {
  -webkit-transition: top 0.4s ease-in-out;
  transition: top 0.4s ease-in-out;
}

@media (min-width: 992px) {
  .algolia-autocomplete.aa-Panel {
    top: 5.5rem !important;
  }
}

.algolia-autocomplete .aa-dropdown-menu .aa-Item[aria-selected="true"] {
  background-color: #fff;
}

.algolia-autocomplete .aa-Form {
  border: 0.5px solid #f2f2f2;
  height: 2.5rem;
  padding-left: 0.75rem;
}

.algolia-autocomplete .aa-List {
  margin: 0;
}

.algolia-autocomplete .aa-List .aa-Item {
  border-radius: 0;
}

.algolia-autocomplete .aa-List .aa-Item:last-child {
  border-bottom: 0 none;
}

.aa-Panel .aa-SourceHeader {
  margin-bottom: 0.125rem;
}

.aa-Panel .aa-Source .aa-List,
.aa-Panel .aa-SourceFooter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.aa-Panel .aa-Source {
  --aa-mw-list: 58.75rem;
  --aa-gap-list: 0.5rem;
  max-width: var(--aa-mw-list);
  margin: 2rem auto 0;
}

.aa-Panel .aa-Source .aa-List {
  gap: var(--aa-gap-list);
  width: 100%;
}

.aa-Panel .aa-Source .aa-List .aa-suggestion,
.aa-Panel .aa-Source .aa-List .boots-algolia-suggestion {
  padding: 0;
}

.aa-Panel .aa-Source .aa-List .aa-Item {
  width: auto;
}

.aa-Panel .aa-Source .badge {
  white-space: nowrap;
}

.aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List {
  width: initial;
}

@media (max-width: 991.98px) {
  .aa-Panel .aa-Source:not([data-autocomplete-source-id="products"]) .aa-List {
    --bs-gutter-x-tm: var(--bs-gutter-x);
    --bs-padding-x-tm: var(--bs-gutter-x);
  }
}

.aa-Panel .aa-Source[data-autocomplete-source-id="categories"] .aa-List {
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .aa-Panel .aa-Source[data-autocomplete-source-id="categories"] .aa-List {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.aa-Panel .aa-Source[data-autocomplete-source-id="creatives"] {
  --aa-gap-list: 1.5rem;
}

.aa-Panel .aa-Source[data-autocomplete-source-id="creatives"] .aa-List {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-List {
  --aa-gap-list: 1rem;
  --aa-pb-list: 1rem;
  --aa-bd-list: 0.5px solid #f2f2f2;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-List {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-List {
    grid-template-columns: repeat(3, 1fr);
    --aa-gap-list: 2rem;
  }
}

.aa-Panel .aa-Source[data-autocomplete-source-id="products"] .boots-algolia-suggestion {
  gap: 1.5rem;
}

.aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-suggestion:not(:last-of-type) {
  padding-bottom: var(--aa-pb-list);
  border-bottom: var(--aa-bd-list);
}

@media (min-width: 576px) {
  .aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-suggestion {
    --aa-pb-list: 0;
    --aa-bd-list: 0 none;
  }
}

@media (max-width: 575.98px) {
  .aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-suggestion:nth-child(6) {
    display: none;
  }

  .aa-Panel .aa-Source[data-autocomplete-source-id="products"] .aa-suggestion:nth-child(5) {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.boots-header--scroll .algolia-autocomplete.aa-Panel {
  top: 4rem !important;
}

.section-boots-login .hidden {
  display: none !important;
}

.boots-form-newsletter,
.login {
  margin-top: 0;
}

.boots-form-newsletter-wrap a,
.login-wrap a {
  color: #0b0c0c;
}

.boots-form-newsletter-wrap a:hover,
.login-wrap a:hover {
  color: rgba(11, 12, 12, 0.8);
}

.boots-form-newsletter-wrap .btn-v-style-facebook,
.login-wrap .btn-v-style-facebook {
  padding: 0.875rem 0;
  font-size: 0.875rem;
}

.boots-form-newsletter-wrap--btn,
.login-wrap--btn {
  max-width: 20.375rem;
  margin: 5.5rem auto 4rem;
}

.boots-form-newsletter-wrap--btn .btn:not(:first-child),
.login-wrap--btn .btn:not(:first-child) {
  margin-top: 0.5rem;
}

.boots-form-newsletter-content,
.login-content {
  max-width: 20.375rem;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
}

.boots-form-newsletter-content .form-group,
.login-content .form-group {
  margin-bottom: 1.25rem;
}

.boots-form-newsletter-content-header,
.login-content-header {
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Calibri";
}

.boots-form-newsletter-content-header .h2,
.boots-form-newsletter-content-header h2,
.login-content-header .h2,
.login-content-header h2 {
  margin-top: 0;
  font-size: 1.5rem;
  color: #0b0c0c;
}

.boots-form-newsletter-content-footer,
.login-content-footer {
  margin-top: 0;
  text-align: center;
  padding-top: 0;
}

@media (max-width: 767.98px) {

  .boots-form-newsletter-content-footer,
  .login-content-footer {
    margin-top: 0.625rem;
  }
}

.boots-form-newsletter-content-footer p,
.login-content-footer p {
  margin: 0.625rem 0;
  font-size: 0.875rem;
}

.boots-form-newsletter-content .form-floating>label,
.login-content .form-floating>label {
  -webkit-transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.boots-form-newsletter-content .form-control,
.login-content .form-control {
  height: auto;
  line-height: 1;
}

.boots-form-newsletter-content .form-control::-webkit-input-placeholder,
.login-content .form-control::-webkit-input-placeholder {
  color: #fff !important;
}

.boots-form-newsletter-content .form-control::-moz-placeholder,
.login-content .form-control::-moz-placeholder {
  color: #fff !important;
}

.boots-form-newsletter-content .form-control:-ms-input-placeholder,
.login-content .form-control:-ms-input-placeholder {
  color: #fff !important;
}

.boots-form-newsletter-content .form-control::-ms-input-placeholder,
.login-content .form-control::-ms-input-placeholder {
  color: #fff !important;
}

.boots-form-newsletter-content .form-control::placeholder,
.login-content .form-control::placeholder {
  color: #fff !important;
}

.boots-form-newsletter-content .btn.btn-boots-yellow-b,
.login-content .btn.btn-boots-yellow-b {
  min-height: 3rem;
}

.boots-form-newsletter-content .form-floating>.form-control:not(:-moz-placeholder-shown),
.boots-form-newsletter-content .form-floating>.form-control:not(:-ms-input-placeholder),
.login-content .form-floating>.form-control:not(:-moz-placeholder-shown),
.login-content .form-floating>.form-control:not(:-ms-input-placeholder) {
  padding: 1rem 1.25rem;
}

.boots-form-newsletter-content .form-floating>.form-control:focus,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown),
.login-content .form-floating>.form-control:focus,
.login-content .form-floating>.form-control:not(:placeholder-shown) {
  padding: 1rem 1.25rem;
}

.boots-form-newsletter-content .form-floating>.form-control:focus::-webkit-input-placeholder,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown)::-webkit-input-placeholder,
.login-content .form-floating>.form-control:focus::-webkit-input-placeholder,
.login-content .form-floating>.form-control:not(:placeholder-shown)::-webkit-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.boots-form-newsletter-content .form-floating>.form-control:focus::-moz-placeholder,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown)::-moz-placeholder,
.login-content .form-floating>.form-control:focus::-moz-placeholder,
.login-content .form-floating>.form-control:not(:placeholder-shown)::-moz-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.boots-form-newsletter-content .form-floating>.form-control:focus:-ms-input-placeholder,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown):-ms-input-placeholder,
.login-content .form-floating>.form-control:focus:-ms-input-placeholder,
.login-content .form-floating>.form-control:not(:placeholder-shown):-ms-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.boots-form-newsletter-content .form-floating>.form-control:focus::-ms-input-placeholder,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown)::-ms-input-placeholder,
.login-content .form-floating>.form-control:focus::-ms-input-placeholder,
.login-content .form-floating>.form-control:not(:placeholder-shown)::-ms-input-placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.boots-form-newsletter-content .form-floating>.form-control:not(:-moz-placeholder-shown)::placeholder,
.boots-form-newsletter-content .form-floating>.form-control:not(:-ms-input-placeholder)::placeholder,
.login-content .form-floating>.form-control:not(:-moz-placeholder-shown)::placeholder,
.login-content .form-floating>.form-control:not(:-ms-input-placeholder)::placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.boots-form-newsletter-content .form-floating>.form-control:focus::placeholder,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown)::placeholder,
.login-content .form-floating>.form-control:focus::placeholder,
.login-content .form-floating>.form-control:not(:placeholder-shown)::placeholder {
  color: var(--bs-boots-soft-gray, #9ca2a4) !important;
}

.boots-form-newsletter-content .form-floating>.form-control:not(:-moz-placeholder-shown)~label,
.boots-form-newsletter-content .form-floating>.form-control:not(:-ms-input-placeholder)~label,
.login-content .form-floating>.form-control:not(:-moz-placeholder-shown)~label,
.login-content .form-floating>.form-control:not(:-ms-input-placeholder)~label {
  font-size: 0.75rem;
  color: #59595c;
  background-color: #fff;
  height: auto;
  line-height: 1;
  padding: 0;
  top: -0.5rem;
  left: 1.25rem;
  transform: none;
  z-index: 5;
  opacity: 1;
}

.boots-form-newsletter-content .form-floating>.form-control:focus~label,
.boots-form-newsletter-content .form-floating>.form-control:not(:placeholder-shown)~label,
.login-content .form-floating>.form-control:focus~label,
.login-content .form-floating>.form-control:not(:placeholder-shown)~label {
  font-size: 0.75rem;
  color: #59595c;
  background-color: #fff;
  height: auto;
  line-height: 1;
  padding: 0;
  top: -0.5rem;
  left: 1.25rem;
  -webkit-transform: none;
  transform: none;
  z-index: 5;
  opacity: 1;
}

.boots-form-newsletter-content-remember,
.login-content-remember {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1.5rem 0 0;
  font-size: 0.875rem;
  color: #0b0c0c;
}

.boots-form-newsletter-content-remember a,
.boots-form-newsletter-content-remember label,
.login-content-remember a,
.login-content-remember label {
  font-family: "Calibri";
  font-size: 0.875rem;
  cursor: pointer;
}

.boots-form-newsletter-content-remember p,
.login-content-remember p {
  margin: 0;
}

.boots-form-newsletter-content-create,
.login-content-create {
  margin-top: 0;
}

@media (max-width: 767.98px) {

  .boots-form-newsletter-content-create,
  .login-content-create {
    padding-bottom: 1.25rem;
  }
}

.boots-login-figure,
.header-single-login.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-single-login.login {
  padding: 0;
  background-color: #fff;
  margin-top: 5.25rem;
  margin-bottom: 4rem;
}

.header-single-login.login .logo {
  display: inherit;
  width: 7.875rem;
  text-align: center;
}

.boots-login-figure {
  height: 100vh;
  width: 100%;
  min-width: 100%;
  overflow: hidden;
  margin: 0;
}

.boots-login-figure__img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.boots-login-figure__caption,
.boots-login-figure__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.boots-login-figure__caption {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  background: rgba(11, 12, 12, 0.8);
  width: 20rem;
  min-height: 4.75rem;
  border-radius: 1rem;
}

.boots-login-figure__caption:hover {
  background: rgba(11, 12, 12, 0.92);
}

.boots-login-figure__link {
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: #fff;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.boots-login-figure__link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.boots-login-figure__desc,
.boots-login-figure__price {
  margin-bottom: 0;
}

.boots-login-figure__price {
  white-space: nowrap;
}

.login-wrap--btn .btn-apple,
.login-wrap--btn .btn-facebook,
.login-wrap--btn .btn-google {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.344;
  padding-left: 3.25rem;
  color: #3c4043;
}

.login-wrap--btn .btn-apple:before,
.login-wrap--btn .btn-facebook:before,
.login-wrap--btn .btn-google:before {
  content: "";
  display: block;
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
  left: 0.75rem;
  background-size: 100%;
}

.toaster-v-style {
  --toaster-bd-color: var(--bs-boots-stroke, #f2f2f2);
  --toaster-color: var(--bs-boots-black, #0b0c0c);
  position: fixed;
  bottom: -3rem;
  right: 0;
  left: 0;
  border: 0.0625rem solid var(--toaster-bd-color);
  padding: 1.5rem;
  background-color: #fff;
  color: var(--toaster-color);
  opacity: 0;
  z-index: 1056;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  max-width: 32rem;
  margin: 0 1rem;
  border-radius: 0.25rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.18);
  box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.18);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .toaster-v-style {
    margin: 0 auto;
  }
}

.toaster-v-style-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.toaster-v-style__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.toaster-v-style__img::after {
  background-color: #0b0c0c;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  border-radius: var(--bootsimg-bdrda, 0.5rem);
  opacity: 0.05;
}

.toaster-v-style__text {
  line-height: 1;
  font-size: 1rem;
}

.toaster-v-style__text .small,
.toaster-v-style__text small {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.toaster-v-style__text .small:empty,
.toaster-v-style__text small:empty {
  display: none;
}

.toaster-v-style.is-visible {
  bottom: 1.5rem;
  opacity: 1;
}

.toaster-v-style .icon-v-style {
  --toaster-color-icon: var(--bs-boots-black, #0b0c0c);
  --boots-size-icon: 1.5rem;
  --icon-filter: none;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  color: var(--toaster-color-icon);
}

.toaster-v-style.toaster-v-style--success {
  --toaster-bd-color: var(--bs-boots-success, #00aa4a);
  --toaster-color: var(--bs-boots-success, #00aa4a);
}

.toaster-v-style.toaster-v-style--success .icon-v-style {
  --toaster-color-icon: var(--bs-boots-success, #00aa4a);
}

.toaster-v-style.toaster-v-style--black {
  --toaster-bd-color: var(--bs-boots-black, #0b0c0c);
  --toaster-color: var(--bs-boots-black, #0b0c0c);
  background-color: var(--bs-boots-black, #0b0c0c);
  color: var(--bs-boots-white, #fff);
  margin-inline: auto;
}

.toaster-v-style.toaster-v-style--black .icon-v-style {
  --toaster-color-icon: var(--bs-boots-white, #fff);
}

.toaster-v-style.toaster-v-style--black .btn-close {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.toaster-v-style.toaster-v-style--danger,
.toaster-v-style.toaster-v-style--error {
  --toaster-bd-color: var(--bs-boots-danger, #ff0000);
  --toaster-color: var(--bs-boots-danger, #ff0000);
}

.toaster-v-style.toaster-v-style--danger .icon-v-style,
.toaster-v-style.toaster-v-style--error .icon-v-style {
  --toaster-color-icon: var(--bs-boots-red, #ff0000);
}

.toaster-v-style.toaster-v-style--info {
  --toaster-bd-color: var(--bs-boots-cyan, #1c78ff);
  --toaster-color: var(--bs-boots-cyan, #1c78ff);
}

.toaster-v-style.toaster-v-style--info .icon-v-style {
  --toaster-color-icon: var(--bs-boots-cyan, #1c78ff);
}

.toaster-v-style.toaster-v-style--black {
  padding: 0.75rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 22.5rem;
  border-radius: 0.5rem;
}

.toaster-v-style.toaster-v-style--black .toaster-v-style-wrap {
  gap: 0.5rem;
}

.toaster-v-style.toaster-v-style--black .toaster-v-style__text {
  font-size: 0.875rem;
  line-height: 1.286;
}

.toaster-v-style.toaster-v-style--black .icon-v-style {
  --boots-size-icon: 1rem;
  --icon-filter: inherit;
  font-size: 0;
}

.boots-header--global .boots-list-subcategory,
.boots-list-subcategory {
  background: #fff;
  padding: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 9rem;
  width: 100%;
}

.boots-header--global .boots-list-subcategory:not(.position-relative),
.boots-list-subcategory:not(.position-relative) {
  position: fixed;
  top: var(--linetop-h, 4.5rem);
  border-top: 0.5px solid #f2f2f2;
  left: 0;
  -webkit-box-shadow: 0 2.125rem 3rem -0.25rem rgba(242, 242, 242, 0.3);
  box-shadow: 0 2.125rem 3rem -0.25rem rgba(242, 242, 242, 0.3);
  max-width: 100%;
}

.boots-header--global .boots-list-subcategory .swiper-wrapper,
.boots-list-subcategory .swiper-wrapper {
  padding: 1.5rem 0 0.5rem;
  margin: 0;
}

.boots-header--global .boots-list-subcategory .swiper-button-next,
.boots-header--global .boots-list-subcategory .swiper-button-prev,
.boots-list-subcategory .swiper-button-next,
.boots-list-subcategory .swiper-button-prev {
  width: 10rem;
  height: 9rem;
  margin: 0;
  top: 0;
  display: none;
}

@media (min-width: 768px) {

  .boots-header--global .boots-list-subcategory .swiper-button-next,
  .boots-header--global .boots-list-subcategory .swiper-button-prev,
  .boots-list-subcategory .swiper-button-next,
  .boots-list-subcategory .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.boots-header--global .boots-list-subcategory .swiper-button-next::after,
.boots-header--global .boots-list-subcategory .swiper-button-prev::after,
.boots-list-subcategory .swiper-button-next::after,
.boots-list-subcategory .swiper-button-prev::after {
  display: none;
}

.boots-header--global .boots-list-subcategory .swiper-button-next .icon-v-style,
.boots-header--global .boots-list-subcategory .swiper-button-prev .icon-v-style,
.boots-list-subcategory .swiper-button-next .icon-v-style,
.boots-list-subcategory .swiper-button-prev .icon-v-style {
  border: 0.5px solid #f2f2f2;
  border-radius: 100%;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.6875rem;
  background: #fff;
  color: var(--bs-boots-black);
}

.boots-header--global .boots-list-subcategory .swiper-button-next .icon-v-style:hover,
.boots-header--global .boots-list-subcategory .swiper-button-prev .icon-v-style:hover,
.boots-list-subcategory .swiper-button-next .icon-v-style:hover,
.boots-list-subcategory .swiper-button-prev .icon-v-style:hover {
  background-color: var(--bs-boots-off-white, #fafafa);
}

.boots-header--global .boots-list-subcategory .swiper-button-next,
.boots-list-subcategory .swiper-button-next {
  right: 0;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(rgba(255, 255, 255, 0)),
      to(#fff));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 24px;
}

.boots-header--global .boots-list-subcategory .swiper-button-prev,
.boots-list-subcategory .swiper-button-prev {
  left: 0;
  background: -webkit-gradient(linear,
      left top,
      right top,
      from(#fff),
      to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, #fff 0, rgba(255, 255, 255, 0) 100%);
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-left: 24px;
}

.boots-header--global .boots-list-subcategory .swiper-button-next.swiper-button-disabled,
.boots-header--global .boots-list-subcategory .swiper-button-next.swiper-button-lock,
.boots-header--global .boots-list-subcategory .swiper-button-prev.swiper-button-disabled,
.boots-header--global .boots-list-subcategory .swiper-button-prev.swiper-button-lock,
.boots-list-subcategory .swiper-button-next.swiper-button-disabled,
.boots-list-subcategory .swiper-button-next.swiper-button-lock,
.boots-list-subcategory .swiper-button-prev.swiper-button-disabled,
.boots-list-subcategory .swiper-button-prev.swiper-button-lock {
  opacity: 0;
}

.boots-list-subcategory[data-swiper="categories-list"] .swiper-slide:not(.max-w-76p) {
  max-width: 6.5rem;
}

.boots-list-subcategory[data-swiper="categories-list"] .swiper-slide:not(.max-w-76p) .card-img-top {
  max-width: 6.5rem;
  height: 6.5rem;
}

@media (max-width: 991.98px) {
  .boots-list-subcategory[data-swiper="categories-list"] .swiper-slide:not(.max-w-76p):last-of-type {
    margin-right: 2rem !important;
  }
}

.boots-list-subcategory[data-swiper="categories-list"] .swiper-button-next,
.boots-list-subcategory[data-swiper="categories-list"] .swiper-button-prev {
  height: 12.5rem;
}

@media (min-width: 1920px) {
  .boots-list-subcategory[data-swiper="categories-list"] {
    border-left: 0.125rem solid #fff;
    border-right: 0.1875rem solid #fff;
  }

  .boots-list-subcategory[data-swiper="categories-list"] .swiper-wrapper {
    padding-left: 3rem;
  }
}

.swiper-horizontal.swiper-css-mode .swiper-wrapper.snap-type-none {
  -ms-scroll-snap-type: initial !important;
  scroll-snap-type: initial !important;
  margin-inline: calc(var(--bs-gutter-x) * -1);
  padding-inline: var(--bs-gutter-x);
  -webkit-transform-style: preserve-3d !important;
  transform-style: preserve-3d !important;
}

.swiper-horizontal.swiper-css-mode .swiper-slide {
  scroll-snap-align: none !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
}

@media (max-width: 767.98px) {
  .boots-swiper-mobile-mode .swiper-wrapper {
    margin-inline: calc(var(--bs-gutter-x) * -1);
    padding-inline: var(--bs-gutter-x);
  }
}

.swiper-product-thumbs {
  max-width: var(--prod-thumbs-size, 5rem);
  height: calc(100% - 2.5rem);
}

@media (min-width: 1200px) {
  .swiper-product-thumbs {
    --prod-thumbs-size: 5.5rem;
  }
}

.swiper-product-thumbs.swiper-vertical {
  margin: 0;
  overflow: hidden;
}

.swiper-product-thumbs.swiper-vertical:not(.swiper-button-lock) {
  margin: 0;
}

.swiper-product-thumbs.swiper-vertical .swiper-wrapper .swiper-slide {
  margin: 0;
  display: block;
  width: var(--prod-thumbs-size, 5rem);
  height: var(--prod-thumbs-size, 5rem);
  border: 0.5px solid #f2f2f2;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.swiper-product-thumbs.swiper-vertical .swiper-wrapper .swiper-slide:not(:last-child) {
  margin-bottom: 1rem;
}

.swiper-product-thumbs.swiper-vertical .swiper-wrapper .swiper-slide .img-fluid {
  -webkit-transform: scale(1.6);
  transform: scale(1.6);
  z-index: 0;
}

.swiper-product-thumbs.swiper-vertical .swiper-wrapper .swiper-slide:before {
  content: "";
  inset: 0;
  background-color: #0b0c0c;
  border-radius: 1rem;
  position: absolute;
  opacity: var(--prod-thumbs-opacity, 0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.swiper-product-thumbs.swiper-vertical .swiper-wrapper .swiper-slide.swiper-slide-thumb-active:before {
  --prod-thumbs-opacity: 0.5;
}

.jconfirm.jconfirm-v-style .jconfirm-bg {
  background-color: var(--bs-boots-black, #0b0c0c);
  opacity: 0.5;
}

.jconfirm.jconfirm-v-style .jconfirm-box {
  background-color: var(--bs-white, #fff);
  -webkit-box-shadow:
    0 0.4375rem 0.5rem -0.25rem rgba(0, 0, 0, 0.2),
    0 0.8125rem 1.1875rem 0.125rem rgba(0, 0, 0, 0.14),
    0 0.3125rem 1.5rem 0.25rem rgba(0, 0, 0, 0.12);
  box-shadow:
    0 0.4375rem 0.5rem -0.25rem rgba(0, 0, 0, 0.2),
    0 0.8125rem 1.1875rem 0.125rem rgba(0, 0, 0, 0.14),
    0 0.3125rem 1.5rem 0.25rem rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  padding: 3.75rem 2.5rem 1.875rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-closeIcon {
  width: 3rem;
  height: 3rem;
  color: var(--bs-boots-black, #0b0c0c);
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-size: 1.25rem;
  color: #59595c;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-closeIcon .icon-close {
  background: 0 0;
  width: 2rem;
  height: 2rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-closeIcon .icon-close::before {
  --boots-size-icon: 2rem;
  --filter-icon: none;
  -webkit-mask-image: var(--icon-x-thin);
  mask-image: var(--icon-x-thin);
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-closeIcon:hover {
  color: #9ca2a4;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-title-c {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bs-boots-black, #0b0c0c);
  text-align: center;
  margin-bottom: 0.625rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-title-c .jconfirm-icon-c {
  --boots-size-icon: 4.5rem;
  display: block;
  margin-right: 0;
  margin-bottom: 1.875rem;
  margin-left: 0;
  font-size: 5rem;
  color: var(--bs-danger, #ff0000);
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons,
.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-content {
  text-align: center;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-content:empty {
  display: none;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn {
  padding: 0.625rem 1.5rem;
  border-style: solid;
  border-width: 0.5px;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-group-sm>.btn,
.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-sm,
.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-xs {
  font-size: 0.75rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-xs {
  padding: 0.125rem 0.3125rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-group-sm>.btn,
.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-sm {
  padding: 0.3125rem 0.625rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-group-lg>.btn,
.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-lg {
  padding: 0.75rem 1.75rem;
  font-size: 1.125rem;
}

.jconfirm.jconfirm-v-style .jconfirm-box .jconfirm-buttons .btn-xl {
  padding: 1.125rem 4.25rem;
  font-size: 1.375rem;
}

.jconfirm-v-style__msg-icon {
  --boots-size-icon: 5rem;
  display: inline-block;
  margin-bottom: 0.625rem;
  font-size: 6.25rem;
}

.jconfirm-v-style__msg-title {
  font-size: 2rem;
}

.jconfirm-v-style__msg_content {
  font-size: 1.5rem;
  line-height: 1.2;
}

.jconfirm-v-style__alert {
  padding-top: 1.25rem;
}

.jconfirm.jconfirm-v-style.jconfirm-v-style--nocenter .jconfirm-box .jconfirm-content {
  text-align: left;
}

.jconfirm.jconfirm-v-style.jconfirm-v-style--nocenter .jconfirm-box .jconfirm-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: initial;
}

.jconfirm.jconfirm-v-style.jconfirm-v-style--error .jconfirm-v-style__msg-icon {
  color: var(--bs-danger, #ff0000);
}

.boots-custom-scroll--vertical {
  --me-for-scroll: 1.125rem;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  overflow-y: auto;
  mask-image:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(#f2f2f2)),
    -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      to(#f2f2f2));
  mask-image:
    linear-gradient(to top, transparent, #f2f2f2),
    linear-gradient(to left,
      transparent var(--me-for-scroll),
      #f2f2f2 var(--me-for-scroll));
  mask-size: 100% 125rem;
  -webkit-mask-image:
    -webkit-gradient(linear,
      left bottom,
      left top,
      from(transparent),
      to(#f2f2f2)),
    -webkit-gradient(linear,
      right top,
      left top,
      from(transparent),
      to(#f2f2f2));
  -webkit-mask-image:
    linear-gradient(to top, transparent, #f2f2f2),
    linear-gradient(to left,
      transparent var(--me-for-scroll),
      #f2f2f2 var(--me-for-scroll));
  -webkit-mask-size: 100% 125rem;
  transition:
    mask-position 0.3s,
    -webkit-mask-position 0.3s;
  scrollbar-color: #f2f2f2 transparent;
  scrollbar-width: thin;
}

@media (hover: hover) {
  .boots-custom-scroll--vertical:hover {
    -webkit-mask-position: left top;
    mask-position: left top;
  }
}

.boots-custom-scroll--vertical::-webkit-scrollbar {
  display: block;
}

.boots-custom-scroll--vertical::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.boots-custom-scroll--vertical::-webkit-scrollbar {
  width: 0.5rem;
  background-color: transparent;
}

.boots-custom-scroll--vertical::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
  border: 0.125rem solid #fff;
}

.boots-custom-scroll--vertical:not(:hover) {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.boots-custom-scroll--vertical:not(:hover)::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.c-cardquot__btntoggle::after {
  content: " ";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  width: var(--boots-size-icon, 16px);
  height: var(--boots-size-icon, 16px);
  aspect-ratio: 1/1;
  background: currentColor;
  -webkit-transition: inherit;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

body,
html {
  height: 100%;
}

:root {
  --bs-gutter-x: 1.5rem;
  --default-bd: 0.5px solid #f2f2f2;
}

.o-banner-full .progress {
  background-color: rgba(242, 242, 242, 0.4);
  height: 0.125rem;
}

.o-banner-full .boots-swiper-pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-height: 0.375rem;
  --swiper-pagination-bullet-width: 0.375rem;
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 0.125rem;
  border: 0.0625rem solid #fff;
  background-color: transparent;
}

.o-banner-full .boots-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.o-banner-full .boots-swiper-button-next,
.o-banner-full .boots-swiper-button-prev {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  position: absolute;
  z-index: 11;
  margin: 0 3rem;
  width: 3rem;
  height: 3rem;
  -webkit-box-shadow: 0.1875rem 0.375rem 1.875rem rgba(0, 0, 0, 0.09);
  box-shadow: 0.1875rem 0.375rem 1.875rem rgba(0, 0, 0, 0.09);
  display: none;
}

.o-banner-full .boots-swiper-button-next.swiper-button-disabled,
.o-banner-full .boots-swiper-button-next.swiper-button-lock,
.o-banner-full .boots-swiper-button-prev.swiper-button-disabled,
.o-banner-full .boots-swiper-button-prev.swiper-button-lock {
  opacity: 0;
}

@media (min-width: 992px) {

  .o-banner-full .boots-swiper-button-next,
  .o-banner-full .boots-swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.o-header.boots-header--checkout,
.o-header.boots-header--global {
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.o-modal-quotlink__btncopy {
  text-align: right;
}

.o-modal-quotlink__btncopy .btn {
  padding-right: 0;
  padding-bottom: 0;
  font-size: 0.875rem;
  color: var(--bs-boots-success, #00aa4a);
  text-decoration: none;
}

.o-modal-quotlink__btncopy .btn:active,
.o-modal-quotlink__btncopy .btn:focus,
.o-modal-quotlink__btncopy .btn:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.o-modal-quotlink__btnsuccess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.o-modal-quotlink__btnsuccess .icon-v-style {
  --boots-size-icon: 1.5rem;
  margin-left: 0.5rem;
}

.o-modal-quotlink__obs {
  font-size: 0.875rem;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.o-menuadm-wrap {
  background-color: #fff;
  padding-top: 1.25rem;
  text-align: center;
  border-right: 0.5px solid #e3e7e8;
  position: fixed;
  height: 100%;
  width: var(--boots-sidebar-w, 4rem);
  -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: calc(100% - var(--boots-header-height, 4rem));
  top: var(--boots-header-height, 4rem);
}

.o-menuadm-wrap .boots-avatar {
  margin-bottom: 1.25rem;
  margin-left: 1.5rem;
  width: 3rem;
  display: block;
}

.o-menuadm-wrap--secondary {
  max-width: calc(100% - 1px);
  left: 0;
  border: 0 !important;
  overflow: hidden;
}

@media (min-width: 992px) {
  .o-menuadm-wrap--secondary {
    max-width: 22.5rem;
    left: var(--boots-sidebar-w, 4rem);
    border-right: 0.5px solid #e3e7e8 !important;
  }

  .o-menuadm-wrap--secondary+.o-menuadm-wrap--me {
    margin-left: 22.5rem;
  }
}

.o-menuadm__nav {
  --nav-space-pdl: 1.5rem;
  white-space: nowrap;
  margin-bottom: 1.375rem;
  text-align: left;
}

.o-menuadm__nav-title {
  color: var(--boots-nav-item-color, transparent);
  font-size: 0.75rem;
  line-height: 0.9375rem;
  font-weight: 400;
  margin-inline: calc(var(--nav-space-pdl) / 2);
  padding-left: calc(var(--nav-space-pdl) / 2);
  margin-bottom: 0.375rem;
  border-top: 0.0625rem solid var(--boots-nav-title-border, #e3e7e8);
  -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-property: border, color;
  transition-property: border, color;
}

.o-menuadm__nav ul li {
  margin: 0.25rem 0;
}

.c-cardquot-list>ul>li:last-child,
.o-menuadm__nav ul li:last-child {
  margin-bottom: 0;
}

.o-menuadm__nav-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #0b0c0c;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.375rem var(--nav-space-pdl);
  text-decoration: none;
  max-width: var(--boots-nav-item-max-w, 2.5rem);
  overflow: hidden;
  color: var(--boots-nav-item-color, transparent);
}

.o-menuadm__nav-item.active:not(:hover),
.o-menuadm__nav-item:not(:hover) {
  -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-property: width, color, max-width;
  transition-property: width, color, max-width;
}

.o-menuadm__nav-item .icon-v-style {
  color: var(--boots-nav-item-color, #59595c);
  margin-right: 0.75rem;
}

.o-menuadm__nav-item.active,
.o-menuadm__nav-item:active,
.o-menuadm__nav-item:focus,
.o-menuadm__nav-item:hover {
  --boots-nav-item-max-w: 11rem;
  color: var(--boots-nav-item-color, transparent);
  cursor: pointer;
  background: var(--bs-boots-mush, #f2f2f2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0.5rem 0.75rem;
  margin-inline: calc(var(--nav-space-pdl) / 2);
  margin-block: -0.125rem;
  border-radius: 0.5rem;
  width: 100%;
  outline: 0.0625rem solid #fff;
}

.o-menuadm__nav-item.active .icon-v-style {
  --boots-nav-item-color: #0b0c0c;
}

.o-menuadm__nav-item:hover .icon-v-style {
  --boots-nav-item-color: #59595c;
}

.o-menuadm-wrap--hover {
  overflow-x: hidden;
}

.o-menuadm-wrap--hover:hover,
.o-menuadm-wrap--hover:hover~.l-wrap-cols__content,
.o-menuadm-wrap--hover:hover~.l-wrap__content,
.o-menuadm-wrap--hover:hover~.l-wrap__content .o-menuadm-wrap--secondary {
  --boots-sidebar-w: 12.5rem;
}

.o-menuadm-wrap--hover:hover .o-menuadm__nav-item {
  --boots-nav-item-max-w: 11rem;
  --boots-nav-item-color: #0b0c0c;
}

.o-menuadm-wrap--hover:hover .o-menuadm__nav-item.active {
  --boots-nav-item-color: #0b0c0c;
}

.o-menuadm-wrap--hover:hover .o-menuadm__nav-item .icon-v-style {
  --boots-nav-item-color: #59595c;
}

.o-menuadm-wrap--hover:not(:hover) .o-menuadm__nav-item.active {
  --boots-nav-item-max-w: 2.5rem;
}

.o-menuadm-wrap--hover:hover .o-menuadm__nav-title {
  --boots-nav-item-color: #9ca2a4;
  --boots-nav-title-border: transparent;
}

body:has(.o-menuadm-wrap--hover:hover) .boots-footer {
  --boots-sidebar-w: 12.5rem;
}

.o-alert-topbar,
.o-alert-topbar__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.o-alert-topbar {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(255, 0, 0, 0.8);
  color: #fff;
  z-index: 1001;
  position: fixed;
  top: 0;
  width: 100%;
}

.o-alert-topbar__wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: var(--boots-at-my, 1.5rem);
  margin-bottom: var(--boots-at-my, 1.5rem);
}

@media (min-width: 768px) {
  .o-alert-topbar__wrap {
    --boots-at-my: 0.75rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.o-alert-topbar__wrap .boots-badge-circle {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 100%;
  bottom: 0;
  margin-bottom: -0.5rem;
  margin-left: -0.25rem;
}

.o-alert-topbar__imgs {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 0.75rem;
}

@media (min-width: 992px) {
  .o-alert-topbar__imgs {
    margin-left: 24px;
  }
}

.o-alert-topbar__cta {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-right: auto;
}

@media (min-width: 768px) {
  .o-alert-topbar__cta {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
    margin-left: 0.75rem;
  }
}

@media (min-width: 992px) {
  .o-alert-topbar__cta {
    margin-right: 0;
  }
}

.o-alert-topbar__over {
  background-color: rgba(11, 12, 12, 0.78);
  position: absolute;
  inset: 0;
}

.o-alert-topbar__btn {
  border: 0;
  padding: 0.5rem;
  margin: 0 0.5rem;
  top: 0;
  right: 0;
  position: var(--boots-at-pos, absolute);
  background-color: transparent;
}

.o-alert-topbar__btn .icon-x-thin {
  -webkit-filter: drop-shadow(0 0 0 currentColor);
  filter: drop-shadow(0 0 0 currentColor);
}

@media (min-width: 768px) {
  .o-alert-topbar__btn {
    --boots-at-pos: static;
    margin-right: -0.5rem;
  }
}

.o-alertlgpd {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9147483001;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: var(--alertlgpd-fld, column);
  flex-direction: var(--alertlgpd-fld, column);
  width: 100%;
  max-width: 100%;
  padding: var(--alertlgpd-pd, 1rem 2rem);
  font-size: clamp(12px, 2vw, 14px);
  line-height: 1.2;
  color: var(--bs-boots-black, #0b0c0c);
  background-color: var(--bs-white, #fff);
  border-top: var(--default-bd);
}

.o-alertlgpd p {
  margin-bottom: var(--alertlgpd-txtmb, 0.75rem);
}

.o-alertlgpd a {
  color: inherit;
  text-decoration: underline;
}

.o-alertlgpd a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.o-alertlgpd .btn {
  padding: 0.5rem 1rem;
  line-height: 1.2;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .o-alertlgpd {
    --alertlgpd-fld: row;
    --alertlgpd-pd: 0.5rem 1.5rem;
    --alertlgpd-txtmb: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .o-alertlgpd p {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-right: 4.375rem;
  }
}

.c-banner-full {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: height 300ms ease-in-out;
  transition: height 300ms ease-in-out;
}

.c-banner-full,
.c-banner-full__header,
.c-cardquot .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-banner-full__header {
  position: absolute;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: var(--bf-p, 3rem var(--bs-gutter-x, 1rem) 3.25rem);
  width: 100%;
  width: calc(100vw - var(--bs-gutter-x, 1rem));
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  right: 0;
  left: 0;
}

@media (min-width: 992px) {
  .c-banner-full__header {
    --bf-p: 5.5rem calc(var(--bs-gutter-x) - 1rem) 5.5rem;
  }
}

.c-banner-full.boots-container .c-banner-full__header {
  padding: var(--bf-p, 3rem 2rem 3.25rem);
  width: calc(100vw - 2rem);
}

@media (min-width: 992px) {
  .c-banner-full.boots-container .c-banner-full__header {
    --bf-p: 5.5rem 6rem 5.5rem;
    width: calc(100vw - 3rem);
  }
}

.boots-header-theme--transparent~.l-wrap .c-banner-full.on-top .c-banner-full__header {
  padding-top: 6.5rem;
}

@media (min-width: 992px) {
  .boots-header-theme--transparent~.l-wrap .c-banner-full.on-top .c-banner-full__header {
    --bf-p: 6.5rem calc(var(--bs-gutter-x) - 1.5rem) 5.5rem;
  }
}

.c-cardquot {
  --cardquot-bd: 0.5px solid #e3e7e8;
  border: var(--cardquot-bd);
  border-radius: 1rem;
  z-index: 1;
  height: 100%;
}

.c-cardquot .card-body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.c-cardquot .boots-img,
.c-cardquot__info {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.c-cardquot__info {
  padding-bottom: var(--cardquot-info-pb, 3rem);
}

.c-cardquot .boots-img {
  --bootsimg-bdrd: 0.25rem;
  max-width: var(--infoprod-img-mxw, 9.0625rem);
}

.c-cardquot .boots-img img,
.c-rowproj .boots-img img {
  width: 100%;
}

@media (max-width: 575.98px) {
  .c-cardquot .boots-img {
    margin-bottom: var(--infoprod-img-mb, 0.875rem);
  }
}

@media (min-width: 768px) {
  .c-cardquot .boots-img {
    --infoprod-img-mxw: 170px;
  }
}

.c-cardquot__listimg,
.c-cardquot__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-cardquot__title {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
}

.c-cardquot__title span {
  width: max(620px, var(--cardquot-title-w, 70vw));
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 992px) {
  .c-cardquot__title span {
    --cardquot-title-w: 25ch;
  }
}

.c-cardquot__listimg {
  margin-bottom: 0.3125rem;
}

.c-cardquot__listimg-item {
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
  margin-right: 0.5rem;
  overflow: hidden;
  border-radius: 0.25rem;
  position: relative;
}

.c-cardquot__listimg-item img {
  width: 100%;
  opacity: 0.9;
}

.c-cardquot__listimg-item::before {
  content: "";
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
  height: 100%;
  z-index: 1;
  border-radius: 0.25rem;
}

.c-cardquot__listimg-item:empty {
  --listimg-bgop: 0.05;
  background-color: rgba(0, 0, 0, var(--listimg-bgop, 1));
}

.c-cardquot__listimg-item:last-child {
  margin-right: 0;
}

.c-cardquot__btnremove {
  padding-right: 0;
  font-size: 1.25rem;
}

.c-cardquot__footer,
.c-cardquot__update {
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.c-cardquot__update {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.c-cardquot__status {
  --cardquot-status-cl: var(--bs-boots-soft-gray, $boots-soft-gray);
  color: var(--cardquot-status-cl, inherit);
  font-size: 0.75rem;
}

.c-cardquot__status--ok {
  --cardquot-status-cl: var(--bs-boots-success, #00aa4a);
}

.c-cardquot__status--waiting {
  --cardquot-status-cl: var(--bs-boots-danger, #ff0000);
}

.c-cardquot__status--canceled {
  --cardquot-status-cl: var(--bs-boots-black, #0b0c0c);
}

.c-cardquot__status [class^=" c-cardquot__status--"],
.c-cardquot__status [class^="c-cardquot__status--"] {
  color: var(--cardquot-status-cl, inherit);
}

.c-cardquot__footer {
  font-size: 0.875rem;
}

.c-cardquot__footer-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.c-cardquot__footer-btns .btn+.btn {
  margin-top: 0.875rem;
}

.c-cardquot__desc {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 0.875rem;
}

.c-cardquot__desc-title {
  color: var(--bs-boots-black, #0b0c0c);
  font-size: 0.875rem;
  font-weight: 500;
}

.c-cardquot__desc-link,
.c-cardquot__desc-txt {
  margin-bottom: 0.3125rem;
  color: var(--bs-boots-soft-gray, #9ca2a4);
  font-size: 0.75rem;
}

.c-cardquot__desc-link {
  text-decoration: none;
  font-size: inherit;
  color: inherit;
}

.c-cardquot__desc-link:active,
.c-cardquot__desc-link:hover {
  opacity: 0.8;
  color: inherit;
}

.c-cardquot__desc-obs>b {
  font-weight: 500;
  font-size: 0.75rem;
}

@media (min-width: 576px) {
  .c-cardquot__desc {
    padding-left: 1.375rem;
  }
}

.c-cardquot__btntoggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 5.3125rem;
  padding-right: 1.875rem;
  padding-left: 1.875rem;
  border-top: var(--cardquot-bd);
  border-radius: 0;
}

.c-cardquot__btntoggle span:first-child {
  display: inline;
}

.c-cardquot__btntoggle span:last-child {
  display: none;
}

.c-cardquot__btntoggle::after {
  --boots-size-icon: 1rem;
  -webkit-mask-image: var(--icon-caret-down-thin);
  mask-image: var(--icon-caret-down-thin);
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition:
    transform 0.2s ease-in-out,
    -webkit-transform 0.2s ease-in-out;
}

.c-cardquot__btntoggle[aria-expanded="true"] {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.c-cardquot__btntoggle[aria-expanded="true"] span:first-child {
  display: none;
}

.c-cardquot__btntoggle[aria-expanded="true"] span:last-child {
  display: inline;
}

.c-cardquot__btntoggle[aria-expanded="true"]::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-cardquot__btntoggle[aria-expanded="true"] .c-cardquot__values-list li {
  border-top: none;
}

.c-cardquot__values-list {
  --infbudget-values: 0.625rem;
  display: grid;
  grid-template-columns: var(--grid-column, repeat(3, 1fr));
  grid-template-rows: var(--grid-row, repeat(2, 5.3125rem));
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.c-cardquot--dtl .c-cardquot__info,
.c-cardquot__values-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.c-cardquot__values-list li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: var(--infbudget-values);
  color: #aaa;
  border-top: var(--cardquot-bd);
  border-left: var(--cardquot-bd);
  position: relative;
}

@media (max-width: 991.98px) {
  .c-cardquot__values-list li:nth-child(3n + 1) {
    border-left-color: transparent;
  }
}

@media (min-width: 992px) {
  .c-cardquot__values-list li:first-child {
    border-left: none;
  }
}

@media (max-width: 991.98px) {

  .c-cardquot__values-list--bdb:after,
  .c-cardquot__values-list--bde:after {
    content: "";
    display: block;
    position: absolute;
    background-color: var(--bs-boots-stroke, #f2f2f2);
  }

  .c-cardquot__values-list--bde:after {
    height: 100%;
    width: 0.0625rem;
    right: -0.0625rem;
  }

  .c-cardquot__values-list--bdb:after {
    width: 100%;
    height: 0.0625rem;
    right: 0;
    bottom: -0.0625rem;
  }
}

.c-cardquot__values-list-lead,
.c-cardquot__values-list-title {
  margin-bottom: 0;
}

.c-cardquot__values-list-lead {
  margin-top: 6px;
  font-size: calc(var(--infbudget-values) + 2px);
  color: var(--bs-boots-black, #0b0c0c);
}

.c-cardquot__values-list-lead b {
  font-weight: 500;
}

@media (min-width: 576px) {
  .c-cardquot__values-list {
    --infbudget-values: 0.75rem;
  }
}

@media (min-width: 992px) {
  .c-cardquot__values-list {
    --grid-column: repeat(auto-fit, minmax(100px, 1fr));
    --grid-row: 5.9375rem;
  }
}

.c-cardquot__tag {
  min-width: 7.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.125rem 0.5rem;
  margin-bottom: 0;
  font-size: 0.75rem;
  color: var(--bs-white, #fff);
  text-align: center;
  background: var(--bs-boots-soft-gray, #9ca2a4);
  border-radius: 1.25rem;
}

.c-cardquot__tag--cotacao {
  background: var(--bs-boots-yellow, #ffd400);
  color: var(--bs-boots-black, #0b0c0c);
}

.c-cardquot__tag--pronto {
  background: var(--bs-boots-cyan, #1c78ff);
}

.c-cardquot__tag--aprovado {
  background: var(--bs-boots-success, #00aa4a);
}

.c-cardquot--dtl {
  height: auto;
}

.c-cardquot--dtl .c-cardquot__info {
  padding: var(--cardquot-info-pd, 1.5625rem 1.5625rem 2.8125rem);
}

@media (min-width: 576px) {
  .c-cardquot--dtl .c-cardquot__info {
    --cardquot-info-pd: 1.25rem 1.25rem 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.c-cardquot-list>ul>li {
  margin-bottom: 1.125rem;
}

.c-cardvalue {
  padding: 1.875rem;
  border: var(--default-bd);
}

.c-cardvalue__title {
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.c-cardvalue__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 0.625rem;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.c-cardvalue__value b {
  font-weight: 400;
}

.c-cardvalue__total {
  padding-top: 2.25rem;
  margin-top: 1.375rem;
  border-top: 0.5px solid #f2f2f2;
}

.c-cardvalue__total .c-cardvalue__value,
.c-cardvalue__value b {
  color: var(--bs-boots-black, #0b0c0c);
}

.c-cardvalue__total .c-cardvalue__value b {
  font-size: 1.5rem;
}

.c-cardvalue__footer {
  display: grid;
  gap: 0.75rem;
}

.c-cardvalue__footer .btn {
  font-size: 1rem;
}

@media (min-width: 576px) {
  .c-cardvalue__footer .btn {
    font-size: 1.125rem;
  }
}

.c-cardvalue__footer-obs {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: var(--bs-boots-soft-gray, #9ca2a4);
  text-align: center;
}

.c-card-creative {
  border: var(--default-bd);
  border-radius: 0.5rem;
  height: 100%;
  overflow: hidden;
}

.c-card-creative-wrap {
  padding: 0 1.5rem 1.5rem;
}

.c-card-creative-wrapimg {
  height: 7.5rem;
  overflow: hidden;
}

@media (min-width: 576px) {
  .c-card-creative-wrapimg {
    height: 9.5rem;
  }
}

.c-card-creative-listimg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow: hidden;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  gap: 0.25rem;
}

.c-card-creative-listimg__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 7.5rem;
}

@media (min-width: 576px) {
  .c-card-creative-listimg__item {
    height: 9.5rem;
  }
}

.c-card-creative-listimg__item::after {
  content: "";
  z-index: 2;
  background-color: var(--bs-boots-soft-gray, #0b0c0c);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.05;
}

.c-card-creative-listimg__item--no-img::after {
  opacity: 0.03;
}

.c-card-creative-listimg picture {
  display: block;
  overflow: hidden;
  border-radius: 0.5rem 0.5rem 0 0;
  position: relative;
}

.c-card-creative-listimg picture::after {
  background-color: var(--bs-boots-soft-gray, #9ca2a4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.c-card-creative .img-fluid {
  opacity: 0.92;
  position: relative;
  z-index: 2;
}

.c-card-creative .boots-avatar {
  width: 5.5rem;
  height: 5.5rem;
  margin-top: -2.75rem;
  border: 0.125rem solid var(--bs-white, #fff);
}

.c-card-creative .badge {
  top: 1rem;
  left: 1rem;
  position: absolute;
  z-index: 3;
}

.c-card-creative__name {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--bs-boots-black, #0b0c0c);
  margin-bottom: 1.5rem;
  margin-top: 1.25rem;
}

.c-card-creative__desc {
  color: var(--bs-boots-soft-gray, #9ca2a4);
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0;
}

.c-card-creative__link,
.c-filter-letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-card-creative__link {
  text-decoration: none;
  text-align: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.c-filter-letter {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  overflow-x: scroll;
  scrollbar-width: none;
  gap: 0.5rem;
}

.c-filter-letter::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .c-filter-letter {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow-x: initial;
    max-width: 43.375rem;
  }
}

.c-filter-letter__item {
  list-style: none;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 3rem;
  flex: 0 0 3rem;
}

@media (min-width: 768px) {
  .c-filter-letter__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.5rem;
    flex: 0 0 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .c-filter-letter__item:first-child {
    margin-left: 1rem;
  }

  .c-filter-letter__item:last-child {
    margin-right: 1rem;
  }
}

.c-filter-letter__link {
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  font-size: 1rem;
  line-height: 3rem;
  border-radius: 0.25rem;
  height: 3rem;
  background-color: var(--bs-boots-mush, #f2f2f2);
  color: var(--bs-boots-black, #0b0c0c);
  text-align: center;
}

@media (min-width: 768px) {
  .c-filter-letter__link {
    height: 2.5rem;
    line-height: 2.5rem;
  }
}

.c-filter-letter__link:focus,
.c-filter-letter__link:hover {
  background-color: var(--bs-boots-off-white, #fafafa);
  color: var(--bs-boots-black, #0b0c0c);
}

.c-filter-letter__link.is-selected {
  background-color: var(--bs-boots-yellow, #ffd400);
  color: var(--bs-boots-black, #0b0c0c);
}

.c-rowproj {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--rowproj-pd, 1rem);
  text-decoration: none;
  background-color: #fafafa;
  min-height: 8.875rem;
}

.c-rowproj__list,
.c-rowproj__title {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}

.c-rowproj__title {
  margin-bottom: var(--rowproj-title-mb, 2.5rem);
  font-weight: 400;
  color: var(--bs-boots-gray, #59595c);
  font-size: 1.5rem;
  padding-top: var(--rowproj-title-pt, 0.75rem);
}

@media (min-width: 992px) {
  .c-rowproj__title {
    --rowproj-title-mb: 0;
    --rowproj-title-pt: 0;
  }
}

.c-rowproj__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (min-width: 992px) {
  .c-rowproj__list {
    grid-template-columns: repeat(auto-fit, clamp(3rem, 8vw, 6.25rem));
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

.c-rowproj__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-rowproj__details {
  padding-top: var(--rowproj-detail-pt, 0.625rem);
  font-size: var(--rowproj-detail-fz, 0.75rem);
  color: #aaa;
}

.c-rowproj__details>div {
  display: grid;
}

.c-rowproj__details .form-control {
  width: 2.875rem;
  height: 2rem;
  padding: 0 0.5rem;
}

.c-rowproj__details b {
  font-size: 0.875rem;
  font-weight: 400;
  color: #0b0c0c;
}

.c-rowproj__details-btndel {
  -ms-flex-item-align: end;
  align-self: end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.c-rowproj__details-btndel .btn {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.375rem;
  line-height: 1.4;
}

.c-rowproj__details-btndel .btn:hover {
  color: #9ca2a4;
}

@media (max-width: 991.98px) {
  .c-rowproj__details::before {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    background-color: #efefef;
    -webkit-transform: translateY(-0.625rem);
    transform: translateY(-0.625rem);
  }
}

.c-rowproj__box,
.c-rowproj__box-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-rowproj__box {
  padding-bottom: 1.5625rem;
}

.c-rowproj__box .boots-img {
  width: 4.25rem;
  height: 4.25rem;
}

.c-rowproj__box-link {
  color: #0b0c0c;
  text-decoration: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-rowproj__box-link:hover {
  color: #0b0c0c;
  opacity: 0.6;
}

.c-rowproj__box-info {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-left: 0.625rem;
}

.c-rowproj__box-info p,
.c-rowproj__box-info-prodname {
  margin-bottom: 0;
  font-size: 0.875rem;
}

.c-rowproj__box-info-desc {
  color: #9ca2a4;
}

.c-rowproj__box-info-price {
  margin-top: 0.625rem;
}

@media (min-width: 992px) {
  .c-rowproj__box {
    padding-bottom: 0;
  }

  .c-rowproj {
    --rowproj-pd: 1.25rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-rowproj--itemdtl {
  display: block;
  min-height: 6.875rem;
}

.c-resumeprods {
  --checkout-prods-pb: 22px;
  --checkout-prods-card-mb: 12px;
  --header-global-pd: clamp(20px, 3.8vw, 30px);
  padding-bottom: var(--checkout-prods-pb);
}

.c-resumeprods .c-cardquot-list>ul>li,
.c-resumeprods_header {
  margin-bottom: var(--checkout-prods-card-mb);
}

.c-resumeprods_header-wrap {
  --wrap-flexd: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: var(--wrap-flexd);
  flex-direction: var(--wrap-flexd);
  padding: var(--header-global-pd);
}

@media (min-width: 992px) {
  .c-resumeprods_header-wrap {
    --wrap-flexd: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.c-resumeprods-title {
  --header-title-mb: 20px;
  margin-bottom: var(--header-title-mb);
  font-size: 1rem;
  font-weight: 400;
  color: var(--bs-boots-black, #0b0c0c);
}

@media (min-width: 992px) {
  .c-resumeprods-title {
    --header-title-mb: 0;
    -ms-flex-preferred-size: 58%;
    flex-basis: 58%;
    margin-bottom: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.c-resumeprods-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.c-resumeprods-list li {
  --list-li-ml: 8px;
  margin-left: var(--list-li-ml);
}

.c-resumeprods-list li:first-child {
  --list-li-ml: 0;
}

.c-resumeprods-list li img {
  border-radius: 2px;
}

@media (max-width: 991.98px) {
  .c-resumeprods-list li {
    --list-li-ml: 14px;
  }
}

.c-resumeprods_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: var(--header-global-pd);
  font-size: 12px;
  color: var(--bs-boots-soft-gray, #9ca2a4);
  background-color: inherit;
  border: 0;
  border-top: var(--default-bd);
  border-radius: 0;
}

.c-resumeprods_btn[aria-expanded="false"] span:first-child,
.c-resumeprods_btn[aria-expanded="true"] span:last-child {
  --btn-span-show: flex;
}

.c-resumeprods_btn:active,
.c-resumeprods_btn:focus,
.c-resumeprods_btn:hover {
  color: var(--bs-boots-soft-gray, #9ca2a4);
  background-color: inherit;
}

.c-resumeprods_btn span {
  --btn-span-show: none;
  display: var(--btn-span-show);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-resumeprods_btn span i {
  --boots-size-icon: 2.75rem;
  margin: 0 !important;
  font-size: 45px;
  line-height: 0;
  color: var(--bs-boots-black, #0b0c0c);
  -webkit-transform: translateX(11px);
  transform: translateX(11px);
}

.c-resumeprods .c-cardquot-list>ul>li:last-child {
  --checkout-prods-card-mb: 0;
}

@media (min-width: 992px) {
  .c-resumeprods {
    --checkout-prods-pb: 26px;
    --checkout-prods-card-mb: 20px;
  }
}

.c-checkresume {
  position: relative;
}

@media (min-width: 992px) {
  .c-checkresume__btn {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .c-checkresume__btn {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    height: 3.3125rem;
    font-size: 0.75rem;
    color: var(--bs-boots-soft-gray, #9ca2a4);
    background-color: var(--bs-white, #fff);
    border: var(--default-bd);
    border-radius: 0.25rem;
  }

  .c-checkresume__btn span,
  .c-checkresume__btn-value {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .c-checkresume__btn span {
    padding-left: 0.9375rem;
  }

  .c-checkresume__btn b {
    display: none;
    font-weight: 400;
  }

  .c-checkresume__btn .icon-v-style {
    font-size: 2rem;
    color: var(--bs-boots-black, #0b0c0c);
  }

  .c-checkresume__btn-value {
    padding-right: 0.9375rem;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--bs-boots-black, #0b0c0c);
  }

  .c-checkresume__btn:focus {
    outline: 0;
  }

  .c-checkresume__btn[aria-expanded="false"]>span b:first-child {
    display: block;
  }

  .c-checkresume__btn[aria-expanded="true"] {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .c-checkresume__btn[aria-expanded="true"] b+b {
    display: block;
  }

  .c-checkresume__btn[aria-expanded="true"] .icon-v-style::before {
    content: "\e939";
  }

  .c-checkresume+.collapse.in .c-cardvalue {
    border-top-color: transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

.c-checkresume .c-cardvalue {
  position: relative;
  top: -1px;
  z-index: 1;
  margin-bottom: 0.9375rem;
}

.c-checkresume__showpay {
  --boocard-pd: 1.5625rem 1.875rem;
  --boocard-mgbottom: 0;
  background-color: var(--bs-white, #fff);
}

.c-checkresume__showpay .card-body {
  padding: 1.75rem 1.875rem;
}

.c-checkresume__showpay-title {
  margin-bottom: 0.9375rem;
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 400;
  color: var(--bs-boots-black, #0b0c0c);
}

.c-checkresume__showpay-card {
  font-size: 16px;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.c-checkresume__showpay-card img {
  width: 3.25rem;
  margin-right: 0.625rem;
}

.c-checkresume__showpay-card span {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.c-checkresume__showpay-val {
  margin-bottom: 0;
  color: var(--bs-boots-black, #0b0c0c);
}

@media (min-width: 992px) {
  .c-checkresume .collapse {
    position: sticky;
    top: 100px;
  }
}

.c-paynavs {
  margin-bottom: 2.1875rem;
}

.c-paynavs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: var(--paynavs-direct, column);
  flex-direction: var(--paynavs-direct, column);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  border-bottom: none;
}

@media (min-width: 992px) {
  .c-paynavs ul {
    --paynavs-direct: row;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
  }
}

.c-paynavs li {
  --paynavs-li-mb: 1.125rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
  margin-bottom: var(--paynavs-li-mb);
}

.c-paynavs li:last-child {
  --paynavs-li-mb: 0;
}

.c-paynavs li.c-paynavs-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48%;
  flex: 0 0 48%;
}

.c-paynavs li.c-paynavs-item-row,
.c-paynavs--panels li {
  -webkit-box-flex: 1;
  -ms-flex: 1 100%;
  flex: 1 100%;
}

.c-paynavs--panels ul {
  display: block;
}

.c-paynavs--panels li {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.c-paynavs--panels .alert {
  font-size: 0.875rem;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.c-paynavs--panels .paynavs_btn {
  width: 100%;
}

.c-paynavs--panels .paynavs_btn[aria-expanded="true"] {
  border-bottom: none;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.c-paynavs--panels .paynavs_btn[aria-expanded="true"]>.paynavs_checked,
.paynavs_btn.active .paynavs_checked {
  visibility: visible;
  opacity: 1;
}

.paynavs_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  min-height: 71px;
  padding: var(--paybtn-pd, 10px 22px);
  font-size: 16px;
  color: #0b0c0c;
  text-decoration: none;
  cursor: pointer;
  background-color: transparent;
  border: var(--default-bd);
  border-radius: 4px;
}

.paynavs_btn:active,
.paynavs_btn:focus,
.paynavs_btn:hover {
  color: var(--bs-boots-black, #0b0c0c);
  text-decoration: none;
}

.paynavs_btn--check {
  position: relative;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.paynavs_btn--check input,
.paynavs_btn--radio input {
  position: absolute;
  visibility: hidden;
}

.paynavs_btn--check .paynavs_txt {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.paynavs_checked,
.paynavs_cvv {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 100ms ease-out;
  transition: opacity 100ms ease-out;
}

.paynavs_checked {
  font-size: 20px;
}

.paynavs_txt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}

.paynavs_txt i {
  --boots-size-icon: 2rem;
  font-size: 35px;
  visibility: visible;
  opacity: 1;
}

.paynavs_txt i,
.paynavs_txt_cardimg {
  margin-right: 10px;
}

.paynavs_cvv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: var(--paycvv-basis, 100%);
  flex-basis: var(--paycvv-basis, 100%);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.paynavs_cvv .form-group {
  margin-right: 28px;
  margin-bottom: 0;
}

.paynavs_cvv i {
  font-size: 18px;
  color: var(--bs-boots-gray, #59595c);
}

.paynavs_cvv .paynavs_checked {
  color: inherit;
}

@media (min-width: 768px) {
  .paynavs_cvv {
    --paycvv-basis: 40%;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (max-width: 991.98px) {
  .paynavs_cvv {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-top: var(--default-bd);
  }
}

@media (max-width: 1199.98px) {
  .paynavs_cvv {
    padding: 18px 22px;
  }
}

.paynavs-credpro-money {
  margin-bottom: 0;
}

.paynavs-credpro-money span {
  display: block;
  font-size: 14px;
  color: #b0b0b1;
}

@media (max-width: 575.98px) {
  .paynavs-credpro-money span {
    font-size: 12px;
  }
}

.paynavs_btn--credpro.has-credpro,
.paynavs_btn.active {
  background-color: var(--bs-boots-mush, #f2f2f2);
}

.paynavs_btn--radio {
  position: relative;
}

.paynavs_btn--radio input {
  top: 0;
  left: 0;
}

.paynavs_btn--radio input:checked+.icon-v-style {
  visibility: visible;
  opacity: 1;
}

.paynavs_btn--credpro:not(li) {
  margin-bottom: 1.125rem;
}

.paynavs_btn--credpro.has-credpro .paynavs_checked {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

.paynavs_btn--credpro .paynavs_txt {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.choicecards {
  margin-bottom: 0;
}

.choicecards ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.choicecards li {
  --choice-card-mb: 18px;
  margin-bottom: var(--choice-card-mb);
  text-align: right;
}

.choicecards li:last-child {
  --choice-card-mb: 0;
}

.choicecards_card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
  text-align: left;
}

.choicecards_card .iradio_minimal,
.choicecards_card input[type="radio"] {
  position: absolute;
  visibility: hidden;
}

.choicecards_card .checked+.paynavs_btn,
.choicecards_card input[type="radio"]:checked+.paynavs_btn {
  background-color: #fbfbfb;
}

.choicecards_card .checked+.paynavs_btn .paynavs_checked,
.choicecards_card .checked+.paynavs_btn .paynavs_cvv,
.choicecards_card input[type="radio"]:checked+.paynavs_btn .paynavs_checked,
.choicecards_card input[type="radio"]:checked+.paynavs_btn .paynavs_cvv {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 100ms ease-in;
  transition: opacity 100ms ease-in;
}

@media (max-width: 991.98px) {

  .choicecards_card .checked+.paynavs_btn .paynavs_txt::after,
  .choicecards_card input[type="radio"]:checked+.paynavs_btn .paynavs_txt::after {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 100ms ease-in;
    transition: opacity 100ms ease-in;
  }

  .choicecards_card .checked+.paynavs_btn .paynavs_cvv,
  .choicecards_card input[type="radio"]:checked+.paynavs_btn .paynavs_cvv {
    --cvv-border: var(--default-bd);
    height: auto;
    padding: 23px 22px 18px;
    -webkit-transition: -webkit-transform 150ms ease-in;
    transition: transform 150ms ease-in;
    transition:
      transform 150ms ease-in,
      -webkit-transform 150ms ease-in;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

.choicecards_card .paynavs_btn {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  min-height: 86px;
}

@media (max-width: 1199.98px) {
  .choicecards_card .paynavs_btn {
    --paybtn-pd: 0;
    position: relative;
  }
}

.choicecards_card .paynavs_txt {
  display: inline-block;
  -ms-flex-preferred-size: var(--paytxt-basis, 100%);
  flex-basis: var(--paytxt-basis, 100%);
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .choicecards_card .paynavs_txt::after {
    position: absolute;
    right: 22px;
    margin-top: -4px;
    font-family: "ico-v-style";
    font-size: 20px;
    content: "\e91c";
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 100ms ease-out;
    transition: opacity 100ms ease-out;
  }
}

@media (min-width: 992px) {
  .choicecards_card .paynavs_txt {
    --paytxt-basis: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 1199.98px) {
  .choicecards_card .paynavs_txt {
    position: relative;
    display: block;
    padding: 30px 22px;
  }
}

@media (max-width: 991.98px) {
  .choicecards_card .paynavs_checked {
    display: none;
  }
}

.choicecards_card .paynavs_cvv .boots-form-floating-group {
  margin-right: 1.75rem;
}

@media (max-width: 991.98px) {
  .choicecards_card .paynavs_cvv {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    --cvv-border: none;
    height: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transition: -webkit-transform 300ms ease-out;
    transition: transform 300ms ease-out;
    transition:
      transform 300ms ease-out,
      -webkit-transform 300ms ease-out;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top;
    transform-origin: top;
  }
}

.choicecards_card_delete {
  padding: 5px 0 0 5px;
  margin-right: auto;
  font-size: 12px;
  text-decoration: underline;
  background-color: transparent;
}

.choicecards_card_delete:active,
.choicecards_card_delete:hover {
  text-decoration: none;
}

.c-varpill {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.25rem 1rem 0.25rem 0.5rem;
  background: #fff;
  -webkit-box-shadow: 0.1875rem 0.375rem 1.875rem rgba(0, 0, 0, 0.06);
  box-shadow: 0.1875rem 0.375rem 1.875rem rgba(0, 0, 0, 0.06);
  line-height: 1.25;
  border-radius: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: var(--varpill-ma-w, 15.75rem);
  -webkit-transition:
    all 387ms cubic-bezier(0.264, 0.31, 0.25, 1),
    opacity 0s;
  transition:
    all 387ms cubic-bezier(0.264, 0.31, 0.25, 1),
    opacity 0s;
  z-index: var(--varpill-item);
}

.c-varpill:first-child {
  z-index: 10;
  width: 100%;
}

.is-open:not(.is-loading) .c-varpill:first-child {
  z-index: 0;
}

.c-varpill.is-hide {
  -webkit-transform: translateY(calc(-2.5rem * var(--varpill-item)));
  transform: translateY(calc(-2.5rem * var(--varpill-item)));
  opacity: 0;
  pointer-events: none;
  z-index: -1 !important;
}

.pswp__custom-caption .c-varpill.is-hide {
  -webkit-transform: translateY(calc(2.5rem * var(--varpill-item)));
  transform: translateY(calc(2.5rem * var(--varpill-item)));
}

.c-varpill.is-hide.is-loading {
  -webkit-transition: all 368ms cubic-bezier(0.266, 0.326, 0.25, 1);
  transition: all 368ms cubic-bezier(0.266, 0.326, 0.25, 1);
  opacity: 1;
}

.c-varpill.is-show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.c-varpill__wrapper {
  max-height: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.pswp__custom-caption .c-varpill__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

:not(.is-open)>.c-varpill__wrapper {
  max-height: 2rem;
}

.is-loading .c-varpill__wrapper,
.is-open .c-varpill__wrapper {
  height: auto;
  max-height: 100%;
  padding: 1.5625rem;
  margin: -1.5625rem -1.5625rem 2.5rem;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.pswp__custom-caption .is-loading .c-varpill__wrapper,
.pswp__custom-caption .is-open .c-varpill__wrapper {
  margin: 2.5rem -1.5625rem -1.5625rem;
}

.is-loading .c-varpill__wrapper::-webkit-scrollbar,
.is-open .c-varpill__wrapper::-webkit-scrollbar {
  display: none;
}

@media (min-width: 992px) {
  .c-varpill {
    --varpill-ma-w: 23.5rem;
  }
}

.c-varpill__btn,
.c-varpill__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pswp__custom-caption .c-varpill__nav {
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.c-varpill__btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  outline: 0;
  padding: 0;
  border-radius: 100%;
  width: 2rem;
  height: 2rem;
  color: var(--varpill-btn-color, #0b0c0c);
  background-color: var(--varpill-btn-bg, #fff);
  overflow: hidden;
  position: relative;
  -webkit-transition:
    background-color 0.2s ease-in,
    -webkit-transform 0.4s ease-in;
  transition:
    background-color 0.2s ease-in,
    transform 0.4s ease-in;
  transition:
    background-color 0.2s ease-in,
    transform 0.4s ease-in,
    -webkit-transform 0.4s ease-in;
}

.c-varpill__btn-icon,
.c-varpill__btn-text {
  position: absolute;
  inset: 0;
  margin: auto;
  -webkit-transform: translateY(0.75rem);
  transform: translateY(0.75rem);
  -webkit-transition:
    all 0.4s ease-in-out,
    color 0.1s ease;
  transition:
    all 0.4s ease-in-out,
    color 0.1s ease;
}

.c-varpill__btn-icon {
  opacity: 0;
}

.c-varpill__btn-text {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  line-height: 2rem;
}

.is-open .c-varpill__btn,
.is-open .c-varpill__btn-icon {
  --varpill-btn-bg: #0b0c0c;
  --varpill-btn-color: #fff;
  opacity: 1;
}

.is-open .c-varpill__btn-icon {
  -webkit-transform: translateY(0) scale(1.0666666667);
  transform: translateY(0) scale(1.0666666667);
}

.is-open .c-varpill__btn {
  -webkit-transform: scale(0.9375);
  transform: scale(0.9375);
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.pswp__custom-caption .is-open .c-varpill__btn {
  border: 0.0625rem solid #fff;
}

.is-open .c-varpill__btn-text {
  opacity: 0;
  -webkit-transform: translateY(0.25rem);
  transform: translateY(0.25rem);
}

.l-wrap,
.l-wrap-checkout,
.l-wrap-cols__content {
  padding-top: var(--wrap-pt, 2.5rem);
  padding-bottom: var(--wrap-pb, 4.0625rem);
}

@media (min-width: 992px) {

  .l-wrap,
  .l-wrap-checkout,
  .l-wrap-cols__content {
    --wrap-pb: 2.8125rem;
    min-height: calc(100vh - 12.5rem);
  }
}

.l-wrap {
  --wrap-pt: 4.5rem;
}

@media (min-width: 992px) {
  .l-wrap {
    --wrap-pt: 5.5rem;
  }
}

.l-wrap-cols__content {
  --wrap-pt: 1.25rem;
  padding-top: var(--wrap-pt, 1.5rem);
  padding-bottom: var(--wrap-content-pb, 4rem);
  grid-column-start: var(--wrap-content-col, 1);
  margin-left: var(--boots-sidebar-w);
  -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-property: margin-left;
  transition-property: margin-left;
}

.l-wrap.l-wrap-cols {
  padding-top: var(--wrap-pt, 4.5rem);
  -webkit-column-gap: var(--bs-gutter-x);
  -moz-column-gap: var(--bs-gutter-x);
  column-gap: var(--bs-gutter-x);
}

@media (min-width: 992px) {
  .l-wrap-cols__content {
    --wrap-content-pb: 2.8125rem;
    --wrap-pt: 1.25rem;
    --boots-sidebar-w: 4rem;
  }

  .l-wrap-cols {
    --wrap-pt: 5.5rem;
    --wrap-content-col: 2;
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .l-wrap-cols+.boots-footer {
    -webkit-transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition-property: padding-left;
    transition-property: padding-left;
    padding-left: var(--boots-sidebar-w, 4rem);
  }
}

.l-wrap-checkout {
  --wrap-pt: 11.125rem;
}

@media (min-width: 992px) {
  .l-wrap-checkout {
    --wrap-pt: 8.75rem;
  }
}

.l-category__hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: var(--category-hero-h, 40vw);
  min-height: 12.5rem;
}

.l-category__hero-imgwrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
}

.l-category__hero-imgwrap img {
  width: inherit;
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-category__hero-text {
  position: relative;
  z-index: 2;
  max-width: initial;
  margin-bottom: 0;
  font-size: var(--category-hero-fz, 9vw);
  font-weight: 700;
  line-height: 3.375rem;
  color: var(--bs-white, #fff);
  text-align: center;
}

@media (min-width: 768px) {
  .l-category__hero-text {
    --category-hero-fz: 8.5vw;
    line-height: 4.6875rem;
  }
}

@media (min-width: 992px) {
  .l-category__hero-text {
    --category-hero-fz: 5rem;
  }
}

@media (min-width: 768px) {
  .l-category__hero {
    --category-hero-h: 18.75rem;
  }
}

@media (min-width: 992px) {
  .l-category__hero {
    --category-hero-h: 25rem;
  }

  .l-category__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.l-category__controls {
  display: none;
}

@media (min-width: 992px) {
  .l-category__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.l-category__btn-clean,
.l-category__btn-hide {
  padding: 0;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

@media (min-width: 992px) {

  .l-category__btn-clean,
  .l-category__btn-hide {
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 300ms ease-in 0s;
    transition: opacity 300ms ease-in 0s;
  }
}

.l-category__btn-clean {
  font-size: 0.875rem;
  text-align: left;
  text-decoration: underline;
}

.l-category__btn-clean:active,
.l-category__btn-clean:focus,
.l-category__btn-clean:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .l-category__btn-clean {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .l-category__btn-hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--bs-boots-soft-gray, #9ca2a4);
    border-bottom: 0.5px solid #f2f2f2;
    border-radius: 0;
  }
}

.l-category__btn-showdesk,
.l-product-feature-image figcaption,
.product-feature-image figcaption {
  display: none;
}

@media (min-width: 992px) {
  .l-category__btn-showdesk {
    position: absolute;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 0.875rem;
    opacity: 1;
    -webkit-transition: opacity 300ms ease-in 0s;
    transition: opacity 300ms ease-in 0s;
    -webkit-transform: rotate(-90deg) translate(-1.875rem, -1.625rem);
    transform: rotate(-90deg) translate(-1.875rem, -1.625rem);
  }

  .l-category__btn-showdesk .icon-v-style {
    --boots-size-icon: 1.25rem;
    margin-left: 0.3125rem;
  }
}

.l-category__btn-close {
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #0b0c0c;
  margin: 1rem;
  position: fixed;
  pointer-events: none;
}

@media (min-width: 992px) {
  .l-category__btn-close.btn {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .l-category__filter {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6001;
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: var(--bs-white, #fff);
    opacity: 0;
    margin-top: -0.5rem;
    -webkit-transition:
      height 0.01s ease-in,
      opacity 0.3s ease-in,
      margin 0.3s ease-in;
    transition:
      height 0.01s ease-in,
      opacity 0.3s ease-in,
      margin 0.3s ease-in;
  }
}

@media (min-width: 992px) {
  .l-category__filter {
    -ms-flex-preferred-size: 3rem;
    flex-basis: 3rem;
    -webkit-transition: -webkit-flex-basis 80ms cubic-bezier(0.264, 0.31, 0.25, 1);
    transition: flex-basis 80ms cubic-bezier(0.264, 0.31, 0.25, 1);
    transition:
      flex-basis 80ms cubic-bezier(0.264, 0.31, 0.25, 1),
      -webkit-flex-basis 80ms cubic-bezier(0.264, 0.31, 0.25, 1),
      -ms-flex-preferred-size 80ms cubic-bezier(0.264, 0.31, 0.25, 1);
  }

  .l-category__filter .accordion,
  .l-category__filter .tgl-btn-v-style {
    width: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 300ms ease-in 0s;
    transition: opacity 300ms ease-in 0s;
  }
}

.l-category__accordions .boots-accordion-button {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
  font-size: 1.25rem;
  font-weight: 500;
}

@media (min-width: 992px) {
  .l-category__accordions .boots-accordion-button {
    padding: 1.25rem 0;
    font-size: 0.875rem;
  }

  .l-category__accordions .accordion-body {
    padding-right: 0;
    padding-left: 0;
  }
}

.l-category__accordions .boots-badgelist {
  margin-bottom: 1.875rem;
}

.l-category__form {
  margin-bottom: 1.25rem;
}

.l-category__form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-category__form .form-label {
  font-size: 0.875rem;
}

.l-category__form-separator {
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
}

.l-category__form .form-label,
.l-category__form .input-group-text {
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.l-category__form .btn:last-child {
  margin-left: 0.5rem;
}

.l-category__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.l-category__content-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-left: 0;
  font-size: 0.875rem;
  color: var(--bs-boots-black, #0b0c0c);
}

.l-category__content-btn .icon-v-style {
  --boots-size-icon: 2rem;
}

@media (min-width: 992px) {
  .l-category__content {
    padding-left: 1.875rem;
  }
}

@media (max-width: 991.98px) {
  .l-category__content .row div:first-child {
    border-right: var(--default-bd);
  }
}

.l-category__content-header {
  margin-bottom: var(--content-header-mb, 1.25rem);
}

@media (max-width: 991.98px) {
  .l-category__content-header::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 0.5px;
    content: "";
    background-color: var(--bs-boots-stroke, #f2f2f2);
  }
}

@media (min-width: 992px) {
  .l-category__content-header .boots-badgelist {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .l-category__content-header .form-select {
    height: 100%;
    font-size: 0.875rem;
    color: var(--bs-boots-black, #0b0c0c);
    border-color: transparent;
    border-radius: 0;
    background-position: right center;
  }

  .l-category__content-header .form-select:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

@media (min-width: 992px) {
  .l-category__content-header {
    --content-header-mb: 2.1875rem;
  }
}

.l-category__navbar {
  position: fixed;
  width: 100%;
  padding: 1rem;
  z-index: 5;
  -webkit-transform: translateY(5rem);
  transform: translateY(5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.75rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 600ms cubic-bezier(0.264, 0.31, 0.25, 1);
  transition: all 600ms cubic-bezier(0.264, 0.31, 0.25, 1);
}

.l-category__navbar.is-open {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .is-openfilter .l-category__filter {
    height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    opacity: 1;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .is-openfilter .l-category__filter {
    -ms-flex-preferred-size: 14.375rem;
    flex-basis: 14.375rem;
  }

  .is-openfilter .l-category__btn-clean,
  .is-openfilter .l-category__btn-hide,
  .is-openfilter .l-category__filter .accordion,
  .is-openfilter .l-category__filter .tgl-btn-v-style {
    width: 100%;
    overflow: hidden;
    opacity: 1;
    -webkit-transition: opacity 300ms ease-in 0s;
    transition: opacity 300ms ease-in 0s;
  }

  .is-openfilter .l-category__btn-clean,
  .is-openfilter .l-category__btn-hide {
    height: auto;
    overflow: auto;
  }
}

.is-openfilter .l-category__btn-close {
  pointer-events: initial;
}

@media (min-width: 992px) {
  .is-openfilter .l-category__btn-showdesk {
    opacity: 0;
    -webkit-transition: opacity 300ms ease-in 0s;
    transition: opacity 300ms ease-in 0s;
    display: none;
  }
}

@media (max-width: 991.98px) {
  .is-openfilter {
    overflow: hidden;
  }
}

.l-category .boots-gridprod li {
  --gridprod-row-mb: 0;
  -ms-flex-preferred-size: initial;
  flex-basis: initial;
}

.l-category .accordion-item .boots-badge-simple:not(.is-selected) {
  background-color: inherit;
}

@media (min-width: 992px) {
  .l-category__content-header.position-sticky--header {
    position: static;
  }
}

.l-favorite {
  padding-top: var(--space-container-pdt, 1.875rem);
}

.l-favorite__mylists {
  margin-right: auto;
  margin-left: auto;
}

.l-favorite__mylists .btn-boots-action {
  --btnaction-bgc-hv: #f2f2f2;
  position: absolute;
  right: calc((var(--bs-gutter-x) * 0.5) + 0.75rem);
  top: 0.75rem;
  z-index: 1;
  display: none;
  aspect-ratio: 1;
  width: auto;
}

.l-favorite__mylists-btncreate .btn,
.l-favorite__mylists-images__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0.75rem;
}

.l-favorite__mylists-btncreate .btn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  border: 0.5px solid #f2f2f2;
  aspect-ratio: 1;
}

.l-favorite__mylists-images.no-product a {
  background-color: #fff;
}

.l-favorite__mylists-images__link {
  opacity: 1;
  -webkit-transition: opacity ease-in-out 0.3s;
  transition: opacity ease-in-out 0.3s;
  background-color: #fff;
  text-decoration: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.l-favorite__mylists-images__link:hover {
  opacity: 0.6;
}

.l-favorite__mylists-images__link:active {
  opacity: 0.5;
}

.l-favorite__mylists-images__item {
  max-width: calc(50% - 0.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
  overflow: hidden;
}

.l-favorite__mylists-images img {
  width: 100%;
  border-radius: 0;
  scale: 2;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-favorite__mylists li {
  position: relative;
  margin-bottom: 2rem;
}

.l-favorite__mylists li:focus .btn-boots-action,
.l-favorite__mylists li:hover .btn-boots-action {
  display: block;
}

@media (max-width: 991.98px) {
  .l-favorite__mylists li .btn-boots-action {
    display: block;
  }
}

.l-favorite--empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--bs-boots-soft-gray, #9ca2a4);
  text-align: center;
}

.l-favorite--empty .icon-heart {
  margin-left: 0.25rem;
  color: var(--bs-danger, #ff0000);
}

.l-creative,
.l-designer {
  padding-top: var(--space-container-pdt, 1.875rem);
}

.l-creative__header,
.l-designer__header {
  max-width: 61.25rem;
  margin-right: auto;
  margin-bottom: 3.625rem;
  margin-left: auto;
  text-align: center;
}

.l-creative__header .boots-avatar,
.l-designer__header .boots-avatar {
  margin-bottom: 1rem;
}

.l-creative__header-name,
.l-designer__header-name {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-weight: 500;
  color: var(--bs-boots-black, #0b0c0c);
}

.l-creative__header .btn,
.l-designer__header .btn {
  padding: 0;
  font-size: 1.875rem;
}

.l-creative__header-content,
.l-designer__header-content {
  line-height: 1.2;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.l-creative-filter-btn .btn.is-selected,
.l-designer-filter-btn .btn.is-selected {
  background-color: var(--bs-boots-yellow, #ffd400);
  color: var(--bs-boots-black, #0b0c0c);
}

.l-product-feature-image,
.product-feature-image {
  background-color: #fff;
  display: block;
}

.l-product-feature-image:hover,
.product-feature-image:hover {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.l-product-boxview,
.product-boxview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.l-product-boxview_wrapimg,
.product-boxview_wrapimg {
  max-width: 100%;
  padding-bottom: var(--pb-wrapimg, 2rem);
}

.l-product-boxview_wrapimg img:not(.rounded-pill),
.product-boxview_wrapimg img:not(.rounded-pill) {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  display: block;
  aspect-ratio: var(--prod-ratio-img, 1/1);
  width: var(--prod-img-w, 21.25rem);
  height: var(--prod-img-h, 21.25rem);
}

@media (min-width: 768px) {

  .l-product-boxview_wrapimg img:not(.rounded-pill),
  .product-boxview_wrapimg img:not(.rounded-pill) {
    --prod-img-w: 25rem;
    --prod-img-h: 25rem;
  }
}

@media (min-width: 992px) {

  .l-product-boxview_wrapimg img:not(.rounded-pill),
  .product-boxview_wrapimg img:not(.rounded-pill) {
    --prod-img-w: 32.1875rem;
    --prod-img-h: 26.9375rem;
    --prod-ratio-img: 515 / 431;
  }
}

@media (min-width: 1200px) {

  .l-product-boxview_wrapimg img:not(.rounded-pill),
  .product-boxview_wrapimg img:not(.rounded-pill) {
    --prod-img-w: 41.375rem;
    --prod-img-h: 34.625rem;
    --prod-ratio-img: 662 / 554;
  }
}

@media (min-width: 1400px) {

  .l-product-boxview_wrapimg img:not(.rounded-pill),
  .product-boxview_wrapimg img:not(.rounded-pill) {
    --prod-img-w: 49.25rem;
    --prod-img-h: 41.25rem;
    --prod-ratio-img: 788 / 660;
  }
}

@media (min-width: 992px) {

  .l-product-boxview_wrapimg,
  .product-boxview_wrapimg {
    --pb-wrapimg: 0;
    max-width: 32.1875rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (min-width: 1200px) {

  .l-product-boxview_wrapimg,
  .product-boxview_wrapimg {
    max-width: 41.375rem;
  }
}

@media (min-width: 1400px) {

  .l-product-boxview_wrapimg,
  .product-boxview_wrapimg {
    max-width: 49.25rem;
  }
}

.l-product-boxview .swiper,
.l-product-boxview .swiper-button-next,
.l-product-boxview .swiper-button-prev,
.product-boxview .swiper,
.product-boxview .swiper-button-next,
.product-boxview .swiper-button-prev {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

@media (min-width: 992px) {

  .l-product-boxview .swiper,
  .l-product-boxview .swiper-button-next,
  .l-product-boxview .swiper-button-prev,
  .product-boxview .swiper,
  .product-boxview .swiper-button-next,
  .product-boxview .swiper-button-prev {
    -webkit-box-ordinal-group: initial;
    -ms-flex-order: initial;
    order: initial;
  }
}

.l-product-boxview .swiper-button-next.swiper-button-disabled,
.l-product-boxview .swiper-button-prev.swiper-button-disabled,
.l-product-boxview .swiper.swiper-button-disabled,
.product-boxview .swiper-button-next.swiper-button-disabled,
.product-boxview .swiper-button-prev.swiper-button-disabled,
.product-boxview .swiper.swiper-button-disabled {
  opacity: 0;
}

@media (min-width: 992px) {

  .l-product-boxview,
  .product-boxview {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    padding-top: 0;
  }
}

.l-product--description,
.l-product--sidebar {
  padding-inline: var(--pdx, 1rem);
}

.l-product--variations__item:not(:first-child) {
  border-top: #f2f2f2 0.0625rem solid;
}

.l-product--variations__list {
  list-style: none;
  display: grid;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: var(--pvl-gap, 1rem);
}

@media (min-width: 576px) {
  .l-product--variations__list {
    --pvl-gap: 2.5rem;
  }
}

@media (max-width: 991.98px) {
  .l-product.boots-container {
    --bs-gutter-x: 0;
  }
}

@media (min-width: 992px) {
  .l-product {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--lproduct--gap, 1rem);
    grid-template-areas: "image       image       sidebar" "description description sidebar";
  }

  .l-product--description,
  .l-product--sidebar {
    --pdx: 0;
  }

  .l-product--image {
    grid-area: image;
  }

  .l-product--sidebar {
    grid-area: sidebar;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    justify-items: end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .l-product--sidebar__wrap {
    max-width: 20.5rem;
  }
}

@media (min-width: 992px) and (min-width: 1200px) {
  .l-product--sidebar__wrap {
    width: 100%;
  }
}

@media (min-width: 992px) {
  .l-product--sidebar .position-sticky {
    z-index: 1;
    top: 6.5rem;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
  }

  .l-product--description {
    grid-area: description;
  }
}

@media (min-width: 1536px) {
  .l-product {
    --lproduct--gap: 3rem 1rem;
  }
}

.boots-prodimg-square {
  width: var(--popbox-w, 14.5rem);
  height: var(--popbox-h, 9.75rem);
}

.has-tooltip:not(select) {
  -webkit-box-shadow: 0 0 0 0.125rem var(--bs-boots-yellow);
  box-shadow: 0 0 0 0.125rem var(--bs-boots-yellow);
}

.swiper-button-disabled.swiper-button-lock {
  display: none;
}

.pswp {
  --pswp-bg: #0b0c0c;
  --pswp-root-z-index: 1055;
}

.pswp .pswp__top-bar {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.pswp .pswp__counter {
  margin-inline: auto;
  position: absolute;
  inset: 0;
  width: 120px;
  text-align: center;
  -webkit-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(11, 12, 12, 0.7));
  filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(11, 12, 12, 0.7));
  text-shadow: none;
}

.pswp .pswp__button {
  color: #fff;
  font-size: 0.875rem;
}

.pswp .pswp__button--zoom {
  display: none;
}

.pswp .pswp__button:not(.pswp__button--arrow) {
  --boots-size-icon: 1.5rem;
  text-shadow: none;
  -webkit-filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(11, 12, 12, 0.7));
  filter: drop-shadow(0.0625rem 0.0625rem 0.0625rem rgba(11, 12, 12, 0.7));
  width: auto;
  min-width: 2.5rem;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 1;
}

@media (min-width: 576px) {
  .pswp .pswp__button:not(.pswp__button--arrow) {
    --boots-size-icon: 1rem;
  }
}

.pswp .pswp__button--collection,
.pswp .pswp__button--favorite {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
  margin-right: 0.625rem;
}

@media (min-width: 576px) {

  .pswp .pswp__button--collection,
  .pswp .pswp__button--favorite {
    margin-right: 1.25rem;
  }
}

.pswp .pswp__button--share {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
  margin-right: 0.625rem;
  margin-left: auto;
}

@media (min-width: 576px) {
  .pswp .pswp__button--share {
    margin-right: 1.25rem;
  }
}

.pswp .pswp__button--close {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
  margin-left: 0.625rem;
}

.pswp .pswp__preloader {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
  margin-right: 0;
}

.pswp .pswp__custom-caption {
  --animate-from: 0.125rem;
  --animate-duration: 3s;
  --animate-delay: 2s;
  width: auto;
  max-width: var(--pswp-maw, 100%);
  position: absolute;
  left: var(--pswp-x, 2rem);
  padding-right: var(--pswp-x, 2rem);
  bottom: var(--pswp-b, 1.75rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .pswp .pswp__custom-caption {
    --pswp-maw: 37.5rem;
    --pswp-x: 3.25rem;
    --pswp-b: 2rem;
  }
}

.pswp .pswp__custom-caption--center {
  --pswp-maw: 18.75rem;
  --pswp-b: 0;
  --pswp-x: 0;
  color: #fff;
  margin: auto;
  inset: 0;
  overflow: visible;
  height: var(--pswp-maw);
  padding-top: var(--pswp-maw);
  pointer-events: none;
}

.pswp .btn-boots-action {
  color: #fff;
  border: 0.0625rem solid #fff;
  background-color: rgba(11, 12, 12, 0.08);
}

.pswp .btn-boots-action:active,
.pswp .btn-boots-action:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.l-quotdtl {
  --quotdl-mb: 1.25rem;
}

.l-quotdtl__msg {
  grid-area: msg;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--qtdl-msg-txc, inherit);
  background-color: var(--qtdl-msg-bgc, transparent);
  border-radius: 0.5rem;
}

.l-quotdtl__msg .icon-v-style {
  --boots-size-icon: 3rem;
  margin-bottom: 0.625rem;
}

@media (min-width: 1200px) {
  .l-quotdtl__msg .icon-v-style {
    --boots-size-icon: 2rem;
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}

.l-quotdtl__msg-img {
  width: 3.5rem;
  height: 3.5rem;
}

.l-quotdtl__msg-txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (min-width: 1200px) {
  .l-quotdtl__msg-txt {
    margin-bottom: 0;
  }

  .l-quotdtl__msg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.l-quotdtl__sidebar {
  grid-area: sidebar;
}

.l-quotdtl__sidebar-header {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.1875rem, 1fr));
  gap: 1.875rem;
  margin-bottom: 1.5625rem;
}

.l-quotdtl__sidebar-header .icon-v-style {
  --boots-size-icon: 2rem;
  margin-bottom: 0.3125rem;
}

.l-quotdtl__sidebar-header .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: var(--header-btn-pd, 1.25rem 1.25rem);
  font-size: var(--header-btn-fz, 1rem);
  line-height: 1.2;
  border: var(--default-bd);
  border-radius: 0.5rem;
}

@media (min-width: 576px) {
  .l-quotdtl__sidebar-header .btn {
    --header-btn-pd: 0.9375rem 1.875rem;
    --header-btn-fz: 1.125rem;
  }
}

.l-quotdtl__sidebar .c-cardvalue {
  margin-bottom: var(--quotdl-mb);
}

.l-quotdtl__sidebar-obs {
  display: none;
}

@media (min-width: 1200px) {
  .l-quotdtl__sidebar-obs {
    display: block;
  }

  .l-quotdtl__sidebar {
    --quotdl-mb: 0.9375rem;
    position: sticky;
    top: 7.5rem;
    -ms-flex-item-align: start;
    align-self: start;
  }
}

.l-quotdtl__header {
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2.5rem 1.875rem;
  margin-bottom: var(--quotdl-mb);
  border: var(--default-bd);
}

.l-quotdtl__header-title {
  -webkit-box-flex: 1;
  -ms-flex: 1 100%;
  flex: 1 100%;
  margin-bottom: 1.25rem;
}

.l-quotdtl__header-infos {
  --size-text: 0.875rem;
  margin-bottom: 0;
  font-size: var(--size-text);
  line-height: 1;
  color: var(--bs-boots-soft-gray, #9ca2a4);
}

.l-quotdtl__header-infos p {
  margin-bottom: 0.5rem;
}

.l-quotdtl__header-infos b {
  font-weight: 400;
  color: var(--bs-boots-black, #0b0c0c);
}

@media (min-width: 768px) {
  .l-quotdtl__header-infos {
    --size-text: 1rem;
  }
}

@media (min-width: 1200px) {
  .l-quotdtl__header {
    --quotdl-mb: 0;
  }
}

.l-quotdtl .c-cardquot-list {
  grid-area: list;
  margin-bottom: 0;
}

.l-quotdtl__obs {
  grid-area: obs;
  padding: 1.875rem;
  border: var(--default-bd);
}

.l-quotdtl__obs-title {
  margin-bottom: 0.3125rem;
  font-size: 1.125rem;
}

.l-project__list>ul,
.l-quotdtl__obs ul {
  margin-bottom: 0;
}

.l-quotdtl__obs-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
}

.l-quotdtl__obs-item::before {
  margin-right: 0.3125rem;
  content: "-";
}

.l-quotdtl__obs-item p {
  margin-bottom: 0.125rem;
}

.l-quotdtl__obs-item.warning {
  color: var(--bs-danger, #ff0000);
}

@media (min-width: 1200px) {
  .l-quotdtl {
    display: grid;
    gap: 1.5625rem;
    grid-template-columns: 1fr 23.4375rem;
    grid-template-areas: "header sidebar" "list sidebar" "obs ...";
  }
}

.l-quotdtl__sidebar-header--onlydown .btn {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.l-quotdtl__sidebar-header--onlydown .icon-v-style {
  margin-right: 0.3125rem;
}

.l-quotdtl.has-msg {
  grid-template-areas: "msg sidebar" "header sidebar" "list sidebar" "obs ...";
}

.l-quotdtl__msg.is-overdue {
  --qtdl-msg-txc: var(--bs-danger, #ff0000);
  --qtdl-msg-bgc: var(--bs-boots-off-white, #fafafa);
}

.l-quotdtl__msg.is-waiting {
  --qtdl-msg-txc: var(--bs-danger, #ff0000);
  --qtdl-msg-bgc: #ffd8d8;
}

.l-quotdtl__msg.is-canceled {
  --qtdl-msg-txc: var(--bs-boots-black, #0b0c0c);
  --qtdl-msg-bgc: var(--bs-boots-soft-gray, #9ca2a4);
}

.l-quotdtl__msg.is-ok {
  --qtdl-msg-txc: var(--bs-boots-success, #00aa4a);
  --qtdl-msg-bgc: #d1ffd1;
}

.l-project__header,
.l-project__header-wraptxt {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.l-project__header-wraptxt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.l-project__header-wraptxt .btn {
  padding: 0;
  font-size: 1.875rem;
}

.l-project__header-wraptxt .btn:first-child {
  margin-right: 0.625rem;
}

.l-project__header-wraptxt .btn:last-child {
  margin-left: 0.3125rem;
}

@media (min-width: 576px) {
  .l-project__header-wraptxt {
    margin-bottom: 0;
  }
}

.l-project__header-title {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-project__header-wrapbtns {
  text-align: center;
}

@media (min-width: 576px) {
  .l-project__header-wrapbtns {
    text-align: right;
  }
}

.l-project__btnadd {
  padding: 0.3125rem;
  font-size: 1.875rem;
  line-height: 0;
  border-radius: 50%;
}

.l-project__btnchange {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1rem;
  font-size: 0.75rem;
  color: var(--l-project-btn-color, #59595c);
  opacity: 0.6;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-project__btnchange .icon-v-style {
  --boots-size-icon: 2rem;
  margin-bottom: 0.5rem;
}

.l-project__btnchange:hover:not(.is-active) {
  color: #59595c;
}

.l-project__btnchange.is-active {
  --l-project-btn-color: #0b0c0c;
  opacity: 1;
}

.l-project__btnchange.is-active .icon-grid-four-thin::before,
.l-project__btnchange.is-active .icon-moodboard::before {
  -webkit-mask-image: var(--icon-squares-four-fill);
  mask-image: var(--icon-squares-four-fill);
}

.l-project__btnchange.is-active .icon-list2::before {
  -webkit-mask-image: var(--icon-list-dashes-fill);
  mask-image: var(--icon-list-dashes-fill);
}

.l-project__btnchange+.btn {
  position: relative;
  padding-left: 2rem;
}

@media (min-width: 576px) {
  .l-project__btnchange+.btn {
    padding-right: 0;
  }
}

.l-project__btnchange+.btn:last-child::after {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 100%;
  border-radius: 0;
  display: block;
  left: 0;
  top: -0.125rem;
  background-color: #f2f2f2;
}

.l-project__list {
  margin-bottom: 2.25rem;
}

@media (max-width: 424px) {
  .l-project__list>ul>li {
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
  }
}

.l-project__list>ul>li {
  margin-bottom: 1.25rem;
}

.l-project__list>ul>li:last-child {
  margin-bottom: 0;
}

.l-project__btnfix {
  position: fixed;
  bottom: 50px;
  left: calc(50% + 102px);
  z-index: 5;
  width: 220px;
  margin-left: -220px;
  border-radius: 30px;
}

@media (min-width: 992px) {
  .l-project__btnfix {
    left: calc(50% + 190px);
  }
}

.l-checkout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 992px) {
  .l-checkout {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.l-checkout__resume {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fafafa;
  padding: 0.5rem 1.5rem;
  margin: 2rem calc(var(--bs-gutter-x) * -1) 0;
}

@media (min-width: 992px) {
  .l-checkout__resume {
    margin: 0;
    padding: 0;
    z-index: 150;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border-left: 0.5px solid #f2f2f2;
    border-left-color: #f2f2f2;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: fixed;
  }
}

.l-checkout__cart .c-cartitem {
  display: grid;
  gap: var(--boots-cartitem-gap, 0 2rem);
  grid-template-areas: "image infos-primary" "infos-secondary infos-secondary";
  grid-template-columns: 7rem 1fr;
}

.l-checkout__cart .c-cartitem__img {
  height: 7rem;
  grid-area: image;
}

.l-checkout__cart .c-cartitem__infos {
  grid-area: infos-primary;
}

.l-checkout__cart .c-cartitem__infos-sm {
  grid-area: infos-secondary;
}

@media (min-width: 576px) {
  .l-checkout__cart .c-cartitem {
    --boots-cartitem-gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .l-checkout__cart .c-cartitem {
    --boots-cartitem-gap: 0 1.5rem;
    grid-template-areas: "image infos-primary" "image infos-secondary";
    grid-template-rows: auto auto;
  }
}

@media (max-width: 991.98px) {

  .boots-cta__mobile-fixed,
  .l-checkout__mobile-cta-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #fff;
    border-top: 0.5px solid #f2f2f2;
    position: fixed;
    padding: 1rem 1.5rem;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    height: auto;
  }

  .boots-cta__mobile-fixed .btn,
  .l-checkout__mobile-cta-fixed .btn {
    max-width: 27.5rem;
  }
}

.u-listn {
  padding-left: 0 !important;
  list-style: none !important;
}

.icon-v-style,
[class^="icon-"],
[class*=" icon-"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
  width: var(--boots-size-icon, 16px);
  height: var(--boots-size-icon, 16px);
  aspect-ratio: 1/1;
  -webkit-filter: var(--icon-filter, drop-shadow(0 0 0 currentColor));
  filter: var(--icon-filter, drop-shadow(0 0 0 currentColor));
}

.icon-v-style::before,
[class^="icon-"]::before,
[class*=" icon-"]::before {
  content: "";
  width: 100%;
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: currentColor;
  transition: inherit;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.boots-group-icons-effect {
  position: relative;
}

.boots-group-icons-effect [class^="icon--"],
.boots-group-icons-effect [class*=" icon--"] {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.boots-icon-20 {
  --boots-size-icon: 20px;
}

.icon-alarm-thin::before {
  -webkit-mask-image: var(--icon-alarm-thin);
  mask-image: var(--icon-alarm-thin);
}

.icon-archive-thin::before {
  -webkit-mask-image: var(--icon-archive-thin);
  mask-image: var(--icon-archive-thin);
}

.icon-archive-box-thin::before {
  -webkit-mask-image: var(--icon-archive-box-thin);
  mask-image: var(--icon-archive-box-thin);
}

.icon-autocad-logo-brand::before {
  -webkit-mask-image: var(--icon-autocad-logo-brand);
  mask-image: var(--icon-autocad-logo-brand);
}

.icon-arrow-down-thin::before {
  -webkit-mask-image: var(--icon-arrow-down-thin);
  mask-image: var(--icon-arrow-down-thin);
}

.icon-arrow-down-bold::before {
  -webkit-mask-image: var(--icon-arrow-down-bold);
  mask-image: var(--icon-arrow-down-bold);
}

.icon-arrow-elbow-down-right-thin::before {
  -webkit-mask-image: var(--icon-arrow-elbow-down-right-thin);
  mask-image: var(--icon-arrow-elbow-down-right-thin);
}

.icon-arrow-left-thin::before,
.icon-arrow-left::before {
  -webkit-mask-image: var(--icon-arrow-left-thin);
  mask-image: var(--icon-arrow-left-thin);
}

.icon-arrow-left-bold::before {
  -webkit-mask-image: var(--icon-arrow-left-bold);
  mask-image: var(--icon-arrow-left-bold);
}

.icon-arrow-right-thin::before,
.icon-arrow-right::before {
  -webkit-mask-image: var(--icon-arrow-right-thin);
  mask-image: var(--icon-arrow-right-thin);
}

.icon-arrow-right-bold::before {
  -webkit-mask-image: var(--icon-arrow-right-bold);
  mask-image: var(--icon-arrow-right-bold);
}

.icon-arrow-up-thin::before,
.icon-arrow-up::before {
  -webkit-mask-image: var(--icon-arrow-up-thin);
  mask-image: var(--icon-arrow-up-thin);
}

.icon-arrow-up-bold::before {
  -webkit-mask-image: var(--icon-arrow-up-bold);
  mask-image: var(--icon-arrow-up-bold);
}

.icon-arrow-up-right-thin::before {
  -webkit-mask-image: var(--icon-arrow-up-right-thin);
  mask-image: var(--icon-arrow-up-right-thin);
}

.icon-arrows-counter-clockwise-thin::before,
.icon-refresh2::before {
  -webkit-mask-image: var(--icon-arrows-counter-clockwise-thin);
  mask-image: var(--icon-arrows-counter-clockwise-thin);
}

.icon-arrow-counter-clockwise-thin::before {
  -webkit-mask-image: var(--icon-arrow-counter-clockwise-thin);
  mask-image: var(--icon-arrow-counter-clockwise-thin);
}

.icon-arrow-counter-clockwise-bold::before {
  -webkit-mask-image: var(--icon-arrow-counter-clockwise-bold);
  mask-image: var(--icon-arrow-counter-clockwise-bold);
}

.icon-arrow-clockwise-bold::before {
  -webkit-mask-image: var(--icon-arrow-clockwise-bold);
  mask-image: var(--icon-arrow-clockwise-bold);
}

.icon-arrow-clockwise-thin::before {
  -webkit-mask-image: var(--icon-arrow-clockwise-thin);
  mask-image: var(--icon-arrow-clockwise-thin);
}

.icon-arrows-horizontal-bold::before {
  -webkit-mask-image: var(--icon-arrows-horizontal-bold);
  mask-image: var(--icon-arrows-horizontal-bold);
}

.icon-arrows-horizontal-thin::before {
  -webkit-mask-image: var(--icon-arrows-horizontal-thin);
  mask-image: var(--icon-arrows-horizontal-thin);
}

.icon-arrows-in-simple-thin::before {
  -webkit-mask-image: var(--icon-arrows-in-simple-thin);
  mask-image: var(--icon-arrows-in-simple-thin);
}

.icon-arrows-left-right-thin::before,
.icon-transfer::before {
  -webkit-mask-image: var(--icon-arrows-left-right-thin);
  mask-image: var(--icon-arrows-left-right-thin);
}

.icon-arrows-out-simple-thin::before {
  -webkit-mask-image: var(--icon-arrows-out-simple-thin);
  mask-image: var(--icon-arrows-out-simple-thin);
}

.icon-arrow-square-out-thin::before,
.icon-external-link::before {
  -webkit-mask-image: var(--icon-arrow-square-out-thin);
  mask-image: var(--icon-arrow-square-out-thin);
}

.icon-arrows-vertical-bold::before {
  -webkit-mask-image: var(--icon-arrows-vertical-bold);
  mask-image: var(--icon-arrows-vertical-bold);
}

.icon-arrows-vertical-thin::before {
  -webkit-mask-image: var(--icon-arrows-vertical-thin);
  mask-image: var(--icon-arrows-vertical-thin);
}

.icon-bank-thin::before,
.icon-bank::before {
  -webkit-mask-image: var(--icon-bank-thin);
  mask-image: var(--icon-bank-thin);
}

.icon-barcode-thin::before,
.icon-barcode::before {
  -webkit-mask-image: var(--icon-barcode-thin);
  mask-image: var(--icon-barcode-thin);
}

.icon-bell-thin::before,
.icon-ring::before {
  -webkit-mask-image: var(--icon-bell-thin);
  mask-image: var(--icon-bell-thin);
}

.icon-bell-simple-thin::before {
  -webkit-mask-image: var(--icon-bell-simple-thin);
  mask-image: var(--icon-bell-simple-thin);
}

.icon-blender-logo-brand::before {
  -webkit-mask-image: var(--icon-blender-logo-brand);
  mask-image: var(--icon-blender-logo-brand);
}

.icon-box-arrow-up-regular::before {
  -webkit-mask-image: var(--icon-box-arrow-up-regular);
  mask-image: var(--icon-box-arrow-up-regular);
}

.icon-box-arrow-up-thin::before {
  -webkit-mask-image: var(--icon-box-arrow-up-thin);
  mask-image: var(--icon-box-arrow-up-thin);
}

.icon-bride::before {
  -webkit-mask-image: var(--icon-bride);
  mask-image: var(--icon-bride);
}

.icon-buildings-thin::before {
  -webkit-mask-image: var(--icon-buildings-thin);
  mask-image: var(--icon-buildings-thin);
}

.icon-calculator-thin::before {
  -webkit-mask-image: var(--icon-calculator-thin);
  mask-image: var(--icon-calculator-thin);
}

.icon-calendar-blank-thin::before,
.icon-calendar::before {
  -webkit-mask-image: var(--icon-calendar-blank-thin);
  mask-image: var(--icon-calendar-blank-thin);
}

.icon-camera-thin::before,
.icon-camera::before {
  -webkit-mask-image: var(--icon-camera-thin);
  mask-image: var(--icon-camera-thin);
}

.icon-cardholder-thin::before {
  -webkit-mask-image: var(--icon-cardholder-thin);
  mask-image: var(--icon-cardholder-thin);
}

.icon-caret-circle-down-thin::before,
.icon-angle-down-circle::before {
  -webkit-mask-image: var(--icon-caret-circle-down-thin);
  mask-image: var(--icon-caret-circle-down-thin);
}

.icon-caret-circle-left-thin::before {
  -webkit-mask-image: var(--icon-caret-circle-left-thin);
  mask-image: var(--icon-caret-circle-left-thin);
}

.icon-caret-circle-right-thin::before {
  -webkit-mask-image: var(--icon-caret-circle-right-thin);
  mask-image: var(--icon-caret-circle-right-thin);
}

.icon-caret-circle-up-thin::before,
.icon-angle-up-circle::before {
  -webkit-mask-image: var(--icon-caret-circle-up-thin);
  mask-image: var(--icon-caret-circle-up-thin);
}

.icon-caret-down-thin::before,
.icon-arrow11::before,
.icon-angle-down::before {
  -webkit-mask-image: var(--icon-caret-down-thin);
  mask-image: var(--icon-caret-down-thin);
}

.icon-caret-left-thin::before,
.icon-angle-left::before {
  -webkit-mask-image: var(--icon-caret-left-thin);
  mask-image: var(--icon-caret-left-thin);
}

.icon-caret-left-regular::before {
  -webkit-mask-image: var(--icon-caret-left-regular);
  mask-image: var(--icon-caret-left-regular);
}

.icon-caret-right-thin::before,
.icon-angle-right::before {
  -webkit-mask-image: var(--icon-caret-right-thin);
  mask-image: var(--icon-caret-right-thin);
}

.icon-caret-right-regular::before {
  -webkit-mask-image: var(--icon-caret-right-regular);
  mask-image: var(--icon-caret-right-regular);
}

.icon-caret-up-thin::before,
.icon-angle-up::before {
  -webkit-mask-image: var(--icon-caret-up-thin);
  mask-image: var(--icon-caret-up-thin);
}

.icon-chart-pie-slice-thin::before,
.icon-porcentagem::before {
  -webkit-mask-image: var(--icon-chart-pie-slice-thin);
  mask-image: var(--icon-chart-pie-slice-thin);
}

.icon-chat-teardrop-text-thin::before,
.icon-envelope2::before {
  -webkit-mask-image: var(--icon-chat-teardrop-text-thin);
  mask-image: var(--icon-chat-teardrop-text-thin);
}

.icon-check-circle-thin::before,
.icon-check::before,
.icon-added::before {
  -webkit-mask-image: var(--icon-check-circle-thin);
  mask-image: var(--icon-check-circle-thin);
}

.icon-check-circle-fill::before,
.icon-checked2::before {
  -webkit-mask-image: var(--icon-check-circle-fill);
  mask-image: var(--icon-check-circle-fill);
}

.icon-check-thin::before,
.icon-check3::before {
  -webkit-mask-image: var(--icon-check-thin);
  mask-image: var(--icon-check-thin);
}

.icon-circle-wavy-check-thin::before,
.icon-payment-terminal::before,
.icon-payment-terminal.icon-v-style::before,
.icon-discount::before {
  -webkit-mask-image: var(--icon-circle-wavy-check-thin);
  mask-image: var(--icon-circle-wavy-check-thin);
}

.icon-circle-wavy-question-thin::before {
  -webkit-mask-image: var(--icon-circle-wavy-question-thin);
  mask-image: var(--icon-circle-wavy-question-thin);
}

.icon-clock-clockwise-thin::before,
.icon-deposit::before {
  -webkit-mask-image: var(--icon-clock-clockwise-thin);
  mask-image: var(--icon-clock-clockwise-thin);
}

.icon-clock-fill::before {
  -webkit-mask-image: var(--icon-clock-fill);
  mask-image: var(--icon-clock-fill);
}

.icon-clock-thin::before,
.icon-relogio::before {
  -webkit-mask-image: var(--icon-clock-thin);
  mask-image: var(--icon-clock-thin);
}

.icon-cloud-arrow-up-thin::before,
.icon-upload::before {
  -webkit-mask-image: var(--icon-cloud-arrow-up-thin);
  mask-image: var(--icon-cloud-arrow-up-thin);
}

.icon-cloud-snow-thin::before {
  -webkit-mask-image: var(--icon-cloud-snow-thin);
  mask-image: var(--icon-cloud-snow-thin);
}

.icon-cloud-sun-thin::before,
.icon-sun-rain::before {
  -webkit-mask-image: var(--icon-cloud-sun-thin);
  mask-image: var(--icon-cloud-sun-thin);
}

.icon-cloud-sun-regular::before {
  -webkit-mask-image: var(--icon-cloud-sun-regular);
  mask-image: var(--icon-cloud-sun-regular);
}

.icon-coins-thin::before,
.icon-money::before {
  -webkit-mask-image: var(--icon-coins-thin);
  mask-image: var(--icon-coins-thin);
}

.icon-compass-thin::before {
  -webkit-mask-image: var(--icon-compass-thin);
  mask-image: var(--icon-compass-thin);
}

.icon-copy-thin::before,
.icon-duplicate::before {
  -webkit-mask-image: var(--icon-copy-thin);
  mask-image: var(--icon-copy-thin);
}

.icon-copy-simple-thin::before {
  -webkit-mask-image: var(--icon-copy-simple-thin);
  mask-image: var(--icon-copy-simple-thin);
}

.icon-copy-simple-bold::before {
  -webkit-mask-image: var(--icon-copy-simple-bold);
  mask-image: var(--icon-copy-simple-bold);
}

.icon-credit-card-thin::before,
.icon-creditcard::before,
.icon-bankcard::before {
  -webkit-mask-image: var(--icon-credit-card-thin);
  mask-image: var(--icon-credit-card-thin);
}

.icon-crop-thin::before {
  -webkit-mask-image: var(--icon-crop-thin);
  mask-image: var(--icon-crop-thin);
}

.icon-cube-thin::before {
  -webkit-mask-image: var(--icon-cube-thin);
  mask-image: var(--icon-cube-thin);
}

.icon-currency-circle-dollar-thin::before,
.icon-piggybank::before,
.icon-coin::before {
  -webkit-mask-image: var(--icon-currency-circle-dollar-thin);
  mask-image: var(--icon-currency-circle-dollar-thin);
}

.icon-cursor-thin::before {
  -webkit-mask-image: var(--icon-cursor-thin);
  mask-image: var(--icon-cursor-thin);
}

.icon-detective-thin::before {
  -webkit-mask-image: var(--icon-detective-thin);
  mask-image: var(--icon-detective-thin);
}

.icon-detective-regular::before {
  -webkit-mask-image: var(--icon-detective-regular);
  mask-image: var(--icon-detective-regular);
}

.icon-dots-nine-thin::before,
.icon-collections::before {
  -webkit-mask-image: var(--icon-dots-nine-thin);
  mask-image: var(--icon-dots-nine-thin);
}

.icon-dots-three-thin::before {
  -webkit-mask-image: var(--icon-dots-three-thin);
  mask-image: var(--icon-dots-three-thin);
}

.icon-download-simple-thin::before,
.icon-download::before {
  -webkit-mask-image: var(--icon-download-simple-thin);
  mask-image: var(--icon-download-simple-thin);
}

.icon-download-simple-bold::before {
  -webkit-mask-image: var(--icon-download-simple-bold);
  mask-image: var(--icon-download-simple-bold);
}

.icon-envelope-open-thin::before,
.icon-mail-open::before {
  -webkit-mask-image: var(--icon-envelope-open-thin);
  mask-image: var(--icon-envelope-open-thin);
}

.icon-envelope-thin::before,
.icon-mail::before {
  -webkit-mask-image: var(--icon-envelope-thin);
  mask-image: var(--icon-envelope-thin);
}

.icon-eye-slash-thin::before,
.icon-eye::before {
  -webkit-mask-image: var(--icon-eye-slash-thin);
  mask-image: var(--icon-eye-slash-thin);
}

.icon-eye-thin::before {
  -webkit-mask-image: var(--icon-eye-thin);
  mask-image: var(--icon-eye-thin);
}

.icon-facebook-logo-thin::before {
  -webkit-mask-image: var(--icon-facebook-logo-thin);
  mask-image: var(--icon-facebook-logo-thin);
}

.icon-facebook-logo-brand::before,
.icon-facebook::before {
  -webkit-mask-image: var(--icon-facebook-logo-brand);
  mask-image: var(--icon-facebook-logo-brand);
}

.icon-facebook-logo-fill::before {
  -webkit-mask-image: var(--icon-facebook-logo-fill);
  mask-image: var(--icon-facebook-logo-fill);
}

.icon-file-pdf-thin::before,
.icon-pdf::before {
  -webkit-mask-image: var(--icon-file-pdf-thin);
  mask-image: var(--icon-file-pdf-thin);
}

.icon-file-text-thin::before,
.icon-quotation::before {
  -webkit-mask-image: var(--icon-file-text-thin);
  mask-image: var(--icon-file-text-thin);
}

.icon-file-thin::before,
.icon-paper::before {
  -webkit-mask-image: var(--icon-file-thin);
  mask-image: var(--icon-file-thin);
}

.icon-folders-thin::before {
  -webkit-mask-image: var(--icon-folders-thin);
  mask-image: var(--icon-folders-thin);
}

.icon-folder-thin::before,
.icon-folder::before {
  -webkit-mask-image: var(--icon-folder-thin);
  mask-image: var(--icon-folder-thin);
}

.icon-folder-open-thin::before {
  -webkit-mask-image: var(--icon-folder-open-thin);
  mask-image: var(--icon-folder-open-thin);
}

.icon-folder-open-bold::before {
  -webkit-mask-image: var(--icon-folder-open-bold);
  mask-image: var(--icon-folder-open-bold);
}

.icon-funnel-thin::before,
.icon-filter2::before {
  -webkit-mask-image: var(--icon-funnel-thin);
  mask-image: var(--icon-funnel-thin);
}

.icon-gear-thin::before,
.icon-administrativo::before {
  -webkit-mask-image: var(--icon-gear-thin);
  mask-image: var(--icon-gear-thin);
}

.icon-gift-thin::before,
.icon-gift::before,
.icon-weddinggift::before,
.icon-present::before {
  -webkit-mask-image: var(--icon-gift-thin);
  mask-image: var(--icon-gift-thin);
}

.icon-git-merge-thin::before {
  -webkit-mask-image: var(--icon-git-merge-thin);
  mask-image: var(--icon-git-merge-thin);
}

.icon-grid-four-thin::before,
.icon-moodboard::before {
  -webkit-mask-image: var(--icon-grid-four-thin);
  mask-image: var(--icon-grid-four-thin);
}

.icon-groom::before {
  -webkit-mask-image: var(--icon-groom);
  mask-image: var(--icon-groom);
}

.icon-handbag-thin::before {
  -webkit-mask-image: var(--icon-handbag-thin);
  mask-image: var(--icon-handbag-thin);
}

.icon-headset-thin::before,
.icon-headset::before {
  -webkit-mask-image: var(--icon-headset-thin);
  mask-image: var(--icon-headset-thin);
}

.icon-heart-fill::before,
.icon-heart2::before {
  -webkit-mask-image: var(--icon-heart-fill);
  mask-image: var(--icon-heart-fill);
}

.icon-heart-thin::before,
.icon-heart::before {
  -webkit-mask-image: var(--icon-heart-thin);
  mask-image: var(--icon-heart-thin);
}

.icon-image-thin::before,
.icon-foto-null::before,
.icon-album::before {
  -webkit-mask-image: var(--icon-image-thin);
  mask-image: var(--icon-image-thin);
}

.icon-inbox-thin::before {
  -webkit-mask-image: var(--icon-inbox-thin);
  mask-image: var(--icon-inbox-thin);
}

.icon-info-thin::before {
  -webkit-mask-image: var(--icon-info-thin);
  mask-image: var(--icon-info-thin);
}

.icon-instagram-logo-brand::before,
.icon-instagram::before {
  -webkit-mask-image: var(--icon-instagram-logo-brand);
  mask-image: var(--icon-instagram-logo-brand);
}

.icon-instagram-logo-thin::before {
  -webkit-mask-image: var(--icon-instagram-logo-thin);
  mask-image: var(--icon-instagram-logo-thin);
}

.icon-instagram-logo-fill::before {
  -webkit-mask-image: var(--icon-instagram-logo-fill);
  mask-image: var(--icon-instagram-logo-fill);
}

.icon-lightning-thin::before {
  -webkit-mask-image: var(--icon-lightning-thin);
  mask-image: var(--icon-lightning-thin);
}

.icon-lightning-regular::before {
  -webkit-mask-image: var(--icon-lightning-regular);
  mask-image: var(--icon-lightning-regular);
}

.icon-lightbulb-thin::before,
.icon-lampada::before {
  -webkit-mask-image: var(--icon-lightbulb-thin);
  mask-image: var(--icon-lightbulb-thin);
}

.icon-line-segments-thin::before {
  -webkit-mask-image: var(--icon-line-segments-thin);
  mask-image: var(--icon-line-segments-thin);
}

.icon-link-thin::before,
.icon-promoter::before,
.icon-share::before {
  -webkit-mask-image: var(--icon-link-thin);
  mask-image: var(--icon-link-thin);
}

.icon-link-simple-thin::before {
  -webkit-mask-image: var(--icon-link-simple-thin);
  mask-image: var(--icon-link-simple-thin);
}

.icon-list-bullets-thin::before {
  -webkit-mask-image: var(--icon-list-bullets-thin);
  mask-image: var(--icon-list-bullets-thin);
}

.icon-list-dashes-fill::before,
.icon-list2-select::before {
  -webkit-mask-image: var(--icon-list-dashes-fill);
  mask-image: var(--icon-list-dashes-fill);
}

.icon-list-dashes-thin::before,
.icon-list2::before {
  -webkit-mask-image: var(--icon-list-dashes-thin);
  mask-image: var(--icon-list-dashes-thin);
}

.icon-list-thin::before,
.icon-menu3::before,
.icon-menu::before {
  -webkit-mask-image: var(--icon-list-thin);
  mask-image: var(--icon-list-thin);
}

.icon-lock-simple-thin::before,
.icon-lock::before {
  -webkit-mask-image: var(--icon-lock-simple-thin);
  mask-image: var(--icon-lock-simple-thin);
}

.icon-magnifying-glass-minus-bold::before {
  -webkit-mask-image: var(--icon-magnifying-glass-minus-bold);
  mask-image: var(--icon-magnifying-glass-minus-bold);
}

.icon-magnifying-glass-minus-thin::before {
  -webkit-mask-image: var(--icon-magnifying-glass-minus-thin);
  mask-image: var(--icon-magnifying-glass-minus-thin);
}

.icon-magnifying-glass-plus-thin::before {
  -webkit-mask-image: var(--icon-magnifying-glass-plus-thin);
  mask-image: var(--icon-magnifying-glass-plus-thin);
}

.icon-magnifying-glass-plus-bold::before {
  -webkit-mask-image: var(--icon-magnifying-glass-plus-bold);
  mask-image: var(--icon-magnifying-glass-plus-bold);
}

.icon-magnifying-glass-thin::before,
.icon-search::before {
  -webkit-mask-image: var(--icon-magnifying-glass-thin);
  mask-image: var(--icon-magnifying-glass-thin);
}

.icon-mail-open-file::before {
  -webkit-mask-image: var(--icon-mail-open-file);
  mask-image: var(--icon-mail-open-file);
}

.icon-minus-thin::before {
  -webkit-mask-image: var(--icon-minus-thin);
  mask-image: var(--icon-minus-thin);
}

.icon-money-thin::before,
.icon-money-2::before {
  -webkit-mask-image: var(--icon-money-thin);
  mask-image: var(--icon-money-thin);
}

.icon-map-pin-thin::before {
  -webkit-mask-image: var(--icon-map-pin-thin);
  mask-image: var(--icon-map-pin-thin);
}

.icon-map-pin-line-thin::before {
  -webkit-mask-image: var(--icon-map-pin-line-thin);
  mask-image: var(--icon-map-pin-line-thin);
}

.icon-newspaper-clipping-thin::before,
.icon-invoice-2::before {
  -webkit-mask-image: var(--icon-newspaper-clipping-thin);
  mask-image: var(--icon-newspaper-clipping-thin);
}

.icon-note-thin::before {
  -webkit-mask-image: var(--icon-note-thin);
  mask-image: var(--icon-note-thin);
}

.icon-obj3d::before {
  -webkit-mask-image: var(--icon-obj3d);
  mask-image: var(--icon-obj3d);
}

.icon-package-thin::before,
.icon-orders::before,
.icon-products::before {
  -webkit-mask-image: var(--icon-package-thin);
  mask-image: var(--icon-package-thin);
}

.icon-package-regular::before {
  -webkit-mask-image: var(--icon-package-regular);
  mask-image: var(--icon-package-regular);
}

.icon-paperclip-thin::before,
.icon-clips::before {
  -webkit-mask-image: var(--icon-paperclip-thin);
  mask-image: var(--icon-paperclip-thin);
}

.icon-paper-plane-tilt-thin::before {
  -webkit-mask-image: var(--icon-paper-plane-tilt-thin);
  mask-image: var(--icon-paper-plane-tilt-thin);
}

.icon-pay::before {
  -webkit-mask-image: var(--icon-pay);
  mask-image: var(--icon-pay);
}

.icon-pencil-line-thin::before {
  -webkit-mask-image: var(--icon-pencil-line-thin);
  mask-image: var(--icon-pencil-line-thin);
}

.icon-pencil-thin::before,
.icon-edit::before {
  -webkit-mask-image: var(--icon-pencil-thin);
  mask-image: var(--icon-pencil-thin);
}

.icon-pinterest-logo-brand::before,
.icon-pinterest::before {
  -webkit-mask-image: var(--icon-pinterest-logo-brand);
  mask-image: var(--icon-pinterest-logo-brand);
}

.icon-pinterest-logo-thin::before {
  -webkit-mask-image: var(--icon-pinterest-logo-thin);
  mask-image: var(--icon-pinterest-logo-thin);
}

.icon-pinterest-logo-fill::before {
  -webkit-mask-image: var(--icon-pinterest-logo-fill);
  mask-image: var(--icon-pinterest-logo-fill);
}

.icon-pix::before {
  -webkit-mask-image: var(--icon-pix);
  mask-image: var(--icon-pix);
}

.icon-play-fill::before,
.icon-play::before {
  -webkit-mask-image: var(--icon-play-fill);
  mask-image: var(--icon-play-fill);
}

.icon-plus-circle-fill::before,
.icon-plusball::before {
  -webkit-mask-image: var(--icon-plus-circle-fill);
  mask-image: var(--icon-plus-circle-fill);
}

.icon-plus-circle-thin::before,
.icon-circle-plus::before {
  -webkit-mask-image: var(--icon-plus-circle-thin);
  mask-image: var(--icon-plus-circle-thin);
}

.icon-plus-thin::before,
.icon-add2::before {
  -webkit-mask-image: var(--icon-plus-thin);
  mask-image: var(--icon-plus-thin);
}

.icon-power-thin::before,
.icon-powerbutton::before {
  -webkit-mask-image: var(--icon-power-thin);
  mask-image: var(--icon-power-thin);
}

.icon-printer-thin::before,
.icon-printer::before {
  -webkit-mask-image: var(--icon-printer-thin);
  mask-image: var(--icon-printer-thin);
}

.icon-question-thin::before,
.icon-question::before {
  -webkit-mask-image: var(--icon-question-thin);
  mask-image: var(--icon-question-thin);
}

.icon-receipt-thin::before,
.icon-invoice::before {
  -webkit-mask-image: var(--icon-receipt-thin);
  mask-image: var(--icon-receipt-thin);
}

.icon-ruler-thin::before,
.icon-ruler::before {
  -webkit-mask-image: var(--icon-ruler-thin);
  mask-image: var(--icon-ruler-thin);
}

.icon-selection-slash-thin::before {
  -webkit-mask-image: var(--icon-selection-slash-thin);
  mask-image: var(--icon-selection-slash-thin);
}

.icon-share-network-thin::before,
.icon-link-cart::before {
  -webkit-mask-image: var(--icon-share-network-thin);
  mask-image: var(--icon-share-network-thin);
}

.icon-shield-check-thin::before,
.icon-shield::before {
  -webkit-mask-image: var(--icon-shield-check-thin);
  mask-image: var(--icon-shield-check-thin);
}

.icon-shield-slash-thin::before {
  -webkit-mask-image: var(--icon-shield-slash-thin);
  mask-image: var(--icon-shield-slash-thin);
}

.icon-shopping-cart-thin::before,
.icon-cart::before,
.icon-carrinho::before {
  -webkit-mask-image: var(--icon-shopping-cart-thin);
  mask-image: var(--icon-shopping-cart-thin);
}

.icon-sliders-thin::before,
.icon-filters::before {
  -webkit-mask-image: var(--icon-sliders-thin);
  mask-image: var(--icon-sliders-thin);
}

.icon-smiley-blank-thin::before {
  -webkit-mask-image: var(--icon-smiley-blank-thin);
  mask-image: var(--icon-smiley-blank-thin);
}

.icon-smiley-sad-thin::before,
.icon-sad::before {
  -webkit-mask-image: var(--icon-smiley-sad-thin);
  mask-image: var(--icon-smiley-sad-thin);
}

.icon-smiley-thin::before,
.icon-smily-face::before {
  -webkit-mask-image: var(--icon-smiley-thin);
  mask-image: var(--icon-smiley-thin);
}

.icon-snapchat-logo-thin::before {
  -webkit-mask-image: var(--icon-snapchat-logo-thin);
  mask-image: var(--icon-snapchat-logo-thin);
}

.icon-starkle-thin::before {
  -webkit-mask-image: var(--icon-starkle-thin);
  mask-image: var(--icon-starkle-thin);
}

.icon-chats-circle-thin::before {
  -webkit-mask-image: var(--icon-chats-circle-thin);
  mask-image: var(--icon-chats-circle-thin);
}

.icon-scribble-loop-thin::before {
  -webkit-mask-image: var(--icon-scribble-loop-thin);
  mask-image: var(--icon-scribble-loop-thin);
}

.icon-sketchup-logo-brand::before {
  -webkit-mask-image: var(--icon-sketchup-logo-brand);
  mask-image: var(--icon-sketchup-logo-brand);
}

.icon-spotify-logo-brand::before {
  -webkit-mask-image: var(--icon-spotify-logo-brand);
  mask-image: var(--icon-spotify-logo-brand);
}

.icon-sunglasses-thin::before {
  -webkit-mask-image: var(--icon-sunglasses-thin);
  mask-image: var(--icon-sunglasses-thin);
}

.icon-squares-four-fill::before,
.icon-dashboard::before,
.icon-moodboard-select::before {
  -webkit-mask-image: var(--icon-squares-four-fill);
  mask-image: var(--icon-squares-four-fill);
}

.icon-squares-four-thin::before {
  -webkit-mask-image: var(--icon-squares-four-thin);
  mask-image: var(--icon-squares-four-thin);
}

.icon-storefront-thin::before,
.icon-store::before {
  -webkit-mask-image: var(--icon-storefront-thin);
  mask-image: var(--icon-storefront-thin);
}

.icon-swatches-thin::before,
.icon-palette::before {
  -webkit-mask-image: var(--icon-swatches-thin);
  mask-image: var(--icon-swatches-thin);
}

.icon-table-thin::before {
  -webkit-mask-image: var(--icon-table-thin);
  mask-image: var(--icon-table-thin);
}

.icon-tag-thin::before,
.icon-tag::before {
  -webkit-mask-image: var(--icon-tag-thin);
  mask-image: var(--icon-tag-thin);
}

.icon-telegram-logo-thin::before,
.icon-send::before {
  -webkit-mask-image: var(--icon-telegram-logo-thin);
  mask-image: var(--icon-telegram-logo-thin);
}

.icon-thumbs-down-thin::before,
.icon-hand-down::before {
  -webkit-mask-image: var(--icon-thumbs-down-thin);
  mask-image: var(--icon-thumbs-down-thin);
}

.icon-thumbs-up-thin::before,
.icon-hand-up::before {
  -webkit-mask-image: var(--icon-thumbs-up-thin);
  mask-image: var(--icon-thumbs-up-thin);
}

.icon-tote-simple-thin::before,
.icon-bag::before {
  -webkit-mask-image: var(--icon-tote-simple-thin);
  mask-image: var(--icon-tote-simple-thin);
}

.icon-trash-thin::before,
.icon-trash::before {
  -webkit-mask-image: var(--icon-trash-thin);
  mask-image: var(--icon-trash-thin);
}

.icon-trend-down-thin::before,
.icon-coin-2::before {
  -webkit-mask-image: var(--icon-trend-down-thin);
  mask-image: var(--icon-trend-down-thin);
}

.icon-trend-up-thin::before {
  -webkit-mask-image: var(--icon-trend-up-thin);
  mask-image: var(--icon-trend-up-thin);
}

.icon-trophy-thin::before,
.icon-trophy::before {
  -webkit-mask-image: var(--icon-trophy-thin);
  mask-image: var(--icon-trophy-thin);
}

.icon-truck-thin::before,
.icon-truck2::before,
.icon-truck::before {
  -webkit-mask-image: var(--icon-truck-thin);
  mask-image: var(--icon-truck-thin);
}

.icon-truck-regular::before {
  -webkit-mask-image: var(--icon-truck-regular);
  mask-image: var(--icon-truck-regular);
}

.icon-twitter-logo-thin::before {
  -webkit-mask-image: var(--icon-twitter-logo-thin);
  mask-image: var(--icon-twitter-logo-thin);
}

.icon-twitter-logo-fill::before {
  -webkit-mask-image: var(--icon-twitter-logo-fill);
  mask-image: var(--icon-twitter-logo-fill);
}

.icon-user-thin::before,
.icon-user::before {
  -webkit-mask-image: var(--icon-user-thin);
  mask-image: var(--icon-user-thin);
}

.icon-vault-thin::before {
  -webkit-mask-image: var(--icon-vault-thin);
  mask-image: var(--icon-vault-thin);
}

.icon-wallet-thin::before,
.icon-vendas::before,
.icon-transferenciabancaria::before {
  -webkit-mask-image: var(--icon-wallet-thin);
  mask-image: var(--icon-wallet-thin);
}

.icon-warning-circle-fill::before,
.icon-warning-sd::before {
  -webkit-mask-image: var(--icon-warning-circle-fill);
  mask-image: var(--icon-warning-circle-fill);
}

.icon-warning-circle-thin::before,
.icon-warning::before {
  -webkit-mask-image: var(--icon-warning-circle-thin);
  mask-image: var(--icon-warning-circle-thin);
}

.icon-warning-fill::before,
.icon-warning-solid::before {
  -webkit-mask-image: var(--icon-warning-fill);
  mask-image: var(--icon-warning-fill);
}

.icon-warning-thin::before {
  -webkit-mask-image: var(--icon-warning-thin);
  mask-image: var(--icon-warning-thin);
}

.icon-whatsapp-logo-thin::before {
  -webkit-mask-image: var(--icon-whatsapp-logo-thin);
  mask-image: var(--icon-whatsapp-logo-thin);
}

.icon-whatsapp-logo-brand::before,
.icon-whatsapp::before {
  -webkit-mask-image: var(--icon-whatsapp-logo-brand);
  mask-image: var(--icon-whatsapp-logo-brand);
}

.icon-x-circle-fill::before,
.icon-close3::before {
  -webkit-mask-image: var(--icon-x-circle-fill);
  mask-image: var(--icon-x-circle-fill);
}

.icon-x-circle-thin::before,
.icon-close2::before {
  -webkit-mask-image: var(--icon-x-circle-thin);
  mask-image: var(--icon-x-circle-thin);
}

.icon-x-thin::before,
.icon-close::before {
  -webkit-mask-image: var(--icon-x-thin);
  mask-image: var(--icon-x-thin);
}

.icon--effect-dots::before {
  -webkit-mask-image: var(--icon--effect-dots);
  mask-image: var(--icon--effect-dots);
}

.icon-whatsapp {
  --icon-filter: none;
}

.circle-heart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: solid #e3e7e8 1px;
  border-radius: 50%;
}

.circle-heart-icon i {
  --boots-size-icon: 38px;
  line-height: 0;
  color: #f37a80;
}

@media screen and (min-width: 992px) {
  .circle-heart-icon i {
    --boots-size-icon: 42px;
  }
}

.icon-payment-terminal.icon-v-style {
  --boots-size-icon: 40px;
  min-width: 36px;
}

/*! @algolia/autocomplete-theme-classic 1.9.2 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
:root {
  --aa-search-input-height: 44px;
  --aa-input-icon-size: 20px;
  --aa-base-unit: 16;
  --aa-spacing-factor: 1;
  --aa-spacing: calc(var(--aa-base-unit) * var(--aa-spacing-factor) * 1px);
  --aa-spacing-half: calc(var(--aa-spacing)/2);
  --aa-panel-max-height: 650px;
  --aa-base-z-index: 9999;
  --aa-font-size: calc(var(--aa-base-unit) * 1px);
  --aa-font-family: inherit;
  --aa-font-weight-medium: 500;
  --aa-font-weight-semibold: 600;
  --aa-font-weight-bold: 700;
  --aa-icon-size: 20px;
  --aa-icon-stroke-width: 1.6;
  --aa-icon-color-rgb: 119, 119, 163;
  --aa-icon-color-alpha: 1;
  --aa-action-icon-size: 20px;
  --aa-text-color-rgb: 38, 38, 39;
  --aa-text-color-alpha: 1;
  --aa-primary-color-rgb: 62, 52, 211;
  --aa-primary-color-alpha: 0.2;
  --aa-muted-color-rgb: 128, 126, 163;
  --aa-muted-color-alpha: 0.6;
  --aa-panel-border-color-rgb: 128, 126, 163;
  --aa-panel-border-color-alpha: 0.3;
  --aa-input-border-color-rgb: 128, 126, 163;
  --aa-input-border-color-alpha: 0.8;
  --aa-background-color-rgb: 255, 255, 255;
  --aa-background-color-alpha: 1;
  --aa-input-background-color-rgb: 255, 255, 255;
  --aa-input-background-color-alpha: 1;
  --aa-selected-color-rgb: 179, 173, 214;
  --aa-selected-color-alpha: 0.205;
  --aa-description-highlight-background-color-rgb: 245, 223, 77;
  --aa-description-highlight-background-color-alpha: 0.5;
  --aa-detached-media-query: (max-width: 680px);
  --aa-detached-modal-media-query: (min-width: 680px);
  --aa-detached-modal-max-width: 680px;
  --aa-detached-modal-max-height: 500px;
  --aa-overlay-color-rgb: 115, 114, 129;
  --aa-overlay-color-alpha: 0.4;
  --aa-panel-shadow:
    0 0 0 1px rgba(35, 38, 59, 0.1), 0 6px 16px -4px rgba(35, 38, 59, 0.15);
  --aa-scrollbar-width: 13px;
  --aa-scrollbar-track-background-color-rgb: 234, 234, 234;
  --aa-scrollbar-track-background-color-alpha: 1;
  --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
  --aa-scrollbar-thumb-background-color-alpha: 1;
}

@media (hover: none) and (pointer: coarse) {
  :root {
    --aa-spacing-factor: 1.2;
    --aa-action-icon-size: 22px;
  }
}

body.dark,
body[data-theme="dark"] {
  --aa-text-color-rgb: 183, 192, 199;
  --aa-primary-color-rgb: 146, 138, 255;
  --aa-muted-color-rgb: 146, 138, 255;
  --aa-input-background-color-rgb: 0, 3, 9;
  --aa-background-color-rgb: 21, 24, 42;
  --aa-selected-color-rgb: 146, 138, 255;
  --aa-selected-color-alpha: 0.25;
  --aa-description-highlight-background-color-rgb: 0 255 255;
  --aa-description-highlight-background-color-alpha: 0.25;
  --aa-icon-color-rgb: 119, 119, 163;
  --aa-panel-shadow: inset 1px 1px 0 0 #2c2e40, 0 3px 8px 0 #000309;
  --aa-scrollbar-track-background-color-rgb: 44, 46, 64;
  --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
}

.aa-Autocomplete *,
.aa-DetachedFormContainer *,
.aa-Panel * {
  box-sizing: border-box;
}

.aa-Autocomplete,
.aa-DetachedFormContainer,
.aa-Panel {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-family: inherit;
  font-family: var(--aa-font-family);
  font-size: calc(16 * 1px);
  font-size: var(--aa-font-size);
  font-weight: 400;
  line-height: 1em;
  margin: 0;
  padding: 0;
  text-align: left;
}

.aa-Form {
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-input-background-color-rgb),
      var(--aa-input-background-color-alpha));
  border: 1px solid rgba(128, 126, 163, 0.8);
  border: 1px solid rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
  border-radius: 3px;
  display: flex;
  line-height: 1em;
  margin: 0;
  position: relative;
  width: 100%;
}

.aa-Form:focus-within {
  border-color: rgba(62, 52, 211, 1);
  border-color: rgba(var(--aa-primary-color-rgb), 1);
  box-shadow:
    rgba(62, 52, 211, 0.2) 0 0 0 2px,
    inset rgba(62, 52, 211, 0.2) 0 0 0 2px;
  box-shadow:
    rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px,
    inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
  outline: medium none currentColor;
}

.aa-InputWrapperPrefix {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 44px;
  height: var(--aa-search-input-height);
  order: 1;
}

.aa-Label,
.aa-LoadingIndicator {
  cursor: auto;
  flex-shrink: 0;
  height: 100%;
  padding: 0;
  text-align: left;
}

.aa-Label svg,
.aa-LoadingIndicator svg {
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
  height: auto;
  max-height: 20px;
  max-height: var(--aa-input-icon-size);
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-input-icon-size);
}

.aa-LoadingIndicator,
.aa-SubmitButton {
  height: 100%;
  padding-left: calc((16 * 1 * 1px) * 0.75 - 1px);
  padding-left: calc(calc(16 * 1 * 1px) * 0.75 - 1px);
  padding-left: calc(var(--aa-spacing) * 0.75 - 1px);
  padding-right: calc((16 * 1 * 1px) / 2);
  padding-right: calc(calc(16 * 1 * 1px) / 2);
  padding-right: var(--aa-spacing-half);
  width: calc((16 * 1 * 1px) * 1.75 + 20px - 1px);
  width: calc(calc(16 * 1 * 1px) * 1.75 + 20px - 1px);
  width: calc(var(--aa-spacing) * 1.75 + var(--aa-icon-size) - 1px);
}

@media (hover: none) and (pointer: coarse) {

  .aa-LoadingIndicator,
  .aa-SubmitButton {
    padding-left: calc(((16 * 1 * 1px) / 2) / 2 - 1px);
    padding-left: calc(calc(calc(16 * 1 * 1px) / 2) / 2 - 1px);
    padding-left: calc(var(--aa-spacing-half) / 2 - 1px);
    width: calc(20px + (16 * 1 * 1px) * 1.25 - 1px);
    width: calc(20px + calc(16 * 1 * 1px) * 1.25 - 1px);
    width: calc(var(--aa-icon-size) + var(--aa-spacing) * 1.25 - 1px);
  }
}

.aa-SubmitButton {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
}

.aa-LoadingIndicator {
  align-items: center;
  display: flex;
  justify-content: center;
}

.aa-LoadingIndicator[hidden] {
  display: none;
}

.aa-InputWrapper {
  order: 3;
  position: relative;
  width: 100%;
}

.aa-Input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font: inherit;
  height: 44px;
  height: var(--aa-search-input-height);
  padding: 0;
  width: 100%;
}

.aa-Input::-moz-placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}

.aa-Input::placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}

.aa-Input:focus {
  border-color: none;
  box-shadow: none;
  outline: none;
}

.aa-Input::-webkit-search-cancel-button,
.aa-Input::-webkit-search-decoration,
.aa-Input::-webkit-search-results-button,
.aa-Input::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.aa-InputWrapperSuffix {
  align-items: center;
  display: flex;
  height: 44px;
  height: var(--aa-search-input-height);
  order: 4;
}

.aa-ClearButton {
  align-items: center;
  background: none;
  border: 0;
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0 calc((16 * 1 * 1px) * 0.83333 - 0.5px);
  padding: 0 calc(calc(16 * 1 * 1px) * 0.83333 - 0.5px);
  padding: 0 calc(var(--aa-spacing) * 0.83333 - 0.5px);
}

@media (hover: none) and (pointer: coarse) {
  .aa-ClearButton {
    padding: 0 calc((16 * 1 * 1px) * 0.66667 - 0.5px);
    padding: 0 calc(calc(16 * 1 * 1px) * 0.66667 - 0.5px);
    padding: 0 calc(var(--aa-spacing) * 0.66667 - 0.5px);
  }
}

.aa-ClearButton:focus,
.aa-ClearButton:hover {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
}

.aa-ClearButton[hidden] {
  display: none;
}

.aa-ClearButton svg {
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-icon-size);
}

.aa-Panel {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-background-color-rgb),
      var(--aa-background-color-alpha));
  border-radius: calc((16 * 1 * 1px) / 4);
  border-radius: calc(calc(16 * 1 * 1px) / 4);
  border-radius: calc(var(--aa-spacing) / 4);
  box-shadow:
    0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);
  box-shadow: var(--aa-panel-shadow);
  margin: 8px 0 0;
  overflow: hidden;
  position: absolute;
  transition:
    opacity 0.2s ease-in,
    filter 0.2s ease-in;
}

@media screen and (prefers-reduced-motion) {
  .aa-Panel {
    transition: none;
  }
}

.aa-Panel button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

.aa-PanelLayout {
  height: 100%;
  margin: 0;
  max-height: 650px;
  max-height: var(--aa-panel-max-height);
  overflow-y: auto;
  padding: 0;
  position: relative;
  text-align: left;
}

.aa-PanelLayoutColumns--twoGolden {
  display: grid;
  grid-template-columns: 39.2% auto;
  overflow: hidden;
  padding: 0;
}

.aa-PanelLayoutColumns--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
}

.aa-PanelLayoutColumns--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
}

.aa-Panel--stalled .aa-Source {
  filter: grayscale(1);
  opacity: 0.8;
}

.aa-Panel--scrollable {
  margin: 0;
  max-height: 650px;
  max-height: var(--aa-panel-max-height);
  overflow-x: hidden;
  overflow-y: auto;
  padding: calc((16 * 1 * 1px) / 2);
  padding: calc(calc(16 * 1 * 1px) / 2);
  padding: var(--aa-spacing-half);
  scrollbar-color: rgba(255, 255, 255, 1) rgba(234, 234, 234, 1);
  scrollbar-color: rgba(var(--aa-scrollbar-thumb-background-color-rgb),
      var(--aa-scrollbar-thumb-background-color-alpha)) rgba(var(--aa-scrollbar-track-background-color-rgb),
      var(--aa-scrollbar-track-background-color-alpha));
  scrollbar-width: thin;
}

.aa-Panel--scrollable::-webkit-scrollbar {
  width: 13px;
  width: var(--aa-scrollbar-width);
}

.aa-Panel--scrollable::-webkit-scrollbar-track {
  background-color: rgba(234, 234, 234, 1);
  background-color: rgba(var(--aa-scrollbar-track-background-color-rgb),
      var(--aa-scrollbar-track-background-color-alpha));
}

.aa-Panel--scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-scrollbar-thumb-background-color-rgb),
      var(--aa-scrollbar-thumb-background-color-alpha));
  border-radius: 9999px;
  border: 3px solid rgba(234, 234, 234, 1);
  border: 3px solid rgba(var(--aa-scrollbar-track-background-color-rgb),
      var(--aa-scrollbar-track-background-color-alpha));
  border-right-width: 2px;
}

.aa-Source {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.aa-Source:empty {
  display: none;
}

.aa-SourceNoResults {
  font-size: 1em;
  margin: 0;
  padding: calc(16 * 1 * 1px);
  padding: var(--aa-spacing);
}

.aa-List {
  list-style: none;
  margin: 0;
}

.aa-List,
.aa-SourceHeader {
  padding: 0;
  position: relative;
}

.aa-SourceHeader {
  margin: calc((16 * 1 * 1px) / 2) 0.5em calc((16 * 1 * 1px) / 2) 0;
  margin: calc(calc(16 * 1 * 1px) / 2) 0.5em calc(calc(16 * 1 * 1px) / 2) 0;
  margin: var(--aa-spacing-half) 0.5em var(--aa-spacing-half) 0;
}

.aa-SourceHeader:empty {
  display: none;
}

.aa-SourceHeaderTitle {
  background: rgba(255, 255, 255, 1);
  background: rgba(var(--aa-background-color-rgb),
      var(--aa-background-color-alpha));
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  font-weight: var(--aa-font-weight-semibold);
  margin: 0;
  padding: 0 calc((16 * 1 * 1px) / 2) 0 0;
  padding: 0 calc(calc(16 * 1 * 1px) / 2) 0 0;
  padding: 0 var(--aa-spacing-half) 0 0;
  position: relative;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-SourceHeaderLine {
  border-bottom: 1px solid rgba(62, 52, 211, 1);
  border-bottom: 1px solid rgba(var(--aa-primary-color-rgb), 1);
  display: block;
  height: 2px;
  left: 0;
  margin: 0;
  opacity: 0.3;
  padding: 0;
  position: absolute;
  right: 0;
  top: calc((16 * 1 * 1px) / 2);
  top: calc(calc(16 * 1 * 1px) / 2);
  top: var(--aa-spacing-half);
  z-index: calc(9999 - 1);
  z-index: calc(var(--aa-base-z-index) - 1);
}

.aa-SourceFooterSeeAll {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1),
      rgba(128, 126, 163, 0.14));
  background: linear-gradient(180deg,
      rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha)),
      rgba(128, 126, 163, 0.14));
  border: 1px solid rgba(128, 126, 163, 0.6);
  border: 1px solid rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  border-radius: 5px;
  box-shadow:
    inset 0 0 2px #fff,
    0 2px 2px -1px rgba(76, 69, 88, 0.15);
  color: inherit;
  font-size: 0.95em;
  font-weight: 500;
  font-weight: var(--aa-font-weight-medium);
  padding: 0.475em 1em 0.6em;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.aa-SourceFooterSeeAll:focus,
.aa-SourceFooterSeeAll:hover {
  border: 1px solid rgba(62, 52, 211, 1);
  border: 1px solid rgba(var(--aa-primary-color-rgb), 1);
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
}

.aa-Item {
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: grid;
  min-height: calc((16 * 1 * 1px) * 2.5);
  min-height: calc(calc(16 * 1 * 1px) * 2.5);
  min-height: calc(var(--aa-spacing) * 2.5);
  padding: calc(((16 * 1 * 1px) / 2) / 2);
  padding: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  padding: calc(var(--aa-spacing-half) / 2);
}

.aa-Item[aria-selected="true"] {
  background-color: rgba(179, 173, 214, 0.205);
  background-color: rgba(var(--aa-selected-color-rgb),
      var(--aa-selected-color-alpha));
}

.aa-Item[aria-selected="true"] .aa-ActiveOnly,
.aa-Item[aria-selected="true"] .aa-ItemActionButton {
  visibility: visible;
}

.aa-ItemIcon {
  align-items: center;
  background: rgba(255, 255, 255, 1);
  background: rgba(var(--aa-background-color-rgb),
      var(--aa-background-color-alpha));
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(128, 126, 163, 0.3);
  box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  color: rgba(119, 119, 163, 1);
  color: rgba(var(--aa-icon-color-rgb), var(--aa-icon-color-alpha));
  display: flex;
  flex-shrink: 0;
  font-size: 0.7em;
  height: calc(20px + ((16 * 1 * 1px) / 2));
  height: calc(20px + calc(calc(16 * 1 * 1px) / 2));
  height: calc(var(--aa-icon-size) + var(--aa-spacing-half));
  justify-content: center;
  overflow: hidden;
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  text-align: center;
  width: calc(20px + ((16 * 1 * 1px) / 2));
  width: calc(20px + calc(calc(16 * 1 * 1px) / 2));
  width: calc(var(--aa-icon-size) + var(--aa-spacing-half));
}

.aa-ItemIcon img {
  height: auto;
  max-height: calc(20px + ((16 * 1 * 1px) / 2) - 8px);
  max-height: calc(20px + calc(calc(16 * 1 * 1px) / 2) - 8px);
  max-height: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
  max-width: calc(20px + ((16 * 1 * 1px) / 2) - 8px);
  max-width: calc(20px + calc(calc(16 * 1 * 1px) / 2) - 8px);
  max-width: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
  width: auto;
}

.aa-ItemIcon svg {
  height: 20px;
  height: var(--aa-icon-size);
  width: 20px;
  width: var(--aa-icon-size);
}

.aa-ItemIcon--alignTop {
  align-self: flex-start;
}

.aa-ItemIcon--noBorder {
  background: none;
  box-shadow: none;
}

.aa-ItemIcon--picture {
  height: 96px;
  width: 96px;
}

.aa-ItemIcon--picture img {
  max-height: 100%;
  max-width: 100%;
  padding: calc((16 * 1 * 1px) / 2);
  padding: calc(calc(16 * 1 * 1px) / 2);
  padding: var(--aa-spacing-half);
}

.aa-ItemContent {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: calc((16 * 1 * 1px) / 2);
  gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: calc((16 * 1 * 1px) / 2);
  grid-gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: var(--aa-spacing-half);
  gap: var(--aa-spacing-half);
  grid-auto-flow: column;
  line-height: 1.25em;
  overflow: hidden;
}

.aa-ItemContent:empty {
  display: none;
}

.aa-ItemContent mark {
  background: none;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-style: normal;
  font-weight: 700;
  font-weight: var(--aa-font-weight-bold);
}

.aa-ItemContent--dual {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.aa-ItemContent--dual .aa-ItemContentSubtitle,
.aa-ItemContent--dual .aa-ItemContentTitle {
  display: block;
}

.aa-ItemContent--indented {
  padding-left: calc(20px + (16 * 1 * 1px));
  padding-left: calc(20px + calc(16 * 1 * 1px));
  padding-left: calc(var(--aa-icon-size) + var(--aa-spacing));
}

.aa-ItemContentBody {
  display: grid;
  gap: calc(((16 * 1 * 1px) / 2) / 2);
  gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(((16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(var(--aa-spacing-half) / 2);
  gap: calc(var(--aa-spacing-half) / 2);
}

.aa-ItemContentTitle {
  display: inline-block;
  margin: 0 0.5em 0 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aa-ItemContentSubtitle {
  font-size: 0.92em;
}

.aa-ItemContentSubtitleIcon:before {
  border-color: rgba(128, 126, 163, 0.64);
  border-color: rgba(var(--aa-muted-color-rgb), 0.64);
  border-style: solid;
  content: "";
  display: inline-block;
  left: 1px;
  position: relative;
  top: -3px;
}

.aa-ItemContentSubtitle--inline .aa-ItemContentSubtitleIcon:before {
  border-width: 0 0 1.5px;
  margin-left: calc((16 * 1 * 1px) / 2);
  margin-left: calc(calc(16 * 1 * 1px) / 2);
  margin-left: var(--aa-spacing-half);
  margin-right: calc(((16 * 1 * 1px) / 2) / 2);
  margin-right: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  margin-right: calc(var(--aa-spacing-half) / 2);
  width: calc(((16 * 1 * 1px) / 2) + 2px);
  width: calc(calc(calc(16 * 1 * 1px) / 2) + 2px);
  width: calc(var(--aa-spacing-half) + 2px);
}

.aa-ItemContentSubtitle--standalone {
  align-items: center;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  display: grid;
  gap: calc((16 * 1 * 1px) / 2);
  gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: calc((16 * 1 * 1px) / 2);
  grid-gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: var(--aa-spacing-half);
  gap: var(--aa-spacing-half);
  grid-auto-flow: column;
  justify-content: start;
}

.aa-ItemContentSubtitle--standalone .aa-ItemContentSubtitleIcon:before {
  border-radius: 0 0 0 3px;
  border-width: 0 0 1.5px 1.5px;
  height: calc((16 * 1 * 1px) / 2);
  height: calc(calc(16 * 1 * 1px) / 2);
  height: var(--aa-spacing-half);
  width: calc((16 * 1 * 1px) / 2);
  width: calc(calc(16 * 1 * 1px) / 2);
  width: var(--aa-spacing-half);
}

.aa-ItemContentSubtitleCategory {
  color: rgba(128, 126, 163, 1);
  color: rgba(var(--aa-muted-color-rgb), 1);
  font-weight: 500;
}

.aa-ItemContentDescription {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-size: 0.85em;
  max-width: 100%;
  overflow-x: hidden;
  text-overflow: ellipsis;
}

.aa-ItemContentDescription:empty {
  display: none;
}

.aa-ItemContentDescription mark {
  background: rgba(245, 223, 77, 0.5);
  background: rgba(var(--aa-description-highlight-background-color-rgb),
      var(--aa-description-highlight-background-color-alpha));
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-style: normal;
  font-weight: 500;
  font-weight: var(--aa-font-weight-medium);
}

.aa-ItemContentDash {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  display: none;
  opacity: 0.4;
}

.aa-ItemContentTag {
  background-color: rgba(62, 52, 211, 0.2);
  background-color: rgba(var(--aa-primary-color-rgb),
      var(--aa-primary-color-alpha));
  border-radius: 3px;
  margin: 0 0.4em 0 0;
  padding: 0.08em 0.3em;
}

.aa-ItemLink,
.aa-ItemWrapper {
  align-items: center;
  color: inherit;
  display: grid;
  gap: calc(((16 * 1 * 1px) / 2) / 2);
  gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(((16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(var(--aa-spacing-half) / 2);
  gap: calc(var(--aa-spacing-half) / 2);
  grid-auto-flow: column;
  justify-content: space-between;
  width: 100%;
}

.aa-ItemLink {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.aa-ItemActions {
  display: grid;
  grid-auto-flow: column;
  height: 100%;
  justify-self: end;
  margin: 0 calc((16 * 1 * 1px) / -3);
  margin: 0 calc(calc(16 * 1 * 1px) / -3);
  margin: 0 calc(var(--aa-spacing) / -3);
  padding: 0 2px 0 0;
}

.aa-ItemActionButton {
  align-items: center;
  background: none;
  border: 0;
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  padding: 0;
}

.aa-ItemActionButton:focus svg,
.aa-ItemActionButton:hover svg {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
}

@media (hover: none) and (pointer: coarse) {

  .aa-ItemActionButton:focus svg,
  .aa-ItemActionButton:hover svg {
    color: inherit;
  }
}

.aa-ItemActionButton svg {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  margin: 0;
  margin: calc(calc(16 * 1 * 1px) / 3);
  margin: calc(var(--aa-spacing) / 3);
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-action-icon-size);
}

.aa-ActiveOnly {
  visibility: hidden;
}

.aa-PanelHeader {
  align-items: center;
  background: rgba(62, 52, 211, 1);
  background: rgba(var(--aa-primary-color-rgb), 1);
  color: #fff;
  display: grid;
  height: var(--aa-modal-header-height);
  margin: 0;
  padding: calc((16 * 1 * 1px) / 2) calc(16 * 1 * 1px);
  padding: calc(calc(16 * 1 * 1px) / 2) calc(16 * 1 * 1px);
  padding: var(--aa-spacing-half) var(--aa-spacing);
  position: relative;
}

.aa-PanelHeader:after {
  background-image: linear-gradient(rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 1),
      rgba(var(--aa-background-color-rgb), 0));
  bottom: calc(((16 * 1 * 1px) / 2) * -1);
  bottom: calc(calc(calc(16 * 1 * 1px) / 2) * -1);
  bottom: calc(var(--aa-spacing-half) * -1);
  content: "";
  height: calc((16 * 1 * 1px) / 2);
  height: calc(calc(16 * 1 * 1px) / 2);
  height: var(--aa-spacing-half);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-PanelFooter {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-background-color-rgb),
      var(--aa-background-color-alpha));
  box-shadow: inset 0 1px 0 rgba(128, 126, 163, 0.3);
  box-shadow: inset 0 1px 0 rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: calc(16 * 1 * 1px);
  padding: var(--aa-spacing);
  position: relative;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-PanelFooter:after {
  background-image: linear-gradient(rgba(255, 255, 255, 0),
      rgba(128, 126, 163, 0.6));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 0),
      rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha)));
  content: "";
  height: calc(16 * 1 * 1px);
  height: var(--aa-spacing);
  left: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc((16 * 1 * 1px) * -1);
  top: calc(calc(16 * 1 * 1px) * -1);
  top: calc(var(--aa-spacing) * -1);
  z-index: calc(9999 - 1);
  z-index: calc(var(--aa-base-z-index) - 1);
}

.aa-DetachedContainer {
  background: rgba(255, 255, 255, 1);
  background: rgba(var(--aa-background-color-rgb),
      var(--aa-background-color-alpha));
  bottom: 0;
  box-shadow:
    0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);
  box-shadow: var(--aa-panel-shadow);
  display: flex;
  flex-direction: column;
  left: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-DetachedContainer:after {
  height: 32px;
}

.aa-DetachedContainer .aa-SourceHeader {
  margin: calc((16 * 1 * 1px) / 2) 0 calc((16 * 1 * 1px) / 2) 2px;
  margin: calc(calc(16 * 1 * 1px) / 2) 0 calc(calc(16 * 1 * 1px) / 2) 2px;
  margin: var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px;
}

.aa-DetachedContainer .aa-Panel {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-background-color-rgb),
      var(--aa-background-color-alpha));
  border-radius: 0;
  box-shadow: none;
  flex-grow: 1;
  margin: 0;
  padding: 0;
  position: relative;
}

.aa-DetachedContainer .aa-PanelLayout {
  bottom: 0;
  box-shadow: none;
  left: 0;
  margin: 0;
  max-height: none;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.aa-DetachedFormContainer {
  border-bottom: 1px solid rgba(128, 126, 163, 0.3);
  border-bottom: 1px solid rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0;
  padding: calc((16 * 1 * 1px) / 2);
  padding: calc(calc(16 * 1 * 1px) / 2);
  padding: var(--aa-spacing-half);
}

.aa-DetachedCancelButton {
  background: none;
  border: 0;
  border-radius: 3px;
  color: inherit;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  cursor: pointer;
  font: inherit;
  margin: 0 0 0 calc((16 * 1 * 1px) / 2);
  margin: 0 0 0 calc(calc(16 * 1 * 1px) / 2);
  margin: 0 0 0 var(--aa-spacing-half);
  padding: 0 calc((16 * 1 * 1px) / 2);
  padding: 0 calc(calc(16 * 1 * 1px) / 2);
  padding: 0 var(--aa-spacing-half);
}

.aa-DetachedCancelButton:focus,
.aa-DetachedCancelButton:hover {
  box-shadow: inset 0 0 0 1px rgba(128, 126, 163, 0.3);
  box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
}

.aa-DetachedContainer--modal {
  border-radius: 6px;
  bottom: inherit;
  height: auto;
  margin: 0 auto;
  max-width: 680px;
  max-width: var(--aa-detached-modal-max-width);
  position: absolute;
  top: 3%;
}

.aa-DetachedContainer--modal .aa-PanelLayout {
  max-height: 500px;
  max-height: var(--aa-detached-modal-max-height);
  padding-bottom: calc((16 * 1 * 1px) / 2);
  padding-bottom: calc(calc(16 * 1 * 1px) / 2);
  padding-bottom: var(--aa-spacing-half);
  position: static;
}

.aa-DetachedSearchButton {
  align-items: center;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-input-background-color-rgb),
      var(--aa-input-background-color-alpha));
  border: 1px solid rgba(128, 126, 163, 0.8);
  border: 1px solid rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
  border-radius: 3px;
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: flex;
  font: inherit;
  font-family: inherit;
  font-family: var(--aa-font-family);
  font-size: calc(16 * 1px);
  font-size: var(--aa-font-size);
  height: 44px;
  height: var(--aa-search-input-height);
  margin: 0;
  padding: 0 calc(44px / 8);
  padding: 0 calc(var(--aa-search-input-height) / 8);
  position: relative;
  text-align: left;
  width: 100%;
}

.aa-DetachedSearchButton:focus {
  border-color: rgba(62, 52, 211, 1);
  border-color: rgba(var(--aa-primary-color-rgb), 1);
  box-shadow:
    rgba(62, 52, 211, 0.2) 0 0 0 3px,
    inset rgba(62, 52, 211, 0.2) 0 0 0 2px;
  box-shadow:
    rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 3px,
    inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
  outline: medium none currentColor;
}

.aa-DetachedSearchButtonIcon {
  align-items: center;
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
  cursor: auto;
  display: flex;
  flex-shrink: 0;
  height: 100%;
  justify-content: center;
  width: calc(20px + (16 * 1 * 1px));
  width: calc(20px + calc(16 * 1 * 1px));
  width: calc(var(--aa-icon-size) + var(--aa-spacing));
}

.aa-DetachedSearchButtonQuery {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), 1);
  line-height: 1.25em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aa-DetachedSearchButtonPlaceholder[hidden] {
  display: none;
}

.aa-Detached {
  height: 100vh;
  overflow: hidden;
}

.aa-DetachedOverlay {
  background-color: rgba(115, 114, 129, 0.4);
  background-color: rgba(var(--aa-overlay-color-rgb),
      var(--aa-overlay-color-alpha));
  height: 100vh;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: calc(9999 - 1);
  z-index: calc(var(--aa-base-z-index) - 1);
}

.aa-GradientBottom,
.aa-GradientTop {
  height: calc((16 * 1 * 1px) / 2);
  height: calc(calc(16 * 1 * 1px) / 2);
  height: var(--aa-spacing-half);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-GradientTop {
  background-image: linear-gradient(rgba(255, 255, 255, 1),
      rgba(255, 255, 255, 0));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 1),
      rgba(var(--aa-background-color-rgb), 0));
  top: 0;
}

.aa-GradientBottom {
  background-image: linear-gradient(rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 1));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 0),
      rgba(var(--aa-background-color-rgb), 1));
  border-bottom-left-radius: calc((16 * 1 * 1px) / 4);
  border-bottom-left-radius: calc(calc(16 * 1 * 1px) / 4);
  border-bottom-left-radius: calc(var(--aa-spacing) / 4);
  border-bottom-right-radius: calc((16 * 1 * 1px) / 4);
  border-bottom-right-radius: calc(calc(16 * 1 * 1px) / 4);
  border-bottom-right-radius: calc(var(--aa-spacing) / 4);
  bottom: 0;
}

@media (hover: none) and (pointer: coarse) {
  .aa-DesktopOnly {
    display: none;
  }
}

@media (hover: hover) {
  .aa-TouchOnly {
    display: none;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fb_hidden {
  position: absolute;
  top: -10000px;
  z-index: 10001;
}

.fb_reposition {
  overflow: hidden;
  position: relative;
}

.fb_invisible {
  display: none;
}

.fb_reset {
  background: none;
  border: 0px;
  border-spacing: 0;
  color: #000;
  cursor: auto;
  direction: ltr;
  font-family:
    lucida grande,
    tahoma,
    verdana,
    arial,
    sans-serif;
  font-size: 11px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  margin: 0;
  overflow: visible;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
}

.fb_reset>div {
  overflow: hidden;
}

@keyframes fb_transform {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fb_animate {
  animation: fb_transform 0.3s forwards;
}

.fb_hidden {
  position: absolute;
  top: -10000px;
  z-index: 10001;
}

.fb_reposition {
  overflow: hidden;
  position: relative;
}

.fb_invisible {
  display: none;
}

.fb_reset {
  background: none;
  border: 0px;
  border-spacing: 0;
  color: #000;
  cursor: auto;
  direction: ltr;
  font-family:
    lucida grande,
    tahoma,
    verdana,
    arial,
    sans-serif;
  font-size: 11px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  margin: 0;
  overflow: visible;
  padding: 0;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  visibility: visible;
  white-space: normal;
  word-spacing: normal;
}

.fb_reset>div {
  overflow: hidden;
}

@keyframes fb_transform {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fb_animate {
  animation: fb_transform 0.3s forwards;
}

.fb_dialog {
  background: #525252b3;
  position: absolute;
  top: -10000px;
  z-index: 10001;
}

.fb_dialog_advanced {
  border-radius: 8px;
  padding: 10px;
}

.fb_dialog_content {
  background: #fff;
  color: #373737;
}

.fb_dialog_close_icon {
  background: url(https://connect.facebook.net/rsrc.php/v4/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 0 transparent;
  cursor: pointer;
  display: block;
  height: 15px;
  position: absolute;
  right: 18px;
  top: 17px;
  width: 15px;
}

.fb_dialog_mobile .fb_dialog_close_icon {
  left: 5px;
  right: auto;
  top: 5px;
}

.fb_dialog_padding {
  background-color: transparent;
  position: absolute;
  width: 1px;
  z-index: -1;
}

.fb_dialog_close_icon:hover {
  background: url(https://connect.facebook.net/rsrc.php/v4/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -15px transparent;
}

.fb_dialog_close_icon:active {
  background: url(https://connect.facebook.net/rsrc.php/v4/yq/r/IE9JII6Z1Ys.png) no-repeat scroll 0 -30px transparent;
}

.fb_dialog_iframe {
  line-height: 0;
}

.fb_dialog_content .dialog_title {
  background: #6d84b4;
  border: 1px solid #365899;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

.fb_dialog_content .dialog_title>span {
  background: url(https://connect.facebook.net/rsrc.php/v4/yd/r/Cou7n-nqK52.gif) no-repeat 5px 50%;
  float: left;
  padding: 5px 0 7px 26px;
}

body.fb_hidden {
  height: 100%;
  left: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  top: -10000px;
  transform: none;
  width: 100%;
}

.fb_dialog.fb_dialog_mobile.loading {
  background: url(https://connect.facebook.net/rsrc.php/v4/ya/r/3rhSv5V8j3o.gif) #fff no-repeat 50% 50%;
  min-height: 100%;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 10001;
}

.fb_dialog.fb_dialog_mobile.loading.centered {
  background: none;
  height: auto;
  min-height: initial;
  min-width: initial;
  width: auto;
}

.fb_dialog.fb_dialog_mobile.loading.centered #fb_dialog_loader_spinner {
  width: 100%;
}

.fb_dialog.fb_dialog_mobile.loading.centered .fb_dialog_content {
  background: none;
}

.loading.centered #fb_dialog_loader_close {
  clear: both;
  color: #fff;
  display: block;
  font-size: 18px;
  padding-top: 20px;
}

#fb-root #fb_dialog_ipad_overlay {
  background: #0006;
  inset: 0;
  min-height: 100%;
  position: absolute;
  width: 100%;
  z-index: 10000;
}

#fb-root #fb_dialog_ipad_overlay.hidden {
  display: none;
}

.fb_dialog.fb_dialog_mobile.loading iframe {
  visibility: hidden;
}

.fb_dialog_mobile .fb_dialog_iframe {
  position: sticky;
  top: 0;
}

.fb_dialog_content .dialog_header {
  background: linear-gradient(from(#738aba), to(#2c4987));
  border-bottom: 1px solid;
  border-color: #043b87;
  box-shadow: #fff 0 1px 1px -1px inset;
  color: #fff;
  font:
    700 14px Helvetica,
    sans-serif;
  text-overflow: ellipsis;
  text-shadow: rgba(0, 30, 84, 0.296875) 0px -1px 0px;
  vertical-align: middle;
  white-space: nowrap;
}

.fb_dialog_content .dialog_header table {
  height: 43px;
  width: 100%;
}

.fb_dialog_content .dialog_header td.header_left {
  font-size: 12px;
  padding-left: 5px;
  vertical-align: middle;
  width: 60px;
}

.fb_dialog_content .dialog_header td.header_right {
  font-size: 12px;
  padding-right: 5px;
  vertical-align: middle;
  width: 60px;
}

.fb_dialog_content .touchable_button {
  background: linear-gradient(from(#4267b2), to(#2a4887));
  background-clip: padding-box;
  border: 1px solid #29487d;
  border-radius: 3px;
  display: inline-block;
  line-height: 18px;
  margin-top: 3px;
  max-width: 85px;
  padding: 4px 12px;
  position: relative;
}

.fb_dialog_content .dialog_header .touchable_button input {
  background: none;
  border: none;
  color: #fff;
  font:
    700 12px Helvetica,
    sans-serif;
  margin: 2px -12px;
  padding: 2px 6px 3px;
  text-shadow: rgba(0, 30, 84, 0.296875) 0px -1px 0px;
}

.fb_dialog_content .dialog_header .header_center {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
}

.fb_dialog_content .dialog_content {
  background: url(https://connect.facebook.net/rsrc.php/v4/y9/r/jKEcVPZFk-2.gif) no-repeat 50% 50%;
  border: 1px solid #4a4a4a;
  border-bottom: 0;
  border-top: 0;
  height: 150px;
}

.fb_dialog_content .dialog_footer {
  background: #f5f6f7;
  border: 1px solid #4a4a4a;
  border-top-color: #ccc;
  height: 40px;
}

#fb_dialog_loader_close {
  float: left;
}

.fb_dialog.fb_dialog_mobile .fb_dialog_close_icon {
  visibility: hidden;
}

#fb_dialog_loader_spinner {
  animation: rotateSpinner 1.2s linear infinite;
  background-color: transparent;
  background-image: url(https://connect.facebook.net/rsrc.php/v4/y2/r/onuUJj0tCqE.png);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  height: 24px;
  width: 24px;
}

@keyframes rotateSpinner {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

.fb_iframe_widget {
  display: inline-block;
  position: relative;
}

.fb_iframe_widget span {
  display: inline-block;
  position: relative;
  text-align: justify;
}

.fb_iframe_widget iframe {
  position: absolute;
}

.fb_iframe_widget_lift {
  z-index: 1;
}

.fb_iframe_widget_fluid {
  display: inline;
}

.fb_iframe_widget_fluid span {
  width: 100%;
}

.boots-grayscale {
  filter: grayscale(100%);
}

@keyframes intercom-lightweight-app-launcher {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intercom-lightweight-app-gradient {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes intercom-lightweight-app-messenger {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  40% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.intercom-lightweight-app {
  position: fixed;
  z-index: 2147483001;
  width: 0;
  height: 0;
  font-family:
    system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.intercom-lightweight-app-gradient {
  position: fixed;
  z-index: 2147483002;
  width: 500px;
  height: 500px;
  bottom: 0;
  right: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at bottom right,
      rgba(29, 39, 54, 0.16) 0%,
      rgba(29, 39, 54, 0) 72%);
  animation: intercom-lightweight-app-gradient 200ms ease-out;
}

.intercom-lightweight-app-launcher {
  position: fixed;
  z-index: 2147483003;
  padding: 0 !important;
  margin: 0 !important;
  border: none;
  bottom: 20px;
  right: 20px;
  max-width: 48px;
  width: 48px;
  max-height: 48px;
  height: 48px;
  border-radius: 50%;
  background: #000000;
  cursor: pointer;
  box-shadow:
    0 1px 6px 0 rgba(0, 0, 0, 0.06),
    0 2px 32px 0 rgba(0, 0, 0, 0.16);
  transition: transform 167ms cubic-bezier(0.33, 0, 0, 1);
  box-sizing: content-box;
}

.intercom-lightweight-app-launcher:hover {
  transition: transform 250ms cubic-bezier(0.33, 0, 0, 1);
  transform: scale(1.1);
}

.intercom-lightweight-app-launcher:active {
  transform: scale(0.85);
  transition: transform 134ms cubic-bezier(0.45, 0, 0.2, 1);
}

.intercom-lightweight-app-launcher:focus {
  outline: none;
}

.intercom-lightweight-app-launcher-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  transition:
    transform 100ms linear,
    opacity 80ms linear;
}

.intercom-lightweight-app-launcher-icon-open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.intercom-lightweight-app-launcher-icon-open svg {
  width: 24px;
  height: 24px;
}

.intercom-lightweight-app-launcher-icon-open svg path {
  fill: rgb(255, 255, 255);
}

.intercom-lightweight-app-launcher-icon-self-serve {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.intercom-lightweight-app-launcher-icon-self-serve svg {
  height: 44px;
}

.intercom-lightweight-app-launcher-icon-self-serve svg path {
  fill: rgb(255, 255, 255);
}

.intercom-lightweight-app-launcher-custom-icon-open {
  max-height: 24px;
  max-width: 24px;

  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.intercom-lightweight-app-launcher-icon-minimize {
  opacity: 0;
  transform: rotate(-60deg) scale(0);
}

.intercom-lightweight-app-launcher-icon-minimize svg path {
  fill: rgb(255, 255, 255);
}

/* Extended launcher styles */
.intercom-lightweight-app-launcher.intercom-launcher-extended {
  width: calc(180px - 30px);
  max-width: calc(180px - 30px);
  height: calc(45px - 26px);
  max-height: calc(45px - 26px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px 12px 12px !important;
  gap: 6px;
  /* Use theme background instead of hardcoded gradient */
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0px -2px 50px rgba(0, 0, 0, 0.1);
}

.intercom-lightweight-app-launcher.intercom-launcher-extended .intercom-lightweight-app-launcher-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.intercom-lightweight-app-launcher-text {
  /* Match text color with launcher icon */
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
  opacity: 1;
  transition: opacity 80ms linear;
}

.intercom-lightweight-app-messenger {
  position: fixed;
  z-index: 2147483003;
  overflow: hidden;
  background-color: #ffffff;
  animation: intercom-lightweight-app-messenger 250ms cubic-bezier(0, 1, 1, 1);
  transform-origin: bottom right;

  width: 400px;
  height: calc(100% - 104px);
  max-height: 704px;
  min-height: 250px;
  right: 20px;
  bottom: 84px;
  box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);

  border-radius: 24px;
}

.intercom-lightweight-app-messenger-header {
  height: 64px;
  border-bottom: none;
  background: #ffffff;
}

.intercom-lightweight-app-messenger-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  font-size: 14px;
  line-height: 21px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.05);
}

.p-inline {
  display: inline;
  background-color: rgb(0 0 0 / 66%);
  padding: 0 8px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

@media print {
  .intercom-lightweight-app {
    display: none;
  }
}

@media (min-width: 992px) {
  #category-list-pos-2 .swiper-slide {
    padding-right: 5px;
  }
}

#checkout-items-list img {
  max-width: 100px;
}