@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap");@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wdth,wght@0,62.5..100,100..900;1,62.5..100,100..900&display=swap");:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

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

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

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

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

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

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

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

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

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

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

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

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

/*# sourceMappingURL=ReactToastify.css.map *//* Mixins and functions */
._footer_wrapper_rgw07_2 {
  background-color: var(--clr-white);
}
._footer_wrapper_rgw07_2 .footer_content_top {
  padding: 25px 0px 25px 0px;
}
@media print {
  ._footer_wrapper_rgw07_2 .footer_content_top {
    display: none !important;
  }
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top {
    padding: 20px 0px 20px 0px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top #footer-con {
  height: 295px;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top #footer-con {
    height: auto;
  }
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section_header .icon,
  ._footer_wrapper_rgw07_2 .footer_content_top .connect-with-us .icon {
    display: block !important;
    padding: 1px;
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section_header .icon svg,
  ._footer_wrapper_rgw07_2 .footer_content_top .connect-with-us .icon svg {
    color: #F78F1E;
    border: 1px solid #F78F1E;
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section_header .icon .icon-Minus,
  ._footer_wrapper_rgw07_2 .footer_content_top .connect-with-us .icon .icon-Minus {
    height: 2.5px;
    display: block;
    width: 15px;
    background-color: var(--clr-white);
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section_header .icon i,
  ._footer_wrapper_rgw07_2 .footer_content_top .connect-with-us .icon i {
    color: var(--clr-white);
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .section-tab-mobile {
    display: block !important;
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .section_item_hide {
    display: none !important;
  }
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .distributor-tools .list-item:first-child {
    display: none;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .contactInfo {
  margin-top: 20px;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .contactInfo {
    margin-top: 0;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .contactInfo p {
  font-size: 22px;
  color: #F78F1E;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-decoration: underline;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .contactInfo p {
    font-size: 16px;
    margin-bottom: 0;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .contactDialog .dialog-container .dialog-content .dialog-body p a {
  color: var(--secondary-color);
  font-weight: 600;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section {
  list-style-type: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section #footerCategoryMenu .category-menu button svg {
  display: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section #footerCategoryMenu .category-menu button .icon-icon-menu {
  display: none;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section #footerCategoryMenu .category-menu button .icon-icon-menu {
    padding: 1px;
  }
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section #footerCategoryMenu .category-menu button .icon-icon-menu {
    display: block;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section #footerCategoryMenu .category-menu button .icon-icon-menu svg {
  display: block;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section #footerCategoryMenu .category-menu button .icon-icon-menu svg {
    color: #F78F1E;
    border: 1px solid #F78F1E;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section::marker {
  display: none;
  content: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_header .heading,
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .connect-with-us .heading {
  display: block;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 10px;
  color: var(--header-text) !important;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_header .heading,
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .connect-with-us .heading {
    font-size: 1rem;
    margin-top: 15px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_header .heading a,
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .connect-with-us .heading a {
  font-family: "Oswald", sans-serif;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item.cat-list-top {
  column-count: 2;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu ul {
  display: flex;
  flex-direction: column;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item.section-contact li a:hover {
  color: var(--main-color) !important;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item.section-contact li:hover {
  color: var(--txt-color-light) !important;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item.section-contact li:hover a,
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item.section-contact li:hover span {
  color: var(--txt-color-light);
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .cat-list .mobileAllPrdctsMenu,
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .cat-list .footer_section {
  display: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .cat-list li a {
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6875rem;
  color: var(--header-text);
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .cat-list li a:hover {
  color: var(--secondary-color);
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .cat-list li a {
    margin-bottom: 10px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button {
  margin-top: 0;
  background-color: transparent !important;
  border: none !important;
  color: var(--header-text) !important;
  text-transform: uppercase;
  padding: 0;
  font-weight: 400;
  height: auto;
  line-height: normal;
  font-size: 1.375rem;
  cursor: default;
  z-index: 0;
  overflow: visible;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button .productName {
  font-family: "Oswald", sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.5rem;
  margin-bottom: 10px;
  color: var(--header-text) !important;
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button .productName {
    font-size: 16px;
  }
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button .productName {
    font-size: 1rem;
    margin-top: 15px;
  }
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 14px;
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button .icon {
    display: block !important;
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button .icon .icon-Minus {
    height: 2.5px;
    display: block;
    width: 15px;
    background-color: var(--clr-white);
  }
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .category-menu .theme-button .icon i {
    color: var(--clr-white);
    font-size: 16px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .categoryMenu .list_menu_item a img {
  display: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .categoryMenu .subListWrapper {
  display: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .subcat-list {
  display: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .cat-list-top .hovered-image-container {
  display: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item ul li {
  color: var(--dark-black);
  font-size: 16px;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item ul li:hover .pointer-none {
  color: var(--txt-color-light);
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item ul li:hover a {
  color: var(--dark-blue);
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item ul li:hover a:hover {
  color: var(--secondary-color);
}
@media (max-width: 1439.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item ul li {
    font-size: 14px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .list-item .pointer-none {
  pointer-events: none;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .list-item span {
  min-width: 46px;
}
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .list-item a,
._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .list-item span {
  font-family: "Roboto", sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--header-text);
  line-height: 27px;
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .list-item a,
  ._footer_wrapper_rgw07_2 .footer_content_top .footer_section .footer_section_item .list-item span {
    margin-bottom: 10px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .myAccount .myaccMenu a {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6875rem;
  color: var(--dark-gray);
  margin-bottom: 5px;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_content_top .myAccount .myaccMenu a {
    font-size: 0.75rem;
    margin-top: 0px;
  }
}
._footer_wrapper_rgw07_2 .footer_content_top .myAccount .myaccMenu a:hover {
  color: var(--dark-blue);
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .heading {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: var(--header-text);
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .subheading {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3125rem;
  color: var(--clr-white);
  width: 100%;
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .newsletter_form {
  margin-top: 20px;
  position: relative;
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .newsletter_form input {
  border: 1px solid #ddd;
  height: 50px;
  width: 100%;
  font-size: 16px;
  text-transform: capitalize;
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .newsletter_form #Subscribe {
  position: absolute;
  top: 7px;
  right: 10px;
  color: #fff;
  margin: 0;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  background: #003C68;
  z-index: 1;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .newsletter_form #Subscribe svg {
  font-size: 15px;
  transform: rotateZ(-33deg);
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footerNewslletter .newsletter_form #Subscribe {
    position: static;
    margin-top: 5px;
    font-size: 0.75pxrem;
  }
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footer_section_item {
  display: flex;
  flex-direction: column;
}
._footer_wrapper_rgw07_2 .rightFooterUpperWrap .footer_section_item .logoWrapper img {
  width: 200px;
  height: auto;
}
._footer_wrapper_rgw07_2 .copyrightWrap-top {
  background-color: var(--secondary-color);
  border-top: 1px solid var(--header-text);
}
._footer_wrapper_rgw07_2 .copyrightWrap {
  text-align: center;
  color: #000;
  padding: 8px 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .copyrightWrap {
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.625rem;
  }
}
._footer_wrapper_rgw07_2 .copyrightWrap .align {
  display: flex;
  justify-content: space-between;
  width: 50%;
}
@media (max-width: 575.98px) {
  ._footer_wrapper_rgw07_2 .copyrightWrap .align {
    width: 100%;
    font-size: 0.625rem;
  }
}
._footer_wrapper_rgw07_2 .copyrightWrap .social_link i {
  font-size: 18px;
}
._footer_wrapper_rgw07_2 .copyrightWrap span {
  font-size: 13px;
  color: var(--clr-white);
  font-weight: 300;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .copyrightWrap {
    font-size: 0.75rem;
    margin-top: 0px;
    line-height: 1.125rem;
    display: flex;
    align-items: center;
  }
}
._footer_wrapper_rgw07_2 .copyrightWrap .poweredbyLogo span {
  margin-right: 10px;
}
._footer_wrapper_rgw07_2 .copyrightWrap .poweredbyLogo img {
  width: auto;
  height: auto;
}
._footer_wrapper_rgw07_2 .footer_social .social_list {
  display: flex;
  gap: 10px;
}
@media (max-width: 1024.98px) {
  ._footer_wrapper_rgw07_2 .footer_social .social_list {
    margin-top: 0px;
  }
}
._footer_wrapper_rgw07_2 .footer_social .social_list .social_item .social_link {
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  text-align: center;
  vertical-align: middle;
  line-height: 30px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
._footer_wrapper_rgw07_2 .footer_social .social_list .social_item .social_link svg {
  font-size: 18px;
}
._footer_wrapper_rgw07_2 .footer_social .social_list .social_item .social_link i {
  color: var(--footer-text);
  line-height: 30px;
}
._footer_wrapper_rgw07_2 .footer_social .social_list .social_item .social_link i:hover:before {
  color: var(--secondary-color);
}
._footer_wrapper_rgw07_2 .footer_social .social_list .social_item .social_link i:before {
  color: var(--dark-black);
  font-size: 1.75rem;
}
._footer_wrapper_rgw07_2 .footer_social .social_list .social_item .social_link:hover {
  transform: rotate(360deg);
}
._footer_wrapper_rgw07_2 .copyrightWrap .powerd-by {
  white-space: nowrap;
}
._footer_wrapper_rgw07_2 .copyrightWrap .powerd-by span {
  font-size: 13px;
  color: var(--clr-white);
}
._footer_wrapper_rgw07_2 .copyrightWrap .powerd-by img {
  width: auto;
  margin-left: 14px;
  height: 21px;
}
._footer_wrapper_rgw07_2 .copyrightWrap .powerd-by .awslogo {
  height: 22px;
  width: auto;
}
._footer_wrapper_rgw07_2 .copyrightWrap .section-contact {
  margin-left: 14px;
}
._footer_wrapper_rgw07_2 ._section-tab-mobile_rgw07_51 {
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
}
._footer_wrapper_rgw07_2 ._section_item_show_rgw07_482 {
  max-height: 300px; /* Adjust this value to fit the content */
  opacity: 1;
}
._footer_wrapper_rgw07_2 ._footer_section_item_rgw07_143 img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
._footer_content_top_rgw07_5 ._mobileAllPrdctsMenu_rgw07_160._cat-item_rgw07_493._hasSubmenu_rgw07_493 {
  display: none !important;
}
#_footerCategoryMenu_rgw07_1 ._section-tab-mobile_rgw07_51 ._cat-list_rgw07_143 ._footer_section_rgw07_27 {
  display: none !important;
}
@media print {
  footer {
    display: none !important;
  }
}/* Mixins and functions */
.footerNewslletter {
  background-color: var(--light-gray);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.footerNewslletter .heading {
  color: var(--clr-white);
  font-size: 15px;
  text-align: left;
  margin-bottom: 0;
}
.footerNewslletter .footer_msg {
  max-width: 604px;
  margin: 10px auto 0 auto;
  margin-left: 20px;
}
.footerNewslletter .newsletter_form {
  max-width: 614px;
  margin: 0px auto 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.footerNewslletter .newsletter_form input {
  border-radius: 50px;
  background-color: transparent;
  border: 1px solid var(--txt-color-light);
  font-size: 14px;
  width: 100%;
  height: 40px;
  padding: 0 50px 0 15px;
  outline: none;
  color: var(--txt-color-light);
  font-family: "Alexandria", sans-serif;
}
.footerNewslletter .newsletter_form input::placeholder {
  color: var(--txt-color-light);
  font-size: 14px;
  font-weight: 400;
}
.footerNewslletter .newsletter_form input::placeholder {
  font-size: 14px;
  color: var(--icon-txtcolor);
}
.footerNewslletter .newsletter_form .theme-button {
  width: auto;
  line-height: 40px;
  padding: 0 15px;
  height: 40px;
  font-size: 16px;
  margin: 0 0 0 -52px;
  border-radius: 0;
  border: none;
}
@media (max-width: 1439.98px) {
  .footerNewslletter .newsletter_form .theme-button {
    font-size: 14px;
  }
}
.footerNewslletter .newsletter_form .theme-button::before {
  margin-right: 7px;
  font-size: 17px;
  vertical-align: bottom;
}/* Mixins and functions */
._footer_logo_1j88x_2 {
  margin: 20px 38px !important;
}
@media print {
  ._footer_logo_1j88x_2 {
    display: none;
  }
}
@media (max-width: 1024.98px) {
  ._footer_logo_1j88x_2 {
    margin: 0 36px !important;
  }
}
._footer_logo_1j88x_2 img {
  object-fit: contain;
}
._footer_logo_1j88x_2 #IconSwiper {
  position: relative;
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next.swiper-button-disabled,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev.swiper-button-disabled {
  background-color: #D9D9D9;
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next.swiper-button-disabled svg,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev.swiper-button-disabled svg {
  color: #444444;
  opacity: 0.9;
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev {
  position: absolute !important;
  top: 55px;
  width: 44px;
  height: 44px;
  background-color: #F78F1E;
  border: none;
  color: var(--clr-white);
  z-index: 1;
}
@media (max-width: 1024.98px) {
  ._footer_logo_1j88x_2 #IconSwiper .swiper-button-next,
  ._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 55px !important;
  }
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next svg,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev svg {
  font-size: 30px;
  color: var(--clr-white);
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next svg:hover,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev svg:hover {
  color: var(--header-text);
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next:hover,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev:hover {
  background-color: #EEEEEE !important;
  border: none !important;
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next:hover svg,
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev:hover svg {
  color: var(--header-text);
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev {
  left: -66px !important;
}
@media (max-width: 575.98px) {
  ._footer_logo_1j88x_2 #IconSwiper .swiper-button-prev {
    left: -40px !important;
  }
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next {
  right: -65px;
}
@media (max-width: 1024.98px) {
  ._footer_logo_1j88x_2 #IconSwiper .swiper-button-next {
    right: -40px;
  }
}
._footer_logo_1j88x_2 #IconSwiper .swiper-button-next svg {
  transform: rotate(180deg);
}
._footer_logo_1j88x_2 .swiper .swiper-pagination-bullets {
  display: none;
}/**
 * Swiper 9.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 28, 2023
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  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-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide,
swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.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;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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));
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.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:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .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-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  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-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next: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,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.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-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms 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;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.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: 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-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms 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: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  /*ADD_HOST*/
}
.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-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-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-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  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 > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification,
swiper-container .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,
.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,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.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 {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.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-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  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;
}
/*! @algolia/autocomplete-theme-classic 1.17.7 | 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 - .5px);padding:0 calc(calc(16 * 1 * 1px)*0.83333 - .5px);padding:0 calc(var(--aa-spacing)*0.83333 - .5px)}@media (hover:none) and (pointer:coarse){.aa-ClearButton{padding:0 calc((16 * 1 * 1px)*0.66667 - .5px);padding:0 calc(calc(16 * 1 * 1px)*0.66667 - .5px);padding:0 calc(var(--aa-spacing)*0.66667 - .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 .2s ease-in,filter .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:.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) .5em calc((16 * 1 * 1px) / 2) 0;margin:calc(calc(16 * 1 * 1px) / 2) .5em calc(calc(16 * 1 * 1px) / 2) 0;margin:var(--aa-spacing-half) .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:.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:.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,.14));background:linear-gradient(180deg,rgba(var(--aa-background-color-rgb),var(--aa-background-color-alpha)),rgba(128,126,163,.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,.15);color:inherit;font-size:.95em;font-weight:500;font-weight:var(--aa-font-weight-medium);padding:.475em 1em .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:.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 .5em 0 0;max-width:100%;overflow:hidden;padding:0;text-overflow:ellipsis;white-space:nowrap}.aa-ItemContentSubtitle{font-size:.92em}.aa-ItemContentSubtitleIcon:before{border-color:rgba(128, 126, 163,.64);border-color:rgba(var(--aa-muted-color-rgb),.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:.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:.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 .4em 0 0;padding:.08em .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:.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-DetachedContainer--modal .aa-PanelLayout:empty{display:none}.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}}
/* Mixins and functions */
body {
  overflow-x: hidden;
  font-family: "Lexend" !important;
}
._headerWrapperMain_129e1_8 {
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media print {
  ._headerWrapperMain_129e1_8 {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .headerTopWrap {
  padding: 15px 0;
  transition: 0.2s ease-out;
}
._headerWrapperMain_129e1_8 .headerTopSubWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerTopSubWrap {
    gap: 10px 0;
  }
}
._headerWrapperMain_129e1_8 .headerTopSubWrap .logoWrapper a {
  display: inline-block;
}
._headerWrapperMain_129e1_8 .headerTopSubWrap .logoWrapper img {
  width: 100%;
  height: auto;
  max-width: none;
  max-height: 120px;
  transition: 0.2s ease-out;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerTopSubWrap .logoWrapper img {
    margin-left: 15px;
    width: 80px;
  }
}
._headerWrapperMain_129e1_8 .searchSelWrap {
  display: none;
}
._headerWrapperMain_129e1_8 .searchIconMob {
  display: none;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .searchIconMob {
    display: block;
  }
  ._headerWrapperMain_129e1_8 .searchIconMob svg {
    font-size: 24px;
    color: #444444;
  }
  ._headerWrapperMain_129e1_8 .mobSearch {
    opacity: 0;
    top: 0;
    transition: top 0.3s ease, opacity 0.3s ease;
    position: absolute;
    width: 97%;
    margin: auto;
  }
  ._headerWrapperMain_129e1_8 .mobSearch .search-container {
    display: block;
  }
  ._headerWrapperMain_129e1_8 .mobSearch.show {
    top: 95px;
    opacity: 1;
    left: 0;
    right: 0;
  }
}
._headerWrapperMain_129e1_8 .search-container {
  position: relative;
  width: 450px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .search-container {
    width: 100%;
    margin: 0px;
    order: 2;
    display: none;
  }
  ._headerWrapperMain_129e1_8 .search-container.showSearch {
    display: flex;
    position: absolute;
    top: 100%;
    width: 100%;
    margin: 0 auto;
  }
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper {
  position: relative;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form {
  position: relative;
  display: flex;
  align-items: center;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form input {
  width: 100%;
  border-radius: 50px;
  height: 50px;
  border: 1px solid #ebebeb;
  padding-left: 20px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .search-container .searchWrapper form input {
    height: 35px;
  }
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form input:focus-visible {
  outline: 0;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form button.searchBtn {
  height: 40px;
  width: 40px;
  font-size: 1.125rem;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: 0;
  margin: auto;
  bottom: 0;
  display: grid;
  place-items: center;
  line-height: 1.3;
  background: var(--clr-white);
  border: none;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn {
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn button {
  background-color: var(--secondary-color);
  border: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: inherit;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn button {
    width: 30px;
    height: 30px;
  }
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn button svg {
  font-size: 22px;
  color: var(--clr-white);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn button svg {
    font-size: 18px;
  }
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn button .icon-search:before {
  font-size: 0.8125rem;
  color: var(--clr_2);
  font-weight: 600;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn .icon-mic,
._headerWrapperMain_129e1_8 .search-container .searchWrapper form .searchWrapperBtn .icon-camera1 {
  display: none;
}
._headerWrapperMain_129e1_8 .search-container .searchWrapper:before {
  position: absolute;
  right: 20px;
  z-index: 2;
  font-size: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper {
  position: absolute;
  top: calc(100% + 5px);
  left: 0px;
  right: 0px;
  width: 100%;
  box-shadow: 0 0 5px #999;
  background-color: var(--clr-white);
  padding: 18px;
  z-index: 99;
  max-height: 400px;
  height: auto;
  overflow-y: auto;
  scrollbar-width: thin;
  border: 1px solid #aeaeae;
  border-radius: 4px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.image-search .productSuggestWrapper {
  width: 100%;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.image-search .product-left {
  display: none;
}
@media (max-width: 989.98px) {
  ._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper {
    left: 0px;
    width: calc(100% + 0px);
  }
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper::-webkit-scrollbar {
  width: 5px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .title-wrapper, ._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: var(--font-body-lineheight);
  letter-spacing: 0.32px;
  text-transform: capitalize;
  color: var(--txt-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .search-title {
  padding: 0;
  margin: 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .icon-close {
  cursor: pointer;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper h3 {
  border: 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .suggestionList,
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .suggestionsList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .suggestionList li,
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .suggestionListWrapper .suggestionsList li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  text-transform: lowercase;
  background-color: #f7f7f7;
  color: #868686;
  /*margin:0 5px 10px 5px;*/
  border-radius: 5px;
  cursor: pointer;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .searchProducts .productSuggestWrapper {
  display: block;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  column-gap: 15px;
}
@media (max-width: 575.98px) {
  ._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .searchProducts .productSuggestWrapper {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .searchProducts .productSuggestWrapper .search-suggetion p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1rem;
  margin-bottom: 10px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .searchProducts .productSuggestWrapper .search-suggetion:last-child p {
  margin-bottom: 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .searchProducts .productSuggestWrapper .search-suggetion:hover p {
  color: var(--secondary-color) !important;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .searchProducts .productSuggestWrapper .wishlist-and-view-main-div {
  opacity: 0 !important;
  visibility: hidden !important;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage {
  width: 100%;
  left: 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .dragDropImageWrapper {
  border: 2px dashed #cccccc;
  cursor: pointer;
  position: relative;
  padding: 10px;
  height: 130px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .dragDropImageWrapper .textContent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .dragDropImageWrapper .textContent span {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .dragDropImageWrapper .textContent p {
  white-space: break-spaces;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .dragDropImageWrapper .textContent small {
  display: block;
  padding: 12px 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .dragDropImageWrapper input {
  position: absolute;
  opacity: 0;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .btn {
  text-transform: capitalize;
  margin: 0.375rem;
  word-wrap: break-word;
  white-space: normal;
  border: 0;
  border-radius: 0.125rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .btn-primary.btn-sm {
  margin: 0;
  padding: 0 10px;
  font-size: 0.9rem;
  width: 140px;
  height: 40px;
  line-height: 40px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .btn-primary.btn-sm input[type=file] {
  position: absolute;
  top: -28px;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 100%;
  width: 140px;
  padding: 0;
  margin: 0;
  cursor: pointer;
  filter: alpha(opacity=0);
  opacity: 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .file-path-wrapper {
  padding-left: 10px;
  overflow: hidden;
  margin-right: auto;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .file-path-wrapper span {
  color: var(--clr_3);
  font-size: 16px;
}
@media (max-width: 414.98px) {
  ._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .file-path-wrapper span {
    font-size: 14px;
  }
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .file-field .file-path-wrapper input.file-path {
  width: 100%;
  height: 36px;
  border: none;
  border-radius: 0;
  outline: none;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .wrap-search {
  display: flex;
  margin-bottom: 2rem;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .wrap-search input::placeholder {
  font-size: 16px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .wrap-search #txtImage {
  width: calc(100% - 80px);
  border: 1px solid #ccc;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding: 5px;
  height: 35px;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper.searchByUploadImage .wrap-search input[type=button] {
  font-size: 16px;
  border: 0;
  color: #fff;
  height: 35px;
  display: flex;
  border-radius: 0;
  width: 80px;
  justify-content: center;
  align-items: center;
  background: linear-gradient(171deg, #1ebd78 0%, #03a46b 100%);
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .noResult {
  position: relative;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .noResult i {
  position: absolute;
  top: 2px;
  right: 0;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .noResult p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
}
._headerWrapperMain_129e1_8 .search-container .nlpSearchWrapper .text-danger {
  margin-top: 10px;
}
._headerWrapperMain_129e1_8 .search-container .hide-search .background-close {
  display: none;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card {
  min-height: auto;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card > .card-upper-block,
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card > a {
  display: none !important;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card .card-block {
  padding: 0px;
  padding-bottom: 10px;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card .list-content {
  display: flex !important;
  align-items: center;
  padding: 0px;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card .list-content .product-code {
  margin: 0px;
  margin-right: 10px;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card .list-content .product-name h4 {
  margin: 0px;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card .list-content .pro-swatches {
  display: none !important;
}
._headerWrapperMain_129e1_8 .search-container .search-suggetion .product-card .list-content .product-price {
  display: none !important;
}
._headerWrapperMain_129e1_8 .headerActionWrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerActionWrapper {
    gap: 15px;
    justify-content: flex-end;
    order: 1;
    width: 100%;
    padding-left: 100px;
    flex-direction: row;
  }
}
@media (max-width: 575.98px) {
  ._headerWrapperMain_129e1_8 .headerActionWrapper {
    padding-left: 0;
  }
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon {
  display: flex;
  align-items: center;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon:hover .desc a {
  font-size: 24px;
  color: #444444;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon:hover .desc span:before {
  color: var(--secondary-color);
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon:hover a i {
  color: var(--secondary-color);
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon:hover a i:before {
  color: var(--secondary-color);
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon:hover > span {
  color: var(--secondary-color);
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #444444;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a i {
  margin-right: 10px;
  display: inline-block;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a i:before {
  font-size: 1.5rem;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a span {
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  font-weight: 400;
  font-family: "Lexend";
  white-space: nowrap;
  display: none;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a span {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a .count-top {
  position: relative;
  font-size: 24px;
  color: #444444;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a .count {
  position: absolute;
  top: -7px;
  right: -12px;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a.mobile-font {
    font-size: 18px;
  }
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon a:hover span {
  color: var(--clr-white) !important;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap {
  cursor: pointer;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap .compare-count {
  display: flex;
  align-items: center;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap .compare-count span {
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  font-weight: 400;
  display: none;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap .compare-count .count-top {
  position: relative;
  font-size: 24px;
  color: #444444;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap .compare-count .count-top i {
  margin-right: 10px;
  display: inline-block;
  font-family: "athena_promo_new" !important;
  font-size: 1.125rem;
  transform: rotate(33deg);
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap .compare-count .count-top i:hover {
  color: var(--secondary-color);
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap .compare-count .count-top .count {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 100%;
  color: var(--clr-white);
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
._headerWrapperMain_129e1_8 .headerActionWrapper .cmnForIcon.compareWrap:hover .compare-count span {
  color: var(--clr-white) !important;
}
._headerWrapperMain_129e1_8 .hamMenu {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .hamMenu {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .hamMenu span {
  width: 20px;
  height: 2px;
  border-radius: 0px;
  border: 1px solid var(--clr-white);
  margin-bottom: 4px;
}
@keyframes _slide-down_129e1_1 {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap {
  padding: 0px 40px;
  background-color: var(--main-color);
  color: var(--clr-white);
}
._headerWrapperMain_129e1_8 .headerBottomWrap.fixed {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  animation: slide-down 0.7s;
  opacity: 0.9;
  margin-top: 0px;
}
@media (max-width: 1439.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap {
    padding: 0;
  }
}
@media (min-width: 1025px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap {
    height: 52px;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap {
    background-color: transparent;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap.res_header_active.menu-mobile .category-menu button {
    text-align: left;
    justify-content: space-between;
    display: flex;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap {
  display: flex;
  align-items: center;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul {
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li {
  padding: 12px 15px;
  position: relative;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li a.link {
  color: var(--header-text);
  font-size: 1.125rem;
  line-height: 1.3125rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding: 5px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li a.link {
    height: auto;
    font-family: "Roboto", sans-serif;
    font-size: 0.75rem;
    color: #444444;
    padding: 5px 0;
    font-weight: 400;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li:hover {
  background-color: var(--category);
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li:hover .subCagegoryWithImageList {
  display: flex;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1279px) and (min-width: 1025px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li:nth-of-type(1n + 11) {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu {
  display: none;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li {
    width: 100%;
    padding: 5px 12px;
    background-color: transparent !important;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu {
    display: block;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu {
    position: relative;
    background-color: transparent;
    padding: 0;
    padding-top: 0px;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .productName {
    font-size: 12px;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top {
    opacity: 1;
    visibility: visible;
    position: static;
    background-color: transparent;
    box-shadow: none;
    transform: translate(0);
    display: none;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top.section_item_show {
    display: block;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul {
    height: auto;
    box-shadow: none;
    text-align: left;
    padding: 0;
    overflow: hidden;
    width: 100% !important;
  }
}
@media (max-width: 1024.98px) and (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul {
    border-top: none;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul .cat-item.active.hasSubmenu .subcat-list.parent-sort-list {
    display: block;
    margin-top: -10px;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul li a {
    color: #fff;
    font-weight: 500;
  }
}
@media (max-width: 1024.98px) and (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul li a {
    color: #444444;
    font-size: 10px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul li a:hover:before {
    color: #fff;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul li .subcat-list {
    display: none;
    position: static;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    width: 100%;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul li.mobileAllPrdctsMenu .category-menu .cat-list-top > ul li .subcat-list .menuImageWrap {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul .submenu {
  cursor: pointer;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul .submenu {
    padding-left: 7px;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul .submenu li {
  cursor: pointer;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .headerBottomSubWrap .staticMenu > ul .submenu li:hover {
  color: #fff;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: auto;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  top: 100%;
  transform: translateY(30px);
  transition: all 0.3s;
  margin-top: 0px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul {
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
  width: 230px;
  padding: 10px 0;
  overflow-y: auto;
  scrollbar-width: initial;
  height: 460px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  column-count: 1;
  justify-content: flex-start;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul::-webkit-scrollbar {
  width: 5px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul::-webkit-scrollbar-thumb:hover {
  background: #555;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul ul.cat-Main {
  display: flex;
  flex-direction: column;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li {
  padding: 0 0px 0 15px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li {
    padding: 0;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li:hover {
  color: var(--clr-white);
  padding: 0 0px 0 15px;
  background-color: #003C68;
  width: auto;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li:hover {
    padding: 0;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li {
    padding: 0;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li {
  color: var(--header-text);
  margin-top: 0px;
  cursor: pointer;
  width: 215px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li.hasSubmenu {
  cursor: default;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li.hasSubmenu div a {
    line-height: 1.1;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li {
    width: 100%;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li:hover {
  color: var(--clr-white);
  padding: 0 0px 0 15px;
  background-color: #003C68;
  width: auto;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li:hover a.hasArrow {
  color: var(--clr-white);
  pointer-events: none;
  cursor: default;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li + li:hover {
    padding: 0;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li a {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  font-family: "Oswald", sans-serif;
  padding: 8px;
  color: #444444;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li a {
    padding: 7px 0;
    line-height: 1rem;
    font-family: "Roboto", sans-serif;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li a:hover {
  color: var(--clr-white);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li a:hover {
    color: #444444;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li a:focus {
  color: var(--main-color) !important;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li a:focus {
    color: var(--clr-white) !important;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list {
  display: none;
  position: absolute;
  left: 95%;
  top: 0;
  width: 657px;
  padding: 10px 30px;
  height: 100%;
  transform: translateX(30px);
  transition: all 0.3s;
  background-color: #F5F8FE;
  scrollbar-width: thin;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list {
    transform: translateX(0px);
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list::-webkit-scrollbar {
  width: 5px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list a {
  color: var(--header-text);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 8px;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list a:hover {
  color: var(--clr-white);
  padding: 8px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list a:hover {
    background-color: transparent;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list a:focus {
  color: var(--main-color) !important;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list a:focus {
    color: var(--clr-white) !important;
  }
}
@media not all and (min-resolution: 0.001dpcm) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li .subcat-list {
    width: 37vw;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li.hasSubmenu > a:before {
  content: "›";
  font-size: 20px;
  transform: translateY(24%) rotate(0deg);
  display: inline-block;
  position: absolute;
  right: 5px;
  top: 0px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li.hasSubmenu > a:before {
    right: 0px;
    display: block;
    font-size: 28px;
    transform: translateY(24%) rotate(90deg);
    display: none;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li.hasSubmenu > a:hover:before {
  color: var(--clr-white);
  font-size: 20px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top > ul li:hover .subcat-list {
  display: block;
  border-radius: 0px, 0px, 10px, 0px;
  transform: perspective(900px) rotate(0deg);
  overflow-y: auto;
  background: rgba(245, 248, 254, 0.7);
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .menuImageWrap {
  margin-top: 20px;
  display: none;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .menuImageWrap img {
  display: block;
  margin: auto;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .subcat-list-ul {
  column-count: 2;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .subcat-list-ul {
    column-count: 1;
    border: none;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .subcat-list-ul .submenu li {
  font-size: 12px;
  font-weight: 400;
  color: #444444;
  line-height: 25px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .subcat-list-ul .subcat-item {
  page-break-inside: avoid;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .subcat-list-ul .subcat-item .on-list {
    padding: 0;
    font-weight: 400;
  }
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu .cat-list-top .subcat-list-ul .subcat-item .on-list .Sub-Sub-Menu {
    display: none;
    border-top: none;
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu button {
  margin: 0;
  height: 100%;
  border-radius: 0;
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-weight: 400;
  letter-spacing: 0em;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  color: var(--header-text);
  border: none;
  padding: 12px 15px;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu button .productName {
  font-size: 1.125rem;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu button .icon-icon-menu {
  display: none;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu button svg {
  font-size: 18px;
  color: #444444;
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu button i {
  display: none;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu button {
    padding: 10px 0;
    width: 100%;
    justify-content: space-between;
    padding-left: 0px;
    font-size: 12px;
    color: #444444;
    font-family: "Roboto", sans-serif;
    display: none;
  }
}
@media (min-width: 1025px) {
  ._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu:hover .cat-list-top {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
._headerWrapperMain_129e1_8 .headerBottomWrap .category-menu.close-menu .cat-list-top {
  opacity: 0;
  visibility: hidden;
}
._headerWrapperMain_129e1_8 .icon-faq:before {
  content: "\e911";
}
._headerWrapperMain_129e1_8 .icon-shopping-bag:before {
  content: "\e914";
}
._headerWrapperMain_129e1_8 .account-login .account-detail {
  position: relative;
}
._headerWrapperMain_129e1_8 .account-login .account-detail::after {
  content: "";
  position: absolute;
  width: 100%;
  background: transparent;
  height: 30px;
  top: 10px;
}
._headerWrapperMain_129e1_8 .account-login .account-detail .desc .account-name {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  color: #333333;
  line-height: 18px;
  font-weight: 400;
  font-family: "Lexend";
}
._headerWrapperMain_129e1_8 .account-login .account-detail .desc .account-name svg {
  font-size: 24px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .account-login .account-detail .desc .account-name svg {
    font-size: 18px;
  }
}
._headerWrapperMain_129e1_8 .account-login .account-detail .desc .account-name b {
  display: none;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .account-login .account-detail .desc .account-name b {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .account-login .account-detail .desc .account-name:hover {
  color: var(--secondary-color);
}
@media (min-width: 1025px) {
  ._headerWrapperMain_129e1_8 .account-login .account-detail:hover .dropdown-account {
    visibility: visible;
    opacity: 1;
    transform: translate(0, 20px);
    transition: 0.5s;
  }
}
._headerWrapperMain_129e1_8 .account-login .account-detail .dropdown-account {
  position: absolute;
  width: max-content;
  top: 10px;
  right: 0;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  padding: 15px 0px 15px 0px;
  z-index: 10;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
  transform: translate(0px, 36px);
  transition: 0.5s;
}
@media (max-width: 767.98px) {
  ._headerWrapperMain_129e1_8 .account-login .account-detail .dropdown-account {
    top: 20px;
  }
}
._headerWrapperMain_129e1_8 .account-login .account-detail .dropdown-account a {
  display: block;
  padding: 10px;
  font-weight: 500;
  font-size: 0.75rem;
}
._headerWrapperMain_129e1_8 .account-login .account-detail .dropdown-account a:hover {
  color: var(--clr-white);
  font-weight: 500;
  background-color: var(--secondary-color);
  font-family: "Roboto", sans-serif;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory {
    position: relative;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory button.link {
  background-color: transparent;
  border: none;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
  padding: 5px;
  color: var(--header-text);
}
._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory button.link svg {
  font-size: 18px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory button.link {
    color: #444444;
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 5px 0;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory a:hover::before {
    color: #fff;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory .subCagegoryWithImageList {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: auto;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999;
  top: 100%;
  transform: translateY(30px);
  transition: all 0.3s;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory .subCagegoryWithImageList {
    right: inherit;
    color: #333;
    box-shadow: none;
    position: relative;
    opacity: 1;
    visibility: visible;
    top: 100%;
    display: none;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory .subCagegoryWithImageList ul.subcat-list-ul-menu {
  display: block;
  text-align: left;
  margin-left: 0;
  min-width: 260px;
  border-radius: 0 0 5px 5px;
  width: 100%;
  padding: 10px 0px;
  transition: all 0.3s;
  z-index: 2;
  margin-top: 0px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory .subCagegoryWithImageList ul.subcat-list-ul-menu {
    padding: 0;
    color: #444444;
    box-shadow: none;
  }
  ._headerWrapperMain_129e1_8 li.Distributor-Tools .categoryWithSubCategory .subCagegoryWithImageList ul.subcat-list-ul-menu li a {
    color: #444444;
    font-size: 10px;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList {
    position: sticky;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item {
  padding: 0px;
  text-align: left;
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list {
  color: var(--header-text);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 8px 15px;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list {
    padding: 0;
    color: #444444;
    font-size: 10px;
    font-family: "Roboto", sans-serif;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list:hover {
  background-color: #003C68;
  color: #fff;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list:hover {
    background-color: transparent;
    color: #333;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu ul.submenu-ul {
  opacity: 0;
  visibility: hidden;
  left: 105%;
  position: absolute;
  top: 0px;
  width: 200px;
  background: var(--clr-white);
  z-index: 999;
  transform: translateY(30px);
  transition: all 0.3s;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu ul.submenu-ul {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul {
    position: sticky;
    left: 0;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item {
  padding: 5px;
  text-align: left;
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item:hover {
    background-color: transparent;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item a {
  color: var(--header-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 5px;
}
._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item a:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
  padding: 5px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item a:hover {
    background-color: transparent;
    color: #333;
  }
}
._headerWrapperMain_129e1_8 li.Distributor-Tools.themesMenu .subcat-list-ul-menu {
  column-count: 2;
  gap: 15px;
  width: 500px !important;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Distributor-Tools.themesMenu .subcat-list-ul-menu {
    column-count: 1;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory {
    position: relative;
  }
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory button.link {
  background-color: transparent;
  border: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  cursor: pointer;
  color: #fff;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory button.link {
    color: #444444;
    font-size: 12px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory a:hover::before {
    color: #fff;
  }
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory .subCagegoryWithImageList {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: auto;
  background: var(--clr-white);
  z-index: 999;
  top: 100%;
  transform: translateY(30px);
  transition: all 0.2s;
  right: inherit;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory .subCagegoryWithImageList {
    right: inherit;
    background-color: transparent;
    color: #333;
    box-shadow: none;
    border-left: 2px solid #fff;
    opacity: 1;
    visibility: visible;
    top: auto;
    position: sticky;
  }
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory .subCagegoryWithImageList ul.subcat-list-ul-menu {
  display: block;
  text-align: left;
  margin-left: 0;
  min-width: 260px;
  border-radius: 0 0 5px 5px;
  width: 100%;
  padding: 15px;
  -webkit-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 5px 1px rgba(0, 0, 0, 0.5019607843);
  transition: all 0.3s;
  z-index: 2;
  margin-top: 5px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes .categoryWithSubCategory .subCagegoryWithImageList ul.subcat-list-ul-menu {
    color: #333;
    box-shadow: none;
    padding: 0;
  }
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item {
  padding: 5px;
  text-align: left;
}
@media (max-width: 1439.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item {
    padding: 2px 5px;
  }
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list {
  color: var(--header-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list {
    padding: 0;
  }
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item a.on-list:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
  padding: 5px;
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu ul.submenu-ul {
  opacity: 0;
  visibility: hidden;
  left: 100%;
  position: absolute;
  top: 44px;
  width: 200px;
  background: var(--clr-white);
  z-index: 999;
  transform: translateY(30px);
  transition: all 0.3s;
  box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.2509803922);
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item {
  padding: 5px;
  text-align: left;
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item a {
  color: var(--header-text);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 5px;
}
._headerWrapperMain_129e1_8 li.Shop-by-Themes:hover .subCagegoryWithImageList .subcat-list-ul-menu .subcat-item.seedpapermenu:hover .submenu-ul .submenu-item a:hover {
  color: var(--main-color);
  background-color: var(--categoryright);
  padding: 5px;
}
@media (min-width: 1025px) {
  ._headerWrapperMain_129e1_8 .res_monu {
    display: none;
  }
}
._headerWrapperMain_129e1_8 .res_monu .hamicon {
  font-size: 1.125rem;
  margin-right: 0px;
}
._headerWrapperMain_129e1_8 .res_monu .hamicon:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='15' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M0 8V6.66667H12V8H0ZM0 4.66667V3.33333H12V4.66667H0ZM0 1.33333V0H12V1.33333H0Z' fill='%23333'/%3E%3C/svg%3E%0A");
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .staticMenu {
    position: fixed;
    top: 0;
    background-color: var(--clr-white);
    z-index: 11;
    width: 100%;
    height: 100%;
    transform: scale(0);
    left: 0;
    transition: 0.5s;
    transform-origin: top left;
    padding: 50px 0;
    display: block;
    overflow-y: scroll;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .staticMenu {
    width: 80%;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .staticMenu ul {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 5px;
    width: 100%;
  }
  ._headerWrapperMain_129e1_8 .staticMenu ul ul.subcat-list-ul {
    border-left: 2px solid #eaeaea;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 10px;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .staticMenu .close-container {
    margin: 0px 20px;
    right: 15px;
    color: var(--clr_5);
    z-index: 2;
    top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 16px;
  }
  ._headerWrapperMain_129e1_8 .staticMenu .close-container svg {
    font-size: 24px;
  }
  ._headerWrapperMain_129e1_8 .staticMenu .close-container p {
    font-size: 19px;
    color: #444444;
    font-weight: 700;
    font-family: "Oswald", sans-serif;
    margin: 0;
  }
}
._headerWrapperMain_129e1_8 .responsive_active {
  transform: translate(1%);
}
._headerWrapperMain_129e1_8 .responsive_active.staticMenu {
  display: block;
  transition: 0.5s;
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .responsive_active.staticMenu {
    height: 100vh;
    overflow-y: auto;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .resCatOpen {
    opacity: 1 !important;
    visibility: visible !important;
    width: 220px !important;
    transform: none !important;
  }
  ._headerWrapperMain_129e1_8 .resCatOpen ul {
    width: 100% !important;
    padding: 20px !important;
  }
  ._headerWrapperMain_129e1_8 .resCatOpen ul li a {
    font-size: 0.75rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767.98px) {
  ._headerWrapperMain_129e1_8 .resCatOpen {
    opacity: 1 !important;
    visibility: visible !important;
    width: 220px !important;
    transform: none !important;
  }
  ._headerWrapperMain_129e1_8 .resCatOpen ul {
    width: 100% !important;
    padding: 20px !important;
  }
  ._headerWrapperMain_129e1_8 .resCatOpen ul li a {
    font-size: 0.75rem !important;
    line-height: 1 !important;
  }
}
@media (max-width: 1024.98px) {
  ._headerWrapperMain_129e1_8 .resLoginOpen .dropdown-account {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-67px, 10px) !important;
  }
}
.ribbon-text {
  background-color: var(--main-color);
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}
.ribbon-text h2 {
  color: #F78F1E;
  font-size: 16px;
  animation: highlight 2s ease-in-out infinite alternate;
  -webkit-animation: highlight 2s ease-in-out infinite alternate;
  -moz-animation: highlight 2s ease-in-out infinite alternate;
  -o-animation: highlight 2s ease-in-out infinite alternate;
  margin-bottom: 0;
}
@media (max-width: 1024.98px) {
  .ribbon-text h2 {
    padding: 0 15px;
  }
}
.showSubMenu .staticMenu > ul li {
  pointer-events: none;
}
._headerBottomWrap_129e1_658 ._category-menu_129e1_687 ._cat-list-top_129e1_762 ._subcat-list_129e1_789 ._subcat-list-ul_129e1_1076 ._subcat-item_129e1_1091 a {
  color: var(--header-text);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5rem;
  transition: all 0.3s;
  display: block;
  position: relative;
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 1024.98px) {
  ._responsive_active_129e1_1679._staticMenu_129e1_697 ul ._Shop-by-Themes_129e1_1449 ._subCagegoryWithImageList_129e1_729 {
    top: 100%;
  }
}/* Mixins and functions */
._emailpopupwrap_20phc_2 {
  margin-bottom: 20px;
}
._emailpopupwrap_20phc_2 .modal-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
._emailpopupwrap_20phc_2 .mandatInfo,
._emailpopupwrap_20phc_2 .recaptureLabelStyle {
  color: var(--clr-black);
}
._emailpopupwrap_20phc_2 .emailresclose {
  background-color: var(--main-color) !important;
  height: auto !important;
  width: auto !important;
  padding: 5px;
  border-radius: 9px;
  position: absolute;
  bottom: 8px;
  right: -23px;
  margin-bottom: 15px;
  font-size: 12px;
}
._emailpopupwrap_20phc_2 .emailresclose .icon-Close {
  color: white !important;
}
._emailpopupwrap_20phc_2 .btn-wrap {
  display: flex;
  justify-content: center;
}
@media (max-width: 575.98px) {
  ._emailpopupwrap_20phc_2 .btn-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 767.98px) {
  ._emailpopupwrap_20phc_2 .btn-wrap button.btn {
    font-size: 14px !important;
    font-weight: 500 !important;
    display: inline-block !important;
    width: 30% !important;
    margin: 0 5px 15px !important;
  }
}
@media (max-width: 575.98px) {
  ._emailpopupwrap_20phc_2 .btn-wrap button.btn {
    display: block !important;
    width: 100% !important;
    margin: 0 5px 15px !important;
  }
}.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.comparePopUp > .dialog-container {
  max-width: 95% !important;
}
.modal.modal-xl {
  width: 100% !important;
  max-width: 100% !important;
}
.modal .dialog-container {
  max-width: 1000px !important;
  overflow: auto;
}

.modal.is-visible {
  display: flex;
}

.dialog-container {
  background: #fff;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dialog-body {
  margin-top: 1rem;
}

.close {
  cursor: pointer;
  border: none;
  background: none;
}

._requestQuotePopup_qrm50_74 form .form-group input,
._requestQuotePopup_qrm50_74 form .form-group select,
._requestQuotePopup_qrm50_74 form .form-group textarea {
  font-family: "Alexandria", sans-serif !important;
  color: var(--txt-color-light) !important;
  font-weight: 100 !important;
}

.dialog-success.fluid-model {
  width: 100% !important;
}/* Mixins and functions */
._comparePopUp_rj5gq_2 {
  z-index: 10;
  cursor: initial;
}
@media (max-width: 1024.98px) {
  ._comparePopUp_rj5gq_2 {
    display: none;
  }
}
._comparePopUp_rj5gq_2 .dialog-title {
  display: flex;
  flex: 1;
}
._comparePopUp_rj5gq_2 .compare-pop-up-title {
  display: flex;
  flex: 1;
  padding-right: 15px;
  align-items: center;
  letter-spacing: 0;
}
._comparePopUp_rj5gq_2 .comparePopupButtons {
  display: flex;
  margin-left: auto;
}
._comparePopUp_rj5gq_2 .comparePopupButtons .action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  margin-left: 10px;
  cursor: pointer;
  color: var(--clr-white);
  border: solid 1px white;
  border-radius: 5px;
  transition: 0.2s ease-in-out;
  text-transform: capitalize;
  font-weight: 400;
}
._comparePopUp_rj5gq_2 .comparePopupButtons .action-icon svg {
  display: none;
}
._comparePopUp_rj5gq_2 .comparePopupButtons .action-icon:hover {
  background-color: black;
  border-color: black;
}
._comparePopUp_rj5gq_2 .comparePopupButtons .action-icon .icon {
  font-size: 20px;
  display: none;
}
._comparePopUp_rj5gq_2 .tr_Product_Name .comapreWrap {
  position: relative;
}
._comparePopUp_rj5gq_2 .remove-from-compare {
  position: absolute;
  top: 10px;
  right: 10px;
}
._comparePopUp_rj5gq_2 .remove-from-compare .action-icon span {
  display: none;
}
._comparePopUp_rj5gq_2 .prdName {
  font-weight: 500;
  font-size: 16px;
  margin-top: 5px;
  display: inline-block;
}
._comparePopUp_rj5gq_2 table#CompareProd {
  border-color: #ddd;
}
._comparePopUp_rj5gq_2 table#CompareProd .comparedesc a {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: underline;
  display: inline;
}
._comparePopUp_rj5gq_2 table#CompareProd .product-desc div {
  font-size: 12px;
}
._comparePopUp_rj5gq_2 table#CompareProd td,
._comparePopUp_rj5gq_2 table#CompareProd th {
  border-color: #ddd;
}
._comparePopUp_rj5gq_2 table#CompareProd td {
  vertical-align: top;
  background-color: #fff;
}
._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions {
  display: flex;
  justify-content: center;
}
._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon {
  font-weight: 600;
  background: var(--clr_1);
  border: 1px solid var(--clr_1);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 8px 20px;
  font-size: 16px;
  text-align: center;
  transition: 0.3s;
  gap: 5px;
  font-weight: 500;
}
@media (max-width: 1599.98px) {
  ._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon {
    font-size: 0.875rem;
  }
}
._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon.active, ._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon:focus, ._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon:active {
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}
._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon .icon {
  display: none;
}
._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon[data-title*=Remove] {
  border: 1px solid var(--clr_1);
  background-color: white;
  color: var(--clr_1);
}
._comparePopUp_rj5gq_2 table#CompareProd tfoot .actions .action-icon:hover {
  background-color: var(--clr_1);
  color: white;
  border: 1px solid var(--clr_1);
}
._comparePopUp_rj5gq_2 table[id*=tblPrices]:has(td.strikePriceKey[data-pricebreakname=Decorated][aria-label=null]) tr:first-child td.strikePriceKey[data-pricebreakname=Decorated],
._comparePopUp_rj5gq_2 table[id*=tblPrices]:has(td.strikePriceKey[data-pricebreakname=Decorated][aria-label=null]) td.strikePriceKey[data-pricebreakname=Decorated][aria-label=null] {
  display: none !important;
  background-color: yellow !important;
}
._comparePopUp_rj5gq_2 table[id*=tblPrices]:has(td.strikePriceKey[data-pricebreakname=Blank][aria-label=null]) tr:first-child td.strikePriceKey[data-pricebreakname=Blank],
._comparePopUp_rj5gq_2 table[id*=tblPrices]:has(td.strikePriceKey[data-pricebreakname=Blank][aria-label=null]) td.strikePriceKey[data-pricebreakname=Blank][aria-label=null] {
  display: none !important;
  background-color: pink !important;
}
._comparePopUp_rj5gq_2 table[id*=tblPrices] td.prices.strike {
  color: red;
}
._comparePopUp_rj5gq_2 table[id*=tblPrices] td.prices.strikePriceKey.expired[data-pricebreakname=Decorated] {
  display: none !important;
}
._comparePopUp_rj5gq_2 table[id*=tblPrices]:has(td.prices.strikePriceKey.expired[data-pricebreakname=Decorated]) tr:first-child td.prices.strikePriceKey[data-pricebreakname=Decorated] {
  display: none !important;
}
._comparePopUp_rj5gq_2 table[id*=tblPrices] td.prices.strikePriceKey.expired[data-pricebreakname=Blank] {
  display: none !important;
}
._comparePopUp_rj5gq_2 table[id*=tblPrices]:has(td.prices.strikePriceKey.expired[data-pricebreakname=Blank]) tr:first-child td.prices.strikePriceKey[data-pricebreakname=Blank] {
  display: none !important;
}
@media print {
  ._comparePopUp_rj5gq_2 .NotPrint {
    display: none;
  }
}
._comparePopUp_rj5gq_2 #Email {
  color: #222;
}/* Mixins and functions */
._BreadcrumbStyle_602ge_2 {
  background-color: #DBEFE4;
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  ._BreadcrumbStyle_602ge_2 {
    margin-bottom: 30px;
  }
}
._BreadcrumbStyle_602ge_2 .container {
  margin-top: 0px;
  padding: 26px 115px;
  border-radius: 0px;
  text-align: left;
  z-index: 1;
  position: relative;
}
@media (max-width: 1024.98px) {
  ._BreadcrumbStyle_602ge_2 .container {
    top: 0px;
    padding: 15px;
    background: #DBEFE4;
  }
}
._BreadcrumbStyle_602ge_2 .container .heading {
  display: inline-block;
  line-height: 1;
  width: auto;
  font-size: 3.125rem;
  font-weight: 500;
  text-align: left;
  color: var(--header-text);
  margin: 0 auto;
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 767.98px) {
  ._BreadcrumbStyle_602ge_2 .container .heading {
    display: none;
  }
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb {
  background-color: transparent;
  justify-content: left;
  margin-bottom: 0;
  margin-top: 5px;
  padding-bottom: 0;
  padding-left: 0px;
}
@media (max-width: 1024.98px) {
  ._BreadcrumbStyle_602ge_2 .container .breadcrumb {
    padding-top: 0;
  }
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb .breadcrumb-item {
  font-size: 0.9375rem;
  text-transform: capitalize;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb .breadcrumb-item:not(.active) a {
  color: #F78F1E;
  cursor: pointer;
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb .breadcrumb-item a {
  font-size: 0.9375rem;
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: "/";
  color: #444444;
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb .breadcrumb-item.active {
  color: #444444;
  cursor: default;
  font-family: "Roboto", sans-serif;
}
._BreadcrumbStyle_602ge_2 .container .breadcrumb .mainClrNoLink {
  color: #F78F1E;
}
._BreadcrumbStyle_602ge_2 .detailPageBC .breadcrumb-item:nth-child(2) {
  pointer-events: none;
}
/* Mixins and functions */
input[type=radio] {
  accent-color: var(--txt-color);
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .orderSampleReport {
    padding: 0 15px;
  }
}
/*subscription page*/
@media (max-width: 575.98px) {
  .mySubscriptions {
    padding: 0 15px;
  }
}
.paymentMethodList {
  margin-bottom: 0;
}
.paymentMethodList .label {
  font-weight: var(--font-weight-bold) !important;
}
.paymentMethodList .paymentOptions label {
  display: flex;
  column-gap: 10px;
  cursor: pointer;
  font-weight: var(--font-weight-bold) !important;
}
/*my account static page css*/
.account-main-div .page-heading {
  margin: 0;
  color: var(--txt-color);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  line-height: var(--font-body-lineheight);
  letter-spacing: 0.8px;
}
.account-options-main-div {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  row-gap: 30px;
  column-gap: 15px;
  margin: 30px 0 45px;
}
.account-options-main-div > li {
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1215686275);
}
.account-options-main-div > .My-Quote-Report,
.account-options-main-div .My-Order-Sample-Report {
  display: none;
}
.account-options-main-div .single-account-card {
  padding: 10px;
}
.account-options-main-div .single-account-card span {
  font-size: 20px;
}
.account-options-main-div .single-account-card h2 {
  margin: 8px 0;
  color: var(--txt-color);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-body-lineheight);
  letter-spacing: 0.8px;
  font-size: 24px;
}
.account-options-main-div .single-account-card p {
  margin: 8px 0;
  line-height: 22px;
}
@media (max-width: 575.98px) {
  .account-options-main-div .single-account-card p {
    font-size: calc(var(--font-body-size) + 2px);
  }
}
#addAmountForm .input-inAddAmount .form-helper-text,
#addAmountForm .form-helper-text {
  position: relative;
}
@media (min-width: 576px) {
  #addAmountForm .input-inAddAmount .form-helper-text,
  #addAmountForm .form-helper-text {
    position: absolute !important;
  }
}
/*my wallet*/
.card-body .amountBalance {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  column-gap: 10px;
}
.card-body .label {
  font-weight: var(--font-weight-bold);
}
.card-body .quickAddAmount {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 575.98px) {
  .card-body .quickAddAmount {
    flex-wrap: wrap;
  }
}
.card-body .quickAddAmount .addQuickAmount {
  flex: 0 0 70px;
  max-width: 70px;
  border-radius: 16px;
  padding: 10px 0;
  border: 1px solid #c7c7c7;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-color);
  background: #e9ecef;
  cursor: pointer;
  text-transform: uppercase;
}
.card-body .quickAddAmount .addQuickAmount:focus, .card-body .quickAddAmount .addQuickAmount.active {
  outline: 0;
  box-shadow: none;
}
.card-body .quickAddAmount .input-GiftAmount [role=alert] {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: -5px;
}
.card-body .quickAddAmount .input-inAddAmount {
  flex: 1 1 auto;
}
.card-body .quickAddAmount .input-inAddAmount .input-group {
  height: 36px;
}
.card-body .quickAddAmount .input-inAddAmount .input-group-text {
  font-size: var(--font-body-size);
  color: var(--txt-color);
}
.card-body .quickAddAmount .input-inAddAmount input {
  border-radius: 0 5px 5px 0 !important;
  z-index: 1;
}
.card-footer {
  background: var(--clr-white);
}
.card-footer .addAmountToWallet {
  max-width: 100%;
  display: flex;
  justify-content: center;
  margin: 5px 0;
}
.card-footer .addAmountToWallet button {
  width: 220px;
  padding: 5px 0;
  font-weight: var(--font-weight-medium);
}
.transactionWrapper {
  padding: 20px 0 0 0;
}
.transactionWrapper .transationList {
  display: flex;
  column-gap: 30px;
  cursor: pointer;
  line-height: var(--font-body-lineheight);
}
.transactionWrapper .transationList > div {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.transactionWrapper .transationList > div.active, .transactionWrapper .transationList > div:focus {
  font-weight: 700;
  border-bottom: 2px solid #232323;
}
.transactionWrapper .transactionDetails {
  padding-top: 20px;
  color: var(--txt-color);
}
.transactionWrapper .transactionDetails .table-responsive {
  overflow: auto !important;
}
.completeYourPayment .userDetails .text {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
}
.completeYourPayment .userDetails button {
  padding: 5px 0;
  width: 80px;
  cursor: pointer;
}
.completeYourPayment .paymentDetails {
  text-transform: capitalize;
}
.completeYourPayment .paymentDetails .payment-items {
  margin-bottom: 16px;
}
.completeYourPayment .paymentDetails .paymentTitle {
  font-size: 16px;
  font-weight: 600;
}
.completeYourPayment .paymentDetails .paymentAmount {
  display: flex;
  column-gap: 10px;
}
.completeYourPayment .finalTotal .paymentAmount {
  display: flex;
  column-gap: 10px;
}
.completeYourPayment .completeOrder {
  border-radius: 0;
  margin-top: 25px;
  width: 220px;
}
/*order report*/
.searchInputButton {
  display: flex;
  align-items: flex-end;
  row-gap: 8px;
  column-gap: 8px;
  border: 1px solid var(--border-bottom-clr);
  flex-direction: column;
  padding: 20px;
  border-radius: 2px;
  margin-top: 10px;
}
@media (max-width: 1279.98px) {
  .searchInputButton {
    flex-direction: column;
    align-items: flex-start;
  }
}
.searchInputButton .filterInput {
  display: flex;
  column-gap: 8px;
  row-gap: 8px;
  width: 100%;
}
.searchInputButton .filterInput .row {
  width: 100%;
}
@media (max-width: 575.98px) {
  .searchInputButton .filterInput {
    flex-direction: column;
  }
}
.searchInputButton .filterInput .form-group {
  flex: 1 1 auto;
}
.searchInputButton .filterInput .form-group input {
  margin: 0;
}
.searchInputButton .filterInput .form-group label {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03px;
  line-height: 19px;
  margin-bottom: 5px;
  order: -1;
}
.searchInputButton .filterInput .inputFrom,
.searchInputButton .filterInput .inputTo,
.searchInputButton .filterInput .orderId {
  width: 100%;
}
.searchInputButton .filterInput input {
  height: 44px;
}
.searchInputButton .filterBtns {
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .searchInputButton .filterBtns {
    max-width: 450px;
    width: 100%;
  }
}
.searchInputButton .filterBtns .btn {
  margin: 0 15px 0 0;
  font-size: 1rem;
  letter-spacing: 1.6px;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  text-align: center;
  display: inline-block;
  transition: all 0.8s ease-in;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .searchInputButton .filterBtns .btn {
    flex: 1;
  }
}
.searchInputButton .filterBtns .btn i {
  text-shadow: none;
  margin-right: 6px;
  font-size: 0.9rem;
  text-rendering: auto;
  letter-spacing: 1.6px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  vertical-align: top;
}
.searchInputButton .filterBtns .btnSubmit,
.searchInputButton .filterBtns .btnReset {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  background-color: var(--main-color);
  margin-bottom: 10px;
  display: inline-block;
  color: #fff;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  text-transform: inherit;
}
.searchInputButton .filterBtns .btnSubmit:focus,
.searchInputButton .filterBtns .btnReset:focus {
  box-shadow: none;
}
#viewDialogModel-8d1c16ff-f019-4328-a002-596eeef25648 {
  border: none;
}
.modal-md .orderStatus {
  display: flex;
  padding: 20px 0;
}
.modal-md .orderStatus .status {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1;
  text-align: center;
  text-transform: capitalize;
  font-size: 24px;
}
.modal-md .orderStatus .status .orderReportIcon {
  font-size: 36px;
  font-weight: 500;
}
.modal-md .orderStatus .status.active {
  color: var(--secondary-color);
}
.dialog-header .dialog-title {
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  margin: 0 !important;
}
.viewProductDetails .orderNumberDate {
  display: flex;
  column-gap: 50px;
}
.viewProductDetails .orderSummary {
  margin-top: 16px;
}
.viewProductDetails .orderSummary .orderDetails {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  column-gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 8px;
  padding: 16px;
  row-gap: 15px;
}
.viewProductDetails .orderSummary .orderDetails .orderDetail .orderDetailHeading {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 700;
}
.viewProductDetails .orderSummary .orderDetails .orderDetail .detail {
  line-height: 22px;
}
.viewProductDetails .orderSummary .orderDetails .orderDetail .detail .priceDetails {
  margin-bottom: 0 !important;
  display: flex;
  justify-content: space-between;
}
.viewProductDetails .orderSummary .orderStatus {
  display: flex;
  padding: 20px 0;
  align-items: center;
  font-size: 16px;
}
.viewProductDetails .orderSummary .orderStatus h3.orderDetailHeading {
  font-size: inherit;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 0;
}
.viewProductDetails .orderSummary .orderStatus .detail {
  font-size: inherit;
  text-transform: capitalize;
}
.viewProductDetails .orderSummary .productDetails {
  margin-top: 15px;
  position: relative;
}
.viewProductDetails .orderSummary .productDetails .writeProductReview {
  color: var(--secondary-color);
  font-size: calc(var(--font-body-size) + 2px);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  text-decoration: underline;
}
.viewProductDetails .orderSummary .productDetails img {
  width: 80px;
  height: 80px;
}
.viewProductDetails .orderSummary .productDetails .table .price,
.viewProductDetails .orderSummary .productDetails .table .unitPrice,
.viewProductDetails .orderSummary .productDetails .table .totalItems,
.viewProductDetails .orderSummary .productDetails .table .totalQty {
  text-align: right;
}
.viewProductDetails .orderSummary .productDetails dialog#writeReviewForm-0ff357e2-6a44-48b0-abc0-1831b485114e-0 {
  width: 500px !important;
}
/*add addreess*/
.addAddress {
  font-size: 24px;
  color: var(--txt-color);
  text-transform: capitalize;
}
.address-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  row-gap: 30px;
  column-gap: 15px;
}
.address-list .address-item-dotted {
  display: flex;
  border: 2px dashed #c7c7c7;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  background: var(--clr-white);
  min-height: 210px;
}
.address-list .address-item-dotted .addAddress {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #565959;
  flex-direction: column;
}
.address-list .address-item-dotted .addAddress .icon-plus {
  font-size: 48px;
}
.address-list .addres-item-border {
  border-radius: 8px;
  background: var(--clr-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
.address-list .addres-item-border .addressInnerWrapper {
  line-height: 22px;
  flex: 0 0 170px;
}
.address-list .addres-item-border .addressInnerWrapper .deffaultAddressSelected {
  height: 40px;
  padding: 10px 0 0 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.address-list .addres-item-border .addressInnerWrapper .wrapper-address {
  padding: 10px 0 0 20px;
  height: calc(100% - 40px);
}
.address-list .addres-item-border .addBtnWrapper {
  padding: 20px;
  margin-top: auto;
}
.address-list .addres-item-border .addBtnWrapper .edit-delete-btn {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
.address-list .addres-item-border .addBtnWrapper .edit-delete-btn .btn {
  background: transparent !important;
  padding: 0;
  font-size: 12px;
  color: #007185;
  text-transform: capitalize;
  border: 0px;
}
.address-list .addres-item-border .addBtnWrapper .edit-delete-btn .btn.active, .address-list .addres-item-border .addBtnWrapper .edit-delete-btn .btn:focus {
  outline: none;
  box-shadow: none;
}
/*gift card*/
.giftCardWrapper .giftListingFormWrapper {
  display: flex;
  gap: 15px 30px;
}
@media (max-width: 1279.98px) {
  .giftCardWrapper .giftListingFormWrapper {
    flex-direction: column;
  }
}
.giftCardWrapper .giftListingFormWrapper .giftList {
  flex: 0 0 60%;
  max-width: 60%;
}
@media (max-width: 1279.98px) {
  .giftCardWrapper .giftListingFormWrapper .giftList {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.giftCardWrapper .giftListingFormWrapper .giftList .addAmount .text {
  margin: 15px 0;
  font-weight: 600;
}
.giftCardWrapper .giftListingFormWrapper .giftList .addAmount .giftChooseAmnt {
  margin-top: 0;
}
.giftCardWrapper .giftListingFormWrapper .giftList .useDetailForm .input-submit-action {
  display: flex;
  column-gap: 10px;
}
.giftCardWrapper .giftListingFormWrapper .giftList .useDetailForm .input-submit-action #submit,
.giftCardWrapper .giftListingFormWrapper .giftList .useDetailForm .input-submit-action #reset {
  width: 150px;
}
.giftCardWrapper .giftListingFormWrapper .myGiftCard {
  flex: 1 1 auto;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 4px;
  background: var(--clr-white);
}
.giftCardWrapper .giftListingFormWrapper .myGiftCard .giftCouponHeader,
.giftCardWrapper .giftListingFormWrapper .myGiftCard .validDateHeader {
  column-gap: 5px;
}
.giftCardWrapper .giftListingFormWrapper .myGiftCard .giftCoupon {
  font-weight: var(--font-weight-bold);
  cursor: pointer;
}
.gift-terms .termsHeading {
  margin: 15px 0;
  font-size: 20px;
  font-weight: var(--font-weight-bold);
}
.terms-list li {
  line-height: var(--font-body-lineheight);
}
.terms-list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--txt-color);
  display: inline-block;
  margin: 0 10px 0 0;
}
/*Refer and earn page */
.rewardsReferralWrapper {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.rewardsReferralWrapper .input-submit-action .btn {
  width: 100%;
}
.rewardsReferralWrapper .rewardDetails {
  display: flex;
  gap: 15px 30px;
}
@media (max-width: 575.98px) {
  .rewardsReferralWrapper .rewardDetails {
    flex-direction: column;
  }
}
.rewardsReferralWrapper .userReferral {
  flex: 1;
  padding: 0px 18px 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background: var(--clr-white);
  border-radius: 4px;
}
.rewardsReferralWrapper .userReferral .referRewardText {
  margin: 0;
  line-height: var(--font-body-lineheight);
}
.rewardsReferralWrapper .redeemRewardsPoint {
  flex: 1;
  padding: 0px 18px 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  background: var(--clr-white);
  border-radius: 4px;
}
.rewardsReferralWrapper .redeemRewardsPoint .loyaltyPoints {
  line-height: var(--font-body-lineheight);
}
.rewardsReferralWrapper .referralListing .custom-table-header .pointsHeader {
  justify-content: center;
}
.rewardsReferralWrapper .referralListing .custom-table-header .statusHeader {
  justify-content: flex-end;
}
.rewardsReferralWrapper .referralListing .item-data .points {
  justify-content: center;
}
.rewardsReferralWrapper .referralListing .item-data .status {
  justify-content: flex-end;
}
.rewardsReferralWrapper .pointsTier .custom-table-header .tierPoints {
  justify-content: flex-end;
}
.rewardsReferralWrapper .pointsTier .item-data .points {
  justify-content: flex-end;
}
#addAmountForm .form-section-action .label {
  font-size: var(--font-body-size);
  color: var(--txt-color);
  line-height: var(--font-body-lineheight);
  letter-spacing: 0.32px;
  margin: 0 0 8px;
  padding: 0;
  text-transform: capitalize;
  width: 100%;
  font-weight: var(--font-weight-bold);
}
#addAmountForm .form-section-action .quickAddAmount button.addAmountToWallet {
  flex: 0 0 70px;
  max-width: 70px;
  border-radius: 16px;
  padding: 10px 0;
  border: 1px solid #c7c7c7;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-color);
  background: #e9ecef;
  cursor: pointer;
  text-transform: uppercase;
}
#addAmountForm .form-section-action .quickAddAmount button.addAmountToWallet:focus, #addAmountForm .form-section-action .quickAddAmount button.addAmountToWallet.active {
  outline: 0;
  box-shadow: none;
}
.addMoneyToWallet .card .card-footer {
  background: var(--clr-white);
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .giftChooseAmnt {
  font-weight: 600;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount button {
  flex: 0 0 70px;
  max-width: 70px;
  border-radius: 16px;
  padding: 10px 0;
  border: 1px solid #c7c7c7;
  font-size: 14px;
  font-weight: 500;
  color: var(--txt-color);
  background: #e9ecef;
  cursor: pointer;
  text-transform: uppercase;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount button:focus, .giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount button.active {
  outline: 0;
  box-shadow: none;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount .input-GiftAmount {
  display: flex;
  align-items: center;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount .input-GiftAmount label.label {
  display: flex;
  align-items: center;
  padding: 0.555rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  width: max-content;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount .input-GiftAmount label.label:after {
  content: "₹";
  font-size: var(--font-body-size);
  color: var(--txt-color);
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .quickAddAmount .input-GiftAmount input.form-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 100%;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .enter {
  margin: 15px 0;
  font-weight: 600;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .input-submit-action {
  display: flex;
  column-gap: 10px;
  margin-top: 25px;
}
.giftListingFormWrapper .giftList .card-body #addAmountForm .input-submit-action button {
  width: 25%;
}
.text-danger {
  color: #dd0a32 !important;
  text-transform: uppercase;
  font-size: 11px !important;
  font-weight: 500 !important;
}
.changePasswordWrapper form .form-section button.btnSubmit,
.registerForm form .form-section button.btnSubmit {
  max-width: 450px !important;
  width: 100% !important;
}/* Mixins and functions */
._contactusForm_yy843_2 .textarea-Message {
  margin-top: -20px;
}
._contactusForm_yy843_2 .textarea-Message br {
  display: none;
}
._contactusForm_yy843_2 #shipperNo[readonly],
._contactusForm_yy843_2 #shipperNo[readonly]:hover {
  background-color: #e9ecef !important;
  opacity: 1 !important;
}
._contactusForm_yy843_2 .recaptcha {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
}
._contactusForm_yy843_2 .formWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px 15px;
  margin-bottom: 25px;
}
._contactusForm_yy843_2 .formWrapper .form-group input,
._contactusForm_yy843_2 .formWrapper .form-group select {
  margin-bottom: 5px;
}
._contactusForm_yy843_2 .formWrapper .form-group label {
  display: block;
  margin-bottom: 12px;
}/* Mixins and functions */
/************************************Form-section*********************************************/
.input-group.has-prepend-text {
  display: flex;
  flex-wrap: nowrap !important;
}
.form-helper-text {
  max-width: 450px;
  margin-top: 8px;
}
/*********************************Buttons****************************************************/
.form-section-action {
  margin-top: 25px;
  max-width: 450px;
}
.form-section-action .btnSubmit,
.form-section-action .btn_login,
.form-section-action .forgot_pw {
  width: 100%;
}
.form-section-action .login_btn,
.form-section-action .signup_btn,
.form-section-action .btn_signup {
  margin-top: 14px;
  width: 100%;
}
.form-section-action .login_btn:hover, .form-section-action .login_btn:focus, .form-section-action .login_btn.active,
.form-section-action .signup_btn:hover,
.form-section-action .signup_btn:focus,
.form-section-action .signup_btn.active,
.form-section-action .btn_signup:hover,
.form-section-action .btn_signup:focus,
.form-section-action .btn_signup.active {
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
/*******************************************************************************************/
.react-login-page,
.React-register-page {
  margin-bottom: 45px;
}
.formUserRegister,
.ResetPasswordWrapper,
.userContactUsForm {
  margin-bottom: 15px;
}
@media (max-width: 1024.98px) {
  .formUserRegister,
  .ResetPasswordWrapper,
  .userContactUsForm {
    margin-top: -10px;
  }
}
.registerForm .page-header .title_main {
  text-align: left;
  margin-bottom: 10px;
}
.registerForm .page-header small.form-section-info.text-muted {
  font-size: 14px;
}
.registerForm .page-header span {
  font-family: Cinzel, serif;
  font-weight: 700;
  font-size: 23px !important;
}
.registerForm .page-header .form-section-info .mandatory {
  color: #ff0000;
}
.registerForm .indOrCompRadioWrap {
  display: flex;
  align-items: center;
}
.registerForm .indOrCompRadioWrap input[type=radio] {
  accent-color: var(--clr_1);
  margin-right: 5px;
}
.registerForm .indOrCompRadioWrap label {
  width: auto;
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.registerForm.compnayForm .arrangeForm {
  display: flex;
  flex-direction: column;
}
.registerForm.compnayForm .arrangeForm .companyInfoWrap {
  order: -1;
}
.regformImage {
  display: none;
}
/*wishlist page*/
/*common css for my account pages*/
.wrapperDiv {
  display: flex;
  margin-bottom: 45px;
  row-gap: 15px;
}
@media (max-width: 767.98px) {
  .wrapperDiv {
    flex-direction: column;
  }
}
.wrapperDiv #myAccountMenu {
  flex: 0 0 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .wrapperDiv #myAccountMenu {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .wrapperDiv #myAccountMenu {
    display: none;
  }
}
.wrapperDiv #myAccountMenu .links {
  display: flex;
  align-items: flex-end;
  column-gap: 10px;
  font-size: 14px;
}
.wrapperDiv #myAccountMenu .links i {
  font-size: 16px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.wrapperDiv #myAccountMenu .links.active {
  font-weight: 700;
  font-size: 16px;
}
.wrapperDiv #myAccountMenu .links.active i {
  font-size: 18px;
  font-weight: 700;
}
.wrapperDiv #content {
  flex: 1 1 auto;
  max-width: calc(100% - 200px);
  justify-content: flex-end;
  background: #f2f2f2;
  border-radius: 12px;
  padding: 20px 20px 30px;
}
@media (max-width: 767.98px) {
  .wrapperDiv #content {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/*wishlistpage*/
.wishlistWrapper {
  display: flex;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .wishlistWrapper {
    flex-direction: column;
  }
}
.wishlistWrapper aside {
  flex: 0 0 200px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 20px;
}
@media (max-width: 767.98px) {
  .wishlistWrapper aside {
    flex: 0 0 100%;
    max-width: 100%;
    padding-right: 0;
    max-height: 30vh;
  }
}
@media (max-width: 575.98px) {
  .wishlistWrapper aside {
    display: none;
  }
}
.wishlistWrapper aside a {
  word-wrap: break-word;
  line-height: 18px;
}
.wishlistWrapper aside a.active {
  font-weight: 700 !important;
  font-size: 16px !important;
}
.wishlistWrapper aside::-webkit-scrollbar {
  width: 5px;
}
.wishlistWrapper aside::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.wishlistWrapper aside::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
.wishlistWrapper aside::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.wishlistWrapper #wishlistProductWrapper {
  flex: 1 1 auto;
  max-width: calc(100% - 200px);
}
@media (max-width: 767.98px) {
  .wishlistWrapper #wishlistProductWrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.wishlistWrapper #wishlistProductWrapper .product-price {
  margin-bottom: 0;
}
.contactFormWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px 15px;
  margin-bottom: 25px;
}
.contactFormWrapper div label {
  display: block !important;
  margin-bottom: 0;
  margin-bottom: 12px;
}
.contactFormWrapper .input-Extension label:after {
  content: none !important;
}
.text-danger {
  margin-bottom: 12px;
}
.btnSubmit {
  font-size: 1.0106666667rem;
  font-weight: var(--font-weight-bold);
  background-image: var(--theme-btn);
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  border: 1px solid var(--clr_7);
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 1.1px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.userContactUsForm form .form-section {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px 15px;
  margin-bottom: 25px;
}
.userContactUsForm form .form-section > div label {
  display: block !important;
  margin-bottom: 0;
}
.userContactUsForm form .form-section .input-Extension label:after {
  content: none !important;
}
.userContactUsForm form .form-section .contactFormWrapper.checkboxContent {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.editProfileForm .editProfileWrapper .page-heading {
  color: var(--clr_1);
}
.editProfileForm .editProfileWrapper h3 {
  margin-bottom: 0;
  color: var(--txt-color);
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: 2rem;
  letter-spacing: 0.06px;
  text-align: left;
}
.editProfileForm .editProfileWrapper .mandatory {
  color: #ff0000;
}
.editProfileForm .editProfileWrapper .personalCompWrapper {
  flex-direction: column;
}
.editProfileForm.Company .persnlWrap {
  order: 1;
}/* Mixins and functions */
.tabWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px auto 50px;
}
.tabWrapper .form-group input[type=checkbox]:checked::before {
  top: 9px;
}
@media (max-width: 1024.98px) {
  .tabWrapper .loginRight {
    margin-top: 15px;
  }
}
.tabWrapper .loginRight h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.08px;
  line-height: 43px;
}
@media (max-width: 575.98px) {
  .tabWrapper .loginRight h2 {
    font-size: 1.5rem;
    line-height: 30px;
  }
}
.tabWrapper .loginRight img {
  width: auto;
  height: auto;
  max-height: 520px;
}/* Mixins and functions */
._accountoptions_1m9fs_2 .account-options-main-div > li:hover {
  box-shadow: 0 4px 20px rgba(21, 80, 116, 0.3019607843) !important;
}
._accountoptions_1m9fs_2 .account-options-main-div > li:hover h2 {
  color: var(--secondary-color) !important;
}/* Mixins and functions */
._searchInputButton_f1nxi_2 {
  display: flex;
  align-items: flex-end;
  row-gap: 8px;
  column-gap: 8px;
  border: 1px solid var(--border-bottom-clr);
  flex-direction: column;
  padding: 20px;
  border-radius: 2px;
  margin-top: 10px;
}
@media (max-width: 1279.98px) {
  ._searchInputButton_f1nxi_2 {
    flex-direction: column;
    align-items: flex-start;
  }
}
._searchInputButton_f1nxi_2 .filterInput {
  width: 100%;
}
@media (max-width: 575.98px) {
  ._searchInputButton_f1nxi_2 .filterInput {
    flex-direction: column;
  }
}
._searchInputButton_f1nxi_2 .filterInput .form-group {
  flex: 1 1 auto;
}
._searchInputButton_f1nxi_2 .filterInput .form-group input {
  margin: 0;
}
._searchInputButton_f1nxi_2 .filterInput .form-group label {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03px;
  line-height: 19px;
  margin-bottom: 5px;
  order: -1;
}
._searchInputButton_f1nxi_2 .filterInput .inputFrom,
._searchInputButton_f1nxi_2 .filterInput .inputTo,
._searchInputButton_f1nxi_2 .filterInput .orderId {
  width: 100%;
}
._searchInputButton_f1nxi_2 .filterInput input {
  height: 44px;
}
._searchInputButton_f1nxi_2 .filterBtns {
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
._searchInputButton_f1nxi_2 .filterBtns .btn {
  margin: 0;
  min-width: 120px;
}
@media (max-width: 575.98px) {
  ._searchInputButton_f1nxi_2 .filterBtns {
    max-width: 450px;
    width: 100%;
  }
}/* Mixins and functions */
._requestQuote_6bvuc_2 ._searchInputButton_6bvuc_2 ._btn_6bvuc_2._theme-button-2_6bvuc_2 {
  background: var(--main-color) !important;
}
._requestQuote_6bvuc_2 table tr th,
._requestQuote_6bvuc_2 table tr td {
  font-size: 0.875rem;
}
#_RequestQuote_6bvuc_1 {
  max-width: 597px !important;
  box-shadow: 2px 4px 8px 3px rgba(0, 0, 0, 0.1490196078);
  border-radius: 10px;
  border-top: 6px solid var(--secondary-color);
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 table tr th,
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 table tr td {
  font-size: 0.875rem;
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 ._dialog-header_6bvuc_20 {
  background-color: var(--clr-white);
  border-radius: 5px;
  padding: 20px 20px 0px 20px;
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 ._dialog-header_6bvuc_20 h5 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  color: var(--clr-icon);
  position: relative;
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 ._dialog-header_6bvuc_20 h5::before {
  content: url("data:image/svg+xml, %3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.3634 10.9199H6.4746C6.36006 10.908 6.2443 10.9204 6.13482 10.9561C6.02534 10.9918 5.92458 11.0501 5.83906 11.1272C5.75353 11.2043 5.68516 11.2986 5.63836 11.4038C5.59156 11.509 5.56738 11.6229 5.56738 11.738C5.56738 11.8532 5.59156 11.9671 5.63836 12.0723C5.68516 12.1775 5.75353 12.2717 5.83906 12.3488C5.92458 12.426 6.02534 12.4843 6.13482 12.52C6.2443 12.5557 6.36006 12.568 6.4746 12.5562H12.3634C12.5657 12.5352 12.7532 12.44 12.8894 12.2889C13.0257 12.1378 13.1011 11.9415 13.1011 11.738C13.1011 11.5346 13.0257 11.3383 12.8894 11.1872C12.7532 11.0361 12.5657 10.9409 12.3634 10.9199Z' fill='%2344D62C'/%3E%3Cpath d='M10.1499 14.6038H6.47488C6.25906 14.6038 6.05208 14.6895 5.89947 14.8421C5.74687 14.9947 5.66113 15.2017 5.66113 15.4175C5.66113 15.6333 5.74687 15.8403 5.89947 15.9929C6.05208 16.1455 6.25906 16.2312 6.47488 16.2312H10.1499C10.3657 16.2312 10.5727 16.1455 10.7253 15.9929C10.8779 15.8403 10.9636 15.6333 10.9636 15.4175C10.9636 15.2017 10.8779 14.9947 10.7253 14.8421C10.5727 14.6895 10.3657 14.6038 10.1499 14.6038Z' fill='%2344D62C'/%3E%3Cpath d='M24.9201 6.0025C24.9205 5.89467 24.899 5.78788 24.8568 5.68861C24.8147 5.58934 24.7529 5.49965 24.6751 5.425L21.2451 1.98625C21.0912 1.83449 20.8837 1.74941 20.6676 1.74941C20.4514 1.74941 20.244 1.83449 20.0901 1.98625L18.0776 3.99875H5.37258C4.76528 4.00106 4.18351 4.24333 3.75408 4.67275C3.32465 5.10218 3.08238 5.68395 3.08008 6.29125V23.9575C3.08008 24.2586 3.13938 24.5567 3.25458 24.8348C3.36979 25.1129 3.53866 25.3657 3.75154 25.5785C3.96441 25.7914 4.21714 25.9603 4.49528 26.0755C4.77342 26.1907 5.07152 26.25 5.37258 26.25H17.8851C18.1857 26.25 18.4834 26.1906 18.7611 26.0753C19.0387 25.96 19.2909 25.791 19.503 25.578C19.7152 25.365 19.8833 25.1122 19.9975 24.8341C20.1118 24.5561 20.17 24.2581 20.1688 23.9575V11.0863L24.6751 6.58C24.8298 6.42743 24.9179 6.21981 24.9201 6.0025ZM17.9201 24.6137H5.37258C5.19853 24.6137 5.03161 24.5446 4.90854 24.4215C4.78547 24.2985 4.71633 24.1315 4.71633 23.9575V6.29125C4.71859 6.11791 4.78846 5.9523 4.91105 5.82972C5.03363 5.70713 5.19923 5.63727 5.37258 5.635H16.4413L14.2101 7.875C14.1142 7.97752 14.0468 8.10333 14.0146 8.23993C13.9824 8.37653 13.9864 8.51919 14.0263 8.65375V11.8825C14.0252 11.9897 14.0454 12.096 14.0859 12.1953C14.1264 12.2945 14.1863 12.3847 14.2621 12.4605C14.3379 12.5363 14.428 12.5962 14.5273 12.6367C14.6265 12.6772 14.7329 12.6974 14.8401 12.6963H18.2176C18.3285 12.6979 18.4386 12.677 18.5413 12.635V23.9575C18.5413 24.1315 18.4722 24.2985 18.3491 24.4215C18.226 24.5446 18.0591 24.6137 17.8851 24.6137H17.9201ZM17.9201 11.0688H15.6538V8.75L20.6676 3.73625L22.9426 6.02L17.9201 11.0688Z' fill='%2344D62C'/%3E%3C/svg%3E ");
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 ._dialog-header_6bvuc_20 button._close_6bvuc_37 {
  color: var(--clr-table-border) !important;
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 ._dialog-header_6bvuc_20 button._close_6bvuc_37 span._icon-Close_6bvuc_40::before {
  color: var(--clr-table-border);
  font-size: 0.75rem;
  font-weight: 300;
}
#_RequestQuote_6bvuc_1 ._dialog-container_6bvuc_16 ._dialog-content_6bvuc_16 ._dialog-header_6bvuc_20 button._close_6bvuc_37:hover span._icon-Close_6bvuc_40::before {
  color: var(--main-color);
}
._requestQuotePopup_6bvuc_49 form .p-3 .mandatory-main-div p {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  color: var(--txt-color-light);
}
._requestQuotePopup_6bvuc_49 form .p-3 .title-main {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0em;
  color: var(--main-color);
  text-transform: uppercase;
  margin-bottom: 15px;
}
._requestQuotePopup_6bvuc_49 form .p-3 .title-main.blue {
  color: var(--secondary-color);
}
._requestQuotePopup_6bvuc_49 form .p-3 .subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  color: var(--sec-clr-text);
}
._requestQuotePopup_6bvuc_49 form .p-3 .product-info-main-div .product-name-code {
  padding-bottom: 15px;
}
._requestQuotePopup_6bvuc_49 form .p-3 .product-info-main-div .product-name-code .product-code {
  color: var(--txt-color-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
._requestQuotePopup_6bvuc_49 form .p-3 .product-info-main-div .product-name-code h3 {
  font-size: 2rem;
  color: var(--clr-black);
  font-weight: 500;
  line-height: 1.875rem;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 7px 0;
}
@media (max-width: 575.98px) {
  ._requestQuotePopup_6bvuc_49 form .p-3 .product-info-main-div .product-name-code h3 {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 1599.98px) {
  ._requestQuotePopup_6bvuc_49 form .p-3 .product-info-main-div .product-name-code h3 {
    font-size: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  ._requestQuotePopup_6bvuc_49 form .p-3 .product-info-main-div .product-name-code h3 {
    width: 100%;
  }
}
._requestQuotePopup_6bvuc_49 form .p-3 .prodImg {
  height: 240px;
  border: 1px solid var(--clr-table-border);
}
._requestQuotePopup_6bvuc_49 form .p-3 .prodImg img {
  height: 100%;
  width: auto;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}
._requestQuotePopup_6bvuc_49 form .p-3 .personal-info-comment-main-div,
._requestQuotePopup_6bvuc_49 form .p-3 .contact-info-comment-main-div,
._requestQuotePopup_6bvuc_49 form .p-3 .other-info-comment-main-div {
  column-count: 2;
  position: relative;
}
@media (max-width: 767.98px) {
  ._requestQuotePopup_6bvuc_49 form .p-3 .personal-info-comment-main-div,
  ._requestQuotePopup_6bvuc_49 form .p-3 .contact-info-comment-main-div,
  ._requestQuotePopup_6bvuc_49 form .p-3 .other-info-comment-main-div {
    column-count: 1;
  }
}
._requestQuotePopup_6bvuc_49 form .p-3 .personal-info-comment-main-div .asiError,
._requestQuotePopup_6bvuc_49 form .p-3 .contact-info-comment-main-div .asiError,
._requestQuotePopup_6bvuc_49 form .p-3 .other-info-comment-main-div .asiError {
  position: absolute;
  left: 0;
  bottom: 0;
}
._requestQuotePopup_6bvuc_49 form .p-3 other-info-comment-main-div input {
  background-color: #ecf0f1 !important;
}
._requestQuotePopup_6bvuc_49 form .form-group {
  margin-bottom: 30px;
  position: relative;
}
._requestQuotePopup_6bvuc_49 form .form-group input,
._requestQuotePopup_6bvuc_49 form .form-group select,
._requestQuotePopup_6bvuc_49 form .form-group textarea {
  border: 1px solid #ced4da !important;
  background-color: transparent !important;
  border-radius: 5px !important;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0em;
  color: var(--sec-clr-text);
}
._requestQuotePopup_6bvuc_49 form .form-group small.text-danger[role=alert] {
  position: absolute;
  top: 100%;
}
._requestQuotePopup_6bvuc_49 .delivery-info-comment-main-div {
  padding-right: 5px !important;
}
@media (max-width: 767.98px) {
  ._requestQuotePopup_6bvuc_49 .delivery-info-comment-main-div {
    width: 100%;
  }
}/* Mixins and functions */
._searchInputButton_1y1u2_2 {
  display: flex;
  align-items: flex-end;
  row-gap: 8px;
  column-gap: 8px;
  border: 1px solid var(--border-bottom-clr);
  flex-direction: column;
  padding: 20px;
  border-radius: 2px;
  margin-top: 10px;
}
@media (max-width: 1279.98px) {
  ._searchInputButton_1y1u2_2 {
    flex-direction: column;
    align-items: flex-start;
  }
}
._searchInputButton_1y1u2_2 .filterInput {
  width: 100%;
}
._searchInputButton_1y1u2_2 .filterInput .form-group input {
  margin: 0;
}
._searchInputButton_1y1u2_2 .filterInput .form-group label {
  display: block;
  position: relative;
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03px;
  line-height: 19px;
  margin-bottom: 5px;
  order: -1;
}
._searchInputButton_1y1u2_2 .filterInput .inputFrom,
._searchInputButton_1y1u2_2 .filterInput .inputTo,
._searchInputButton_1y1u2_2 .filterInput .orderId {
  width: 100%;
}
._searchInputButton_1y1u2_2 .filterInput input {
  height: 44px;
}
._searchInputButton_1y1u2_2 .filterBtns {
  margin-right: auto;
  margin-left: auto;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
._searchInputButton_1y1u2_2 .filterBtns .btn {
  margin: 0;
  min-width: 120px;
}
@media (max-width: 575.98px) {
  ._searchInputButton_1y1u2_2 .filterBtns {
    max-width: 450px;
    width: 100%;
  }
}/* Mixins and functions */
._sampOrder_er7sg_2 ._searchInputButton_er7sg_2 ._btn_er7sg_2._theme-button-2_er7sg_2 {
  background: var(--main-color) !important;
}
._sampOrder_er7sg_2 ._searchInputButton_er7sg_2 .theme-button-2 {
  z-index: 9;
  color: var(--clr-white);
  padding: 10px 20px;
  transition: 0.3s;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin-top: 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-flex;
  box-shadow: none;
  border-color: transparent;
  padding: 8px 20px;
  border-radius: 20px;
}
._sampOrder_er7sg_2 ._searchInputButton_er7sg_2 .theme-button-2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: transform 200ms ease-in;
}
._sampOrder_er7sg_2 ._searchInputButton_er7sg_2 .theme-button-2::after {
  background-color: var(--main-color) !important;
}/* Mixins and functions */
._ProductImage_454hi_2 {
  width: 100%;
}
._ProductImage_454hi_2 {
  margin-bottom: 20px;
}
._ProductImage_454hi_2 .product-image {
  text-align: left !important;
}
._ProductImage_454hi_2 .product-image .pen-color-img {
  width: 100%;
}
._ProductImage_454hi_2 .product-image .mobile-image img {
  height: inherit !important;
  max-height: inherit !important;
}
._ProductImage_454hi_2 .product-image .feature-icon {
  margin: 15px 0 0 15px;
}
._ProductImage_454hi_2 .product-image .feature-icon img {
  max-height: inherit !important;
  object-fit: none !important;
  mix-blend-mode: unset !important;
  width: auto !important;
  height: auto !important;
}
._ProductImage_454hi_2 .product-image .LargImage {
  margin: 0 auto;
}
._ProductImage_454hi_2 .product-image .LargImage div {
  z-index: 2 !important;
}
._ProductImage_454hi_2 .product-image .LargImage .enLargeImage {
  max-width: none;
}
._ProductImage_454hi_2 .product-image img:not(.enLargeImage) {
  max-height: 480px !important;
  object-fit: contain;
  mix-blend-mode: darken;
  width: 644px;
  height: 480px;
}/**
 * Swiper 9.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 28, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper,swiper-container{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-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,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,.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{transform-style:preserve-3d}.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,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(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,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(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,.5),rgba(0,0,0,0))}.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-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.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,swiper-container: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)}}: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:.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: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,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.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-button-lock{display:none}/* Mixins and functions */
._ProductMediaList_17kfs_2 ._swiper-slide_17kfs_2 {
  height: auto;
}
._ProductMediaList_17kfs_2 {
  margin-bottom: 20px;
}
@media (max-width: 1024.98px) {
  ._ProductMediaList_17kfs_2 {
    margin-bottom: 0;
  }
}
._ProductMediaList_17kfs_2 .crousol-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 575.98px) {
  ._ProductMediaList_17kfs_2 .crousol-box .swiper-icon {
    transform: translateY(0%);
  }
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperleft,
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperright {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--clr_5);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperleft:hover,
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperright:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperleft svg,
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperright svg {
  display: block;
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiper-button-disabled {
  background-color: #eeeeee;
  color: #444;
  pointer-events: none;
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperleft {
  top: -30px;
}
@media (max-width: 767.98px) {
  ._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperleft {
    top: 50%;
    right: -12px;
    left: auto;
    transform: rotate(90deg) translateX(-50%);
  }
}
._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperright {
  bottom: -30px;
}
@media (max-width: 767.98px) {
  ._ProductMediaList_17kfs_2 .crousol-box .swiper-icon .swiperright {
    top: 50%;
    left: -12px;
    right: auto;
    bottom: auto;
    transform: rotate(90deg) translateX(-50%);
  }
}
._ProductMediaList_17kfs_2 .swiper {
  max-height: 480px;
  width: 100%;
}
@media (max-width: 575.98px) {
  ._ProductMediaList_17kfs_2 .swiper {
    padding: 0 20px;
  }
}
._ProductMediaList_17kfs_2 .swiper .swiper-pagination-bullets {
  display: none;
}
@media (max-width: 1024.98px) {
  ._ProductMediaList_17kfs_2 .swiper .swiper-button-prev,
  ._ProductMediaList_17kfs_2 .swiper .swiper-button-next {
    transform: translateY(-70%);
  }
}
._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide {
  transition: 0.3s;
  height: auto !important;
  cursor: pointer;
  background-color: transparent;
  text-align: center;
}
._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide:hover {
  border-color: var(--main-color);
}
@media (max-width: 1024.98px) {
  ._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide .clickWrapper img {
  margin: 0;
  mix-blend-mode: darken;
  height: auto;
  width: 100px;
}
@media (max-width: 1599.98px) {
  ._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide .clickWrapper img {
    height: auto;
  }
}
@media (max-width: 1024.98px) {
  ._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide .clickWrapper img {
    margin: 0px;
  }
}
._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .swiper-slide .clickWrapper svg {
  font-size: 20px;
  background: #f3f3f3;
  padding: 18px;
  width: 70px;
  height: 70px;
  color: var(--secondary-color);
}
._ProductMediaList_17kfs_2 .swiper .swiper-wrapper .activeimgdiv {
  border: 2px solid var(--clr_1);
}
._ProductMediaList_17kfs_2 .swiper-slide {
  height: auto;
}
.quickViewWrap .swiper-vertical > .swiper-wrapper {
  flex-direction: row;
}/* Mixins and functions */
@media (max-width: 767.98px) {
  ._highResImagePopup_1b7v8_3 .btn-primary {
    padding: 10px 20px 10px 20px !important;
  }
}/* Mixins and functions */
._actionIcons_u1azm_2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border-bottom: solid 1px #dcdcdc;
  padding-bottom: 20px;
}
@media (max-width: 767.98px) {
  ._actionIcons_u1azm_2 {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 20px;
    border-top: solid 1px #dcdcdc;
  }
}
._actionIcons_u1azm_2 .action-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer !important;
}
._actionIcons_u1azm_2 .action-icon:hover {
  color: var(--hover-icon);
}
._actionIcons_u1azm_2 .action-icon:hover .icon img {
  filter: sepia(100%) hue-rotate(-66deg) saturate(75);
}
._actionIcons_u1azm_2 .action-icon:hover .text {
  color: #ffb552;
}
._actionIcons_u1azm_2 .action-icon:hover svg {
  color: #ffb552;
}
._actionIcons_u1azm_2 .action-icon .icon {
  width: 50px;
  margin: 10px 0;
}
._actionIcons_u1azm_2 .action-icon .icon img {
  filter: brightness(0);
}
._actionIcons_u1azm_2 .action-icon svg {
  width: 45px;
  height: auto;
}
._actionIcons_u1azm_2 .action-icon .text {
  font-size: 15px;
  padding: 0 15px;
  text-align: center;
}
@media (max-width: 1279.98px) {
  ._actionIcons_u1azm_2 #divIdActVisiualSample {
    display: none;
  }
}
@media (max-width: 1279.98px) {
  ._actionIcons_u1azm_2 .action-icon.compare {
    display: none;
  }
}/**
 * Swiper 9.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 28, 2023
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper,swiper-container{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-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide,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,.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{transform-style:preserve-3d}.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,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(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,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(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,.5),rgba(0,0,0,0))}.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-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.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,swiper-container: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:.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: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,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.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-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.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(.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(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .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:.2s transform,.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:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,:host(.swiper-horizontal.swiper-rtl) .swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.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,.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;-ms-touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(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,.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,swiper-container .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,.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-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.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-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-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}/* Mixins and functions */
._penColorCrousol_gn6aj_2 {
  margin-bottom: 20px;
}
._penColorCrousol_gn6aj_2 .pen-color-img {
  transition: 0.3s;
  padding: 8px;
  border: 1px solid var(--color-border);
  cursor: pointer;
  position: relative;
}
._penColorCrousol_gn6aj_2 .pen-color-img:hover {
  border-color: var(--secondary-color);
}
._penColorCrousol_gn6aj_2 .pen-color-img img {
  display: block;
}
._penColorCrousol_gn6aj_2 .pen-color-img.active, ._penColorCrousol_gn6aj_2 .pen-color-img.defaultActive {
  border-color: var(--secondary-color);
}
._penColorCrousol_gn6aj_2 .crousol-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}
._penColorCrousol_gn6aj_2 .crousol-box .items {
  width: 14%;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper {
  width: calc(100% - 100px);
  margin: 0 auto;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper.noarrows {
  width: 100%;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: absolute;
  top: 50%;
  pointer-events: none;
  z-index: 1;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperleft,
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperright {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--clr_5);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperleft:hover,
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperright:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperleft svg,
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperright svg {
  display: block;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiper-button-disabled {
  background-color: #eeeeee;
  color: #444;
  pointer-events: none;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperleft {
  left: 0px;
}
._penColorCrousol_gn6aj_2 .crousol-box .swiper-icon .swiperright {
  right: 0px;
}/* Mixins and functions */
/************product card*********/
._product_card_style_1le6p_3 {
  overflow: hidden;
  padding: 20px 10px;
  border: 1px solid transparent;
  background-color: var(--clr-white);
  position: relative;
}
._product_card_style_1le6p_3:hover {
  border: 1px solid var(--secondary-color) !important;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3:hover .card-upper-block:before {
    visibility: hidden !important;
    opacity: 0 !important;
  }
}
._product_card_style_1le6p_3:hover .card-upper-block .productImage img {
  transform: scale(1.1);
}
._product_card_style_1le6p_3:hover .card-upper-block .icons-box {
  transform: translate(-50%, -50%);
  transition: 0.3s;
  transform-origin: right;
  display: flex;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3:hover .card-upper-block .icons-box {
    display: none;
  }
}
._product_card_style_1le6p_3 .card-upper-block .featureIcon {
  position: absolute;
  left: 5px;
  top: 10px;
  display: flex;
  row-gap: 5px;
  gap: 15px;
  margin-bottom: 15px;
}
._product_card_style_1le6p_3 .card-upper-block .featureIcon img {
  width: 65px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3 .card-upper-block .featureIcon img {
    width: 50px;
  }
}
@media (max-width: 575.98px) {
  ._product_card_style_1le6p_3 .card-upper-block .featureIcon img {
    width: 35px;
    height: 35px;
  }
}
._product_card_style_1le6p_3 .card-upper-block:before {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile {
    display: block !important;
  }
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile span {
  display: none;
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
  height: 20px;
  width: 20px;
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist.checked {
  color: #fff;
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist:hover span {
  display: none;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist:hover span {
    margin-right: 50px;
    font-size: 10px;
    top: 0;
    right: -12px;
  }
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist span {
  display: none !important;
  color: var(--clr-white);
  white-space: nowrap;
  position: absolute;
  background: var(--clr-black);
  margin: 0 5px;
  padding: 10px;
  border-radius: 4px;
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist .icon img {
  width: 100%;
  height: auto;
  filter: brightness(0);
}
._product_card_style_1le6p_3 .card-upper-block .addToWishlistMobile .wishlist.checked .icon img {
  filter: sepia(100%) hue-rotate(-66deg) saturate(75);
}
._product_card_style_1le6p_3 .card-upper-block .productImage {
  margin-bottom: 15px;
}
._product_card_style_1le6p_3 .card-upper-block .productImage img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box {
  gap: 15px;
  display: none;
  position: absolute;
  align-items: flex-end;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: right;
  transition: 0.3s;
  transform-origin: bottom;
  padding: 10px;
  border-radius: 50px;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box.mobile {
  display: none !important;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box.mobile .compare-presentation .wishlistIcon {
  background-color: transparent;
  border: none;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box.mobile .compare-presentation .wishlistIcon .text {
  display: none !important;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box.mobile .compare-presentation .wishlistIcon.checked i {
  color: var(--clr_5) !important;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box.mobile .compare-presentation .wishlistIcon i {
  color: var(--txt-color-light) !important;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3 .card-upper-block .icons-box.mobile {
    display: block !important;
    top: 0;
    right: 0px;
    transform: none;
  }
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .presentationIcon,
._product_card_style_1le6p_3 .card-upper-block .icons-box .cartIcon {
  display: none;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation button.checked svg,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation .wishlistIcon.checked svg {
  color: var(--clr_5);
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation button:hover span,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation .wishlistIcon:hover span {
  display: none !important;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation button svg,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation .wishlistIcon svg {
  font-size: 16px;
  color: #fff;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation button span,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation .wishlistIcon span {
  display: none !important;
  color: var(--clr-white);
  white-space: inherit;
  position: absolute;
  background: var(--clr-black);
  margin: 0 5px;
  padding: 7px;
  border-radius: 4px;
  top: -46px;
  text-align: center;
  margin-right: 9px;
  font-size: 12px;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation button span::after,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation .wishlistIcon span::after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: var(--clr-black) transparent transparent transparent;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button {
  height: 34px;
  width: 34px;
  background-color: #222222;
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(1);
  transition: 0.3s;
  margin-bottom: 5px;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div .icon img,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button .icon img {
  height: 16px;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.action-icon.wishlist .text, ._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.action-icon.compare .text,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.action-icon.wishlist .text,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.action-icon.compare .text {
  display: none;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.action-icon.wishlist svg, ._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.action-icon.compare svg,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.action-icon.wishlist svg,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.action-icon.compare svg {
  color: white;
  fill: white;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.action-icon.wishlist svg,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.action-icon.wishlist svg {
  width: 20px;
  height: 20px;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div i,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button i {
  color: var(--clr-white);
  font-size: 16px;
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.checked,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.checked {
  background-color: var(--clr_5);
  color: var(--clr-white);
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div.checked:hover svg,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button.checked:hover svg {
  color: var(--clr-white);
}
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > div:hover,
._product_card_style_1le6p_3 .card-upper-block .icons-box .compare-presentation > button:hover {
  background-color: var(--clr_5);
  color: var(--clr-white);
}
._product_card_style_1le6p_3 .card-upper-block .showOnDetailsPage {
  display: none;
}
._product_card_style_1le6p_3 .card-block .list-content {
  margin-top: 15px;
  text-align: center;
}
._product_card_style_1le6p_3 .card-block .list-content .product-code {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #444444;
  font-weight: 300;
  line-height: 14px;
  padding-bottom: 20px;
  font-family: "Roboto", sans-serif;
  border-bottom: 1px solid #EEEEEE;
}
._product_card_style_1le6p_3 .card-block .list-content .product-name {
  text-overflow: ellipsis;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
._product_card_style_1le6p_3 .card-block .list-content .product-name h4 {
  font-size: 1.125rem;
  margin-bottom: 0px;
  height: 45px;
  white-space: pre-line;
  width: 100%;
  font-weight: 400;
  color: #003C68;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  ._product_card_style_1le6p_3 .card-block .list-content .product-name h4 {
    font-size: 0.875rem;
  }
}
._product_card_style_1le6p_3 .card-block .list-content .product-name h4:hover {
  color: #F78F1E;
}
._product_card_style_1le6p_3 .card-block .list-content .pro-swatches.sw-color {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 24px;
}
._product_card_style_1le6p_3 .card-block .list-content .pro-swatches.sw-color .color img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #EEEEEE;
}
._product_card_style_1le6p_3 .card-block .list-content .product-price {
  color: var(--main-color);
  font-size: 1.125rem;
  font-weight: 400;
  padding-top: 8px;
  white-space: nowrap;
}
._product_card_style_1le6p_3 .card-block .list-content .product-price .price {
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  ._product_card_style_1le6p_3 .card-block .list-content .product-price {
    font-size: 0.75rem;
  }
}
._product_card_style_1le6p_3 .card-block .list-content .product-price .text {
  font-family: "Roboto", sans-serif;
  font-size: 0.8125rem;
  font-weight: 300;
  color: #444444;
  letter-spacing: 0;
}
@media (max-width: 575.98px) {
  ._product_card_style_1le6p_3 .card-block .list-content .product-price .text {
    font-size: 0.75rem;
  }
}
._product_card_style_1le6p_3 .card-block .list-content .product-price .price-span {
  color: #003C68;
  font-weight: 400;
  font-size: 18px;
}
._product_card_style_1le6p_3 .card-block .list-content .product-price .price-span + span {
  margin-left: 5px;
}
._product_card_style_1le6p_3 .card-block .list-content .product-price .discountCodeNBlankPrice {
  font-size: 16px;
  color: #888888;
  font-weight: 600;
  margin-left: 5px;
}
@media (max-width: 1024.98px) {
  ._product_card_style_1le6p_3 .card-block .list-content .product-price .discountCodeNBlankPrice {
    font-size: 12px;
  }
}
._product_card_style_1le6p_3 .swiper-button-prev {
  height: 35px !important;
  width: 35px !important;
  border: none;
  cursor: pointer;
  line-height: 36px;
}
._product_card_style_1le6p_3 .swiper-button-prev:after {
  content: none;
}
._product_card_style_1le6p_3 .swiper-button-prev:hover:before {
  color: var(--clr-white);
}
._product_card_style_1le6p_3 .swiper-button-prev:hover:before:hover {
  color: var(--main-color);
}
._product_card_style_1le6p_3 .swiper-button-next {
  height: 35px !important;
  width: 35px !important;
  cursor: pointer;
  line-height: 36px;
  background-color: transparent !important;
  border: 1px solid #d9d9d9;
  color: var(--txt-color) !important;
}
._product_card_style_1le6p_3 .swiper-button-next:after {
  content: none;
}
._product_card_style_1le6p_3 .swiper-button-next:hover {
  color: var(--main-color);
}
._product_card_style_1le6p_3 .swiper-button-next:hover:before {
  color: var(--clr-white);
}
._product_card_style_1le6p_3 .swiper-button-next:hover:before:hover {
  color: var(--main-color);
}
._product_card_style_1le6p_3 .swiper-button-disabled:before {
  color: #777777;
}
.callForPrice .minQuantity, .callForPrice table.product-pricing, .callForPrice .product-pricing-wrap .tab, .callForPrice .add-cart-box {
  display: none !important;
}
.callForPrice .test {
  margin-bottom: 15px;
}
.callForPrice .product-pricing-wrap .callForPricing:last-child {
  display: block !important;
}
.strikePrice {
  text-decoration: line-through;
}
.in-view .product-list-view {
  padding: 0 15px;
}
.in-view .product-list-view .card-upper-block .productImage {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.in-view .product-list-view .card-upper-block .productImage img {
  height: auto;
}
.in-view .product-list-view .card-block .icons-box.mobile {
  display: none !important;
}
.in-view .product-list-view .icons-box.mobile {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9;
}
@media (max-width: 1024.98px) {
  .in-view .product-list-view .icons-box.mobile {
    display: block !important;
  }
}
.in-view .product-list-view .icons-box.mobile .text {
  display: none;
}
.in-view .product-list-view .icons-box.mobile .wishlistIcon {
  background-color: transparent !important;
  border: none;
}
.in-view .product-list-view .icons-box.mobile .wishlistIcon .text {
  display: none !important;
}
.in-view .product-list-view .icons-box.mobile .wishlistIcon.checked i {
  font-size: 22px;
  color: var(--clr_5) !important;
}
.in-view .product-list-view .icons-box.mobile .wishlistIcon i {
  font-size: 22px;
  color: var(--txt-color-light) !important;
}
@media (max-width: 1024.98px) {
  .in-view .product-list-view .icons-box.mobile {
    display: block !important;
  }
}
.in-view .product-list-view .card-upper-block .icons-box {
  gap: 15px;
  display: none;
  position: absolute;
  align-items: flex-end;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: right;
  transition: 0.3s;
  transform-origin: bottom;
  padding: 10px;
  border-radius: 50px;
}
@media (max-width: 1024.98px) {
  .in-view .product-list-view .card-upper-block .icons-box {
    display: none !important;
  }
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation {
  position: relative;
  cursor: pointer;
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation .checked svg {
  color: var(--clr_5);
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation:hover span {
  display: none;
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation span {
  display: none;
  color: var(--clr-white);
  white-space: inherit;
  position: absolute;
  background: var(--clr-black);
  margin: 0 5px;
  padding: 7px;
  border-radius: 4px;
  top: -46px;
  text-align: center;
  margin-right: 9px;
  font-size: 12px;
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation > div {
  height: 34px;
  width: 34px;
  background-color: var(--main-color);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(1);
  transition: 0.3s;
  margin-bottom: 5px;
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation > div i {
  color: var(--clr-white);
  font-size: 20px;
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation > button {
  height: 34px;
  width: 34px;
  background-color: var(--main-color);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(1);
  transition: 0.3s;
  margin-bottom: 5px;
}
.in-view .product-list-view .card-upper-block .icons-box .compare-presentation > button i {
  color: var(--clr-white);
  font-size: 20px;
}
.in-view .product-list-view .card-upper-block .icons-box .cartIcon, .in-view .product-list-view .card-upper-block .icons-box .presentationIcon {
  display: none;
}
.in-view .product-list-view:hover {
  border: 1px solid var(--main-color);
}
.in-view .product-list-view:hover .card-upper-block .icons-box {
  transform: translate(-50%, -50%);
  transition: 0.3s;
  transform-origin: right;
  display: flex;
}/* Mixins and functions */
dialog#quick-view-pop-up {
  background-color: rgba(255, 255, 255, 0.1490196078);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
dialog#quick-view-pop-up .product-description {
  min-height: auto !important;
}
dialog#quick-view-pop-up.modal-xl {
  max-width: 90% !important;
}
dialog#quick-view-pop-up:not([open]) {
  display: none !important;
}
dialog#quick-view-pop-up .dialog-body {
  user-select: text;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
}
dialog#quick-view-pop-up .dialog-container {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.1490196078);
}
dialog#quick-view-pop-up .dialog-container .dialog-header {
  margin-left: auto;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding: 7px;
}
dialog#quick-view-pop-up .dialog-container .dialog-header span {
  color: var(--clr-white);
  text-shadow: none;
  opacity: 1;
  font-weight: 500;
  display: flex;
  align-items: center;
  height: 16px;
  width: 16px;
  justify-content: center;
  font-size: 28px;
  background-color: transparent;
}
dialog#quick-view-pop-up .dialog-container .dialog-header .dialog-title {
  display: block;
}
dialog#quick-view-pop-up .dialog-container .dialog-content {
  background-color: var(--clr-white);
}
dialog#quick-view-pop-up .dialog-container .dialog-content .pricing-heading {
  position: relative;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .pricing-heading .checkInventory {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  color: var(--clr_5);
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  margin-top: 20px;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper {
  width: calc(100% - 100px);
  margin: 0 auto;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper.noarrows {
  width: 100%;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  pointer-events: none;
  z-index: 1;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperleft,
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperright {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--clr_5);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  pointer-events: auto;
  transition: background-color 0.3s ease;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperleft:hover,
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperright:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperleft svg,
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperright svg {
  display: block;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiper-button-disabled {
  background-color: #eeeeee;
  color: #444;
  pointer-events: none;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperleft {
  left: 0px;
}
dialog#quick-view-pop-up .dialog-container .dialog-content .crousol-box .swiper-icon .swiperright {
  right: 0px;
  left: auto;
  bottom: auto;
}
dialog#quick-view-pop-up .prodCode p {
  font-size: 1rem !important;
  color: var(--txt-color-light);
  font-weight: 600;
}
dialog#quick-view-pop-up .prodCode p span {
  display: none;
}
@media (max-width: 1599.98px) {
  dialog#quick-view-pop-up .prodCode p {
    font-size: 0.875rem;
  }
}
dialog#quick-view-pop-up .page-heading-quick-view {
  font-size: 2rem;
  font-weight: 600;
  color: var(--clr-black);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 1599.98px) {
  dialog#quick-view-pop-up .page-heading-quick-view {
    font-size: 1.75rem;
  }
}
dialog#quick-view-pop-up .productMediaWrap .title h2,
dialog#quick-view-pop-up .product-pricing .title h2,
dialog#quick-view-pop-up .detail-content .title h2 {
  margin: 15px 0;
  font-size: 1.25rem;
  color: var(--clr-black);
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  dialog#quick-view-pop-up .productMediaWrap .title h2,
  dialog#quick-view-pop-up .product-pricing .title h2,
  dialog#quick-view-pop-up .detail-content .title h2 {
    font-size: 0.875rem;
  }
}
dialog#quick-view-pop-up .product-pricing .mobile-table {
  margin-bottom: 20px;
  border: 2px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
}
dialog#quick-view-pop-up .product-pricing .mobile-table table {
  width: calc(100% + 4px) !important;
  margin: -2px -2px;
}
dialog#quick-view-pop-up .product-pricing .mobile-table tr th {
  color: var(--clr-black) !important;
}
dialog#quick-view-pop-up .product-pricing .mobile-table tr th,
dialog#quick-view-pop-up .product-pricing .mobile-table tr td {
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border) !important;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--txt-color-light);
  text-align: center;
}
dialog#quick-view-pop-up .product-pricing .note-expiry {
  color: #ff0000;
  font-size: 13px;
}
dialog#quick-view-pop-up .product-pricing .note-expiry span {
  font-size: 13px;
}
dialog#quick-view-pop-up .product-pricing .table-responsive {
  border: 2px solid var(--color-border);
  border-radius: 50px;
  overflow: hidden;
  display: inline-block;
}
dialog#quick-view-pop-up .product-pricing .table-responsive table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
  background-color: var(--light-bg);
}
dialog#quick-view-pop-up .product-pricing .table-responsive table tr {
  border-top: 2px solid var(--color-border);
  border-bottom: 0;
}
dialog#quick-view-pop-up .product-pricing .table-responsive table tr:first-child {
  border-top: none;
}
dialog#quick-view-pop-up .product-pricing .table-responsive table tr:empty {
  display: none;
}
dialog#quick-view-pop-up .product-pricing .table-responsive table td:first-child,
dialog#quick-view-pop-up .product-pricing .table-responsive table th:first-child {
  border: none;
  color: var(--clr-black);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  width: 130px;
  padding: 8px;
  border-bottom: 2px solid var(--color-border);
  font-family: "Alexandria", sans-serif;
  padding-left: 25px;
  text-align: left;
}
dialog#quick-view-pop-up .product-pricing .table-responsive table th,
dialog#quick-view-pop-up .product-pricing .table-responsive table td {
  border-bottom: 0 !important;
  border: 2px solid var(--color-border);
  border-top: none !important;
  font-weight: 400 !important;
  white-space: nowrap;
  width: 75px;
  letter-spacing: -0.5px;
  padding: 8px 0px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--txt-color-light);
  text-align: center;
}
dialog#quick-view-pop-up .detail-content {
  font-size: 0.875rem !important;
  line-height: 1.7;
  padding-right: 20px;
  text-align: justify;
}
dialog#quick-view-pop-up .detail-content .ProdDefaultImage {
  border: 2px solid var(--color-border);
  border-radius: 30px;
  overflow: hidden;
}
dialog#quick-view-pop-up .detail-content .ProdDefaultImage .prodImg {
  position: relative;
}
dialog#quick-view-pop-up .detail-content .ProdDefaultImage .prodImg .featuredIcon {
  position: absolute;
  top: 15px;
  left: 20px;
}
dialog#quick-view-pop-up .detail-content .pen-color-img:before {
  content: none;
}
dialog#quick-view-pop-up .crousol-box .items {
  width: 16%;
}/* Mixins and functions */
._NewArrival_1usk2_2 {
  position: relative;
  padding-bottom: 0 !important;
  margin-bottom: 50px !important;
}
@media print {
  ._NewArrival_1usk2_2 {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  ._NewArrival_1usk2_2 {
    margin-bottom: 15px !important;
  }
}
._NewArrival_1usk2_2 .section_padding_bottom {
  padding-bottom: 0px;
}
._NewArrival_1usk2_2 .section_padding_bottom .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1024.98px) {
  ._NewArrival_1usk2_2 .section_padding_bottom .container {
    display: inherit;
  }
}
._NewArrival_1usk2_2 .section_padding_bottom .container .swiper {
  margin: 0 0px 0 40px;
  width: 100%;
}
@media (max-width: 1024.98px) {
  ._NewArrival_1usk2_2 .section_padding_bottom .container .swiper {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  ._NewArrival_1usk2_2 .section_padding_bottom .container .swiper {
    margin: 15px 0 0 0;
  }
}
._NewArrival_1usk2_2 .slider-header {
  flex: 1;
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .list-title {
  margin-bottom: 40px;
  justify-content: center;
}
@media (max-width: 1024.98px) {
  ._NewArrival_1usk2_2 .slider-header .title-main-wrapper .list-title {
    justify-content: left;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  ._NewArrival_1usk2_2 .slider-header .title-main-wrapper .list-title {
    margin-bottom: 10px;
  }
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .border-content-icon {
  display: none !important;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  justify-content: center;
  position: relative;
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .border-content-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 130%;
  background-color: var(--color-border);
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .border-content-icon .box {
  width: 36px;
  height: 36px;
  border-radius: 2px 0px 0px 0px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
@media (max-width: 575.98px) {
  ._NewArrival_1usk2_2 .slider-header .title-main-wrapper .border-content-icon .box {
    width: 25px;
    height: 25px;
  }
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .border-content-icon .box .box-icon {
  transform: rotate(-45deg);
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .border-content-icon .box i {
  color: var(--clr-white);
  font-size: 15px;
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper .title {
  color: var(--secondary-color);
  font-size: 2.375rem;
  font-weight: 500;
  width: auto;
  margin: 0 auto;
  text-transform: uppercase;
  display: inline-block;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1024.98px) {
  ._NewArrival_1usk2_2 .slider-header .title-main-wrapper .title {
    font-size: 1.25rem;
  }
}
._NewArrival_1usk2_2 .slider-header .title-main-wrapper a {
  display: none;
}
._NewArrival_1usk2_2 .slider-header .devicerLine {
  width: 59px;
  display: block;
  height: 2px;
  background-color: var(--secondary-color);
}
._NewArrival_1usk2_2 .wrapper {
  width: 197px;
}
@media (max-width: 1024.98px) {
  ._NewArrival_1usk2_2 .wrapper {
    width: 100%;
    display: flex;
  }
}
._NewArrival_1usk2_2 .arrowsCarousel {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 1024.98px) {
  ._NewArrival_1usk2_2 .arrowsCarousel {
    margin-top: 0;
  }
}
._NewArrival_1usk2_2 .arrowsCarousel .arrowbtn {
  width: 33px;
  height: 33px;
  background-color: var(--clr_5);
  color: var(--clr-white);
  border-radius: 50%;
  border: none;
}
._NewArrival_1usk2_2 .arrowsCarousel .arrowbtn.swiper-button-disabled {
  background-color: #EEEEEE;
  color: var(--header-text);
}
._NewArrival_1usk2_2 .arrowsCarousel .arrowbtn svg {
  font-size: 20px;
  font-weight: 600;
}
._NewArrival_1usk2_2 .arrowsCarousel .arrowbtn.prev.swiper-button-disabled {
  background-color: #EEEEEE;
  color: var(--header-text);
}
._NewArrival_1usk2_2 .swiper-wrapper {
  padding-bottom: 5px;
}
._NewArrival_1usk2_2 .tabs-wrapper .tabs {
  text-align: center;
  margin-bottom: 30px;
}
._NewArrival_1usk2_2 .tabs-wrapper .tabs .title {
  font-size: 1.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--clr-black);
  text-transform: uppercase;
  font-family: "Antonio", serif;
  margin: 0 15px;
  padding: 0px 5px 5px 5px;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  ._NewArrival_1usk2_2 .tabs-wrapper .tabs .title {
    font-size: 1.25rem;
  }
}
._NewArrival_1usk2_2 .tabs-wrapper .tabs .title.active {
  background-color: var(--main-color);
  color: var(--clr-white);
}
._NewArrival_1usk2_2 .swiper-slide {
  height: auto;
}
._NewArrival_1usk2_2 .swiper-button-prev {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "ViaKit" !important;
  height: 35px !important;
  width: 35px !important;
  border: 1px solid var(--main-color) !important;
  border-radius: 50px !important;
  cursor: pointer;
  line-height: 36px;
  left: 1px !important;
  color: var(--txt-color) !important;
  box-shadow: none;
  background-color: var(--main-color) !important;
}
._NewArrival_1usk2_2 .swiper-button-prev::before {
  content: "\e901";
  transform: rotate(90deg);
  font-size: 15px;
}
@media (max-width: 575.98px) {
  ._NewArrival_1usk2_2 .swiper-button-prev {
    height: 30px !important;
    width: 30px !important;
  }
  ._NewArrival_1usk2_2 .swiper-button-prev::before {
    font-size: 13px !important;
  }
}
._NewArrival_1usk2_2 .swiper-button-prev:before {
  color: var(--clr-white);
  margin-left: -3px;
}
@media (max-width: 575.98px) {
  ._NewArrival_1usk2_2 .swiper-button-prev:before {
    margin-left: -2px;
  }
}
._NewArrival_1usk2_2 .swiper-button-prev:after {
  content: none;
}
._NewArrival_1usk2_2 .swiper-button-next {
  box-shadow: none;
  height: 35px !important;
  width: 35px !important;
  border-radius: 50px !important;
  cursor: pointer;
  line-height: 36px;
  right: 1px !important;
  border: 1px solid var(--main-color) !important;
  color: var(--txt-color) !important;
  font-family: "ViaKit" !important;
  background-color: var(--main-color) !important;
}
@media (max-width: 575.98px) {
  ._NewArrival_1usk2_2 .swiper-button-next {
    height: 30px !important;
    width: 30px !important;
  }
  ._NewArrival_1usk2_2 .swiper-button-next::before {
    font-size: 13px !important;
  }
}
._NewArrival_1usk2_2 .swiper-button-next:before {
  color: var(--clr-white);
  margin-right: -3px;
}
@media (max-width: 575.98px) {
  ._NewArrival_1usk2_2 .swiper-button-next:before {
    margin-right: -2px;
  }
}
._NewArrival_1usk2_2 .swiper-button-next::before {
  content: "&#xf053;";
  transform: rotate(-90deg);
  font-size: 15px;
}
._NewArrival_1usk2_2 .swiper-button-next:after {
  content: none;
}
._NewArrival_1usk2_2 .swiper-button-disabled {
  pointer-events: auto !important;
}/* Mixins and functions */
._similarproduct_17j4p_2 .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1024.98px) {
  ._similarproduct_17j4p_2 .container {
    display: inherit;
  }
}
._similarproduct_17j4p_2 .container .swiper {
  margin: 0 0px 0 40px;
  width: 100%;
}
@media (max-width: 1024.98px) {
  ._similarproduct_17j4p_2 .container .swiper {
    margin: 20px 0 0 0;
  }
}
@media (max-width: 767.98px) {
  ._similarproduct_17j4p_2 .container .swiper {
    margin: 15px 0 0 0;
  }
}
._similarproduct_17j4p_2 .slider-header {
  flex: 1;
}
._similarproduct_17j4p_2 .title-main-wrapper .list-title {
  margin-bottom: 40px;
  justify-content: center;
}
@media (max-width: 1024.98px) {
  ._similarproduct_17j4p_2 .title-main-wrapper .list-title {
    justify-content: left;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  ._similarproduct_17j4p_2 .title-main-wrapper .list-title {
    margin-bottom: 10px;
  }
}
._similarproduct_17j4p_2 .title-main-wrapper .border-content-icon {
  display: none !important;
  margin-top: 30px;
  width: 100%;
  text-align: center;
  justify-content: center;
  position: relative;
}
._similarproduct_17j4p_2 .title-main-wrapper .border-content-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 130%;
  background-color: var(--color-border);
}
._similarproduct_17j4p_2 .title-main-wrapper .border-content-icon .box {
  width: 36px;
  height: 36px;
  border-radius: 2px 0px 0px 0px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
@media (max-width: 575.98px) {
  ._similarproduct_17j4p_2 .title-main-wrapper .border-content-icon .box {
    width: 25px;
    height: 25px;
  }
}
._similarproduct_17j4p_2 .title-main-wrapper .border-content-icon .box .box-icon {
  transform: rotate(-45deg);
}
._similarproduct_17j4p_2 .title-main-wrapper .border-content-icon .box i {
  color: var(--clr-white);
  font-size: 15px;
}
._similarproduct_17j4p_2 .title-main-wrapper .title {
  color: var(--secondary-color);
  font-size: 2.375rem;
  font-weight: 500;
  width: auto;
  margin: 0 auto;
  text-transform: uppercase;
  display: inline-block;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1024.98px) {
  ._similarproduct_17j4p_2 .title-main-wrapper .title {
    font-size: 1.25rem;
  }
}
._similarproduct_17j4p_2 .title-main-wrapper a {
  display: none;
}
._similarproduct_17j4p_2 .devicerLine {
  width: 59px;
  display: block;
  height: 2px;
  background-color: var(--secondary-color);
}
._similarproduct_17j4p_2 .wrapper {
  width: 197px;
}
@media (max-width: 1024.98px) {
  ._similarproduct_17j4p_2 .wrapper {
    width: 100%;
    display: flex;
  }
}
._similarproduct_17j4p_2 .arrowsCarousel {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
@media (max-width: 1024.98px) {
  ._similarproduct_17j4p_2 .arrowsCarousel {
    margin-top: 0;
  }
}
._similarproduct_17j4p_2 .arrowsCarousel .arrowbtn {
  width: 33px;
  height: 33px;
  background-color: var(--clr_5);
  color: var(--clr-white);
  border-radius: 50%;
  border: none;
}
._similarproduct_17j4p_2 .arrowsCarousel .arrowbtn.swiper-button-disabled {
  background-color: #EEEEEE;
  color: var(--header-text);
}
._similarproduct_17j4p_2 .arrowsCarousel .arrowbtn svg {
  font-size: 20px;
  font-weight: 600;
}
._similarproduct_17j4p_2 .arrowsCarousel .arrowbtn.prev.swiper-button-disabled {
  background-color: #EEEEEE;
  color: var(--header-text);
}
._similarproduct_17j4p_2 .swiper-button-disabled {
  pointer-events: auto !important;
}/* Mixins and functions */
._detailsPage_1lntd_2 {
  display: flex;
  gap: 40px;
}
@media (max-width: 1024.98px) {
  ._detailsPage_1lntd_2 {
    flex-wrap: wrap;
  }
}
._detailsPage_1lntd_2 .lSide,
._detailsPage_1lntd_2 .rSide {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}
@media (max-width: 1024.98px) {
  ._detailsPage_1lntd_2 .lSide,
  ._detailsPage_1lntd_2 .rSide {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
._detailsPage_1lntd_2 .lSide .images-wrapper {
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  ._detailsPage_1lntd_2 .lSide .images-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
._detailsPage_1lntd_2 .lSide .media-list-parent {
  width: 100%;
}
@media (min-width: 768px) {
  ._detailsPage_1lntd_2 .lSide .media-list-parent {
    flex: 0 0 70px;
    padding: 20px 0;
  }
}
._detailsPage_1lntd_2 .lSide #DownloadHiResImagePopup .hiResProductImage {
  cursor: pointer;
}
@media (max-width: 1024.98px) {
  ._detailsPage_1lntd_2 .lSide [class*=actionIcons] {
    display: none;
  }
}
._detailsPage_1lntd_2 .rSide .feature-icon {
  margin-bottom: 15px;
}
._detailsPage_1lntd_2 .rSide .feature-icon img {
  height: auto;
  width: 65px;
}
._detailsPage_1lntd_2 .rSide h1.product-name {
  font-size: 38px;
  text-transform: uppercase;
  color: var(--clr_1);
  margin: 15px 0;
}
._detailsPage_1lntd_2 .rSide .product-code {
  font-size: 20px;
  color: #000;
  font-weight: 500;
  margin-bottom: 0;
}
._detailsPage_1lntd_2 .rSide .product-description {
  margin-top: 30px;
  margin-bottom: 30px;
}
._detailsPage_1lntd_2 .rSide .product-description + .productMediaWrap {
  margin-bottom: 30px;
}
._detailsPage_1lntd_2 .rSide .product-pricing {
  margin-bottom: 20px;
}
._detailsPage_1lntd_2 .rSide .product-pricing .inventory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
._detailsPage_1lntd_2 .rSide .product-pricing .inventory span {
  color: var(--clr_5);
  font-size: 15px;
  font-weight: 600;
  font-family: "noto sans", sans-serif;
  border-bottom: 1px solid var(--clr_5);
  cursor: pointer;
}
._detailsPage_1lntd_2 .rSide .note-expiry {
  color: red;
  font-size: 13px !important;
}
._detailsPage_1lntd_2 .rSide .note-expiry span {
  font-size: 13px !important;
}
._detailsPage_1lntd_2 .rSide .pricing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
  border-top: solid 1px #EEEEEE;
  position: relative;
}
._detailsPage_1lntd_2 .rSide .pricing-heading h3 {
  margin-bottom: 0;
  border: none;
}
._detailsPage_1lntd_2 .rSide .pricing-heading .checkInventory .text {
  text-decoration: underline;
  font-weight: 600;
  font-size: 15px;
  font-family: "noto sans", sans-serif;
  color: #FF9D2A;
  cursor: pointer;
}
._detailsPage_1lntd_2 .rSide #detailPriceTable tr .strike {
  color: #ff0000;
}
._detailsPage_1lntd_2 .rSide #detailPriceTable tr .td_discode {
  display: none;
}
._detailsPage_1lntd_2 .rSide #detailPriceTable tr th,
._detailsPage_1lntd_2 .rSide #detailPriceTable tr td {
  font-weight: 400;
  border-color: white !important;
  border-width: 2px !important;
}
._detailsPage_1lntd_2 .rSide #detailPriceTable tr th:first-child,
._detailsPage_1lntd_2 .rSide #detailPriceTable tr td:first-child {
  border-left: 1px solid #dee2e6;
  background-color: var(--secondary-color);
  color: var(--clr-white);
  font-size: 15px;
}
._detailsPage_1lntd_2 .rSide .inventoryAndPricing {
  position: relative;
  border-bottom: solid 1px #dcdcdc;
}
._detailsPage_1lntd_2 .rSide .inventoryAndPricing .checkInventory {
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
  color: var(--clr_5);
}
._detailsPage_1lntd_2 .rSide .inventoryAndPricing .checkInventory .text {
  font-family: var(--font-family-nato);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: underline;
}
._detailsPage_1lntd_2 .rSide .inventoryAndPricing .checkInventory .text:hover {
  text-decoration: none;
}
._detailsPage_1lntd_2 .rSide .inventoryAndPricing .icon-Close {
  font-size: 20px !important;
}
@media (min-width: 1025px) {
  ._detailsPage_1lntd_2 .rSide .mobile-actions {
    display: none;
  }
}
._detailsPage_1lntd_2 .charges-list .charge-item:not(:first-child) {
  margin-top: 7.5px;
}
._detailsPage_1lntd_2 .safety-item {
  display: inline-block;
  margin-top: 20px;
}
._detailsPage_1lntd_2 .safety-item .btn-outline-primary {
  line-height: 1;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  flex-grow: 0;
  justify-content: flex-start;
  border-color: #FF9D2A;
  text-transform: initial;
  margin: 0;
  font-size: 15px;
}
._detailsPage_1lntd_2 .pdp-heading {
  font-size: 20px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #444;
  border-top: solid 1px #EEEEEE;
  padding-top: 30px;
}
._detailsPage_1lntd_2 .detail-content {
  font-size: 15px;
  font-weight: 400;
  color: var(--header-text);
  line-height: 25px;
  font-family: "Noto Sans", sans-serif;
}
._detailsPage_1lntd_2 details {
  border-bottom: solid 1px #dcdcdc;
}
._detailsPage_1lntd_2 details summary {
  font-size: 20px;
  font-weight: bold;
  padding: 20px 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #444;
}
._detailsPage_1lntd_2 details summary::-webkit-details-marker {
  display: none !important;
}
._detailsPage_1lntd_2 details summary:after {
  content: url("data: image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.46967 0.46967C5.76256 0.176777 6.23744 0.176777 6.53033 0.46967L11.3033 5.24264C11.5962 5.53553 11.5962 6.01041 11.3033 6.3033C11.0104 6.59619 10.5355 6.59619 10.2426 6.3033L6 2.06066L1.75736 6.3033C1.46447 6.59619 0.989593 6.59619 0.696699 6.3033C0.403806 6.01041 0.403806 5.53553 0.696699 5.24264L5.46967 0.46967ZM5.25 2V1H6.75V2H5.25Z' fill='%237A7778'/%3E%3C/svg%3E");
  transition: 0.3s;
}
._detailsPage_1lntd_2 details:not([open]) summary:after {
  transform: scaleY(-1);
}
._detailsPage_1lntd_2 details .content {
  padding-bottom: 15px;
  font-family: "Noto Sans", sans-serif !important;
}
._detailsPage_1lntd_2 details .content.description {
  line-height: 1.4;
}
._detailsPage_1lntd_2 details .content p strong {
  font-size: 14px;
  font-weight: 400;
  color: #616161;
}
._detailsPage_1lntd_2 details .content ul li {
  font-size: 14px;
  font-weight: 400;
  color: #616161 !important;
}
._detailsPage_1lntd_2 details .productdetails-row {
  display: grid;
  grid-template-columns: 2fr 3fr;
}
._detailsPage_1lntd_2 details .productdetails-row.product-safety {
  display: none;
}
._detailsPage_1lntd_2 details .productdetails-row div {
  color: #616161;
  font-size: 14px;
  font-weight: 400;
}
._detailsPage_1lntd_2 details .productdetails-row .detailsKey {
  font-weight: 600;
  color: #444444;
}
._detailsPage_1lntd_2 details .productdetails-row:not(:nth-last-of-type(1)) {
  margin-bottom: 10px;
}
._detailsPage_1lntd_2 details .compliancelist {
  display: none;
}
#productSafety {
  width: 400px;
}
@media (max-width: 575.98px) {
  #productSafety {
    width: 350px;
  }
}
#productSafety h5 {
  font-weight: 500;
  color: black;
  text-align: center;
  text-transform: capitalize;
  font-size: 20px;
  font-family: "Noto Sans", sans-serif !important;
}
#productSafety .close {
  background-color: #4ba7f1;
  padding: 10px;
  border-radius: 10px;
}
#productSafety .close span {
  color: white;
}
#productSafety .dialog-content {
  padding: 10px;
}
#productSafety .dialog-content .dialog-header {
  background: #fff;
  border-bottom: 2px solid #b2a7a7;
  padding: 0px 0px 10px 0px;
}
#productSafety .dialog-content .dialog-body {
  padding: 0;
}
#productSafety .dialog-content .dialog-body > div {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px 30px 30px;
}
#productSafety .dialog-content .dialog-body > div img {
  width: 340px;
  height: auto;
}
#productSafety .dialog-content .dialog-body > div .text {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  line-height: 1.6;
}
#productSafety .dialog-content .dialog-body > div .text a {
  font-size: 18px;
}._slider_1vhq1_1 {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 5px;
  margin-bottom: 30px;
}
._slider_1vhq1_1 .slider__track,
._slider_1vhq1_1 .slider__range {
  position: absolute;
  border-radius: 3px;
  height: 5px;
}
._slider_1vhq1_1 .slider__track {
  background-color: lightgrey;
  width: 100%;
  z-index: 1;
}

._sliderInputs_1vhq1_20 {
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 32px;
  position: relative;
  color: #666666;
}
._sliderInputs_1vhq1_20 input[type=range] {
  pointer-events: none;
  position: absolute;
  height: 0;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
._sliderInputs_1vhq1_20 input[type=range]:nth-of-type(1) {
  z-index: 3;
}
._sliderInputs_1vhq1_20 input[type=range]:nth-of-type(2) {
  z-index: 4;
}
._sliderInputs_1vhq1_20 input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #F78F1E;
  border: 3px solid #F78F1E;
  border-radius: 50%;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1019607843);
}
._sliderInputs_1vhq1_20 input[type=range]::-moz-range-thumb {
  background-color: var(--clr_1);
  border: 3px solid var(--clr_1);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
._sliderInputs_1vhq1_20 .rangeFrom {
  position: absolute;
  left: 0;
  top: 0px;
  color: #000;
}
._sliderInputs_1vhq1_20 .rangeTo {
  position: absolute;
  right: 0;
  top: 0px;
  color: #000;
}
/*************************display sidebar on mobile***********************************************/
/* Mixins and functions */
@media (max-width: 1024.98px) {
  ._FilterStyle_1mr8l_5 {
    display: flex;
    align-items: flex-start;
    border: none;
    padding: 0;
    border-radius: 0;
    position: fixed;
    inset: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
}
._FilterStyle_1mr8l_5 {
  /***********************************************************************/
}
._FilterStyle_1mr8l_5 .sidebarOuterWrapper {
  transition: 0.3s;
  width: 280px;
  margin-left: auto;
  align-self: flex-start;
  position: sticky;
  top: 10px;
}
@media (max-width: 1279.98px) {
  ._FilterStyle_1mr8l_5 .sidebarOuterWrapper {
    width: 100%;
  }
  ._FilterStyle_1mr8l_5 .sidebarOuterWrapper::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.7); /* Adjust backdrop color */
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
  }
}
@media (max-width: 1279.98px) {
  ._FilterStyle_1mr8l_5 .sidebarOuterWrapper {
    top: 0;
  }
}
@media (max-width: 1279.98px) {
  ._FilterStyle_1mr8l_5 .sidebarOuterWrapper .sidebarInnerWrapper {
    background-color: #fff;
    padding-bottom: 100px;
    padding: 35px 15px;
    width: 290px;
    overflow: auto;
    height: 100%;
    position: relative;
  }
}
@media (max-width: 1279.98px) {
  ._FilterStyle_1mr8l_5 .sidebarOuterWrapper {
    transform: translateX(-100%);
    position: fixed;
    left: 0;
    cursor: pointer;
    z-index: 1;
    height: 100%;
  }
}
._FilterStyle_1mr8l_5 .sidebarOuterWrapper .filter-list label {
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  margin: 10px 10px 0px 0;
}
._FilterStyle_1mr8l_5 .sidebarOuterWrapper .filter-list label .sizeText {
  margin-left: 5px;
  display: flex;
  justify-content: space-between;
  flex-basis: calc(100% - 22px);
  font-weight: 400;
  color: var(--txt-color);
}
._FilterStyle_1mr8l_5 .sidebarOuterWrapper .filter-list label .sizeText .count {
  color: #777;
  display: none;
}
._FilterStyle_1mr8l_5 .close-mobile-filter {
  display: none;
}
@media (max-width: 1024.98px) {
  ._FilterStyle_1mr8l_5 .close-mobile-filter {
    width: 40px;
    aspect-ratio: 1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    position: absolute;
    top: -5px;
    right: 0px;
  }
  ._FilterStyle_1mr8l_5 .close-mobile-filter svg {
    color: #F78F1E;
    font-size: 18px;
  }
}
._FilterStyle_1mr8l_5 .display_filterWrapper {
  left: 0%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  max-width: 300px;
  background: var(--clr-white);
  z-index: 30;
  padding: 20px;
}
._FilterStyle_1mr8l_5 .sidebarMobile {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  font-style: normal;
  line-height: normal;
  padding-bottom: 15px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 0px;
}
._FilterStyle_1mr8l_5 .sidebarMobile .sidebarText {
  font-size: 1.375rem;
  font-weight: 500;
  color: #003C68;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1279.98px) {
  ._FilterStyle_1mr8l_5 .sidebarMobile .sidebarText {
    font-size: 1rem;
  }
}
._FilterStyle_1mr8l_5 .sidebarMobile #btnResetFilters {
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
}
._FilterStyle_1mr8l_5 .sidebarMobile #btnResetFilters .clearColors {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #444444;
  text-transform: capitalize;
  font-family: "Roboto", sans-serif;
}
._FilterStyle_1mr8l_5 .sidebarMobile #btnResetFilters .icon-refresh {
  margin-right: 5px;
  font-size: 1.25rem;
  color: var(--main-color);
  position: relative;
  top: 5px;
}
._FilterStyle_1mr8l_5 .sidebarMobile #btnResetFilters .icon-refresh:before {
  content: "\e901";
}
@media (max-width: 1279.98px) {
  ._FilterStyle_1mr8l_5 .sidebarMobile #btnResetFilters {
    display: inline-flex !important;
  }
}
@media (min-width: 1280px) {
  ._FilterStyle_1mr8l_5 .sidebarMobile .sidebarIcon {
    display: none;
  }
}
._FilterStyle_1mr8l_5 .sidebarMobile .sidebarIcon::after {
  content: "×";
  position: absolute;
  right: 0;
  top: -6px;
  font-size: 28px;
}
._FilterStyle_1mr8l_5 .Section-filter.filter {
  padding: 10px 15px;
  border: 1px solid #d9d9d9;
  background-color: var(--light-bg);
  border-radius: 20px;
  border-bottom: 1px solid #d9d9d9 !important;
}
._FilterStyle_1mr8l_5 .Section-filter.filter #SectionCollapse .categoryFilterUl li {
  margin-top: 15px;
}
._FilterStyle_1mr8l_5 .Section-filter.filter #SectionCollapse .categoryFilterUl li a span {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
}
@media (max-width: 1599.98px) {
  ._FilterStyle_1mr8l_5 .Section-filter.filter #SectionCollapse .categoryFilterUl li a span {
    font-size: 0.875rem;
  }
}
._FilterStyle_1mr8l_5 .Section-filter.filter #SectionCollapse .categoryFilterUl li a .count {
  display: none;
}
._FilterStyle_1mr8l_5 .colors-filter.filter #SectionCollapse {
  padding-top: 10px;
}
._FilterStyle_1mr8l_5 .colors-filter.filter #SectionCollapse .categoryFilterUl li {
  margin-bottom: 5px;
}
._FilterStyle_1mr8l_5 .colors-filter.filter #SectionCollapse .categoryFilterUl li a span {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
}
._FilterStyle_1mr8l_5 .filter {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
}
._FilterStyle_1mr8l_5 .filterHeading {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: capitalize;
  border-bottom: 0px solid #c6ced0;
  padding-bottom: 5px;
  margin-bottom: 0px;
  position: relative;
  cursor: pointer;
  color: #444444;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767.98px) {
  ._FilterStyle_1mr8l_5 .filterHeading {
    font-size: 1.125rem;
  }
}
._FilterStyle_1mr8l_5 .filterHeading:not(.collapsed)::before {
  transform: rotate(0deg);
  transition: all 0.3s;
}
._FilterStyle_1mr8l_5 .filterHeading.color_option {
  display: flex;
  justify-content: space-between;
  border-bottom: none;
  cursor: default;
}
._FilterStyle_1mr8l_5 .filterHeading.color_option .refined_by {
  cursor: default !important;
}
._FilterStyle_1mr8l_5 .filterHeading.color_option .clearColors {
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  color: #3c3c3c;
  text-transform: capitalize;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  ._FilterStyle_1mr8l_5 .filterHeading.color_option .clearColors {
    font-size: 0.875rem;
  }
}
._FilterStyle_1mr8l_5 .filterHeading.color_option::after {
  content: none;
}
._FilterStyle_1mr8l_5 .rangeEnd,
._FilterStyle_1mr8l_5 .rangeStrt {
  font-size: 1rem;
  font-weight: 400;
  color: #000;
}
._FilterStyle_1mr8l_5 .Price-filter .filter-list {
  padding-bottom: 40px;
}
._FilterStyle_1mr8l_5 .categoryFilterUl a.link {
  display: flex;
  align-items: flex-start;
}
._FilterStyle_1mr8l_5 .categoryFilterUl a.link input[type=checkbox] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 1px solid #EEEEEE;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl {
  max-height: 250px;
  overflow: hidden auto;
  scrollbar-width: thin;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl::-webkit-scrollbar,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl::-webkit-scrollbar {
  width: 5px;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl::-webkit-scrollbar-track,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl::-webkit-scrollbar-track {
  background: var(--main-color);
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl::-webkit-scrollbar-thumb,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl::-webkit-scrollbar-thumb {
  background: var(--main-color);
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl::-webkit-scrollbar-thumb:hover,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl::-webkit-scrollbar-thumb:hover {
  background: var(--main-color);
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li {
  margin-bottom: 10px;
  color: var(--txt-color);
  font-size: 0.9375rem;
  font-weight: var(--font-body-weight);
  left: 0;
  transition: position 0.5s;
  line-height: var(--font-body-lineheight);
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li .count,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li .count {
  color: var(--txt-color);
  float: right;
  min-height: 25px;
  min-width: 25px;
  border-radius: 50%;
  background: var(--light-bg);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 400;
  margin-right: 10px;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li a,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li a {
  font-size: px-t0-rem(15);
  justify-content: flex-start;
  cursor: pointer;
  position: relative;
  padding-left: 5px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li a input,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li a input {
  border: 1px solid transparent;
  accent-color: var(--main-color);
  width: 15px;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li a input:before,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li a input:before {
  content: none;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li a.active span,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li a.active span {
  color: var(--main-color);
  font-weight: 600;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li:last-child,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li:last-child {
  margin-bottom: 0;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li.active,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li.active {
  font-size: calc(var(--font-body-size) + 2px);
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li.active .count,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li.active .count {
  color: var(--clr-white);
  background: var(--main-color);
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li.active a,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li.active a {
  color: #F78F1E;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li.active input,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li.active input {
  border: 3px solid #F78F1E;
  accent-color: #F78F1E;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li.active input:checked,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li.active input:checked {
  position: static;
}
._FilterStyle_1mr8l_5 .Subcategory-filter .categoryFilterUl li.active input:before,
._FilterStyle_1mr8l_5 .categories-filter .categoryFilterUl li.active input:before {
  content: "✔";
  color: #F78F1E;
  top: 58%;
  position: absolute;
  left: 5%;
  transform: translate(-50%, -50%);
  font-size: 0.6875rem;
}
._FilterStyle_1mr8l_5 .selected-filter .selectedFilter {
  display: flex;
  margin: 20px 0 14px;
  column-gap: 3px;
  flex-wrap: wrap;
  row-gap: 3px;
}
._FilterStyle_1mr8l_5 .selected-filter .filter_label {
  padding: 3px 25px 3px 12px;
  border-radius: 3px;
  background-color: #fafafa;
  color: #707070;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
._FilterStyle_1mr8l_5 .selected-filter .filter_label .refinedFilterName {
  margin-right: 3px;
}
._FilterStyle_1mr8l_5 .selected-filter .filter_label .refinedFilterName::after {
  content: "×";
  position: absolute;
  right: 0px;
  left: 8px;
  top: 3px;
  font-size: 16px;
  font-weight: 500;
}
._FilterStyle_1mr8l_5 .selected-filter .filter_label:hover {
  background-color: #707070;
  color: var(--clr-white);
}
._FilterStyle_1mr8l_5 .size-filter #sizeCollapse label {
  margin-right: 5px;
  width: auto;
}
._FilterStyle_1mr8l_5 .size-filter #sizeCollapse input {
  width: 45px;
  height: 30px;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
._FilterStyle_1mr8l_5 .size-filter #sizeCollapse input:checked + .sizeText {
  border: 2px solid var(--main-color);
  border-radius: 5px;
}
._FilterStyle_1mr8l_5 .size-filter #sizeCollapse .sizeText {
  min-width: 45px;
  height: 30px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  border: 1px solid #dadada;
  border-radius: 5px;
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label {
  vertical-align: top;
  cursor: pointer;
  margin: 15px 10px 0px 0;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  width: 100%;
  height: 20px;
  padding: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 1;
  margin-right: 10px;
  border: 1px solid var(--lightbackground);
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label input[type=checkbox]:checked {
  border: 3px solid var(--clr_5);
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label input[type=checkbox]:checked + span.color {
  outline-offset: 1px;
  outline: 1px solid #777;
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label .colorText {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #444444;
  font-family: "Roboto", sans-serif;
  margin-left: 15px;
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label .colorCount {
  display: block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #444444;
  font-family: "Roboto", sans-serif;
  margin-left: 5px;
}
._FilterStyle_1mr8l_5 .colors-filter #colorsCollapse label .color {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
}
._FilterStyle_1mr8l_5 .price-filter .priceInput {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  gap: 15px;
}
._FilterStyle_1mr8l_5 .price-filter .priceInput .priceRange_wrapper {
  position: relative;
  flex: 1;
}
._FilterStyle_1mr8l_5 .price-filter .priceInput .currencySymbol::before {
  content: "₹";
}
._FilterStyle_1mr8l_5 .price-filter .priceInput #MinValueInput,
._FilterStyle_1mr8l_5 .price-filter .priceInput #MaxValueInput {
  text-align: center;
}
._FilterStyle_1mr8l_5 .price-filter .applyFilter {
  margin-top: 15px;
}
._FilterStyle_1mr8l_5 .price-filter .applyFilter .btnApplyPriceFilter {
  width: 100%;
}
._FilterStyle_1mr8l_5 .categoryDetails {
  margin-bottom: 5px;
}
._FilterStyle_1mr8l_5 .categoryDetails .categoryBanner {
  display: block;
}
._FilterStyle_1mr8l_5 .categoryDetails i {
  font-weight: 600;
  font-size: medium;
}
._FilterStyle_1mr8l_5 .categoryDetails .activeIcon {
  color: var(--clr_10);
}
._FilterStyle_1mr8l_5 .categoryDetails .categoryName {
  color: var(--main-color);
  font-size: 1.25rem;
  margin-bottom: 0px;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: normal;
  display: none;
}
._FilterStyle_1mr8l_5 .categoryDetails .categoryName span {
  display: none;
}
._FilterStyle_1mr8l_5 .categoryDetails .categoryDescription {
  margin-top: 12px;
  color: #3c3c3c !important;
}
._FilterStyle_1mr8l_5 .categoryDetails .categoryDescription p {
  margin: 0;
  line-height: 22px;
}
._FilterStyle_1mr8l_5 .categoryDetails .categoryDescription p span {
  color: #3c3c3c !important;
  letter-spacing: 0 !important;
  font-family: "Poppins", sans-serif !important;
}
._FilterStyle_1mr8l_5 .subCategoryList {
  margin-bottom: 25px;
}
._FilterStyle_1mr8l_5 .subCategoryList img {
  width: 100%;
}
._FilterStyle_1mr8l_5 .subCategoryList .subCategory-name-count {
  padding-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 5px;
}
._FilterStyle_1mr8l_5 .subCategoryList .categoryName {
  border-bottom: 2px solid transparent;
  display: inline-block;
  text-transform: uppercase;
  font-size: var(--font-body-size);
  font-weight: 500;
  color: var(--txt-color);
  margin-bottom: 0 !important;
}
._mobileFilterVisibleActive_1mr8l_595 {
  visibility: visible;
  opacity: 1;
  border: none;
  padding: 0;
  border-radius: 0;
  position: fixed;
  inset: 0;
  z-index: 1000;
  backdrop-filter: blur(5px);
}
._mobileFilterVisibleActive_1mr8l_595 .mobile-filter-close-helper {
  position: fixed;
  inset: 0;
}
@media (max-width: 1024.98px) {
  ._mobileFilterVisibleActive_1mr8l_595 .sidebarOuterWrapper {
    transform: translateX(0);
  }
}/* Mixins and functions */
#_listingPage_hovyx_318 {
  position: relative;
}
#_listingPage_hovyx_318 #Bannerfalse .breadCrumbWrapper-top,
#_listingPage_hovyx_318 #Bannerfalse > div {
  padding-top: 0px;
  margin-bottom: 0px;
  background-color: #DBEFE4;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 #Bannerfalse .breadCrumbWrapper-top,
  #_listingPage_hovyx_318 #Bannerfalse > div {
    padding-top: 12px;
    margin-bottom: 20px;
  }
}
#_listingPage_hovyx_318 .bannerTopListing .breadcrumb-item.active {
  color: #fff;
}
#_listingPage_hovyx_318 .sortViewMain.mob {
  display: none;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewMain.mob {
    display: block;
  }
}
#_listingPage_hovyx_318 .sortViewPage {
  width: 100%;
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--lightbackground);
  padding: 19px 20px;
}
#_listingPage_hovyx_318 .sortViewPage .sortViewMain.desktop {
  display: block;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage {
    background-color: var(--lightbackground);
  }
  #_listingPage_hovyx_318 .sortViewPage .sortViewMain.desktop {
    display: none;
  }
}
@media (max-width: 414.98px) {
  #_listingPage_hovyx_318 .sortViewPage {
    width: 100%;
    padding: 0 5px;
  }
}
#_listingPage_hovyx_318 .sortViewPage > .productCount {
  white-space: nowrap;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage > .productCount {
    display: none;
  }
}
#_listingPage_hovyx_318 .sortViewPage .filterIcon {
  width: 100%;
  display: none;
  color: black;
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}
#_listingPage_hovyx_318 .sortViewPage .filterIcon svg {
  display: none;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage .filterIcon {
    display: flex;
    margin-bottom: 15px;
  }
}
#_listingPage_hovyx_318 .sortViewPage .filterIcon [class^=icon-] {
  font-size: 0.875rem;
}
#_listingPage_hovyx_318 .sortViewPage .filterIcon [class^=icon-]:before {
  color: var(--clr-white);
}
#_listingPage_hovyx_318 .sortViewPage .showingProductNo {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-transform: uppercase;
  color: #666666;
}
#_listingPage_hovyx_318 .sortViewPage .pagination {
  margin: 0;
}
#_listingPage_hovyx_318 .sortViewPage .icon-Close {
  border-radius: 50%;
  position: fixed;
  left: 280px;
  top: 0px;
  background: var(--clr_1);
  color: #fff !important;
  height: 30px;
  width: 30px;
  display: grid !important;
  place-items: center;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  #_listingPage_hovyx_318 .sortViewPage .icon-Close {
    left: 235px;
  }
}
#_listingPage_hovyx_318 .sortViewPage .icon-Close:before {
  content: "\e907" !important;
}
@media (min-width: 1025px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions {
    margin-left: auto;
  }
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption {
    justify-content: flex-start;
  }
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption {
    width: 100%;
    justify-content: flex-end;
  }
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption span {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--font-family);
  margin-right: 10px;
}
@media (max-width: 575.98px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption span {
    display: none;
  }
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown {
  position: relative;
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown svg {
  position: absolute;
  right: 15px;
  top: 14px;
  color: #666;
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown select {
  appearance: none;
  font-size: 13px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  align-items: center;
  border: 1px solid #444444;
  border-radius: 5px;
  height: 40px;
  padding: 0 20px;
  color: #666666;
  background-color: var(--lightbackground);
}
@media (max-width: 767.98px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown select {
    text-align: left;
    font-size: 14px !important;
    padding: 0 36px 0px 10px;
  }
}
@media (max-width: 575.98px) {
  #_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown select {
    text-align: left;
    width: 170px;
  }
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown select option {
  color: var(--txt-color);
  padding: 2px 5px;
  font-size: 0.875rem;
  font-weight: var(--font-body-weight);
  transition: 0.3s;
  cursor: pointer;
  display: block;
  font-family: var(--font-family);
}
#_listingPage_hovyx_318 .sortViewPage #productSortOptions .prod-sortoption .select-wrap .sortByDropDown select option:hover {
  background-color: #1c65d3 !important;
}
#_listingPage_hovyx_318 .sortViewPage .productViewOptions {
  margin-left: 20px;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 5px;
  overflow: hidden;
  height: 40px;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage .productViewOptions {
    margin-left: 0;
  }
}
#_listingPage_hovyx_318 .sortViewPage .productViewOptions .toolbarIcon {
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #444444;
  border-radius: 0;
  padding: 0;
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage .productViewOptions .toolbarIcon {
    justify-content: left;
    aspect-ratio: 0.7;
  }
}
#_listingPage_hovyx_318 .sortViewPage .productViewOptions .toolbarIcon svg {
  font-size: 24px;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .sortViewPage .productViewOptions .toolbarIcon svg {
    font-size: 18px;
  }
}
#_listingPage_hovyx_318 .sortViewPage .productViewOptions .toolbarIcon.activeIcon {
  color: #FF9D2A;
  background-color: transparent;
  border: none;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .mobFilterBottom {
    position: fixed;
    bottom: 30px;
    z-index: 2;
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 3px 11px 1px rgba(0, 0, 0, 0.25);
    background-color: #fff;
    padding: 0px !important;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .filterIcon {
    flex: 0 0 50%;
    max-width: 50%;
    color: #333333;
    font-weight: 700;
    font-family: "Roboto", sans-serif;
    display: flex;
    gap: 4px;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .filterIcon .btnTitle {
    text-align: left;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .filterIcon .btnTitle span {
    font-size: 12px;
    line-height: 1;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .filterIcon .btnTitle .filter-count {
    font-size: 8px;
    line-height: 1;
    font-weight: 400;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .filterIcon svg {
    color: #F78F1E;
    font-size: 22px;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .sortBy {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 50%;
    max-width: 50%;
    color: #fff;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .sortBy .productSortOptions.sortAlphabet .prod-sortoption {
    display: flex;
    gap: 4px;
  }
  #_listingPage_hovyx_318 .mobFilterBottom .sortViewMain.mob .sortBy .productSortOptions.sortAlphabet .prod-sortoption svg {
    color: #F78F1E;
    font-size: 22px;
  }
}
#_listingPage_hovyx_318 .listingPageWrapper {
  margin-bottom: 30px;
  padding-top: 65px !important;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .listingPageWrapper {
    padding-top: 0 !important;
  }
}
@media (min-width: 1025px) {
  #_listingPage_hovyx_318 .listingPageWrapper {
    min-height: 650px;
  }
}
#_listingPage_hovyx_318 .listingPageWrapper .filerProductWrapper {
  display: flex;
  gap: 40px;
}
@media (max-width: 1279.98px) {
  #_listingPage_hovyx_318 .listingPageWrapper .filerProductWrapper {
    gap: 30px;
  }
}
#_listingPage_hovyx_318 .listingPageWrapper .product-card {
  overflow: hidden;
}
#_listingPage_hovyx_318 .listingPageWrapper .product-card:hover .wishlist-and-view-main-div .wishlistIcon {
  display: none;
}
#_listingPage_hovyx_318 .listingPageWrapper .product-card:hover .quick-view-wrap {
  display: block;
}
#_listingPage_hovyx_318 .listingPageWrapper .closeIconFilter {
  display: none;
}
#_listingPage_hovyx_318 .productDetailWrapper {
  flex: 1;
  border-radius: 0;
  position: relative;
  padding-top: 0 !important;
}
@media (max-width: 1279.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}
#_listingPage_hovyx_318 .productDetailWrapper .custom-animsition-loading {
  position: absolute;
  max-height: 300px;
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  padding-top: 30px;
}
@media (max-width: 1279.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper .product-list {
    grid-gap: 30px;
  }
}
@media (max-width: 767.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper .product-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view {
  padding-top: 30px;
  grid-template-columns: 1fr;
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card {
    margin-bottom: 20px;
  }
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card .card-upper-block {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card .card-upper-block {
    width: 35%;
  }
}
@media (max-width: 575.98px) {
  #_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card .card-upper-block {
    width: 45%;
  }
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card .card-block {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card .card-block .list-content {
  padding: 0;
  margin-top: 15px;
  text-align: left;
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card .card-block .list-content .product-code {
  border: none;
  margin-top: 0;
  padding-bottom: 0;
}
#_listingPage_hovyx_318 .productDetailWrapper .product-list-view .product-card:hover .icons-box {
  opacity: 1;
  visibility: visible;
  transform: translate(-275%, 50%);
}
input[type=radio], input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 1px solid #999999;
}/* Mixins and functions */
:root {
  --color-whitesmoke: #eaeaea;
  --color-border: #777;
}
body {
  overflow-x: hidden;
}
.customized_container_new {
  padding: 0;
}
.breadCrumbWrapper-top {
  margin: 0 0 20px 0;
}
.page-heading {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.page-heading span {
  position: relative;
  font-weight: 500;
  color: var(--main-color) !important;
  font-size: 1.875rem !important;
  text-transform: capitalize;
  line-height: normal;
}
@media (max-width: 1279.98px) {
  .page-heading span {
    font-size: 1.5rem !important;
  }
}
@media (max-width: 1024.98px) {
  .page-heading span {
    font-size: 1.25rem !important;
  }
}
@media (max-width: 767.98px) {
  .page-heading span {
    font-size: 1.125rem !important;
  }
}
.category-landing-page {
  padding-bottom: 40px;
}
.category-landing-page h3.title_main {
  font-weight: 600;
  font-size: 1.375rem;
}
.category-landing-page .main-category, .category-landing-page .SubCategory {
  margin-bottom: 40px;
  display: block;
}
.category-landing-page .main-category .categoryImage, .category-landing-page .SubCategory .categoryImage {
  width: 100%; /* Or a max width based on layout */
  max-width: 334px; /* Match rendered width */
  aspect-ratio: 167/174; /* Ensures proportional scaling */
  margin: 0 auto;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.0784313725);
  position: relative;
  border: 1px solid transparent;
  overflow: hidden;
}
.category-landing-page .main-category .categoryImage:hover, .category-landing-page .SubCategory .categoryImage:hover {
  border: 1px solid var(--secondary-color);
}
.category-landing-page .main-category .categoryImage:hover img, .category-landing-page .SubCategory .categoryImage:hover img {
  transform: scale(1.1);
}
.category-landing-page .main-category .categoryImage img, .category-landing-page .SubCategory .categoryImage img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.category-landing-page .main-category .categoryImage .SubcatOverlay, .category-landing-page .SubCategory .categoryImage .SubcatOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  opacity: 0;
  border-radius: 5px;
}
.category-landing-page .main-category .categoryImage .SubcatOverlay .subcat-list li, .category-landing-page .SubCategory .categoryImage .SubcatOverlay .subcat-list li {
  color: var(--clr-white);
  font-size: 1rem;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: 22px;
  text-align: center;
}
.category-landing-page .main-category .categoryImage .SubcatOverlay .subcat-list li a, .category-landing-page .SubCategory .categoryImage .SubcatOverlay .subcat-list li a {
  color: var(--clr-white);
  font-weight: var(--font-weight-medium);
  line-height: 32px;
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
}
.category-landing-page .main-category .categoryImage .SubcatOverlay .subcat-list li a.view-all, .category-landing-page .SubCategory .categoryImage .SubcatOverlay .subcat-list li a.view-all {
  display: inline-flex;
  padding: 8px 20px;
  background: var(--clr-white);
  color: #1A1A1A !important;
  line-height: normal;
  border-radius: 20px;
  margin-top: 20px;
  transition: 0.3s;
  font-size: 0.875rem;
}
.category-landing-page .main-category .categoryImage .SubcatOverlay .subcat-list li a.view-all:hover, .category-landing-page .main-category .categoryImage .SubcatOverlay .subcat-list li a.view-all:focus, .category-landing-page .SubCategory .categoryImage .SubcatOverlay .subcat-list li a.view-all:hover, .category-landing-page .SubCategory .categoryImage .SubcatOverlay .subcat-list li a.view-all:focus {
  background: var(--main-color);
  color: #fff !important;
}
.category-landing-page .main-category:hover .categoryImage .SubcatOverlay, .category-landing-page .SubCategory:hover .categoryImage .SubcatOverlay {
  opacity: 1;
}
.category-landing-page .main-category .subCategoryName, .category-landing-page .SubCategory .subCategoryName {
  color: #444444;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: var(--font-weight-medium);
  line-height: normal;
  margin: 5px 0px;
  text-transform: uppercase;
  text-align: center;
}
.category-landing-page .main-category .subCategoryName:hover, .category-landing-page .SubCategory .subCategoryName:hover {
  color: var(--secondary-color);
}
.category-landing-page .main-category .categoryPrdcount, .category-landing-page .SubCategory .categoryPrdcount {
  display: none;
  color: var(--txt-color-light);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: var(--font-body-weight);
  line-height: normal;
  text-transform: uppercase;
}
.categoryPageBannerStc .swiper-slide img {
  max-width: none;
  width: 100%;
}
.categoryPageBannerStc.swiper .swiper-pagination {
  z-index: 1;
  bottom: 20px;
}
.categoryPageBannerStc.swiper .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  padding: 0;
  background: var(--main-color) !important;
  border: none !important;
  border-radius: 10px;
  font-size: 0;
}
.categoryPageBannerStc.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 45px;
}
/* stylelint-disable no-duplicate-selectors */
/* Mixins and functions */
img,
svg {
  max-width: 100%;
}
body {
  scroll-behavior: smooth;
  margin: 0;
  font-size: var(--font-body-size);
  line-height: 1;
  overflow-y: auto;
  scrollbar-width: thin !important;
}
body.sidebar-open {
  overflow: hidden !important;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
html,
body {
  max-width: 100%;
}
.page-load-container {
  display: none;
}
a {
  cursor: pointer;
  color: inherit;
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
}
label {
  margin: 0;
}
.theme-color {
  color: var(--main-color);
}
.theme-color:hover {
  color: var(--main-color);
}
.subCategoryList,
.product-main-wrapper,
.productWrapper,
.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
  row-gap: 15px;
  column-gap: 15px;
}
@media (max-width: 767.98px) {
  .subCategoryList,
  .product-main-wrapper,
  .productWrapper,
  .product-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 575.98px) {
  .subCategoryList,
  .product-main-wrapper,
  .productWrapper,
  .product-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    background: #fff;
  }
}
.swiper-slide .product-card {
  height: 100%;
}
.swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 0px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.swiper-pagination-bullet {
  z-index: 99;
  cursor: pointer;
  border: 1px solid #eee !important;
  height: 8px;
  width: 8px;
  border-radius: 20px;
  margin-right: 5px;
  transition: all 0.5s ease-in;
  background: #D3D3D3 !important;
  background-color: #D3D3D3 !important;
  display: block;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  transition: all 0.5s ease-in;
  background: transparent !important;
  background-color: transparent !important;
  border: 1px solid #707070 !important;
}
/*product card */
/*breadcrumb**/
/*breadcrumb*/
.subscriptionwrapper {
  margin: 0 auto;
}
.userFormWrapper {
  flex: 1 1 auto;
  max-width: 500px;
  box-shadow: 0 10px 50px 0 rgba(172, 189, 203, 0.5);
  padding: 45px 50px;
  position: relative;
  border-radius: 30px;
}
@media (max-width: 575.98px) {
  .userFormWrapper {
    padding: 30px 15px;
  }
}
.userFormWrapper .title_main {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.userFormWrapper .page-heading {
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: 0.06px;
  color: #333;
  font-weight: bold;
  margin-bottom: 25px;
  border: 0px;
  padding: 0;
}
.userFormWrapper .redirectLink {
  margin-top: 20px;
  padding: 0;
  font-size: 0.9375rem;
  color: var(--secondary-color);
  text-transform: capitalize;
  position: relative;
  padding-right: 25px;
  display: inline-block;
}
.userFormWrapper .redirectLink.mt50 {
  margin-top: 30px;
}
.userFormWrapper .form-section label {
  display: none;
}
.userFormWrapper .form-section-action.mt0 {
  margin-top: 0px;
}
.userFormWrapper .form-section-action.mt0 .btn-primary {
  margin-top: 0px;
}
.userFormWrapper .form-section-action.hasRedirectLink {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.userFormWrapper .form-section-action.hasRedirectLink a {
  margin: 0;
  padding: 0;
  font-size: 0.9375rem;
}
.userFormWrapper .logoWrapper {
  margin-bottom: 30px;
  text-align: center;
}
.userFormWrapper .logoWrapper img {
  height: auto;
}
.userFormWrapper.loginForm {
  min-height: auto;
}
.userFormWrapper.loginForm .forgotPassword {
  align-items: center;
  display: inline-flex;
  justify-content: flex-end;
  margin-top: 5px;
  font-size: 0.9375rem;
  margin-bottom: 0px;
  color: var(--main-color);
  flex-wrap: nowrap;
}
.userFormWrapper.loginForm .forgotPassword span {
  font-size: 0.9375rem;
}
@media (max-width: 575.98px) {
  .userFormWrapper.loginForm .forgotPassword span {
    font-size: 0.875rem;
    margin-bottom: 0 !important;
  }
}
.userFormWrapper.loginForm .forgotPassword a.forgotLink {
  color: var(--secondary-color) !important;
  font-size: 0.9375rem;
}
@media (max-width: 575.98px) {
  .userFormWrapper.loginForm .forgotPassword a.forgotLink {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .userFormWrapper.loginForm .forgotPassword input {
    margin-bottom: 2px !important;
  }
}
.userFormWrapper.centerForm {
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.userFormWrapper.padding170 {
  padding-bottom: 170px;
}
.contactFormWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px 15px;
  margin-bottom: 25px;
}
.contactFormWrapper > div {
  margin-bottom: 0 !important;
  padding-left: 0;
  padding-right: 0;
}
.contactFormWrapper > div label,
.contactFormWrapper > div .form-label {
  display: none;
}
.contactFormWrapper > div.textarea-Message {
  grid-column: 1/4;
  grid-row: 3/5;
}
.contactFormWrapper.checkboxContent .checkboxLabels {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.875rem;
}
.contactFormWrapper.checkboxContent .checkboxLabels input {
  margin-right: 5px;
}
.contactFormWrapper .notAffiliatedDistributor {
  display: none;
  align-items: center;
  column-gap: 15px;
}
.contactFormWrapper .notAffiliatedDistributor > * {
  flex: 0 0 auto;
  font-size: 1rem;
  margin-bottom: 0;
}
.contactFormWrapper .notAffiliatedDistributor h4 {
  text-transform: uppercase;
  font-size: 0.9375rem;
}
.contactFormWrapper .notAffiliatedDistributor .checkboxLabels {
  font-size: 0.9375rem;
}
.frieghtFormWrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 10px 15px;
}
.frieghtFormWrapper > div {
  margin-bottom: 0 !important;
  padding-left: 0;
  padding-right: 0;
}
.frieghtFormWrapper > div label,
.frieghtFormWrapper > div .form-label {
  display: none;
}
.frieghtFormWrapper > div.textarea-Message {
  grid-column: 1/4;
  grid-row: 3/5;
}
.frieghtFormWrapper.checkboxContent {
  grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
}
.frieghtFormWrapper.checkboxContent .checkboxLabels {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1;
}
.frieghtFormWrapper.checkboxContent .checkboxLabels input {
  margin-right: 5px;
}
.frieghtFormWrapper .notAffiliatedDistributor {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.frieghtFormWrapper .notAffiliatedDistributor > * {
  flex: 0 0 auto;
  font-size: 1rem;
  margin-bottom: 0;
}
.frieghtFormWrapper .notAffiliatedDistributor h4 {
  text-transform: uppercase;
}
#EstimatorData ul li {
  margin: 0 0 5px 0;
  list-style: disc;
}
#EstimatorData .detail-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  color: red;
}
#EstimatorData + .freightPrintBtn {
  text-decoration: underline;
}
@media (max-width: 1024.98px) {
  .comparePopUp {
    display: none;
  }
}
button#btnClearCompare {
  font-size: inherit !important;
}
.renCompare .fluid-model {
  max-width: none;
}
.renCompare #CompareProd .mainTbody > tr > td:first-child {
  width: 150px;
  font-weight: bold;
}
.renCompare #CompareProd .mainTbody .comapreWrap {
  position: relative;
}
.renCompare #CompareProd .mainTbody .comapreWrap .closebutton {
  position: absolute;
  top: 10px;
  right: 15px;
}
.renCompare #CompareProd .mainTbody .comapreWrap .product-rating {
  border: none;
}
.renCompare #CompareProd .mainTbody .compareProdBtn .AddtoCart,
.renCompare #CompareProd .mainTbody .compareProdBtn i {
  display: none;
}
.renCompare #CompareProd .mainTbody .compareProdBtn .btn-primary {
  font-weight: 700;
  letter-spacing: 1.6px;
}
.renCompare #CompareProd .mainTbody .featuredIcon img {
  height: 20px;
  max-width: 50px;
}
.renCompare .compare-pop-up-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.renCompare .compare-pop-up-title .compare-clear-button {
  margin-right: 15px !important;
}
.renCompare .compare-pop-up-title .compare-clear-button:hover {
  background-color: #fff;
  color: var(--main-color);
  cursor: pointer;
}
.renCompare .compare-pop-up-title .compare-print-button .icon-print {
  display: none;
}
.renCompare .compare-pop-up-title .compare-clear-button .icon-Close {
  display: none;
}
.renCompare .compare-pop-up-title .compare-email-button .icon {
  display: flex;
  align-items: center;
}
.renCompare .compare-pop-up-title .compare-email-button .icon .icons-img {
  display: none;
}
.renCompare .compare-pop-up-title .compare-email-button .icon p {
  margin: 0;
}
.renCompare .compare-pop-up-title .compare-email-button .productHeading {
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}
.container-fluid,
.customized_container {
  display: block;
  width: 100%;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px !important;
}
@media (max-width: 1439.98px) {
  .container-fluid,
  .customized_container {
    padding: 0 40px !important;
  }
}
@media (max-width: 1279.98px) {
  .container-fluid,
  .customized_container {
    padding: 0 20px !important;
  }
}
@media (max-width: 767.98px) {
  .container-fluid,
  .customized_container {
    padding: 0 20px !important;
  }
}
@media (max-width: 575.98px) {
  .container-fluid,
  .customized_container {
    padding: 0 15px !important;
  }
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
  color: var(--clr-black);
}
p {
  font-size: 14px;
}
li {
  font-size: 14px;
  line-height: 1.5;
  color: #212529;
}
.mt-0 {
  margin-top: 0 !important;
}
.d-none {
  display: none;
}
form.one-border input,
form.one-border select {
  border: none;
  border-bottom: 1px solid #c7c7c7 !important;
  border-radius: 0 !important;
  padding-left: 0;
}
.form-control.one-border {
  border: none;
  border-bottom: 1px solid #c7c7c7 !important;
  border-radius: 0 !important;
  padding-left: 0;
}
.section_padding_top {
  padding-top: 30px;
}
.section_padding_bottom {
  padding-bottom: 30px;
}
.sec_pd_sm {
  padding: 30px 0;
}
.list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100%;
  width: 100%;
}
.list-title a {
  cursor: pointer;
  padding: 0;
  text-transform: capitalize;
  letter-spacing: 0.4px;
  vertical-align: top;
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #F78F1E;
}
.bg-grey {
  background: #F0F3F5 !important;
}
.bg-grey-light {
  background: #fafafa !important;
}
.text-center {
  text-align: center;
}
.text-white {
  color: var(--clr-white) !important;
}
.theme-button {
  color: var(--clr-white);
  padding: 10px 20px;
  transition: 0.3s;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin-top: 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-flex;
  box-shadow: none;
  z-index: 9;
}
.theme-button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: transform 200ms ease-in;
}
.theme-button-2 {
  z-index: 9;
  color: var(--clr-white);
  padding: 10px 20px;
  transition: 0.3s;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  position: relative;
  overflow: hidden;
  background: transparent;
  margin-top: 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: inline-flex;
  box-shadow: none;
  border-color: transparent;
  padding: 8px 20px;
  border-radius: 20px;
}
.theme-button-2:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: transform 200ms ease-in;
}
.fw-normal {
  font-weight: normal !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.badge {
  background-color: #1ab1b8;
  color: var(--clr-white);
  padding: 2px 4px;
  margin: 0 5px;
}
.badge-top {
  margin: 0 -5px;
}
.col-20 {
  width: 20%;
  padding: 0 15px;
}
.col-33 {
  width: 33.33%;
  padding: 0 15px;
}
.col-25 {
  width: 25%;
  padding: 0 15px;
}
.col-40 {
  width: 40%;
  padding: 0 15px;
}
.col-50 {
  width: 50%;
  padding: 0 15px;
}
.col-60 {
  width: 60%;
  padding: 0 15px;
}
.col-75 {
  width: 75%;
  padding: 0 15px;
}
.col-80 {
  width: 80%;
  padding: 0 15px;
}
.col-100 {
  width: 100%;
  padding: 0 15px;
}
.mr-1 {
  margin-right: 1rem;
}
.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}
.text-4 {
  font-size: 16px;
  color: #212529;
}
.mb-10 {
  margin-bottom: 10px;
}
.badge-round {
  margin-left: 5px;
  font-size: 1.14286rem;
  letter-spacing: -0.04px;
  width: 24px;
  height: 24px;
  display: inline-block;
  background-color: #333;
  color: #fff;
  line-height: 24px;
  text-align: center;
  border-radius: 12px;
}
.input-group,
.form-group {
  margin-bottom: 20px;
}
.input-group input,
.form-group input {
  margin-bottom: 5px !important;
}
.red {
  color: red;
}
.background-close {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 96px;
  left: 0;
  z-index: -1;
}
.background-close.position-absolute {
  top: 0;
  z-index: 9;
  opacity: 0.25;
}
.pl {
  padding-left: rem;
}
.detail-content {
  font-size: 16px;
}
.detail-content ul {
  margin-top: 20px;
}
.page-header {
  font-size: 1.71429rem;
  color: #333;
  text-align: left;
  margin: 10px 0;
}
.modal-xl .page-heading {
  font-size: 1.5rem;
  padding-bottom: 4px;
  margin-bottom: 15px;
}
.modal-xl .prodCode h5 {
  font-size: 1rem;
}
.modal-xl .product-pricing .title h2 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.modal-xl table tr th {
  font-size: 1rem;
}
.modal-xl table tr td {
  font-size: 1rem;
}
.modal-xl .view-prod-btn {
  margin: 16px 0;
}
.modal-xl .view-prod-btn a {
  font-size: 1rem;
  font-weight: 700;
}
.modal-xl .product-description h4 {
  font-size: 1.2rem;
}
.modal-xl .detail-content {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}
#CompareProd .tr_Product_Name .comapreWrap .prodCode {
  color: var(--main-color);
}
#CompareProd .tr_Product_Name .comapreWrap h4 a {
  font-size: 0.8125rem !important;
}
input[type=checkbox] {
  vertical-align: sub;
  margin-right: 6px;
}
.noProducts {
  text-transform: uppercase;
  font-size: 2vw;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.3411764706);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1024.98px) {
  .noProducts {
    font-size: 1rem;
  }
}
button:disabled {
  cursor: auto;
}
.heading-simple {
  font-size: 20px;
  margin-bottom: 20px;
}
a.theme-button:hover {
  color: var(--clr-white);
}
.btnSubmit .icon-Search {
  position: relative;
  top: 2px;
}
.home-page .desktopBanner {
  margin-top: 0px;
  padding: 0 !important;
}
@media (max-width: 1024.98px) {
  .home-page .desktopBanner {
    margin-top: 0;
  }
}
.home-page .fixed .header-bottom li:hover .heading a {
  color: var(--clr-white) !important;
}
.home-page .fixed .header-bottom .heading a {
  color: var(--clr-black) !important;
}
.home-page .header-bottom {
  background-color: transparent;
}
.home-page .header-bottom .cat-item, .home-page .header-bottom .heading a {
  color: var(--clr-white) !important;
}
@media (max-width: 1024.98px) {
  .home-page .header-bottom {
    display: none;
  }
}
.fixed .header-bottom {
  background-color: var(--clr-white) !important;
}
.fixed .header-bottom .cat-item, .fixed .header-bottom .heading {
  color: var(--clr-black) !important;
}
.header-bottom {
  background-color: var(--clr-white);
}
.header-bottom li, .header-bottom .heading {
  color: var(--clr-black) !important;
}
@media (max-width: 1024.98px) {
  .header-bottom {
    display: none;
  }
}
.exLink {
  color: var(--clr_5);
}
.exLink:hover {
  color: var(--clr_5);
}
/* Mixins and functions */
.filerProductWrapper {
  display: flex;
}
.landing-Breadcrumb.container-fluid {
  padding: 0 !important;
}
.customized_container_new.container-fluid.landingPage {
  padding: 0 40px !important;
}
@media (max-width: 1279.98px) {
  .filterWrapper {
    left: -100%;
    transition: position 0.5s;
  }
}
.productDetailWrapper {
  flex: calc(100Vw - 300px);
  padding-left: 20px;
  border-radius: 0;
  position: relative;
  padding-top: 0 !important;
}
.productDetailWrapper .categoryDetails .categoryName {
  font-size: 20px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #444444;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 1024.98px) {
  .productDetailWrapper .categoryDetails .categoryName {
    font-size: 16px;
  }
}
.productDetailWrapper .custom-animsition-loading {
  position: absolute;
  max-height: 300px;
}
@media (max-width: 1279.98px) {
  .productDetailWrapper {
    width: 100%;
    padding-left: 0;
  }
}
@media (max-width: 575.98px) {
  .productDetailWrapper {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 1024.98px) {
  .productDetailWrapper .productSortOptions.sortAlphabet {
    position: inherit;
  }
}
.sortViewPage {
  margin: 0 0 0 auto;
  transition: 0.3s;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  top: 100px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1;
}
@media (max-width: 1279.98px) {
  .sortViewPage .filterText {
    font-size: 1rem;
    margin-left: 5px;
  }
}
@media (max-width: 1279.98px) {
  .sortViewPage {
    padding: 15px 0px;
    background: var(--clr-white);
    z-index: 8;
    /*box-shadow: 0 0 0 1px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.1); */
    height: auto;
    position: sticky;
    top: 0px;
    width: 100%;
    border-top: 0;
    backdrop-filter: none;
    z-index: 1;
  }
  .sortViewPage .productSortOptions.itemsPerPage {
    margin-left: auto;
  }
  .sortViewPage .productSortOptions.itemsPerPage .optionHeading {
    font-size: 0.875rem !important;
    color: var(--txt-color) !important;
  }
  .sortViewPage .productSortOptions {
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .sortViewPage {
    flex-wrap: wrap;
  }
  .sortViewPage .productSortOptions {
    width: 100%;
    margin-left: 0;
  }
}
.sortViewPage .pagination {
  margin: 0;
}
.productCount {
  letter-spacing: -0.09px;
  line-height: 22px;
  color: var(--txt-color-light);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 0 !important;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .productCount {
    font-size: 0.75rem;
  }
}
@media (max-width: 1279.98px) {
  .productCount.d-md-block.d-none {
    display: none !important;
  }
}
.filterIcon {
  width: 100%;
  display: none;
  align-items: center;
  column-gap: 3px;
  cursor: pointer;
  font-size: 0.75rem;
  padding: 10px;
  background: var(--main-color);
}
@media (max-width: 1279.98px) {
  .filterIcon {
    margin-left: 15px;
    margin-right: 0px;
    display: block;
    margin-bottom: 0;
    padding: 0;
    max-width: inherit;
    text-align: center;
    justify-content: center;
    background-color: transparent;
    color: #333333;
    font-size: 12px;
    font-weight: 700;
  }
}
.filterIcon [class^=icon-] {
  font-size: 0.875rem;
}
.filterIcon [class^=icon-]:before {
  color: var(--clr-white);
}
/***********************SORT options for mobile old design**********************************/
/**************************************************************/
.ViewOptions {
  display: none;
}
.sortAlphabetWrapper {
  flex: 1 1 auto;
}
.sortAlphabetWrapper.mobileSortVisible .sortAlphabet {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: 0;
  align-items: flex-start;
  width: 100%;
  background: var(--clr-white);
  color: var(--txt-color);
  font-size: 14px;
  z-index: 31;
  max-height: 60vh;
}
.sortAlphabetWrapper.mobileSortVisible .optionHeading {
  width: 100%;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ededee;
  text-transform: uppercase;
  position: relative;
  font-weight: 600;
  height: 55px;
}
.sortAlphabetWrapper.mobileSortVisible .optionHeading::after {
  content: "×";
  font-size: 20px;
  position: absolute;
  right: 15px;
}
.sortAlphabetWrapper.mobileSortVisible ul#sortBy {
  padding: 15px 0;
  flex-direction: column;
  width: 100%;
}
.sortAlphabetWrapper.mobileSortVisible ul#sortBy li {
  border: none !important;
  border-radius: 0 !important;
  padding: 8px 15px !important;
  text-align: left !important;
}
.sortAlphabetWrapper .productSortOptions {
  display: flex;
  align-items: center;
}
@media (max-width: 1279.98px) {
  .sortAlphabetWrapper .productSortOptions {
    display: none;
  }
}
.sortAlphabetWrapper .productSortOptions ul#sortBy {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 5px 15px;
}
.sortAlphabetWrapper .productSortOptions ul#sortBy li {
  flex: 0 0 auto;
  border: 1px solid #ccc;
  transition: 0.3s;
  border-radius: 10px;
  line-height: 20px;
  font-size: 14px;
  text-align: center;
  padding: 3px 15px;
  cursor: pointer;
}
.sortAlphabetWrapper .productSortOptions ul#sortBy li.active, .sortAlphabetWrapper .productSortOptions ul#sortBy li:hover {
  background-color: var(--main-color);
  color: #fff;
}
.prod-sortoption {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.prod-sortoption svg {
  display: none;
}
@media (max-width: 1024.98px) {
  .prod-sortoption svg {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .prod-sortoption {
    width: 100%;
  }
}
.prod-sortoption .select-wrap {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 1024.98px) {
  .prod-sortoption .select-wrap {
    display: inline;
  }
}
@media (max-width: 1024.98px) {
  .prod-sortoption .sortByDropDown {
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}
.prod-sortoption span {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin-right: 8px;
}
@media (max-width: 1024.98px) {
  .prod-sortoption span {
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    line-height: 1;
  }
}
.prod-sortoption .select-wrap .sortByDropDown {
  position: relative;
}
@media (min-width: 1025px) {
  .prod-sortoption .select-wrap .sortByDropDown .label {
    display: none;
  }
}
.prod-sortoption .select-wrap .sortByDropDown svg {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #444;
  font-size: 18px;
  display: block;
}
@media (max-width: 1024.98px) {
  .prod-sortoption .select-wrap .sortByDropDown svg {
    display: none;
  }
}
.prod-sortoption .select-wrap .sortByDropDown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 40px 10px 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.09px;
  line-height: 22px;
  color: #444444;
  border-radius: 30px;
  outline: none;
  border: 2px solid #444444;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 1024.98px) {
  .prod-sortoption .select-wrap .sortByDropDown select {
    border: none;
    padding: 0;
    font-size: 8px;
    line-height: 1;
    border-radius: 0;
  }
}
@media (max-width: 767.98px) {
  .prod-sortoption .select-wrap .sortByDropDown select {
    text-align: left;
  }
}
.prod-sortoption .select-wrap .sortByDropDown select option {
  color: #444444;
  padding: 2px 5px;
  font-size: 0.9375rem;
  font-weight: 400;
  transition: 0.3s;
  cursor: pointer;
  display: block;
  font-family: "Roboto", sans-serif;
}
.prod-sortoption .select-wrap .sortByDropDown select option:hover {
  background-color: #1c65d3 !important;
}
.sortMobile {
  position: relative;
  cursor: pointer;
}
.sortMobile .sortText {
  margin-right: 20px;
}
.sortMobile .sortIcon {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
@media (min-width: 1280px) {
  .sortMobile {
    display: none;
  }
}
.sortOptionWrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 35, 35, 0.8);
  width: 100%;
  height: 100%;
  z-index: 30;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 1280px) {
  .sortOptionWrapper {
    opacity: 0;
    visibility: hidden;
  }
}
.optionHeading {
  display: inline-block;
  vertical-align: middle;
  margin: 0 15px 0 0;
  text-transform: uppercase;
  font-size: 0.875rem !important;
  color: var(--txt-color) !important;
  font-weight: var(--font-weight-medium);
}
.viewOptions .btn {
  background-color: var(--clr-white);
  border: 1px solid #c7c7c7;
  padding: 7px 38px 7px 20px;
  min-height: 45px;
  min-width: 89px;
  max-width: 149px;
  position: relative;
  line-height: 29px;
  border-radius: 0;
  color: var(--txt-color) !important;
  font-size: 0.875rem !important;
}
.viewOptions .btn:hover, .viewOptions .btn:focus, .viewOptions .btn.active {
  outline: none;
  box-shadow: none;
}
.viewOptions .btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  right: 12px;
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
.viewOptions .btn span {
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
}
.viewOptions .dropdown-menu {
  font-size: var(--font-body-size);
  font-weight: var(--font-body-weight);
  border-radius: 0;
  min-width: 89px;
  max-width: 149px;
}
.viewOptions .dropdown-menu .dropdown-item {
  cursor: pointer;
  color: var(--txt-color);
}
.viewOptions .dropdown-menu .dropdown-item.active, .viewOptions .dropdown-menu .dropdown-item:focus, .viewOptions .dropdown-menu .dropdown-item:active {
  font-weight: var(--font-weight-bold);
  color: #fff;
  background: var(--txt-color) !important;
}
.product-card-list-view {
  border: 1px solid #e3e3e3;
  position: relative;
}
.product-card-list-view .featureIcon {
  position: absolute;
  top: 10px;
  left: 15px;
  display: flex;
  gap: 15px;
}
.product-card-list-view .featureIcon img {
  width: 80px;
  height: auto;
}
.product-card-list-view .list-content .product-code {
  font-size: 1rem;
  color: var(--txt-color-light);
  font-weight: 600;
  line-height: 14px;
  margin-bottom: 10px;
  font-family: "Alexandria", sans-serif;
}
@media (max-width: 575.98px) {
  .product-card-list-view .list-content .product-code {
    font-size: 0.75rem;
  }
}
.product-card-list-view .list-content .product-price {
  color: var(--main-color);
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 21px;
}
@media (max-width: 575.98px) {
  .product-card-list-view .list-content .product-price {
    font-size: 0.75rem;
  }
}
.product-card-list-view .list-content .product-price .text {
  font-family: "Alexandria", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-color-light);
}
@media (max-width: 575.98px) {
  .product-card-list-view .list-content .product-price .text {
    font-size: 0.75rem;
  }
}
.product-card-list-view .list-content .product-price .price-span {
  color: var(--main-color);
  font-weight: 600;
}
.product-card-list-view .list-content .product-price .price-span + span {
  margin-left: 5px;
}
.product-card-list-view .list-content .product-price .discountCodeNBlankPrice {
  font-size: 16px;
  color: #888888;
  font-weight: 600;
  margin-left: 5px;
}
@media (max-width: 1024.98px) {
  .product-card-list-view .list-content .product-price .discountCodeNBlankPrice {
    font-size: 12px;
  }
}
.product-card-list-view .list-content .product-name h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-weight: 600;
  color: var(--clr-black);
  font-family: "Antonio", serif;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .product-card-list-view .list-content .product-name h4 {
    font-size: 0.875rem;
  }
}
.product-card-list-view .list-content .product-name h4:hover {
  color: var(--main-color);
}
.product-card-list-view .product-card {
  border: none !important;
}
.product-card-list-view .product-card:hover {
  box-shadow: none !important;
  overflow: hidden;
}
.product-card-list-view:hover {
  box-shadow: 0px 11px 20px 0px rgba(21, 80, 116, 0.3);
  border-color: #95d6ff;
  overflow: hidden;
}
.product-card-list-view .col-8 .list-content {
  margin-top: 50px;
}
.listingPageWrapper {
  margin-bottom: 30px;
}
.listingPageWrapper .product-card {
  overflow: hidden;
}
.listingPageWrapper .product-card:hover .wishlist-and-view-main-div .wishlistIcon {
  display: none;
}
.listingPageWrapper .product-card:hover .quick-view-wrap {
  display: block;
}
.listingPageWrapper .closeIconFilter {
  display: none;
}
.category-landing-page div#sub-category-list .sub-category {
  display: block;
  border: 1px solid #e3e3e3;
  text-align: center;
  margin-bottom: 30px;
}
.category-landing-page div#sub-category-list .sub-category:hover {
  box-shadow: 0px 11px 20px 0px rgba(21, 80, 116, 0.3);
  border: 1px solid #95d6ff;
  transition: all 0.3s ease-in;
}
.category-landing-page div#sub-category-list .sub-category .sub-category-image {
  max-width: 70%;
}
.category-landing-page div#sub-category-list .sub-category .sub-category-name {
  margin: 0;
  font-size: 1.28571rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 24px;
  color: #333333;
  display: block;
  margin-top: 0;
  padding: 20px 0;
}
.category-review-list {
  margin-bottom: 30px;
  padding: 0 100px !important;
}
.category-review-list .title-section {
  margin: 30px 0;
  border-bottom: solid 2px #efefef;
  text-align: left !important;
}
.category-review-list .title-section h1 {
  padding-bottom: 10px;
  border-bottom: solid 2px #2c2c2c;
  display: inline-block;
  margin-bottom: -2px;
  font-size: 1.75rem;
  font-weight: 700;
}
.category-review-list .owl-item {
  background-color: #f7f7f7;
  height: 100%;
  border: 1px solid #ccc;
  padding: 10px 20px;
  line-height: inherit;
  overflow: hidden;
}
.category-review-list .owl-item .testimonial {
  height: 270px;
}
.category-review-list .owl-item .testimonial .review-ratings {
  margin-left: -5px;
}
.category-review-list .owl-item .testimonial .review-ratings i {
  padding: 2px;
  font-size: 1.75rem;
}
.category-review-list .owl-item .testimonial .message span {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  min-height: 50px;
  display: block;
}
.category-review-list .owl-item .testimonial .message p {
  padding: 5px 0;
  color: #212529;
  font-size: 14px;
}
.category-review-list .owl-item .testimonial .author h6 {
  text-align: left;
  font-weight: bold;
  text-transform: capitalize;
}
.t-slider .controls .nav {
  display: flex !important;
}
.filterWrapper .filter .filter-list label input:checked + span {
  color: #F78F1E;
  font-weight: 500;
}
input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
}
input[type=checkbox]:checked {
  border: 1.5px solid #F78F1E;
  position: relative;
}
input[type=checkbox]:checked::before {
  content: "✔";
  color: #F78F1E;
  top: 58%;
  position: absolute;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 0.6875rem;
}
.SearchCaseListing .listingPageWrapper {
  min-height: 300px;
}
.product-list.noProducts {
  display: flex !important;
  transform: translate(0px, 35px);
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  min-height: auto;
}
.product-list.noProducts .search-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: inline-block;
}
.product-list.noProducts p {
  color: #555;
}
@media (min-width: 1025px) {
  .listingCLS {
    min-height: 720px;
  }
}
.productViewOptions .viewOptions {
  display: flex;
  position: relative;
  align-items: center;
}
.productViewOptions .viewOptions .toolbarIcon {
  margin-right: 10px;
  cursor: pointer;
  background-color: var(--light-bg);
  border: 2px solid var(--color-border);
  color: #888888;
  border-radius: 50%;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productViewOptions .viewOptions .toolbarIcon i {
  font-size: 16px;
}
@media (max-width: 767.98px) {
  .productViewOptions .viewOptions .toolbarIcon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .productViewOptions .viewOptions .toolbarIcon i {
    font-size: 15px !important;
  }
}
.productViewOptions .viewOptions .toolbarIcon.activeIcon {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 50%;
  border: 2px solid var(--main-color);
}
.productViewOptions .viewOptions .toolbarIcon.activeIcon .icon-grid {
  color: #fff;
}
.productViewOptions .viewOptions .toolbarIcon.activeIcon .icon-list {
  color: #fff;
  font-size: 20px;
}
.productViewOptions .viewOptions .toolbarIcon.activeIcon .icon-Apps,
.productViewOptions .viewOptions .toolbarIcon.activeIcon .icon-Format-List {
  color: var(--clr_2);
  font-size: 24px;
}
.productViewOptions .viewOptions .icon-Apps {
  font-size: 24px;
}
.productViewOptions .viewOptions .icon-Format-List {
  font-size: 24px;
}/* Mixins and functions */
._wishlistContainer_11imq_2 .wishlistPrdList {
  margin-bottom: 50px;
}
._wishlistContainer_11imq_2 .wishlistPrdList .product-card {
  border-radius: 6px;
  border: 1px solid var(--color-border);
}
._wishlistContainer_11imq_2 .wishlistPrdList .noProducts {
  max-width: 100% !important;
  width: 100% !important;
  grid-column: 1/6;
  text-align: left;
  justify-content: flex-start;
}
._wishlistContainer_11imq_2 .wishlistPrdList.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 40px;
}
@media (max-width: 1279.98px) {
  ._wishlistContainer_11imq_2 .wishlistPrdList.product-list {
    grid-gap: 30px;
  }
}
@media (max-width: 767.98px) {
  ._wishlistContainer_11imq_2 .wishlistPrdList.product-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
}/* Mixins and functions */
.dialog-success .dialog-footer button:last-child,
dialog[shm] .dialog-footer button:last-child,
dialog[data-pos] .dialog-footer button:last-child {
  display: block !important;
}
.dialog-success .dialog-body,
dialog[shm] .dialog-body,
dialog[data-pos] .dialog-body {
  padding: 15px 10px;
  font-size: 14px;
}/* Mixins and functions */
#categoriesTarget h1 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 5px;
}
#category-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(276px, 1fr));
  column-gap: 15px;
  row-gap: 30px;
  margin: 30px 0;
}
@media (max-width: 767.98px) {
  #category-list {
    row-gap: 0px;
    margin: 7px 0;
  }
}
#category-list .category-image {
  background: #ededed;
  padding: 20px;
  text-align: center;
}
#category-list .subCategory-name-count h2 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 5px;
}
.main-category > ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}/* Mixins and functions */
._aboutUs_1vug7_2 blockquote {
  max-width: 500px !important;
  width: unset !important;
}
._aboutUs_1vug7_2 h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024.98px) {
  ._aboutUs_1vug7_2 h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  ._aboutUs_1vug7_2 h3 {
    font-size: 1.125rem;
  }
}
._aboutUs_1vug7_2 a {
  color: var(--main-color);
}
@media (max-width: 1024.98px) {
  .about-img img {
    width: 100%;
    height: auto;
  }
}
#products_main_wrapperBorder .about-logo {
  display: flex;
  justify-content: center;
}/* Mixins and functions */
._standardpmscolors_hqlh8_2 .standardPms .generalinfo {
  font-size: 32px;
  margin-top: 13px;
  text-align: left;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  color: var(--secondary-color);
  line-height: 35px;
}
._standardpmscolors_hqlh8_2 .standardPms .list_content {
  background: none repeat scroll 0 0 #F8F8F8;
  border-radius: 15px;
  border: 1px solid #D4D4D4;
  color: #46494C;
  display: block;
  float: left;
  padding: 10px;
  width: 100%;
}
._standardpmscolors_hqlh8_2 .standardPms table {
  height: auto;
  border: none;
  margin-bottom: 0px;
  font-size: 13px;
}
._standardpmscolors_hqlh8_2 .standardPms table tr {
  height: 25px;
}.uploader__container{width:fit-content}.uploader__placeholder{position:relative;background:whitesmoke;overflow:hidden;min-height:100px;min-width:100px}.uploader__btn_wrapper{top:4px;right:0;position:absolute;display:flex;align-items:center;justify-content:center;padding:0;z-index:1}.uploader__btn{background:transparent;border:none;cursor:pointer}.uploader__file_input_label{position:absolute;top:50%;left:50%;z-index:1;transform:translate(-50%,-50%)}.uploader__file_input_label:hover{cursor:pointer}input.uploader__file_input{position:absolute;height:.1px;width:.1px;opacity:0;top:0;left:0;right:0;bottom:0;z-index:-1}img.uploader__file{display:block;object-fit:cover;position:absolute;height:100%;width:100%}
/* Mixins and functions */
._tab_zbt5l_2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
._tab_zbt5l_2 ._tabItemContent_zbt5l_7 {
  display: none;
}
._tab_zbt5l_2 ._selectedTabContent_zbt5l_10 {
  display: block;
}
._tab_zbt5l_2 ._tabsTitleWrapper_zbt5l_13 {
  display: flex;
  justify-content: space-around;
  width: 100%;
}
._tab_zbt5l_2 ._tabsContentWrapper_zbt5l_18 {
  width: 100%;
  justify-content: center;
}/* Mixins and functions */
._salseFlyerDesign_y3no1_2 {
  margin-bottom: 50px;
}
._salseFlyerDesign_y3no1_2 .title {
  font-size: 1.5rem;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}
._salseFlyerDesign_y3no1_2 .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
._salseFlyerDesign_y3no1_2 .tabs .tab-button {
  padding: 10px 30px;
  cursor: pointer;
  border: 1px solid var(--main-color);
  background-color: #fff;
  color: #222;
  font-size: 1.125rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 5px 0px 0px 5px;
}
._salseFlyerDesign_y3no1_2 .tabs .tab-button:last-child {
  border-radius: 0px 5px 5px 0px;
}
._salseFlyerDesign_y3no1_2 .tabs .tab-button.active {
  background-color: var(--main-color);
  color: #fff;
  border: none;
}
@media (min-width: 1025px) {
  ._salseFlyerDesign_y3no1_2 .salseflyer .product-list {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}
@media (max-width: 767.98px) {
  ._salseFlyerDesign_y3no1_2 .salseflyer .product-list {
    column-gap: 10px;
    row-gap: 10px;
  }
  ._salseFlyerDesign_y3no1_2 .salseflyer .product-list .product-card {
    padding: 10px;
  }
  ._salseFlyerDesign_y3no1_2 .salseflyer .product-list .product-card .addToWishlistMobile .wishlistIcon {
    right: 10px;
    top: 10px;
  }
}
@media (max-width: 1024.98px) {
  ._salseFlyerDesign_y3no1_2 .salseflyer .dialog-body img {
    width: 100%;
  }
}
._salseFlyerDesign_y3no1_2 .setCheckboxSendCopy {
  display: flex;
  flex-direction: row-reverse;
}
._salseFlyerDesign_y3no1_2 .setCheckboxSendCopy input:hover {
  outline: 1px solid #ccc;
}
._salseFlyerDesign_y3no1_2 .tabs-flyer-Sales .tab-item-title {
  background-color: #ccc;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  padding: 10px;
  width: 100%;
  border-bottom: 1px solid #ccc;
  text-align: center;
  cursor: pointer;
}
._salseFlyerDesign_y3no1_2 .tabs-flyer-Sales .tab-item-title.active {
  background-color: var(--main-color);
  color: #fff;
}
._salseFlyerDesign_y3no1_2 .tabs-flyer-Sales .container {
  padding: 0px;
}
._salseFlyerDesign_y3no1_2 .tabs-flyer-Sales .container #pdfcontainer {
  width: 100%;
}
._salseFlyerDesign_y3no1_2 .tabs-flyer-Sales .container #pdfcontainer img {
  width: 100%;
}
@media (max-width: 1024.98px) {
  ._salseFlyerDesign_y3no1_2 .adBacktext {
    zoom: 1 !important;
  }
}
._salseFlyerDesign_y3no1_2 .adBacktext .adcon {
  position: relative;
}
._salseFlyerDesign_y3no1_2 .adBacktext .adcon textarea {
  padding: 10px;
  width: 100%;
}
._salseFlyerDesign_y3no1_2 .adBacktext .adcon .lettercount {
  background-color: #fff;
  padding: 2px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  border: 1px solid #ccc;
}
._salseFlyerDesign_y3no1_2 .adBacktext .fontcustomarea {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
._salseFlyerDesign_y3no1_2 .adBacktext .fontcustomarea .fbold,
._salseFlyerDesign_y3no1_2 .adBacktext .fontcustomarea .fital {
  font-size: 0px;
}
._salseFlyerDesign_y3no1_2 .adBacktext .fontcustomarea .fbold::first-letter,
._salseFlyerDesign_y3no1_2 .adBacktext .fontcustomarea .fital::first-letter {
  font-size: 0.75rem;
  padding: 0px 5px;
  background-color: #fff;
  border: 1px solid #000;
  margin-right: 2px;
}
._salseFlyerDesign_y3no1_2 .uploader__placeholder {
  text-align: center;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper {
  border: 1px solid #ccc;
  margin-bottom: 30px;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-header {
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  line-height: 20px;
  align-items: center;
  border-width: 0 0 1px 0 !important;
  border: 1px solid #ccc;
  min-height: 80px;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-header h6 {
  margin: 0px;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-body .flayer-image-wrapper {
  border-width: 1px 0 2px 0 !important;
  height: 100%;
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  cursor: pointer;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-body .flayer-btn-wrapper {
  border-radius: 0 !important;
  display: flex;
  flex-direction: column;
  padding: 5px 10px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-body .flayer-btn-wrapper a {
  margin: 0px;
}
@media (max-width: 1024.98px) {
  ._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-body .flayer-btn-wrapper a {
    min-height: inherit;
    padding: 10px;
  }
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-body .flayer-btn-wrapper a:focus {
  outline: none;
  box-shadow: none;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-footer {
  display: none;
  padding: 10px 10px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
  text-align: center;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-footer a.subcategoryData {
  font-size: 0.875rem;
  font-weight: 500;
}
._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-footer a.subcategoryData:hover {
  color: var(--main-color);
}
@media (max-width: 1024.98px) {
  ._salseFlyerDesign_y3no1_2 .flayer-box-wrapper .flayer-box-footer {
    display: none;
  }
}/* Mixins and functions */
._generalInfo_18cli_2 blockquote {
  max-width: 500px !important;
  width: unset !important;
}
._generalInfo_18cli_2 h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024.98px) {
  ._generalInfo_18cli_2 h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  ._generalInfo_18cli_2 h3 {
    font-size: 1.125rem;
  }
}
._generalInfo_18cli_2 a {
  color: #003C68;
}
._generalInfo_18cli_2 .generalinfo {
  color: #444444;
  font-size: 32px;
  font-weight: bold;
  margin-top: 13px;
  padding-bottom: 30px;
  text-align: left;
}
._generalInfo_18cli_2 .list-group {
  padding-left: 0;
  margin-bottom: 20px;
}
._generalInfo_18cli_2 .list-group .list-group-item {
  border: none;
  padding: 0px;
  background-color: #fff;
}
._generalInfo_18cli_2 .list-group .list-group-item p {
  font-size: 16px;
  color: #444444;
  text-align: justify;
}
._generalInfo_18cli_2 .list-group .list-group-item p span.text-info {
  font-weight: 600;
  color: #003C68;
}.slider-root {
  position: relative;
  display: flex;
  align-items: center;
  user-select: none;
  touch-action: none;
}

.slider-track {
  position: relative;
  flex-grow: 1;
  background-color: #dfe2ee;
  height: 5px;
  border-radius: 9999px;
}

.slider-range {
  position: absolute;
  background-color: var(--lightbackground);
  height: 100%;
}

.slider-thumb {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  background-color: var(--clr_5);
  box-shadow: 0 2px 5px 0 #e3e5ec;
  border-radius: 9999px;
}
.slider-thumb:focus-visible {
  outline: none;
  border: none;
}

.slider-thumb:after {
  position: absolute;
  top: 1.5rem;
  content: attr(aria-valuenow);
  font-weight: 400;
  color: #000;
  font-size: 1rem;
}

.slider-thumb[aria-label=Minimum]:after {
  left: 0;
}

.slider-thumb[aria-label=Maximum]:after {
  right: 0;
}.ais-Breadcrumb-list,
.ais-Carousel-list,
.ais-CurrentRefinements-list,
.ais-HierarchicalMenu-list,
.ais-Hits-list,
.ais-FrequentlyBoughtTogether-list,
.ais-LookingSimilar-list,
.ais-RelatedProducts-list,
.ais-TrendingItems-list,
.ais-Results-list,
.ais-InfiniteHits-list,
.ais-InfiniteResults-list,
.ais-Menu-list,
.ais-NumericMenu-list,
.ais-Pagination-list,
.ais-RatingMenu-list,
.ais-RefinementList-list,
.ais-ToggleRefinement-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ais-Carousel-navigation,
.ais-ClearRefinements-button,
.ais-CurrentRefinements-delete,
.ais-CurrentRefinements-reset,
.ais-GeoSearch-redo,
.ais-GeoSearch-reset,
.ais-HierarchicalMenu-showMore,
.ais-InfiniteHits-loadPrevious,
.ais-InfiniteHits-loadMore,
.ais-InfiniteResults-loadMore,
.ais-Menu-showMore,
.ais-RangeInput-submit,
.ais-RefinementList-showMore,
.ais-SearchBox-submit,
.ais-SearchBox-reset,
.ais-VoiceSearch-button {
  padding: 0;
  overflow: visible;
  font: inherit;
  line-height: normal;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ais-Carousel-navigation::-moz-focus-inner,
.ais-ClearRefinements-button::-moz-focus-inner,
.ais-CurrentRefinements-delete::-moz-focus-inner,
.ais-CurrentRefinements-reset::-moz-focus-inner,
.ais-GeoSearch-redo::-moz-focus-inner,
.ais-GeoSearch-reset::-moz-focus-inner,
.ais-HierarchicalMenu-showMore::-moz-focus-inner,
.ais-InfiniteHits-loadPrevious::-moz-focus-inner,
.ais-InfiniteHits-loadMore::-moz-focus-inner,
.ais-InfiniteResults-loadMore::-moz-focus-inner,
.ais-Menu-showMore::-moz-focus-inner,
.ais-RangeInput-submit::-moz-focus-inner,
.ais-RefinementList-showMore::-moz-focus-inner,
.ais-SearchBox-submit::-moz-focus-inner,
.ais-SearchBox-reset::-moz-focus-inner,
.ais-VoiceSearch-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.ais-Carousel-navigation[disabled],
.ais-ClearRefinements-button[disabled],
.ais-CurrentRefinements-delete[disabled],
.ais-CurrentRefinements-reset[disabled],
.ais-GeoSearch-redo[disabled],
.ais-GeoSearch-reset[disabled],
.ais-HierarchicalMenu-showMore[disabled],
.ais-InfiniteHits-loadPrevious[disabled],
.ais-InfiniteHits-loadMore[disabled],
.ais-InfiniteResults-loadMore[disabled],
.ais-Menu-showMore[disabled],
.ais-RangeInput-submit[disabled],
.ais-RefinementList-showMore[disabled],
.ais-SearchBox-submit[disabled],
.ais-SearchBox-reset[disabled],
.ais-VoiceSearch-button[disabled] {
  cursor: default;
}

.ais-InfiniteHits-loadPrevious,
.ais-InfiniteHits-loadMore,
.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore {
  overflow-anchor: none;
}

.ais-Breadcrumb-list,
.ais-Breadcrumb-item,
.ais-Pagination-list,
.ais-RangeInput-form,
.ais-RatingMenu-link,
.ais-PoweredBy {
  display: flex;
  align-items: center;
}

.ais-GeoSearch,
.ais-GeoSearch-map {
  height: 100%;
}

.ais-HierarchicalMenu-list .ais-HierarchicalMenu-list {
  margin-left: 1em;
}

.ais-PoweredBy-logo {
  display: block;
  height: 1.2em;
  width: auto;
}

.ais-PoweredBy-text {
  margin-right: 0.3rem;
}

.ais-RatingMenu-starIcon {
  display: block;
  width: 20px;
  height: 20px;
}

.ais-SearchBox-input::-ms-clear, .ais-SearchBox-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.ais-SearchBox-input::-webkit-search-decoration, .ais-SearchBox-input::-webkit-search-cancel-button, .ais-SearchBox-input::-webkit-search-results-button, .ais-SearchBox-input::-webkit-search-results-decoration {
  display: none;
}

.ais-RangeSlider .rheostat {
  overflow: visible;
  margin-top: 40px;
  margin-bottom: 40px;
}
.ais-RangeSlider .rheostat-background {
  height: 6px;
  top: 0px;
  width: 100%;
}
.ais-RangeSlider .rheostat-handle {
  margin-left: -12px;
  top: -7px;
}
.ais-RangeSlider .rheostat-background {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #aaa;
}
.ais-RangeSlider .rheostat-progress {
  position: absolute;
  top: 1px;
  height: 4px;
  background-color: #333;
}

.rheostat-handle {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  cursor: grab;
}

.rheostat-marker {
  margin-left: -1px;
  position: absolute;
  width: 1px;
  height: 5px;
  background-color: #aaa;
}

.rheostat-marker--large {
  height: 9px;
}

.rheostat-value {
  margin-left: 50%;
  padding-top: 15px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.rheostat-tooltip {
  margin-left: 50%;
  position: absolute;
  top: -22px;
  text-align: center;
  transform: translateX(-50%);
}

.ais-Carousel {
  position: relative;
}

.ais-Carousel-list {
  grid-auto-columns: 42%;
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

@media (min-width: 999px) {
  .ais-Carousel-list {
    grid-auto-columns: 20%;
  }
}
.ais-Carousel-navigation {
  position: absolute;
  top: 35%;
  z-index: 1;
}

.ais-Carousel-navigation--previous {
  left: 0;
  transform: translateX(-25%);
}

.ais-Carousel-navigation--next {
  right: 0;
  transform: translateX(25%);
}

.ais-Carousel-item {
  scroll-snap-align: start;
}
.ais-Breadcrumb-list,
.ais-Carousel-list,
.ais-CurrentRefinements-list,
.ais-HierarchicalMenu-list,
.ais-Hits-list,
.ais-FrequentlyBoughtTogether-list,
.ais-LookingSimilar-list,
.ais-RelatedProducts-list,
.ais-TrendingItems-list,
.ais-Results-list,
.ais-InfiniteHits-list,
.ais-InfiniteResults-list,
.ais-Menu-list,
.ais-NumericMenu-list,
.ais-Pagination-list,
.ais-RatingMenu-list,
.ais-RefinementList-list,
.ais-ToggleRefinement-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ais-Carousel-navigation,
.ais-ClearRefinements-button,
.ais-CurrentRefinements-delete,
.ais-CurrentRefinements-reset,
.ais-GeoSearch-redo,
.ais-GeoSearch-reset,
.ais-HierarchicalMenu-showMore,
.ais-InfiniteHits-loadPrevious,
.ais-InfiniteHits-loadMore,
.ais-InfiniteResults-loadMore,
.ais-Menu-showMore,
.ais-RangeInput-submit,
.ais-RefinementList-showMore,
.ais-SearchBox-submit,
.ais-SearchBox-reset,
.ais-VoiceSearch-button {
  padding: 0;
  overflow: visible;
  font: inherit;
  line-height: normal;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ais-Carousel-navigation::-moz-focus-inner,
.ais-ClearRefinements-button::-moz-focus-inner,
.ais-CurrentRefinements-delete::-moz-focus-inner,
.ais-CurrentRefinements-reset::-moz-focus-inner,
.ais-GeoSearch-redo::-moz-focus-inner,
.ais-GeoSearch-reset::-moz-focus-inner,
.ais-HierarchicalMenu-showMore::-moz-focus-inner,
.ais-InfiniteHits-loadPrevious::-moz-focus-inner,
.ais-InfiniteHits-loadMore::-moz-focus-inner,
.ais-InfiniteResults-loadMore::-moz-focus-inner,
.ais-Menu-showMore::-moz-focus-inner,
.ais-RangeInput-submit::-moz-focus-inner,
.ais-RefinementList-showMore::-moz-focus-inner,
.ais-SearchBox-submit::-moz-focus-inner,
.ais-SearchBox-reset::-moz-focus-inner,
.ais-VoiceSearch-button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.ais-Carousel-navigation[disabled],
.ais-ClearRefinements-button[disabled],
.ais-CurrentRefinements-delete[disabled],
.ais-CurrentRefinements-reset[disabled],
.ais-GeoSearch-redo[disabled],
.ais-GeoSearch-reset[disabled],
.ais-HierarchicalMenu-showMore[disabled],
.ais-InfiniteHits-loadPrevious[disabled],
.ais-InfiniteHits-loadMore[disabled],
.ais-InfiniteResults-loadMore[disabled],
.ais-Menu-showMore[disabled],
.ais-RangeInput-submit[disabled],
.ais-RefinementList-showMore[disabled],
.ais-SearchBox-submit[disabled],
.ais-SearchBox-reset[disabled],
.ais-VoiceSearch-button[disabled] {
  cursor: default;
}

.ais-InfiniteHits-loadPrevious,
.ais-InfiniteHits-loadMore,
.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore {
  overflow-anchor: none;
}

.ais-Breadcrumb-list,
.ais-Breadcrumb-item,
.ais-Pagination-list,
.ais-RangeInput-form,
.ais-RatingMenu-link,
.ais-PoweredBy {
  display: flex;
  align-items: center;
}

.ais-GeoSearch,
.ais-GeoSearch-map {
  height: 100%;
}

.ais-HierarchicalMenu-list .ais-HierarchicalMenu-list {
  margin-left: 1em;
}

.ais-PoweredBy-logo {
  display: block;
  height: 1.2em;
  width: auto;
}

.ais-PoweredBy-text {
  margin-right: 0.3rem;
}

.ais-RatingMenu-starIcon {
  display: block;
  width: 20px;
  height: 20px;
}

.ais-SearchBox-input::-ms-clear, .ais-SearchBox-input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
.ais-SearchBox-input::-webkit-search-decoration, .ais-SearchBox-input::-webkit-search-cancel-button, .ais-SearchBox-input::-webkit-search-results-button, .ais-SearchBox-input::-webkit-search-results-decoration {
  display: none;
}

.ais-RangeSlider .rheostat {
  overflow: visible;
  margin-top: 40px;
  margin-bottom: 40px;
}
.ais-RangeSlider .rheostat-background {
  height: 6px;
  top: 0px;
  width: 100%;
}
.ais-RangeSlider .rheostat-handle {
  margin-left: -12px;
  top: -7px;
}
.ais-RangeSlider .rheostat-background {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #aaa;
}
.ais-RangeSlider .rheostat-progress {
  position: absolute;
  top: 1px;
  height: 4px;
  background-color: #333;
}

.rheostat-handle {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 50%;
  cursor: grab;
}

.rheostat-marker {
  margin-left: -1px;
  position: absolute;
  width: 1px;
  height: 5px;
  background-color: #aaa;
}

.rheostat-marker--large {
  height: 9px;
}

.rheostat-value {
  margin-left: 50%;
  padding-top: 15px;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
}

.rheostat-tooltip {
  margin-left: 50%;
  position: absolute;
  top: -22px;
  text-align: center;
  transform: translateX(-50%);
}

.ais-Carousel {
  position: relative;
}

.ais-Carousel-list {
  grid-auto-columns: 42%;
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

@media (min-width: 999px) {
  .ais-Carousel-list {
    grid-auto-columns: 20%;
  }
}
.ais-Carousel-navigation {
  position: absolute;
  top: 35%;
  z-index: 1;
}

.ais-Carousel-navigation--previous {
  left: 0;
  transform: translateX(-25%);
}

.ais-Carousel-navigation--next {
  right: 0;
  transform: translateX(25%);
}

.ais-Carousel-item {
  scroll-snap-align: start;
}

/**
 * Reset
 */
[class^=ais-] {
  box-sizing: border-box;
}

/**
 * Disabled
 */
[class^=ais-][class$="--disabled"],
[class^=ais-][class$="--disabled"] *,
.ais-VoiceSearch-button:disabled {
  cursor: not-allowed;
}

/**
 * Buttons
 */
.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore,
.ais-ClearRefinements-button,
.ais-InfiniteHits-loadMore,
.ais-RangeInput-submit,
.ais-InfiniteHits-loadPrevious,
.ais-Pagination-link,
.ais-GeoSearch-redo,
.ais-GeoSearch-reset,
.ais-VoiceSearch-button,
.ais-RelevantSort-button,
.ais-Carousel-navigation {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff, #fcfcfd);
  border: 1px solid #d6d6e7;
  border-radius: 3px;
  box-shadow: 0 1px 0 0 rgba(35, 38, 59, 0.05);
  color: #23263b;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  font-weight: 400;
  height: 2rem;
  justify-content: center;
  line-height: 1.25rem;
  padding: 0 1rem;
  place-items: center;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore,
.ais-GeoSearch-redo,
.ais-GeoSearch-reset {
  height: 1.5rem;
}

.ais-HierarchicalMenu-showMore,
.ais-Menu-showMore,
.ais-RefinementList-showMore {
  margin-top: 1rem;
}

.ais-HierarchicalMenu-showMore:hover,
.ais-Menu-showMore:hover,
.ais-RefinementList-showMore:hover,
.ais-ClearRefinements-button:hover,
.ais-InfiniteHits-loadMore:hover,
.ais-RangeInput-submit:hover,
.ais-InfiniteHits-loadPrevious:hover,
.ais-Pagination-item:not(.ais-Pagination-item--selected):not(.ais-Pagination-item--disabled) .ais-Pagination-link:hover,
.ais-GeoSearch-redo:hover,
.ais-GeoSearch-reset:hover,
.ais-VoiceSearch-button:hover,
.ais-Carousel-navigation:hover {
  background-image: linear-gradient(-180deg, #fff, #f5f5fa);
  border-color: #d6d6e7;
}

.ais-HierarchicalMenu-showMore:focus,
.ais-Menu-showMore:focus,
.ais-RefinementList-showMore:focus,
.ais-ClearRefinements-button:focus,
.ais-InfiniteHits-loadMore:focus,
.ais-RangeInput-submit:focus,
.ais-InfiniteHits-loadPrevious:focus,
.ais-GeoSearch-redo:focus,
.ais-GeoSearch-reset:focus,
.ais-VoiceSearch-button:focus,
.ais-Carousel-navigation:focus {
  background-image: linear-gradient(-180deg, #fff, #f5f5fa);
  border-color: #3c4fe0;
  box-shadow: #3c4fe0 0 0 0 1px, rgba(35, 38, 59, 0.05) 0 2px 0 1px;
  outline: currentcolor none medium;
}

.ais-HierarchicalMenu-showMore:active,
.ais-Menu-showMore:active,
.ais-RefinementList-showMore:active,
.ais-ClearRefinements-button:active,
.ais-InfiniteHits-loadMore:active,
.ais-InfiniteHits-loadPrevious:active,
.ais-Pagination-item--selected .ais-Pagination-link,
.ais-Pagination-link:active,
.ais-GeoSearch-redo:active,
.ais-GeoSearch-reset:active,
.ais-VoiceSearch-button:active,
.ais-Carousel-navigation:active {
  border-color: #d6d6e7;
  box-shadow: rgba(119, 122, 175, 0.4) 0 1px 4px 0 inset, rgba(119, 122, 175, 0.4) 0 1px 1px 0 inset, rgba(35, 38, 59, 0.05) 0 1px 0 0;
}

.ais-ClearRefinements-button:disabled[disabled],
.ais-InfiniteHits-loadMore:disabled[disabled],
.ais-InfiniteHits-loadPrevious:disabled[disabled],
.ais-Pagination-item--disabled .ais-Pagination-link,
.ais-GeoSearch-redo--disabled,
.ais-GeoSearch-reset--disabled,
.ais-VoiceSearch-button:disabled {
  background-image: linear-gradient(-180deg, #fff, #f5f5fa);
  border-color: #efeff5;
  box-shadow: none;
  color: #b6b7d5;
}

.ais-HierarchicalMenu-showMore--disabled[disabled],
.ais-Menu-showMore--disabled[disabled],
.ais-RefinementList-showMore--disabled[disabled] {
  display: none;
}

/**
 * Labels
 */
.ais-NumericMenu-label,
.ais-ToggleRefinement-label,
.ais-HierarchicalMenu-item,
.ais-Menu-item,
.ais-RatingMenu-item,
.ais-RefinementList-item {
  display: block;
  font-size: 0.875rem;
  line-height: 1.75rem;
}

.ais-HierarchicalMenu-link,
.ais-Menu-link,
.ais-RatingMenu-link,
.ais-RefinementList-label {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-wrap: nowrap;
}

.ais-Breadcrumb-link,
.ais-HierarchicalMenu-link,
.ais-Menu-link,
.ais-RatingMenu-link {
  color: inherit;
  text-decoration: none;
}

.ais-Breadcrumb-link:hover {
  text-decoration: underline;
}

.ais-HierarchicalMenu-label,
.ais-Menu-label,
.ais-RefinementList-labelText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ais-HierarchicalMenu-item--selected > .ais-HierarchicalMenu-link > .ais-HierarchicalMenu-label,
.ais-Menu-item--selected .ais-Menu-label,
.ais-RefinementList-item--selected,
.ais-RatingMenu-item--selected {
  font-weight: 600;
}

/**
 * Count
 */
.ais-ToggleRefinement-count,
.ais-HierarchicalMenu-count,
.ais-Menu-count,
.ais-RatingMenu-count,
.ais-RefinementList-count {
  background: #f5f5fa none repeat scroll 0% 0%;
  border: 1px solid #b6b7d5;
  border-radius: 99999px;
  color: #23263b;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  margin-left: 0.5rem;
  overflow: hidden;
  padding: 0 0.25rem;
}

/**
 * No Results
 */
.ais-Menu-noResults,
.ais-HierarchicalMenu-noResults,
.ais-RefinementList-noResults {
  color: #5a5e9a;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1rem;
}

/**
 * Selectors
 */
.ais-MenuSelect-select,
.ais-HitsPerPage-select,
.ais-SortBy-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'), linear-gradient(-180deg, #fff, #fcfcfd);
  background-position: right 1rem center, 0 0;
  background-repeat: no-repeat;
  background-size: 10px, auto;
  border: 1px solid #d6d6e7;
  border-radius: 3px;
  box-shadow: rgba(35, 38, 59, 0.05) 0 1px 0 0;
  color: #23263b;
  cursor: pointer;
  font: inherit;
  height: 2.5rem;
  outline: currentcolor none medium;
  padding: 0 2.5rem 0 1rem;
  position: relative;
  width: 100%;
}

.ais-HitsPerPage-select:-moz-focusring,
.ais-HitsPerPage-select::-moz-focus-inner,
.ais-SortBy-select:-moz-focusring,
.ais-SortBy-select::-moz-focus-inner {
  color: transparent;
  outline: currentcolor none medium;
}

.ais-HitsPerPage-select > option:not(:checked),
.ais-SortBy-select > option:not(:checked) {
  color: #23263b;
}

.ais-HitsPerPage-select > option:disabled,
.ais-SortBy-select > option:disabled {
  color: #b6b7d5;
}

.ais-HitsPerPage-select:hover,
.ais-SortBy-select:hover {
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'), linear-gradient(-180deg, #fcfcfd, #f5f5fa);
  border-color: #d6d6e7;
}

.ais-HitsPerPage-select:focus,
.ais-SortBy-select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23777aaf" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'), linear-gradient(-180deg, #fff, #f5f5fa);
  border-color: #3c4fe0;
  box-shadow: #3c4fe0 0 0 0 1px, rgba(35, 38, 59, 0.05) 0 2px 0 0;
}

.ais-HitsPerPage-select:disabled,
.ais-SortBy-select:disabled {
  background-image: url('data:image/svg+xml;utf8,<svg width="14" height="24" xmlns="http://www.w3.org/2000/svg"><g stroke="%23b6b7d5" stroke-width="2" fill="none" fill-rule="evenodd"><path d="M13 7L7 1 1 7M1 17l6 6 6-6"/></g></svg>'), linear-gradient(-180deg, #fff, #f5f5fa);
  border-color: #efeff5;
  box-shadow: none;
  color: #b6b7d5;
  cursor: not-allowed;
}

/**
 * Panel
 */
.ais-Panel {
  margin-bottom: 2rem;
}

.ais-Panel-header {
  color: #5a5e9a;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.ais-Panel-footer {
  color: #5a5e9a;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1rem;
  margin-top: 1rem;
}

.ais-Panel--collapsible {
  position: relative;
}

.ais-Panel--collapsible .ais-Panel-collapseButton {
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.ais-Panel--collapsed .ais-Panel-body,
.ais-Panel--collapsed .ais-Panel-footer {
  display: none;
}

/**
 * SearchBox
 */
.ais-SearchBox-form {
  background-color: #fff;
  display: flex;
  font-size: 0.875rem;
  height: 2.5rem;
  line-height: 1.25rem;
  position: relative;
  width: 100%;
}

.ais-SearchBox-form::before {
  background: rgba(0, 0, 0, 0) url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235a5e9a%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Ccircle%20cx%3D%2211%22%20cy%3D%2211%22%20r%3D%228%22%3E%3C%2Fcircle%3E%3Cline%20x1%3D%2221%22%20y1%3D%2221%22%20x2%3D%2216.65%22%20y2%3D%2216.65%22%3E%3C%2Fline%3E%3C%2Fsvg%3E") repeat scroll 0% 0%;
  content: "";
  height: 1rem;
  left: 1rem;
  margin-top: -0.5rem;
  position: absolute;
  top: 50%;
  width: 1rem;
}

.ais-SearchBox-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #d6d6e7;
  border-radius: 3px;
  box-shadow: rgba(119, 122, 175, 0.3) 0 1px 4px 0 inset;
  caret-color: #5a5e9a;
  color: #23263b;
  flex: 1 1 0%;
  font: inherit;
  max-width: 100%;
  padding-left: 2.5rem;
}

.ais-SearchBox-input::-moz-placeholder {
  color: #5a5e9a;
}

.ais-SearchBox-input::placeholder {
  color: #5a5e9a;
}

.ais-SearchBox-input:focus {
  border-color: #3c4fe0;
  box-shadow: rgba(35, 38, 59, 0.05) 0 1px 0 0;
  outline: currentcolor none medium;
}

.ais-SearchBox-input:disabled {
  background: rgba(0, 0, 0, 0) linear-gradient(-180deg, #fff, #f5f5fa) repeat scroll 0% 0%;
  border-color: #efeff5;
  box-shadow: none;
  cursor: not-allowed;
}

.ais-SearchBox-input:disabled::-moz-placeholder {
  color: #b6b7d5;
  pointer-events: none;
}

.ais-SearchBox-input:disabled::placeholder {
  color: #b6b7d5;
  pointer-events: none;
}

.ais-SearchBox-input::-webkit-search-cancel-button,
.ais-SearchBox-input::-webkit-search-decoration,
.ais-SearchBox-input::-webkit-search-results-button,
.ais-SearchBox-input::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

.ais-SearchBox-loadingIndicator,
.ais-SearchBox-reset {
  align-items: center;
  border-radius: 50%;
  display: flex;
  fill: #484c7a;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.ais-SearchBox-reset:focus {
  background: #b6b7d5;
  fill: #fff;
  outline: 0;
}

.ais-RefinementList-searchBox .ais-SearchBox-loadingIndicator,
.ais-RefinementList-searchBox .ais-SearchBox-reset {
  right: 0.5rem;
}

.ais-SearchBox-loadingIndicator[hidden],
.ais-SearchBox-reset[hidden] {
  display: none;
}

.ais-SearchBox-submit {
  display: none;
}

.ais-Menu-searchBox,
.ais-RefinementList-searchBox {
  margin-bottom: 0.5rem;
}

.ais-Menu-searchBox .ais-SearchBox-form,
.ais-RefinementList-searchBox .ais-SearchBox-form {
  height: 2rem;
}

.ais-Menu-searchBox .ais-SearchBox-form::before,
.ais-RefinementList-searchBox .ais-SearchBox-form::before {
  left: 0.5rem;
}

.ais-Menu-searchBox .ais-SearchBox-input,
.ais-RefinementList-searchBox .ais-SearchBox-input {
  padding-left: 2rem;
}

/**
 * VoiceSearch
 */
.ais-VoiceSearch-button {
  color: #5a5e9a;
  height: 48px;
  width: 48px;
}

.ais-VoiceSearch-button svg {
  color: currentcolor;
}

/**
 * Highlighting and Snippeting
 */
.ais-Highlight-highlighted,
.ais-Snippet-highlighted {
  background-color: rgba(84, 104, 255, 0.1);
  color: #5468ff;
  font-style: normal;
}

/**
 * ReverseHighlighting and ReverseSnippeting
 */
.ais-ReverseHighlight-highlighted,
.ais-ReverseSnippet-highlighted {
  font-weight: bold;
  font-style: normal;
  background: none;
}

/**
 * Hits, InfiniteHits, FrequentlyBoughtTogether, LookingSimilar,
 * RelatedProducts and TrendingItems
 */
.ais-Hits-item,
.ais-InfiniteHits-item,
.ais-FrequentlyBoughtTogether-item,
.ais-LookingSimilar-item,
.ais-RelatedProducts-item,
.ais-TrendingItems-item {
  align-items: center;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(35, 38, 59, 0.05), 0 1px 3px 0 rgba(35, 38, 59, 0.15);
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
  padding: 1.5rem;
}

.ais-Hits-item:first-of-type,
.ais-InfiniteHits-item:first-of-type,
.ais-FrequentlyBoughtTogether-item:first-of-type,
.ais-LookingSimilar-item:first-of-type,
.ais-RelatedProducts-item:first-of-type,
.ais-TrendingItems-item:first-of-type {
  border-radius: 3px 3px 0 0;
}

.ais-Hits-item:last-of-type,
.ais-InfiniteHits-item:last-of-type,
.ais-FrequentlyBoughtTogether-item:last-of-type,
.ais-LookingSimilar-item:last-of-type,
.ais-RelatedProducts-item:last-of-type,
.ais-TrendingItems-item:last-of-type {
  border-radius: 0 0 3px 3px;
}

.ais-Hits-item:only-of-type,
.ais-InfiniteHits-item:only-of-type,
.ais-FrequentlyBoughtTogether-item:only-of-type,
.ais-LookingSimilar-item:only-of-type,
.ais-RelatedProducts-item:only-of-type,
.ais-TrendingItems-item:only-of-type {
  border-radius: 3px;
}

.ais-InfiniteHits-loadMore,
.ais-InfiniteHits-loadPrevious {
  display: flex;
  margin: 1rem auto;
}

.ais-Hits-banner,
.ais-InfiniteHits-banner {
  display: flex;
  justify-content: center;
}

.ais-Hits-banner-image,
.ais-InfiniteHits-banner-image {
  max-width: 100%;
}

/**
 * GeoSearch
 */
.ais-GeoSearch {
  position: relative;
}

.ais-GeoSearch-control {
  left: 3.75rem;
  position: absolute;
  top: 1rem;
}

.ais-GeoSearch-label {
  align-items: center;
  background-color: #f5f5fa;
  border: 1px solid #b6b7d5;
  border-radius: 3px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 1.5rem;
  padding: 0.25rem 0.5rem;
}

.ais-GeoSearch-label,
.ais-GeoSearch-redo,
.ais-GeoSearch-reset {
  white-space: nowrap;
}

.ais-GeoSearch-reset {
  bottom: 1.25rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

/**
 * RefinementList
 */
.ais-RefinementList-checkbox,
.ais-GeoSearch-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  background-position: 50%;
  background-size: 180%;
  border: 1px solid currentcolor;
  border-radius: 3px;
  box-shadow: inset 0 1px 4px 0 rgba(119, 122, 175, 0.4);
  color: #d6d6e7;
  cursor: inherit;
  height: 1rem;
  margin: 0 0.5rem 0 0;
  min-width: 1rem;
}

.ais-RefinementList-item--selected .ais-RefinementList-checkbox,
.ais-GeoSearch-input:checked {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235468ff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2220%206%209%2017%204%2012%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-size: 14px;
  border-color: currentcolor;
  box-shadow: rgba(35, 38, 59, 0.05) 0 1px 0 0 inset;
  color: #3c4fe0;
}

.ais-RefinementList-checkbox:focus,
.ais-GeoSearch-input:focus {
  outline: currentcolor none medium;
}

.ais-RefinementList-item--selected .ais-RefinementList-checkbox:focus,
.ais-GeoSearch-input:checked:focus {
  box-shadow: rgba(35, 38, 59, 0.05) 0 1px 0 0 inset, currentcolor 0 0 0 1px;
}

/**
 * NumericMenu
 */
.ais-NumericMenu-label {
  align-items: center;
  cursor: pointer;
  display: flex;
}

.ais-NumericMenu-radio {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #fff;
  border: 1px solid #d6d6e7;
  border-radius: 50%;
  box-shadow: inset 0 1px 4px 0 rgba(119, 122, 175, 0.3);
  height: 16px;
  margin: 0 0.5rem 0 0;
  outline: 0;
  position: relative;
  width: 16px;
}

.ais-NumericMenu-radio:checked,
.ais-NumericMenu-radio:focus {
  border-color: #3c4fe0;
  box-shadow: 0 1px 0 0 rgba(35, 38, 59, 0.05);
}

.ais-NumericMenu-radio:focus {
  box-shadow: 0 0 0 1px #3c4fe0, 0 1px 0 0 rgba(35, 38, 59, 0.05);
}

.ais-NumericMenu-radio:checked:after {
  background: #3c4fe0;
  border-radius: 50%;
  bottom: 4px;
  content: "";
  left: 4px;
  position: absolute;
  right: 4px;
  top: 4px;
}

/**
 * HierarchicalMenu
 */
.ais-HierarchicalMenu-list .ais-HierarchicalMenu-list {
  margin-left: 1.5rem;
}

.ais-HierarchicalMenu-link::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23b6b7d5%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%2218%2015%2012%209%206%2015%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  height: 1rem;
  margin-right: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: 1rem;
}

.ais-HierarchicalMenu-item--selected > .ais-HierarchicalMenu-link::before {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%235468ff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
}

/**
 * RatingMenu
 */
.ais-RatingMenu-starIcon {
  margin-right: 0.25rem;
}

.ais-RatingMenu-starIcon {
  fill: #5a5e9a;
  position: relative;
  width: 16px;
}

.ais-RatingMenu-item--disabled .ais-RatingMenu-starIcon {
  fill: #b6b7d5;
}

.ais-RatingMenu-item--disabled .ais-RatingMenu-count,
.ais-RatingMenu-item--disabled .ais-RatingMenu-label {
  color: #b6b7d5;
}

/**
 * ClearRefinements
 */
.ais-ClearRefinements-button {
  width: 100%;
}

/**
 * CurrentRefinements
 */
.ais-CurrentRefinements-list {
  display: inline-grid;
  gap: 1rem;
  grid-auto-flow: column;
}

.ais-CurrentRefinements-item {
  align-items: center;
  background-color: #f5f5fa;
  border: 1px solid #b6b7d5;
  border-radius: 3px;
  display: flex;
  display: inline-flex;
  font-size: 0.875rem;
  line-height: 1.5;
  min-height: 1.5rem;
  padding: 0.05rem 0.5rem;
}

.ais-CurrentRefinements-category {
  display: flex;
  margin-left: 0.5rem;
}

.ais-CurrentRefinements-delete {
  color: #9698c3;
  height: 100%;
  margin-left: 0.25rem;
  outline-width: 0;
}

/**
 * ToggleRefinement
 */
.ais-ToggleRefinement-label {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.ais-ToggleRefinement-checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: rgba(65, 66, 71, 0.08);
  background: #f5f5fa;
  border-radius: 9999px;
  box-shadow: inset 0 1px 4px 0 rgba(119, 122, 175, 0.4);
  height: 18px;
  pointer-events: none;
  position: relative;
  width: 32px;
}

.ais-ToggleRefinement-checkbox:checked {
  background: #3c4fe0;
  box-shadow: inset 0 1px 4px 0 rgba(35, 38, 59, 0.1);
}

.ais-ToggleRefinement-checkbox:focus {
  outline: 0;
}

.ais-ToggleRefinement-checkbox::after {
  background: linear-gradient(-180deg, #fff, #f5f5fa);
  border-radius: 9999px;
  box-shadow: 1px 1px 1px 0 rgba(35, 38, 59, 0.05);
  content: "";
  height: 16px;
  left: 1px;
  position: absolute;
  top: 1px;
  transition: all 100ms ease-in-out;
  width: 16px;
}

.ais-ToggleRefinement-checkbox:checked::after {
  transform: translateX(14px);
}

/**
 * RangeInput
 */
.ais-RangeInput-input {
  align-items: center;
  background-color: #fff;
  border: 1px solid #d6d6e7;
  border-radius: 3px;
  box-shadow: inset 0 1px 4px 0 rgba(119, 122, 175, 0.3);
  caret-color: #5a5e9a;
  color: #23263b;
  cursor: text;
  display: flex;
  flex: 1;
  font-size: 0.875rem;
  height: 2rem;
  line-height: 1.25rem;
  min-width: 0;
  overflow: hidden;
  padding: 0 1rem;
  position: relative;
}

.ais-RangeInput-input:focus {
  border-color: #3c4fe0;
  box-shadow: 0 1px 0 0 rgba(35, 38, 59, 0.05);
  outline: 0;
}

.ais-RangeInput-separator {
  margin: 0 0.5rem;
}

.ais-RangeInput-submit {
  margin-left: 0.5rem;
}

/**
 * RangeSlider
 */
.ais-RangeSlider .rheostat {
  margin: 40px 6px;
}

.ais-RangeSlider .rheostat-horizontal {
  cursor: pointer;
  width: calc(100% - 15px);
}

.ais-RangeSlider .rheostat-background {
  background-color: transparent;
  border: none;
  border-radius: 3px;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 0.5px 0 0 rgba(255, 255, 255, 0.05);
  height: 4px;
}

.ais-RangeSlider .rheostat-progress {
  background-color: #3c4fe0;
  border-radius: 3px;
  height: 4px;
  max-width: 100%;
  top: 0;
}

.ais-RangeSlider .rheostat-tooltip {
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.ais-RangeSlider .rheostat-handle {
  background-color: #fff;
  background-image: linear-gradient(-180deg, #fff, #fcfcfd);
  border: 1px solid #d6d6e7;
  border-radius: 2px;
  box-shadow: 0 1px 0 0 rgba(35, 38, 59, 0.05);
  height: 24px;
  margin-left: -6px;
  top: -11px;
  width: 12px;
}

.ais-RangeSlider .rheostat-handle::before,
.ais-RangeSlider .rheostat-handle::after {
  background-color: #d6d6e7;
  content: "";
  height: 12px;
  position: absolute;
  top: 6px;
  width: 1px;
}

.ais-RangeSlider .rheostat-handle::before {
  left: 4px;
}

.ais-RangeSlider .rheostat-handle::after {
  right: 4px;
}

.ais-RangeSlider .rheostat-marker {
  background-color: #d6d6e7;
}

/**
 * Pagination
 */
.ais-Pagination-item:first-child > .ais-Pagination-link {
  border-radius: 3px 0 0 3px;
}

.ais-Pagination-item + .ais-Pagination-item > .ais-Pagination-link {
  border-radius: 0;
  margin-left: -1px;
}

.ais-Pagination-item:last-child > .ais-Pagination-link {
  border-radius: 0 3px 3px 0;
}

.ais-Pagination-item {
  display: inline-block;
}

.ais-Pagination-item--selected .ais-Pagination-link {
  font-weight: bold;
}

/**
 * Breadrumb
 */
.ais-Breadcrumb-link,
.ais-Breadcrumb-separator {
  color: #5a5e9a;
}

.ais-Breadcrumb-separator {
  display: flex;
  margin: 0 0.5rem;
}

.ais-Breadcrumb-item--selected {
  font-weight: 600;
}

.ais-Breadcrumb-item--selected .ais-Breadcrumb-separator {
  font-weight: normal;
}

@media (max-width: 767px) {
  .ais-SearchBox-input,
  .ais-RangeInput-input {
    font-size: 1rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .ais-Carousel-navigation {
    display: none;
  }
}
.ais-Carousel:hover .ais-Carousel-navigation:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.ais-Carousel-navigation,
.ais-Carousel-navigation[hidden] {
  opacity: 0;
  visibility: hidden;
}

.ais-Carousel-list {
  padding-bottom: 0.5rem;
  gap: 0.5rem;
  outline-color: #3c4fe0;
  outline-offset: 0.5rem;
  scrollbar-color: #111432 #b6b7d5;
  scrollbar-width: thin;
}

.ais-Carousel-list::-webkit-scrollbar {
  height: 2px;
}

.ais-Carousel-list::-webkit-scrollbar-track {
  background-color: #b6b7d5;
}

.ais-Carousel-list::-webkit-scrollbar-thumb {
  background-color: #111432;
}

/* Mixins and functions */
.InstantSearch_main * {
  box-sizing: border-box;
  font-size: 14px;
  box-shadow: none;
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .noProducts .noProducts h3 {
    font-size: 1rem;
  }
}
.InstantSearch_main .noProducts h3 {
  text-transform: uppercase;
  font-size: 2vw;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.3411764706);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.InstantSearch_main .lSide .filter-wrapper {
  background-color: #fff;
  padding: 15px 15px;
  padding-bottom: 100px;
  width: 290px;
  overflow: auto;
  height: 100%;
}
.InstantSearch_main .lSide .filter-wrapper .sidebarMobile {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  font-style: normal;
  line-height: normal;
  padding-bottom: 15px;
  border-bottom: 1px solid #EEEEEE;
  margin-bottom: 0px;
}
.InstantSearch_main .lSide .filter-wrapper .sidebarMobile .sidebarText {
  font-size: 1.375rem;
  font-weight: 500;
  color: #003C68;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}
@media (max-width: 1279.98px) {
  .InstantSearch_main .lSide .filter-wrapper .sidebarMobile .sidebarText {
    font-size: 1rem;
  }
}
.InstantSearch_main .lSide .filter-wrapper .sidebarMobile .ais-ClearRefinements-button {
  display: inline-flex;
  font-size: 0.9375rem;
  font-weight: 400;
  cursor: pointer;
  background-color: #fff;
  padding: 0;
  background-image: none;
  border: none;
  opacity: 1;
  color: #444;
  font-family: Roboto, sans-serif;
  margin-right: 25px;
}
.InstantSearch_main .lSide .filter-wrapper .sidebarMobile .ais-ClearRefinements-button .icon-refresh {
  margin-right: 5px;
  font-size: 1.25rem;
  color: var(--main-color);
  position: relative;
  top: 5px;
}
.InstantSearch_main .lSide .filter-wrapper .sidebarMobile .ais-ClearRefinements-button .icon-refresh:before {
  content: "\e901";
}
@media (max-width: 1279.98px) {
  .InstantSearch_main .lSide .filter-wrapper .sidebarMobile .ais-ClearRefinements-button {
    display: inline-flex !important;
  }
}
@media (min-width: 1280px) {
  .InstantSearch_main .lSide .filter-wrapper .sidebarMobile .sidebarIcon {
    display: none;
  }
}
.InstantSearch_main .lSide .filter-wrapper .sidebarMobile .sidebarIcon::after {
  content: "×";
  position: absolute;
  right: 0;
  top: -6px;
  font-size: 28px;
}
@media only screen and (max-width: 1279.98px) {
  .InstantSearch_main .lSide.filter-wrapper-top {
    padding: 0;
    top: 0;
    transform: translateX(-100%);
    position: fixed;
    left: 0;
    cursor: pointer;
    z-index: 9999;
    height: 100% !important;
    visibility: hidden;
    opacity: 0;
  }
  .InstantSearch_main .lSide.filter-wrapper-top .closeIconFilter {
    border-radius: 0;
    position: fixed;
    left: 290px;
    top: 0;
    background: var(--clr_5);
    color: #fff !important;
    height: 30px;
    width: 30px;
    display: grid !important;
    place-items: center;
    cursor: pointer;
    z-index: 9999;
  }
  .InstantSearch_main .lSide.filter-wrapper-top .closeIconFilter:before {
    content: "X";
  }
  .InstantSearch_main .lSide.filter-wrapper-top.active {
    width: 100%;
    max-width: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.5098039216);
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.3s !important;
    transform: translateX(0%) !important;
  }
}
.InstantSearch_main .lSide .ais-Panel.color.for-section-show {
  display: block;
}
.InstantSearch_main .lSide .ais-Panel.sectionName {
  display: none; /* hidden by default */
}
.InstantSearch_main .lSide .ais-Panel.Category .ais-RefinementList-count {
  display: none; /* hidden by default */
}
.InstantSearch_main .lSide .ais-Panel.sectionName.for-section-show.showUl {
  display: block;
}
.InstantSearch_main .lSide .ais-RefinementList--noRefinement + .ais-Panel.sectionName {
  display: none;
}
.InstantSearch_main .lSide .ais-RefinementList-list.showUl + .ais-Panel.sectionName {
  display: block;
}
.InstantSearch_main .lSide .ais-Panel .slider-thumb:before {
  top: 1.6rem !important;
  left: 0px !important;
}
.InstantSearch_main .lSide .ais-Panel .slider-thumb:after {
  top: 1.6rem !important;
  left: 10px !important;
}
.InstantSearch_main .lSide .filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.InstantSearch_main .lSide .filter-header .filters-Heading {
  font-size: 2rem;
  font-weight: 300;
  color: #000;
  font-family: "Alexandria", sans-serif !important;
}
@media only screen and (max-width: 1279.98px) {
  .InstantSearch_main .lSide .filter-header .filters-Heading {
    font-size: 1rem;
  }
}
.InstantSearch_main .lSide .filter-header .ais-ClearRefinements button {
  font-size: 1.25rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  font-family: Antonio, serif;
  background-color: transparent;
  border: none;
  background-image: none;
}
@media only screen and (max-width: 1279.98px) {
  .InstantSearch_main .lSide .filter-header .ais-ClearRefinements button {
    font-size: 1rem;
  }
}
.InstantSearch_main .lSide .ais-Panel {
  margin-bottom: 20px;
  margin-top: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
}
.InstantSearch_main .lSide .ais-Panel.price .ais-Panel-body {
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.InstantSearch_main .lSide .ais-Panel.price .ais-Panel-body .slider-root {
  cursor: pointer;
}
.InstantSearch_main .lSide .ais-Panel.price .ais-Panel-body .slider-root [style="transform: var(--radix-slider-thumb-transform); position: absolute; left: calc(100% - 10px);"] :after {
  left: calc(100% - 25px) !important;
}
.InstantSearch_main .lSide .ais-Panel.price .ais-Panel-body .slider-root [style="transform: var(--radix-slider-thumb-transform); position: absolute; left: calc(100% - 10px);"] :before {
  left: calc(100% - 33px) !important;
}
.InstantSearch_main .lSide .ais-Panel .ais-Panel-header {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: capitalize;
  border-bottom: 0px solid #c6ced0;
  padding-bottom: 5px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  color: #444;
  font-family: var(--font-family-roboto);
}
.InstantSearch_main .lSide .ais-Panel div.ais-RefinementList.dynamic-css {
  max-height: 250px;
  overflow: hidden auto;
}
.InstantSearch_main .lSide .ais-Panel div.ais-RefinementList.dynamic-css label.ais-RefinementList-label {
  margin-bottom: 10px;
  color: var(--txt-color);
  font-size: 1rem;
  font-weight: var(--font-body-weight);
  left: 0;
  transition: position 0.5s;
  line-height: var(--font-body-lineheight);
}
.InstantSearch_main .lSide .ais-Panel div.ais-RefinementList.dynamic-css label.ais-RefinementList-label input[type=checkbox] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border: 1px solid #EEEEEE;
}
.InstantSearch_main .lSide .ais-Panel div.ais-RefinementList.dynamic-css label.ais-RefinementList-label .ais-RefinementList-labelText {
  font-size: 0.9375rem;
}
.InstantSearch_main .lSide .ais-Panel div.ais-RefinementList.dynamic-css .ais-RefinementList-item--selected .ais-RefinementList-labelText {
  color: #f78f1e;
}
.InstantSearch_main .lSide .ais-Panel div.ais-RefinementList.dynamic-css .ais-RefinementList-item--selected input[type=checkbox] {
  border: 1px solid #f78f1e;
  background-image: none;
}
.InstantSearch_main .lSide .ais-Panel .slider-thumb:before {
  content: "$";
  position: absolute;
  top: 1.6rem;
  left: -14px;
}
.InstantSearch_main .lSide .ais-Panel .slider-thumb:after {
  right: 5px;
}
.InstantSearch_main .lSide .ais-Panel .slider-thumb:before {
  content: "$";
  position: absolute;
  top: 1.5rem;
  left: -12px;
}
.InstantSearch_main .lSide .ais-Panel.color .ais-RefinementList-list li {
  display: inherit;
  text-align: center;
}
.InstantSearch_main .lSide .ais-Panel.color .ais-RefinementList-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 1;
  margin-right: 10px;
  border: 1px solid #eee;
  background-image: none;
}
.InstantSearch_main .lSide .ais-Panel.color .ais-RefinementList-labelText span {
  vertical-align: middle;
  border: 1px solid #777;
}
.InstantSearch_main .lSide .ais-Panel.color .ais-RefinementList-labelText span.Charcoal {
  background-color: rgb(54, 69, 79);
}
.InstantSearch_main .lSide .ais-Panel.color .ais-RefinementList-labelText span.Burgundy {
  background-color: rgb(128, 0, 32);
}
.InstantSearch_main .lSide .ais-Panel.color .colorName {
  margin-bottom: 10px;
  color: #444;
  font-size: 0.9375rem;
  font-weight: var(--font-body-weight);
  left: 0;
  transition: position 0.5s;
  line-height: var(--font-body-lineheight);
  outline: none !important;
  border: none !important;
  margin-left: 15px;
}
.InstantSearch_main .lSide .ais-Panel.color .ais-RefinementList-count {
  display: none;
}
.InstantSearch_main .lSide .facet {
  margin-bottom: 24px;
  font-size: 14px !important;
  color: #000;
}
.InstantSearch_main .lSide .facet h5 {
  margin: 0 0 6px;
  padding: 0 0 6px;
  text-transform: uppercase;
  border-bottom: 2px solid #eee;
}
.InstantSearch_main .lSide .facet ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.InstantSearch_main .lSide .facet ul li {
  margin-bottom: 3px;
}
.InstantSearch_main .lSide .facet a:visited,
.InstantSearch_main .lSide .facet a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.InstantSearch_main .lSide .ais-Menu-item {
  margin-bottom: 5px;
}
.InstantSearch_main .lSide .ais-RefinementList-label,
.InstantSearch_main .lSide .ais-HierarchicalMenu-list .facet-item,
.InstantSearch_main .lSide .ais-Menu-link {
  vertical-align: top;
  cursor: pointer;
  margin: 15px 10px 0 0;
  border-radius: 50%;
  position: relative;
  font-size: 12px;
  width: 100%;
  height: 20px;
  padding: 0;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.InstantSearch_main .lSide .ais-HierarchicalMenu-list .ais-HierarchicalMenu-item {
  margin: 3px 0;
}
.InstantSearch_main .lSide .ais-HierarchicalMenu-link {
  display: block;
}
.InstantSearch_main .lSide .sffv_no-results {
  font-size: 13px;
  line-height: 1.2;
  padding-top: 6px;
}
.InstantSearch_main .lSide .ais-RefinementList-item--selected .ais-RefinementList-label input {
  border: 1px solid #F78F1E !important;
  box-shadow: none;
}
.InstantSearch_main .lSide .ais-RefinementList-label:hover,
.InstantSearch_main .lSide .ais-RefinementList-item--selected .ais-RefinementList-label,
.InstantSearch_main .lSide .ais-Menu-link:hover,
.InstantSearch_main .lSide .ais-Menu-item--selected .ais-Menu-link[class],
.InstantSearch_main .lSide .ais-HierarchicalMenu-list .facet-item.active:hover,
.InstantSearch_main .lSide .ais-HierarchicalMenu-list .facet-item.active {
  color: #F78F1E;
}
.InstantSearch_main .lSide .ais-RefinementList-item--selected .ais-RefinementList-label:hover,
.InstantSearch_main .lSide .ais-Menu-item--selected .ais-Menu-link:hover,
.InstantSearch_main .lSide .ais-HierarchicalMenu-list .facet-item.active:hover {
  text-decoration: none;
  color: #F78F1E;
}
.InstantSearch_main .lSide .ais-RefinementList-count,
.InstantSearch_main .lSide .ais-HierarchicalMenu-count,
.InstantSearch_main .lSide .ais-Menu-count,
.InstantSearch_main .lSide .ais-RatingMenu-count,
.InstantSearch_main .lSide .ais-ToggleRefinement-count {
  position: relative;
  float: right;
  color: #999;
  background: transparent;
  border: 0;
}
.InstantSearch_main .lSide .sectionName .ais-RefinementList-count {
  display: none;
}
.InstantSearch_main .lSide .ais-RefinementList-showMore,
.InstantSearch_main .lSide .ais-Menu-showMore {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: Oswald, sans-serif;
  color: #f78f1e;
  text-transform: capitalize;
  border: none;
  padding: 0;
}
.InstantSearch_main .lSide .ais-RefinementList-showMore:focus, .InstantSearch_main .lSide .ais-RefinementList-showMore:active,
.InstantSearch_main .lSide .ais-Menu-showMore:focus,
.InstantSearch_main .lSide .ais-Menu-showMore:active {
  outline: none;
  border: none;
  background: none;
  box-shadow: none;
  color: var(--txt-color-light) !important;
}
.InstantSearch_main .lSide .ais-RefinementList-showMore:hover,
.InstantSearch_main .lSide .ais-Menu-showMore:hover {
  color: var(--main-color) !important;
}
.InstantSearch_main .lSide .ais-RefinementList-showMore:hover,
.InstantSearch_main .lSide .ais-RefinementList-showMore:focus,
.InstantSearch_main .lSide .ais-Menu-showMore:hover,
.InstantSearch_main .lSide .ais-Menu-showMore:focus {
  opacity: 1;
  color: var(--main-color);
}
.InstantSearch_main .lSide .ais-RefinementList-showMore .isShowingMore:before,
.InstantSearch_main .lSide .ais-RefinementList-showMore .isShowingLess:before,
.InstantSearch_main .lSide .ais-Menu-showMore .isShowingMore:before,
.InstantSearch_main .lSide .ais-Menu-showMore .isShowingLess:before {
  font-family: FontAwesome;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  display: inline-block;
  position: relative;
  content: "";
  margin: 0 5px 0 0;
}
.InstantSearch_main .lSide .ais-RefinementList-showMore .isShowingMore:before,
.InstantSearch_main .lSide .ais-Menu-showMore .isShowingMore:before {
  content: "\f0fe";
}
.InstantSearch_main .lSide .ais-RefinementList-showMore .isShowingLess:before,
.InstantSearch_main .lSide .ais-Menu-showMore .isShowingLess:before {
  content: "$backslashf146";
}
.InstantSearch_main .lSide .ais-SearchBox-input {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #ccc !important;
  border-radius: 4px;
  font-size: 14px;
  padding: 5px 20px;
  padding-left: 30px;
  box-shadow: none !important;
}
.InstantSearch_main .lSide .ais-HierarchicalMenu-link::before,
.InstantSearch_main .lSide .ais-HierarchicalMenu-item--selected > .ais-HierarchicalMenu-link::before {
  transform: rotateX(180deg);
  vertical-align: middle;
}
.InstantSearch_main .lSide .resetsymbol {
  cursor: pointer;
}
@media only screen and (max-width: 1279.98px) {
  .InstantSearch_main .rSide.col-md-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.InstantSearch_main .rSide .Search-header {
  display: flex;
}
.InstantSearch_main .rSide .Search-header .ais-SearchBox {
  width: 100%;
}
.InstantSearch_main .rSide .voice-search {
  display: flex;
}
.InstantSearch_main .rSide .voice-search button {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-left: -1px;
  padding: 0 10px;
}
.InstantSearch_main .rSide .sort-header {
  width: 100%;
  position: static;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--lightbackground);
  padding: 19px 20px;
}
.InstantSearch_main .rSide .sort-header .filter-responsive {
  width: 100%;
}
@media only screen and (max-width: 1279.98px) {
  .InstantSearch_main .rSide .sort-header .filter-responsive {
    width: auto;
  }
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .rSide .sort-header .filter-responsive {
    display: none;
  }
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .sort-header .filter-responsive {
    order: -1;
    width: 100%;
  }
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .sort-header {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.InstantSearch_main .rSide .sort-header .ais-Stats {
  margin-right: auto;
}
.InstantSearch_main .rSide .sort-header .ais-Stats .ais-Stats-text {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-family-roboto);
  color: #444;
  margin-bottom: 0;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .sort-header .ais-Stats .ais-Stats-text {
    display: block;
    text-align: center;
  }
}
.InstantSearch_main .rSide .sort-header .ais-HitsPerPage-select {
  box-shadow: none !important;
  font-size: 14px;
  height: 2.2rem;
  -webkit-appearance: auto;
  outline: none;
  border: 0;
  appearance: auto;
  -moz-appearance: auto;
  background-image: none;
  padding-right: 15px;
}
.InstantSearch_main .rSide .sort-header .ais-HitsPerPage-select option {
  font-size: 13px;
}
.InstantSearch_main .rSide .sort-header .ais-SortBy {
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 390.98px) {
  .InstantSearch_main .rSide .sort-header .ais-SortBy {
    width: 100%;
  }
}
.InstantSearch_main .rSide .sort-header .ais-SortBy:before {
  content: "Sort By:";
  display: inline-block;
  width: auto;
  white-space: nowrap;
  font-size: 0.875rem !important;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  margin-right: 8px;
}
.InstantSearch_main .rSide .sort-header .ais-SortBy-select {
  width: 190px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px 40px 10px 20px;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: -0.09px;
  line-height: 18px;
  color: #444;
  border-radius: 30px;
  outline: none;
  border: 2px solid #444444;
  font-family: var(--font-family-roboto);
  background-image: none;
  background-color: #fff;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .sort-header .ais-SortBy-select {
    font-size: 12px !important;
    min-width: auto;
  }
}
@media only screen and (max-width: 390.98px) {
  .InstantSearch_main .rSide .sort-header .ais-SortBy-select {
    width: 99%;
  }
}
.InstantSearch_main .rSide .sort-header .ais-SortBy-select option {
  font-size: 13px;
  color: var(--txt-color);
  padding: 2px 5px;
  font-weight: var(--font-body-weight);
  transition: 0.3s;
  cursor: pointer;
  display: block;
}
.InstantSearch_main .rSide .sort-header .shorting-Mob {
  display: none;
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .rSide .sort-header .shorting-Mob {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .InstantSearch_main .rSide .sort-header .shorting-Mob .view-toggle {
    margin-left: 0px;
  }
  .InstantSearch_main .rSide .sort-header .shorting-Mob .ais-Stats {
    margin-right: unset;
  }
}
.InstantSearch_main .rSide .sort-header .filtermovebottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  background: #fff;
  display: done;
  padding: 10px;
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .rSide .sort-header .filtermovebottom {
    display: flex;
  }
}
.InstantSearch_main .rSide .sort-header .filtermovebottom .sorting {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.InstantSearch_main .rSide .sort-header .filtermovebottom .sorting svg {
  font-size: 18px;
  color: var(--clr_5);
}
.InstantSearch_main .rSide .sort-header .filtermovebottom .sorting .ais-SortBy {
  display: flex;
  flex-direction: column;
  text-align: left;
  align-items: flex-start;
  justify-content: center;
  flex: 0 0 50%;
  max-width: 50%;
  color: #fff;
  height: 40px;
}
.InstantSearch_main .rSide .sort-header .filtermovebottom .sorting .ais-SortBy .ais-SortBy-select {
  padding: 0px;
  background-color: transparent;
  border: none;
  font-size: 8px;
}
.InstantSearch_main .rSide .sort-header .filtermovebottom .filterIcon {
  color: #333333;
  font-weight: 700;
  flex: 1;
}
.InstantSearch_main .rSide .sort-header .filtermovebottom .filterIcon svg {
  color: #F78F1E;
  font-size: 18px;
  margin-right: 5px;
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .rSide .sort-header .view-toggle.desktop,
  .InstantSearch_main .rSide .sort-header .sortBy-desktop {
    display: none;
  }
}
.InstantSearch_main .rSide .sort-header .view-toggle {
  display: flex;
  margin-left: 20px;
}
.InstantSearch_main .rSide .sort-header .view-toggle span {
  padding: 0;
  aspect-ratio: 1;
  margin-right: 10px;
}
.InstantSearch_main .rSide .sort-header .view-toggle span svg {
  font-size: 40px;
  color: #444;
  cursor: pointer;
}
.InstantSearch_main .rSide .sort-header .view-toggle span i {
  font-size: 16px;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .sort-header .view-toggle span {
    width: 30px;
    height: 30px;
  }
  .InstantSearch_main .rSide .sort-header .view-toggle span i {
    font-size: 15px;
  }
}
.InstantSearch_main .rSide .sort-header .view-toggle .active svg {
  color: #ff9d2a;
}
.InstantSearch_main .rSide .ais-CurrentRefinements {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
.InstantSearch_main .rSide .ais-CurrentRefinements li.ais-CurrentRefinements-item span {
  font-size: 12px;
  color: var(--main-color);
  background: transparent;
}
.InstantSearch_main .rSide .ais-Hits-item {
  border: 1px solid transparent !important;
  padding: 0;
  padding-bottom: 15px;
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .rSide .ais-Hits-item {
    padding-bottom: 0px;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit-url {
  width: 100%;
}
.InstantSearch_main .rSide .ais-Hits-item .hit {
  font-size: 0;
  padding: 15px 0;
  border: 1px solid #eee;
  width: 100%;
}
.InstantSearch_main .rSide .ais-Hits-item .hit:hover {
  border-color: var(--main-color);
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image {
  display: inline-block;
  text-align: center;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .featureIcon {
  position: absolute;
  left: 15px;
  top: 10px;
  display: flex;
  row-gap: 5px;
  gap: 15px;
  margin-bottom: 15px;
  z-index: 1;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .featureIcon img {
  width: 100px;
  height: 45px;
  object-fit: contain;
  transform: scale(1);
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box {
  gap: 15px;
  display: none;
  position: absolute;
  align-items: flex-end;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: right;
  transition: 0.3s;
  transform-origin: bottom;
  padding: 10px;
  border-radius: 50px;
  z-index: 1;
}
@media only screen and (max-width: 1024.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box {
    display: none !important;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box button,
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box .wishlistIcon {
  height: 40px;
  width: 40px;
  background-color: var(--main-color);
  border: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transform: scale(1);
  transition: 0.3s;
  margin-bottom: 5px;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box button.checked i,
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box .wishlistIcon.checked i {
  color: var(--clr-black);
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box button:hover span,
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box .wishlistIcon:hover span {
  display: block !important;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box button i,
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box .wishlistIcon i {
  color: var(--clr-white);
  font-size: 20px;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box button span,
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box .wishlistIcon span {
  display: none !important;
  color: var(--clr-white);
  white-space: nowrap;
  position: absolute;
  background: var(--clr-black);
  margin: 0 5px;
  padding: 10px;
  border-radius: 4px;
  top: -48px;
  margin-right: 5px;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box button span::after,
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image .icons-box .wishlistIcon span::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px;
  border-style: solid;
  border-color: var(--clr-black) transparent transparent transparent;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hits-image img {
  max-width: 100%;
  height: 180px;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 13px;
  font-weight: 300;
  width: 75%;
  margin-left: 7%;
  vertical-align: top;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name > .ais-Highlight-highlighted,
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name > .ais-Highlight-nonHighlighted {
  font-size: 1.5rem;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name > .ais-Highlight-highlighted,
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name > .ais-Highlight-nonHighlighted {
    font-size: 0.875rem !important;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name {
  margin-bottom: 0px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-weight: 600;
  color: var(--clr-black);
  font-family: Antonio, serif;
  text-transform: uppercase;
  text-align: center;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name span {
  width: auto !important;
  font-family: "Antonio", serif !important;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name {
    font-size: 0.875rem !important;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name:hover {
  color: var(--main-color);
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-name > .ais-Highlight-highlighted {
  background-color: transparent;
  padding: 0;
  color: var(--main-color);
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-code {
  font-size: 1rem;
  color: var(--txt-color-light);
  font-weight: 600;
  line-height: 14px;
  margin: 0px 0 10px 0;
  font-family: Alexandria, sans-serif;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-code {
    font-size: 0.75rem;
    margin-bottom: 5px;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-category-breadcrumb {
  font-size: 13px;
  margin: 5px 0 2px;
  display: none;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price {
  margin-left: 0;
  background: transparent;
  padding: 4px;
  font-family: Alexandria, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--txt-color-light);
  text-align: center;
  margin-top: 0px;
  padding-left: 0;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price .discount-code {
  font-size: 16px;
  color: #888888;
  font-weight: 600;
  margin-left: 5px;
}
@media (max-width: 1024.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price .discount-code {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price .discount-code {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price {
    font-size: 0.75rem;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price .price-span {
  color: var(--main-color);
  font-size: 1.1875rem;
  font-weight: 600;
  line-height: 21px;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-price .price-span {
    font-size: 0.75rem;
  }
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content .hit-description {
  color: #868686;
  margin: 1px 0 10px;
  font-size: 14px;
  display: none;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content ul.color-list {
  list-style: none;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content ul.color-list li.color-item {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 10px;
  margin-right: 6px;
  position: relative;
}
.InstantSearch_main .rSide .ais-Hits-item .hit .hit-content ul.color-list li.color-item span {
  position: absolute;
  top: 2px;
  left: 30px;
  display: none;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 40px;
  padding-top: 30px;
}
@media (max-width: 600px) {
  .InstantSearch_main .rSide .grid-view .ais-Hits-list {
    grid-template-columns: 50% 50%;
  }
}
@media only screen and (max-width: 991.98px) {
  .InstantSearch_main .rSide .grid-view .ais-Hits-list {
    grid-template-columns: repeat(3, minmax(215px, 1fr));
  }
}
@media only screen and (max-width: 768.98px) {
  .InstantSearch_main .rSide .grid-view .ais-Hits-list {
    grid-template-columns: repeat(2, minmax(215px, 1fr));
  }
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .grid-view .ais-Hits-list {
    grid-template-columns: repeat(2, minmax(137px, 1fr));
  }
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item {
  align-items: flex-start;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit-url {
  width: 100%;
  height: 100%;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit-url:hover {
  color: var(--main-color);
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit-url:hover span {
  color: var(--main-color);
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item {
  position: relative;
  flex-direction: column;
  overflow: hidden;
  background-color: transparent;
  padding: 30px 20px;
  border: 1px solid transparent !important;
  border-radius: 0px;
  height: 100%;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item:hover .icons-box {
  display: flex;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item:hover {
  border: 1px solid var(--main-color) !important;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item:hover .hits-image img {
  transform: scale(1.1);
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-price {
  float: none !important;
  width: 100%;
  order: 5;
  padding: 0 !important;
  margin: 0 !important;
  margin-top: 0px !important;
  align-items: flex-end;
  gap: 5px;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-category-breadcrumb {
  display: none;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-weight: 600;
  color: var(--clr-black);
  font-family: "Antonio", serif !important;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  max-width: 250px; /* Adjust this as needed */
  min-height: 25px;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-name {
    font-size: 0.875rem !important;
    margin-bottom: 5px;
  }
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-name .ais-Highlight-nonHighlighted,
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-name .ais-Highlight-highlighted {
  width: 100%;
  margin: 0;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hits-image {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
  overflow: hidden;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hits-image img {
  width: 100%;
  height: auto;
  transition: 0.3s;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-name span {
  width: auto !important;
  font-family: "Antonio", serif !important;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-name mark {
  width: auto !important;
  font-family: "Antonio", serif !important;
}
.InstantSearch_main .rSide .grid-view .ais-Hits-list .ais-Hits-item .hit.hits-item .hit-description {
  height: 88px;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* this can be any value you want */
  display: none;
}
.InstantSearch_main .rSide .list-view .ais-Hits-list {
  grid-template-columns: 1fr;
  margin-top: 30px;
}
.InstantSearch_main .rSide .list-view .ais-Hits-list .product-card {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  margin-bottom: 30px;
}
.InstantSearch_main .rSide .list-view .ais-Hits-list .product-card .icons-box {
  opacity: 1;
  visibility: visible;
  transform: translate(-275%, 50%);
}
.InstantSearch_main .rSide .list-view .ais-Hits-list .product-card .card-upper-block {
  width: 30%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.InstantSearch_main .rSide .list-view .ais-Hits-list .product-card .card-block {
  width: 70%;
  height: 100%;
}
.InstantSearch_main .rSide .list-view .ais-Hits-list .product-card .card-block .list-content {
  padding: 0;
  margin-top: 15px;
  text-align: left;
}
.InstantSearch_main .rSide .list-view .ais-Hits-list .product-card .card-block .list-content .product-code {
  border: none;
  padding-bottom: 0px;
}
.InstantSearch_main .rSide .list-view .hit-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  font-weight: 600;
  color: var(--clr-black);
  font-family: "Antonio", serif !important;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  min-height: 25px;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .list-view .hit-name {
    max-width: 180px; /* Adjust this as needed */
  }
}
.InstantSearch_main .rSide .list-view .hit-code {
  margin: 15px 0 15px 0 !important;
}
@media only screen and (max-width: 575.98px) {
  .InstantSearch_main .rSide .list-view .hit-code {
    margin: 5px 0 5px 0 !important;
  }
}
.InstantSearch_main .rSide .list-view .hit-content {
  text-align: left !important;
}
.InstantSearch_main .rSide .list-view .hit-content .ais-Highlight.hit-name,
.InstantSearch_main .rSide .list-view .hit-content .hit-price {
  text-align: left !important;
  margin-bottom: 0;
}
.InstantSearch_main .rSide .list-view .hit.hits-item .hits-image {
  position: relative;
}
.InstantSearch_main .rSide .list-view .hit.hits-item .hits-image .featureIcon {
  top: 0;
}
.InstantSearch_main .rSide .list-view .hit.hits-item:hover .icons-box {
  display: flex;
}
.InstantSearch_main .rSide .noResultFound {
  padding: 20px;
}
.InstantSearch_main .rSide .noResultFound button.ais-ClearRefinements-button {
  display: inline-block;
  width: 130px;
  background: #ddd;
  box-shadow: none;
  border: 0px;
}
.InstantSearch_main .rSide #pagination {
  margin-top: 20px;
  margin-bottom: 20px;
}
.InstantSearch_main .rSide #pagination ul {
  font-size: 0;
  list-style-type: none;
  text-align: center;
  display: block;
}
.InstantSearch_main .rSide #pagination ul li {
  font-size: 14px;
  display: inline;
}
.InstantSearch_main .rSide #pagination ul li a,
.InstantSearch_main .rSide #pagination ul li span {
  padding: 8px 12px;
  text-decoration: none;
  color: #000;
  border: 1px solid #eee;
}
.InstantSearch_main .rSide #pagination ul li a:hover, .InstantSearch_main .rSide #pagination ul li a:hover,
.InstantSearch_main .rSide #pagination ul li span:hover,
.InstantSearch_main .rSide #pagination ul li span:hover {
  background: #f5f5f5;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item {
  padding: 3px;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item:last-child {
  border-right: 1px solid #eee;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item--selected a {
  color: var(--clr-white);
  border-color: var(--main-color) !important;
  background: var(--main-color) !important;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item--selected a:hover {
  cursor: default;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item--selected a .ais-Pagination-item--disabled {
  cursor: not-allowed;
}
.InstantSearch_main .rSide #pagination ul .ais-Pagination-item--selected a .ais-Pagination-item--disabled:hover {
  background: 0 0;
}
.container-fluid.headerTopSubWrap {
  position: relative;
}
@media (max-width: 1024.98px) {
  .container-fluid.headerTopSubWrap {
    display: flex;
    align-items: center;
  }
}
.search-container {
  position: relative;
  width: 66%;
  margin: 0 auto;
  z-index: 1;
}
@media only screen and (max-width: 1448px) {
  .search-container {
    width: 30%;
  }
}
@media only screen and (max-width: 1200px) {
  .search-container {
    width: 30%;
  }
}
.search-container .voice-search-container {
  position: relative;
  display: flex;
}
.search-container .voice-search-container.focused .aa-Form {
  border-color: var(--main-color);
  box-shadow: none;
  outline: medium none currentColor;
}
.search-container .voice-search-container .voice-search-input {
  width: 100%;
}
.search-container .voice-search-container .voice-search-input .aa-Form,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton {
  padding-right: 47px;
  width: 100%;
  border-radius: 50px;
  height: 50px;
  border: 1px solid var(--color-border);
  font-weight: var(--font-body-weight);
  background-color: #fff;
  font-size: 0.875rem;
}
.search-container .voice-search-container .voice-search-input .aa-Form:focus-within,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton:focus-within {
  border-color: var(--color-border);
  box-shadow: none;
}
.search-container .voice-search-container .voice-search-input .aa-Form svg,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton svg {
  color: #888;
  min-width: 20px;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-InputWrapper,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-InputWrapper {
  order: 1;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-InputWrapper .aa-Input,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-InputWrapper .aa-Input {
  padding: 0 10px;
  padding-left: 55px;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-InputWrapper .aa-Input::placeholder,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-InputWrapper .aa-Input::placeholder {
  color: #888;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-Label,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-Label {
  margin-bottom: 0 !important;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-Label button,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-Label button {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border: 0px solid transparent;
  border-radius: 50px;
  margin-left: 0;
  border-left: 0;
  position: absolute;
  right: 5px;
  top: 4px;
  bottom: 0px;
  cursor: pointer;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-Label button:before,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-Label button:before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: -6px;
  background-image: url('data:image/svg+xml;utf8,<svg stroke="currentColor" fill="white" stroke-width="0" viewBox="0 0 512 512" height="1em" width="1em" xmlns="http://www.w3.org/2000/svg"><path d="M337.509 305.372h-17.501l-6.571-5.486c20.791-25.232 33.922-57.054 33.922-93.257C347.358 127.632 283.896 64 205.135 64 127.452 64 64 127.632 64 206.629s63.452 142.628 142.225 142.628c35.011 0 67.831-13.167 92.991-34.008l6.561 5.487v17.551L415.18 448 448 415.086 337.509 305.372zm-131.284 0c-54.702 0-98.463-43.887-98.463-98.743 0-54.858 43.761-98.742 98.463-98.742 54.7 0 98.462 43.884 98.462 98.742 0 54.856-43.762 98.743-98.462 98.743z"></path></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-Label button svg,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-Label button svg {
  color: #fff;
  display: none;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-InputWrapperPrefix,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-InputWrapperPrefix {
  order: 3;
}
.search-container .voice-search-container .voice-search-input .aa-Form .aa-InputWrapperSuffix,
.search-container .voice-search-container .voice-search-input .aa-DetachedSearchButton .aa-InputWrapperSuffix {
  order: 2;
}
.search-container .voice-search-container .voice-search-button {
  cursor: pointer;
  width: 47px;
  background: var(--clr-white);
  border: 0px solid transparent;
  border-radius: 50px;
  border-left: 0;
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
}
.search-container .voice-search-container .voice-search-button svg {
  color: #888;
}
.search-container .voice-search-container .voice-search-button:hover svg {
  color: var(--secondary-color);
}
body[data-template=template4] .renSearch {
  top: -23px;
  left: 100px;
}
body[data-template=template4] .search-container .voice-search-container .voice-search-button {
  display: flex;
  align-items: center;
}
body[data-template=template4] .search-container .voice-search-container .voice-search-button svg {
  position: relative;
}
@media only screen and (max-width: 1448px) {
  body[data-template=template2] .search-container {
    right: 12%;
  }
}
.aa-Autocomplete {
  position: relative;
}
.aa-Panel {
  position: absolute; /* Or 'fixed' if you want it fixed to the viewport */
  top: 100%; /* Places it right below the input */
  left: 0;
  right: 0;
  z-index: 9999;
  overflow-x: auto;
  border-radius: 15px;
  margin-top: 5px;
  box-shadow: 0 0 5px #999;
  padding: 18px;
}
@media only screen and (max-width: 1024px) {
  .aa-Panel {
    min-width: auto;
    position: fixed;
    top: 144px !important;
  }
}
.aa-Panel .aa-SourceHeaderTitle {
  color: var(--clr_1);
}
.aa-Panel .aa-PanelLayout {
  padding: 0 !important;
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  gap: 15px;
  flex-wrap: nowrap !important;
}
@media only screen and (max-width: 575.98px) {
  .aa-Panel .aa-PanelLayout {
    width: max-content;
  }
}
.aa-Panel .aa-PanelLayout .aa-SourceHeader {
  margin-top: 0;
}
.aa-Panel .aa-PanelLayout [data-autocomplete-source-id=productsCategories] {
  width: 45%;
  border-right: 1px solid #ddd;
  line-height: normal;
}
@media only screen and (max-width: 480px) {
  .aa-Panel .aa-PanelLayout [data-autocomplete-source-id=productsCategories] {
    width: 100%;
    border-right: 0;
  }
}
.aa-Panel .aa-ItemIcon--picture {
  height: 70px !important;
  width: 70px !important;
}
.aa-Panel .aa-ItemContentBody {
  font-size: 14px;
  line-height: normal !important;
}
.aa-Panel .aa-ItemContentBody .aa-Price {
  font-size: 13px;
}
.aa-Panel .aa-ItemContentBody .aa-Price .currencySymbol {
  font-size: 14px;
}
.aa-Panel .aa-ItemContentBody .aa-ItemContentCategory {
  max-width: 258px;
  display: block;
}
.aa-Panel .aa-ItemContentBody .aa-ItemContentTitle {
  font-family: "Antonio", sans-serif;
}
.aa-Panel .aa-ItemContentBody .aa-ItemContentTitle mark {
  color: var(--clr_1);
}
.aa-Panel .aa-ItemContentBody .aa-ItemContentTitle .product-code {
  margin: 0;
}
.aa-Panel .aa-ItemContentBody .aa-ItemContentTitle span {
  margin: 0 7px;
}
@media only screen and (max-width: 1024px) {
  body:has(.headerWrapperMain:not(.fixed)) .aa-Panel {
    top: 201px !important;
  }
}
[data-autocomplete-source-id=suggestions] {
  max-width: 150px;
}
@media only screen and (max-width: 575.98px) {
  [data-autocomplete-source-id=suggestions] {
    max-width: 82px;
    display: none;
  }
}
[data-autocomplete-source-id=suggestions] .aa-Item {
  margin-bottom: -5px;
  background: transparent !important;
}
[data-autocomplete-source-id=suggestions] .aa-Item:focus-visible {
  border: none;
}
[data-autocomplete-source-id=suggestions] .aa-Item:hover {
  background: transparent;
  outline: none;
  box-shadow: none;
}
[data-autocomplete-source-id=suggestions] .aa-Item:hover a {
  color: var(--clr_1);
  transition: 0.3s;
}
.aa-DetachedOverlay {
  display: none !important;
}
.aa-Source[data-autocomplete-source-id=products] .aa-SourceNoResults {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.3411764706);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}/* Mixins and functions */
._uploadArtwork_1c5ko_2 form {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}
._uploadArtwork_1c5ko_2 form label {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}
@media (max-width: 1024.98px) {
  ._uploadArtwork_1c5ko_2 form label.datePickerLabel span {
    width: 100% !important;
    clear: both;
  }
}
@media (max-width: 767.98px) {
  ._uploadArtwork_1c5ko_2 form label {
    flex-wrap: wrap;
  }
}
._uploadArtwork_1c5ko_2 span {
  font-size: 1rem;
  color: var(--menu-color);
  flex: 0 0 220px;
  text-align: right;
  margin-right: 30px;
}
._uploadArtwork_1c5ko_2 span .ashterick {
  color: red;
  margin-right: 0 !important;
}
._uploadArtwork_1c5ko_2 span.WrapTextDanger {
  flex: 1 1 auto;
  display: flex !important;
  flex-direction: column;
  margin-right: 0 !important;
}
._uploadArtwork_1c5ko_2 span.WrapTextDanger small {
  display: flex !important;
}
@media (max-width: 1024.98px) {
  ._uploadArtwork_1c5ko_2 span {
    text-align: left;
  }
  ._uploadArtwork_1c5ko_2 span.dateLabel {
    display: block;
  }
}
._uploadArtwork_1c5ko_2 .flexLabel span {
  visibility: hidden;
}
._uploadArtwork_1c5ko_2 input[type=text],
._uploadArtwork_1c5ko_2 input[type=email],
._uploadArtwork_1c5ko_2 textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 0px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  border-width: 1px !important;
}
._uploadArtwork_1c5ko_2 input[type=text]:focus,
._uploadArtwork_1c5ko_2 input[type=email]:focus,
._uploadArtwork_1c5ko_2 textarea:focus {
  outline: none;
  border: 1px solid #ccc !important;
  border-radius: 5px !important;
  border-width: 1px !important;
}
._uploadArtwork_1c5ko_2 .drop-zone {
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
  height: 120px;
  display: inline-block;
  position: relative;
  border: 2px dashed #ccc;
}
._uploadArtwork_1c5ko_2 .file-input {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 0px !important;
}
._uploadArtwork_1c5ko_2 .alertMsg {
  color: var(--dark-gray);
  font-size: 0.75rem;
  text-transform: initial;
}
._uploadArtwork_1c5ko_2 .alertMsg .file-input input[type=file] {
  display: none;
}
._uploadArtwork_1c5ko_2 button {
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
._uploadArtwork_1c5ko_2 .file-tile {
  display: inline-block;
  float: left;
  margin-right: 15px;
}
._uploadArtwork_1c5ko_2 .file-tile .uploadedFile {
  background-color: #ccc;
  display: inline-block;
  width: auto;
  margin-bottom: 10px;
  padding: 5px;
  border-radius: 5px;
  line-height: 18px;
}
._uploadArtwork_1c5ko_2 .file-tile .uploadedFile span {
  font-size: 0.75rem;
}
._uploadArtwork_1c5ko_2 .remove-icon {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUuMCwgMC4wKSIgZmlsbD0iIzMzMzMzMyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNC4wLCAwLjApIj48cG9seWdvbiBwb2ludHM9IjcuNzE5IDQuOTY0IDEyLjY5MiAwLjAxNyAxNC4zODkgMS43MTUgOS40MTIgNi42NjYgMTQuMzU0IDExLjYzNCAxMi42NTcgMTMuMzMxIDYuMDE3IDYuNjU3IDcuNzE1IDQuOTYwIj48L3BvbHlnb24+PHBvbHlnb24gcG9pbnRzPSI3LjYxMiA0Ljk2NCA3LjYxNiA0Ljk2MCA5LjMxMyA2LjY1NyAyLjY3NCAxMy4zMzEgMC45NzcgMTEuNjM0IDUuOTE5IDYuNjY2IDAuOTQyIDEuNzE1IDIuNjM5IDAuMDE3Ij48L3BvbHlnb24+PC9nPjwvZz48L3N2Zz4K");
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  cursor: pointer;
  opacity: 0.9;
  margin: 0 0 2px 10px;
  color: rgb(36, 41, 46);
  display: inline-block;
  position: relative;
  top: 3px;
}

/* Mixins and functions */
/**
 * Swiper 9.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 28, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}
.swiper, swiper-container {
  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-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide, 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, .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 {
  transform-style: preserve-3d;
}
.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-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-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.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, swiper-container: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);
  }
}
.pe-none {
  pointer-events: none;
}
.row:after {
  clear: both;
}
.modal-dialog-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: calc(100% - 3.5rem);
}
.modal-dialog.info .modal-header, .modal-dialog.error .modal-header, .modal-dialog.success .modal-header, .modal-dialog.warning .modal-header {
  color: #fff;
}
.modal-dialog.info .modal-header .close, .modal-dialog.error .modal-header .close, .modal-dialog.success .modal-header .close, .modal-dialog.warning .modal-header .close {
  color: inherit !important;
}
.modal-dialog.info .modal-header {
  background-color: #17a2b8;
}
.modal-dialog.error .modal-header {
  background-color: #e26262;
}
.modal-dialog.success .modal-header {
  background-color: #28a745;
}
.modal-dialog.warning .modal-header {
  background-color: #ffc107;
}
.font-weight-100 {
  font-weight: 100 !important;
}
.font-weight-200 {
  font-weight: 200 !important;
}
.font-weight-300 {
  font-weight: 300 !important;
}
.font-weight-400 {
  font-weight: 400 !important;
}
.font-weight-500 {
  font-weight: 500 !important;
}
.font-weight-600 {
  font-weight: 600 !important;
}
.font-weight-700 {
  font-weight: 700 !important;
}
.font-weight-800 {
  font-weight: 800 !important;
}
.font-weight-900 {
  font-weight: 900 !important;
}
.font-weight-bolder {
  font-weight: bolder !important;
}
.font-weight-lighter {
  font-weight: lighter !important;
}
/*Bootstrap 3.3.6 backward compatability hidden-visible classes*/
@media (max-width: 575px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-xs, .visible-sm, .visible-md, .visible-lg, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 575px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  .hidden-print {
    display: none !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
input:invalid {
  box-shadow: none;
}
/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1, .h1 {
  font-size: 2.5rem;
}
h2, .h2 {
  font-size: 2rem;
}
h3, .h3 {
  font-size: 1.75rem;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.25rem;
}
h6, .h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
small,
.small {
  font-size: 80%;
  font-weight: 400;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  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: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px !important;
  margin-left: -15px !important;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-last {
  order: 13;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 0.0833333333;
}
.offset-2 {
  margin-left: 0.1666666667;
}
.offset-3 {
  margin-left: 0.25;
}
.offset-4 {
  margin-left: 0.3333333333;
}
.offset-5 {
  margin-left: 0.4166666667;
}
.offset-6 {
  margin-left: 0.5;
}
.offset-7 {
  margin-left: 0.5833333333;
}
.offset-8 {
  margin-left: 0.6666666667;
}
.offset-9 {
  margin-left: 0.75;
}
.offset-10 {
  margin-left: 0.8333333333;
}
.offset-11 {
  margin-left: 0.9166666667;
}
@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 0.0833333333;
  }
  .offset-sm-2 {
    margin-left: 0.1666666667;
  }
  .offset-sm-3 {
    margin-left: 0.25;
  }
  .offset-sm-4 {
    margin-left: 0.3333333333;
  }
  .offset-sm-5 {
    margin-left: 0.4166666667;
  }
  .offset-sm-6 {
    margin-left: 0.5;
  }
  .offset-sm-7 {
    margin-left: 0.5833333333;
  }
  .offset-sm-8 {
    margin-left: 0.6666666667;
  }
  .offset-sm-9 {
    margin-left: 0.75;
  }
  .offset-sm-10 {
    margin-left: 0.8333333333;
  }
  .offset-sm-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 0.0833333333;
  }
  .offset-md-2 {
    margin-left: 0.1666666667;
  }
  .offset-md-3 {
    margin-left: 0.25;
  }
  .offset-md-4 {
    margin-left: 0.3333333333;
  }
  .offset-md-5 {
    margin-left: 0.4166666667;
  }
  .offset-md-6 {
    margin-left: 0.5;
  }
  .offset-md-7 {
    margin-left: 0.5833333333;
  }
  .offset-md-8 {
    margin-left: 0.6666666667;
  }
  .offset-md-9 {
    margin-left: 0.75;
  }
  .offset-md-10 {
    margin-left: 0.8333333333;
  }
  .offset-md-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 0.0833333333;
  }
  .offset-lg-2 {
    margin-left: 0.1666666667;
  }
  .offset-lg-3 {
    margin-left: 0.25;
  }
  .offset-lg-4 {
    margin-left: 0.3333333333;
  }
  .offset-lg-5 {
    margin-left: 0.4166666667;
  }
  .offset-lg-6 {
    margin-left: 0.5;
  }
  .offset-lg-7 {
    margin-left: 0.5833333333;
  }
  .offset-lg-8 {
    margin-left: 0.6666666667;
  }
  .offset-lg-9 {
    margin-left: 0.75;
  }
  .offset-lg-10 {
    margin-left: 0.8333333333;
  }
  .offset-lg-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 0.0833333333;
  }
  .offset-xl-2 {
    margin-left: 0.1666666667;
  }
  .offset-xl-3 {
    margin-left: 0.25;
  }
  .offset-xl-4 {
    margin-left: 0.3333333333;
  }
  .offset-xl-5 {
    margin-left: 0.4166666667;
  }
  .offset-xl-6 {
    margin-left: 0.5;
  }
  .offset-xl-7 {
    margin-left: 0.5833333333;
  }
  .offset-xl-8 {
    margin-left: 0.6666666667;
  }
  .offset-xl-9 {
    margin-left: 0.75;
  }
  .offset-xl-10 {
    margin-left: 0.8333333333;
  }
  .offset-xl-11 {
    margin-left: 0.9166666667;
  }
}
.table {
  width: 100%;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table .table {
  background-color: #fff;
}
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}
.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
select.form-control[size], select.form-control[multiple] {
  height: auto;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 1rem;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}
.form-check-label {
  margin-bottom: 0;
}
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
.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;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.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;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: none;
  border-color: transparent;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}
.writeReviewBtn {
  border: none;
}
.writeReviewBtn:hover {
  color: #21C07B;
}
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}
.fade {
  transition: opacity 0.15s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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 {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group-append {
  margin-left: -1px;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: #dee2e6;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}
.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}
.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}
.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  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 {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-deck {
  display: flex;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group {
  display: flex;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}
.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}
.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #007bff;
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge-success[href]:hover, .badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}
.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    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 {
  animation: progress-bar-stripes 1s linear infinite;
}
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}
.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}
.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}
.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}
@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}
.modal-content {
  position: relative;
  display: flex;
  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.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}
.modal-xl {
  max-width: 900px !important;
}
.modal-lg {
  max-width: 800px !important;
}
.modal-md {
  max-width: 500px !important;
}
.modal-sm {
  max-width: 300px !important;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  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 .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}
.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}
.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  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 rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top .arrow, .bs-popover-auto[x-placement^=top] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^=top] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}
.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right .arrow, .bs-popover-auto[x-placement^=right] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^=right] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}
.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=bottom] .arrow {
  top: calc((0.5rem + 1px) * -1);
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}
.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left .arrow, .bs-popover-auto[x-placement^=left] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^=left] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  backface-visibility: hidden;
  perspective: 1000px;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  transition: transform 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}
.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next,
  .active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}
.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
  .active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.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;
}
.bg-primary {
  background-color: #007bff !important;
}
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #007bff !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 0.4285714286;
}
.embed-responsive-16by9::before {
  padding-top: 0.5625;
}
.embed-responsive-4by3::before {
  padding-top: 0.75;
}
.embed-responsive-1by1::before {
  padding-top: 1;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: 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;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !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;
}
.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;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-justify {
  text-align: justify !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #007bff !important;
}
a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
form {
  width: 100%;
}
:root {
  --clr_1: #003C68;
  --clr_2: #40B06A;
  --clr_3: #E0E0E0;
  --clr_4: #272727;
  --clr_5: #FF9D2A;
  --clr-black: #000000;
  --clr-white: #fff;
  --clr-table-header: #111111;
  --header-text: #444444;
  --txt-color: #222222;
  --txt-color-light: #888888;
  --transition: 0.3s;
  --font-body-size: 14px;
  --font-body-weight: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-body-lineheight: 22px;
  --font-family: "Oswald", sans-serif;
  --footer-text: #6f6f6f;
  --main-color: #C5D7FC;
  --secondary-color: #003C68;
  --border-bottom-clr: #EAEAEA;
  --color-border: #D9D9D9;
  --light-bg: rgb(247, 249, 251);
  --light-blue: #2C2B49;
  --lightbackground: #EEEEEE;
  --font-family-nato: "noto sans", sans-serif;
  --font-family-roboto: Roboto,sans-serif;
}
* {
  box-sizing: border-box;
  scrollbar-width: thin !important;
}
html,
body {
  margin: 0;
  height: 100%;
  background-color: transparent;
}
body {
  font-size: var(--font-body-size);
  line-height: 1;
  background-color: white !important;
}
body.sidebar-open {
  overflow: hidden !important;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.row.toBeRemoved {
  display: none;
}
.modal[data-id=modal-template] {
  display: none;
}
.page-load-container {
  display: none;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
  margin-top: 0;
}
label {
  margin: 0;
}
.backdrop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.2s;
}
@media (min-width: 1366px) {
  .container-fluid,
  .container {
    max-width: 1310px;
    margin: auto;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.eot?5pkm7a");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.eot?5pkm7a#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.ttf?5pkm7a") format("truetype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.woff?5pkm7a") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.svg?5pkm7a#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #888888;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Arrow icons with Unicode fallback */
.icon-arrow-left:before {
  content: "‹";
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.icon-arrow-right:before {
  content: "›";
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
}
@font-face {
  font-family: "Oswald";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.svg#Oswald-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.svg#Oswald-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.svg#Roboto-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
#root {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.currencySymbol::before {
  content: "$";
}
@media (max-width: 1024.98px) {
  body {
    overflow-x: hidden;
  }
}
details::details-content {
  height: 0;
  transition: height 0.3s, content-visibility 0.3s;
  transition-behavior: allow-discrete;
  overflow: hidden;
}
details[open]::details-content {
  height: max-content;
}
#TopCategories .product-sec-btn,
#popularProducts .product-sec-btn {
  display: none;
}
.product-sec-btn {
  text-align: center;
  margin-top: 0px;
}
.product-sec-btn .view-all-btn {
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
  line-height: 25.88px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--txt-color-light);
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 575.98px) {
  .product-sec-btn .view-all-btn {
    font-size: 0.875rem;
  }
}
.product-sec-btn .view-all-btn.font-6 {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: #F78F1E;
  text-transform: capitalize;
}
.product-sec-btn .view-all-btn:hover {
  color: var(--main-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", serif;
  letter-spacing: 0.5px;
}
p,
span,
a,
div {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-size: 16px;
}
.theme-color {
  color: var(--main-color) !important;
}
.title_with_border {
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--main-color);
}
.title_main {
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 767.98px) {
  .title_main {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 500px) {
  .simple-modal-open .wishlistmessage {
    max-width: fit-content !important;
  }
}
.hidebasketpopup {
  display: none;
}
strong .link {
  color: var(--main-color);
}
strong .link:hover {
  text-decoration: underline;
  color: var(--main-color) !important;
}
.title-main-wrapper,
.similarProductHeading {
  position: relative;
  text-align: left;
}
.title-main-wrapper.hasBtn,
.similarProductHeading.hasBtn {
  padding-bottom: 15px;
}
.title-main-wrapper .title,
.similarProductHeading .title {
  color: var(--txt-color);
  font-size: 1.29375rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 1024.98px) {
  .title-main-wrapper .title,
  .similarProductHeading .title {
    margin-bottom: 8px;
  }
}
@media (max-width: 767.98px) {
  .title-main-wrapper .title,
  .similarProductHeading .title {
    font-size: 0.91875rem;
  }
}
.title-main-wrapper .title span,
.similarProductHeading .title span {
  display: inline-block;
  vertical-align: top;
  z-index: 2;
  max-width: 100%;
  width: auto;
  background: var(--clr-white);
}
.title-main-wrapper .view_all,
.similarProductHeading .view_all {
  display: inline-block;
  line-height: 15px;
}
.swiper-slide .product-card {
  height: 100%;
}
.go2top {
  display: none !important;
}
.backDrop {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: 30;
  height: 100% !important;
  width: 100%;
  background-color: rgba(35, 35, 35, 0.8);
  position: fixed;
}
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: 30;
  height: 100% !important;
  width: 100%;
  background-color: rgba(35, 35, 35, 0.8);
}
.stickyCenterMenu_wrapper,
.popup_inner {
  width: 100%;
  height: 100%;
}
.overlay_disable {
  visibility: hidden !important;
  opacity: 0 !important;
}
/*slider test*/
#priceCollapse {
  margin-bottom: 30px;
}
.priceFilterWrapper {
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  position: relative;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 5px;
}
.slider__track,
.slider__range,
.slider__left-value,
.slider__right-value {
  position: absolute;
}
.slider__track,
.slider__range {
  border-radius: 3px;
  height: 5px;
}
.slider__track {
  background-color: var(--lightbackground);
  width: 100%;
  z-index: 1;
}
.slider__range {
  background-color: var(--lightbackground);
  z-index: 2;
}
.rangeStrt {
  position: absolute;
  left: 0;
  top: 0px;
}
.rangeEnd {
  position: absolute;
  right: 0;
  top: 0px;
}
.slider__left-value,
.slider__right-value {
  color: #40b06a;
  font-size: 0.875rem;
  margin-top: 20px;
}
.slider__left-value {
  left: 6px;
}
.slider__right-value {
  right: -4px;
}
/* Removing the default appearance */
.thumb,
.thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.thumb {
  pointer-events: none;
  position: absolute;
  height: 0;
  /*width: 200px;*/
  width: 100%;
  outline: none;
}
.thumb--zindex-3 {
  z-index: 3;
}
.thumb--zindex-4 {
  z-index: 4;
}
.thumb--zindex-5 {
  z-index: 5;
}
/* For Chrome browsers */
.thumb::-webkit-slider-thumb {
  background-color: var(--clr_5);
  border: 3px solid var(--clr_5);
  border-radius: 50%;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
/* For Firefox browsers */
.thumb::-moz-range-thumb {
  background-color: var(--main-color);
  border: 3px solid var(--main-color);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
/*slider test*/
.input-group.rememberMe {
  display: flex;
}
.input-group.rememberMe label {
  display: flex;
}
.input-group.rememberMe label input[type=checkbox] {
  margin-right: 5px;
  accent-color: var(--txt-color);
}
.input-group .forgotBtn {
  cursor: pointer;
  line-height: 22px;
  color: var(--txt-color);
}
/*******************************************************modal*****************************************************************/
.modal .modal-dialog .modal-content {
  border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  background: var(--clr-black);
  border-radius: 0;
  padding: 8px;
}
.modal .modal-dialog .modal-content .modal-header .close {
  color: var(--clr-white);
  text-shadow: none;
}
.modal .modal-dialog .modal-content .modal-header .close:focus, .modal .modal-dialog .modal-content .modal-header .close.active {
  box-shadow: none;
  outline: none;
}
.modal .modal-dialog .modal-content .modal-body {
  font-weight: var(--font-weight-bold);
  color: var(--txt-color);
}
.modal .modal-dialog.success.notification .modal-header,
.modal .modal-dialog.success.notification .modal-footer {
  display: none;
}
/*Line scale Loader*/
.animsition-loading,
.custom-animsition-loading {
  background-color: var(--clr-white);
  z-index: 10104 !important;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.animsition-loading .loader,
.custom-animsition-loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 100;
}
.animsition-loading .loader .line-scale > div,
.custom-animsition-loading .loader .line-scale > div {
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  display: inline-block;
  background: var(--clr-black);
  animation-fill-mode: both;
  animation-name: line-scale;
  animation-timing-function: cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
.animsition-loading .loader .line-scale > div:nth-child(1),
.custom-animsition-loading .loader .line-scale > div:nth-child(1) {
  animation-delay: -0.4s;
}
.animsition-loading .loader .line-scale > div:nth-child(2),
.custom-animsition-loading .loader .line-scale > div:nth-child(2) {
  animation-delay: -0.3s;
}
.animsition-loading .loader .line-scale > div:nth-child(3),
.custom-animsition-loading .loader .line-scale > div:nth-child(3) {
  animation-delay: -0.2s;
}
.animsition-loading .loader .line-scale > div:nth-child(4),
.custom-animsition-loading .loader .line-scale > div:nth-child(4) {
  animation-delay: -0.1s;
}
.animsition-loading .loader .line-scale > div:nth-child(5),
.custom-animsition-loading .loader .line-scale > div:nth-child(5) {
  animation-delay: 0s;
}
@keyframes line-scale {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.4);
  }
}
#loaderWrapper {
  position: relative;
}
#loaderWrapper .custom-animsition-loading {
  position: absolute;
  height: 200px;
}
/*line scale loader*/
/*table styling*/
.custom-table {
  display: flex;
  flex-direction: column;
  gap: 0px 8px;
  line-height: 18px;
}
.custom-table-header {
  display: flex;
  font-weight: 600;
  margin: 0 -2px -1px -2px;
}
.custom-table-header .tableHeaderCell {
  display: flex;
  flex: 1;
  background: var(--main-color);
  align-items: center;
  justify-content: center;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #dee2e6;
  color: var(--clr-white);
  margin: 0 1px;
  padding: 10px 5px;
  border-radius: 0 !important;
}
.custom-table-header .tableHeaderCell:first-child {
  border-left: 1px solid #dee2e6;
  border-radius: 12px 0 0 12px;
}
.custom-table-header .tableHeaderCell:last-child {
  border-right: 1px solid #dee2e6;
  border-radius: 0 12px 12px 0;
}
.custom-table-header .tableHeaderCell.dateHeader {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.custom-table-header .tableHeaderCell .sortBy {
  display: flex;
  flex-direction: column;
}
.custom-table-header .tableHeaderCell:hover .tableHeaderCell {
  background: var(--clr-white);
}
.custom-table-body {
  display: flex;
  flex-direction: column;
  border: solid 1px #c6c6c6;
  scrollbar-width: thin;
}
.custom-table-body::-webkit-scrollbar {
  width: 5px;
}
.custom-table-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-table-body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
.custom-table-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.custom-table-body .noOrderData {
  border-radius: 0px;
  border: 1px solid #dee2e6;
  padding: 20px;
  background: #fff;
  text-align: center;
  font-size: 20px;
}
.custom-table-body .noGiftData {
  padding: 12px;
  background: #fff;
  width: 100%;
  border-radius: 12px;
}
.custom-table-body .item-data {
  display: flex;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  width: 100%;
}
.custom-table-body .item-data .table-cell {
  flex: 1;
  padding: 12px;
  display: flex;
  align-items: center;
  background: #fff;
}
.custom-table-body .item-data .table-cell:first-child {
  border-radius: 12px 0 0 12px;
}
.custom-table-body .item-data .table-cell:last-child {
  border-radius: 0 12px 12px 0;
}
.custom-table-body .item-data:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
.custom-table-body .item-data:hover .table-cell {
  background: var(--clr-white);
}
.custom-table-body .toggleWrapper {
  position: relative;
}
.custom-table-body .toggleWrapper .toggleBtn {
  border: none;
  background: transparent;
}
.custom-table-body .toggleWrapper .toggleBtn:focus, .custom-table-body .toggleWrapper .toggleBtn.active {
  outline: 0;
  box-shadow: none;
}
.custom-table-body .toggleWrapper .actionBtnWrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 5px 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.custom-table-body .toggleWrapper .actionBtnWrapper .btn {
  font-size: var(--font-body-size) !important;
  color: var(--txt-color) !important;
  background: var(--clr-white) !important;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}
.custom-table-body .toggleWrapper .actionBtnWrapper .btn:focus, .custom-table-body .toggleWrapper .actionBtnWrapper .btn.active {
  outline: 0;
  box-shadow: none;
  font-weight: var(--font-weight-bold);
}
.custom-table-body .toggleWrapper:hover .actionBtnWrapper {
  opacity: 1;
  visibility: visible;
}
.table-bordered {
  background: var(--clr-white);
}
.table-responsive {
  overflow-y: hidden;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  margin-bottom: 15px;
}
.table-responsive .table tbody {
  border: 1px solid #ffffff;
}
.table-responsive .table tr th,
.table-responsive .table tr td {
  border-right: 1px solid #ffffff;
  vertical-align: middle;
  background-color: var(--lightbackground);
}
@media (max-width: 414.98px) {
  .table-responsive .table tr th,
  .table-responsive .table tr td {
    font-size: 16px;
  }
}
.table-responsive.orderReport {
  overflow: visible !important;
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .table-responsive.orderReport {
    overflow-x: auto !important;
  }
}
.table-responsive.orderReport table tr th,
.table-responsive.orderReport table tr td {
  font-size: 0.875rem;
}
.table-responsive.orderReport table tr th .icon-Eye,
.table-responsive.orderReport table tr td .icon-Eye {
  font-size: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.table-responsive.orderReport table tr th .icon-Eye:hover::before,
.table-responsive.orderReport table tr td .icon-Eye:hover::before {
  color: var(--main-color);
}
@media (max-width: 575.98px) {
  .table-responsive.orderReport.overflowOnResponsive {
    overflow-x: auto !important;
  }
  .table-responsive.orderReport.overflowOnResponsive .custom-table-body {
    border: none;
  }
}
.modal .dialog-container {
  width: 95%;
}
.dialog-success,
dialog[data-shm],
dialog[shm],
dialog[data-pos] {
  width: 100%;
  max-width: 500px;
  padding: 0;
  border: 0;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
  overflow: unset !important;
}
@media (max-width: 1024.98px) {
  .dialog-success,
  dialog[data-shm],
  dialog[shm],
  dialog[data-pos] {
    width: 90%;
  }
}
.dialog-success .dialog-header,
dialog[data-shm] .dialog-header,
dialog[shm] .dialog-header,
dialog[data-pos] .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--secondary-color);
  position: relative;
}
.dialog-success .dialog-header .dialog-title,
dialog[data-shm] .dialog-header .dialog-title,
dialog[shm] .dialog-header .dialog-title,
dialog[data-pos] .dialog-header .dialog-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: left;
}
.dialog-success .dialog-header button.close,
dialog[data-shm] .dialog-header button.close,
dialog[shm] .dialog-header button.close,
dialog[data-pos] .dialog-header button.close {
  color: var(--clr-white) !important;
  text-shadow: none;
  opacity: 1 !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  height: 16px;
  width: 16px;
  justify-content: center;
  font-size: 28px !important;
  background-color: transparent;
}
.dialog-success .dialog-header button.close .icon-Close,
dialog[data-shm] .dialog-header button.close .icon-Close,
dialog[shm] .dialog-header button.close .icon-Close,
dialog[data-pos] .dialog-header button.close .icon-Close {
  font-size: 24px;
  font-weight: 600;
}
.dialog-success .dialog-header button.close .icon-Close:before,
dialog[data-shm] .dialog-header button.close .icon-Close:before,
dialog[shm] .dialog-header button.close .icon-Close:before,
dialog[data-pos] .dialog-header button.close .icon-Close:before {
  color: #fff;
}
.dialog-success .dialog-header button.close:focus, .dialog-success .dialog-header button.close.active,
dialog[data-shm] .dialog-header button.close:focus,
dialog[data-shm] .dialog-header button.close.active,
dialog[shm] .dialog-header button.close:focus,
dialog[shm] .dialog-header button.close.active,
dialog[data-pos] .dialog-header button.close:focus,
dialog[data-pos] .dialog-header button.close.active {
  box-shadow: none;
  outline: none;
}
.dialog-success .dialog-footer,
dialog[data-shm] .dialog-footer,
dialog[shm] .dialog-footer,
dialog[data-pos] .dialog-footer {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
}
.dialog-success .dialog-footer button,
dialog[data-shm] .dialog-footer button,
dialog[shm] .dialog-footer button,
dialog[data-pos] .dialog-footer button {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: var(--font-body-lineheight);
  border: none;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  width: fit-content;
  padding: 5px 20px;
  cursor: pointer;
}
.dialog-success .dialog-footer button.active, .dialog-success .dialog-footer button:focus, .dialog-success .dialog-footer button:active, .dialog-success .dialog-footer button:hover,
dialog[data-shm] .dialog-footer button.active,
dialog[data-shm] .dialog-footer button:focus,
dialog[data-shm] .dialog-footer button:active,
dialog[data-shm] .dialog-footer button:hover,
dialog[shm] .dialog-footer button.active,
dialog[shm] .dialog-footer button:focus,
dialog[shm] .dialog-footer button:active,
dialog[shm] .dialog-footer button:hover,
dialog[data-pos] .dialog-footer button.active,
dialog[data-pos] .dialog-footer button:focus,
dialog[data-pos] .dialog-footer button:active,
dialog[data-pos] .dialog-footer button:hover {
  box-shadow: none !important;
  outline: none;
  border: none !important;
}
.dialog-success .dialog-footer button:hover,
dialog[data-shm] .dialog-footer button:hover,
dialog[shm] .dialog-footer button:hover,
dialog[data-pos] .dialog-footer button:hover {
  background-color: var(--secondary-color) !important;
}
.dialog-success .dialog-footer button:disabled,
dialog[data-shm] .dialog-footer button:disabled,
dialog[shm] .dialog-footer button:disabled,
dialog[data-pos] .dialog-footer button:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.dialog-success .dialog-footer button:last-child,
dialog[data-shm] .dialog-footer button:last-child,
dialog[shm] .dialog-footer button:last-child,
dialog[data-pos] .dialog-footer button:last-child {
  display: none;
}
.dialog-success .dialog-body,
dialog[data-shm] .dialog-body,
dialog[shm] .dialog-body,
dialog[data-pos] .dialog-body {
  padding: 15px;
  overflow-y: auto !important;
  max-height: 80vh;
  height: auto;
  font-size: 13px;
  scrollbar-width: thin;
  text-align: left;
  margin: 0;
}
.dialog-success .dialog-body::-webkit-scrollbar,
dialog[data-shm] .dialog-body::-webkit-scrollbar,
dialog[shm] .dialog-body::-webkit-scrollbar,
dialog[data-pos] .dialog-body::-webkit-scrollbar {
  width: 5px;
}
.dialog-success .dialog-body::-webkit-scrollbar-track,
dialog[data-shm] .dialog-body::-webkit-scrollbar-track,
dialog[shm] .dialog-body::-webkit-scrollbar-track,
dialog[data-pos] .dialog-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.dialog-success .dialog-body::-webkit-scrollbar-thumb,
dialog[data-shm] .dialog-body::-webkit-scrollbar-thumb,
dialog[shm] .dialog-body::-webkit-scrollbar-thumb,
dialog[data-pos] .dialog-body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
.dialog-success .dialog-body::-webkit-scrollbar-thumb:hover,
dialog[data-shm] .dialog-body::-webkit-scrollbar-thumb:hover,
dialog[shm] .dialog-body::-webkit-scrollbar-thumb:hover,
dialog[data-pos] .dialog-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.dialog-success .dialog-body .input-group,
dialog[data-shm] .dialog-body .input-group,
dialog[shm] .dialog-body .input-group,
dialog[data-pos] .dialog-body .input-group {
  display: flex;
  align-items: center;
}
.dialog-success .dialog-body .input-group .label,
dialog[data-shm] .dialog-body .input-group .label,
dialog[shm] .dialog-body .input-group .label,
dialog[data-pos] .dialog-body .input-group .label {
  margin-bottom: 0 !important;
  flex: 0 0 200px;
  max-width: 200px;
}
.dialog-success .dialog-body .input-group .fieldWrapper,
dialog[data-shm] .dialog-body .input-group .fieldWrapper,
dialog[shm] .dialog-body .input-group .fieldWrapper,
dialog[data-pos] .dialog-body .input-group .fieldWrapper {
  flex: 1 1 auto;
}
.dialog-success .dialog-body .input-group .review-ratings,
dialog[data-shm] .dialog-body .input-group .review-ratings,
dialog[shm] .dialog-body .input-group .review-ratings,
dialog[data-pos] .dialog-body .input-group .review-ratings {
  display: flex;
  column-gap: 5px;
}
.dialog-success .dialog-body .input-group .review-ratings span,
dialog[data-shm] .dialog-body .input-group .review-ratings span,
dialog[shm] .dialog-body .input-group .review-ratings span,
dialog[data-pos] .dialog-body .input-group .review-ratings span {
  font-size: calc(var(--font-body-size) + 2px);
  cursor: pointer;
}
.dialog-success .dialog-body .input-login-action,
dialog[data-shm] .dialog-body .input-login-action,
dialog[shm] .dialog-body .input-login-action,
dialog[data-pos] .dialog-body .input-login-action {
  display: flex;
  column-gap: 10px;
  justify-content: flex-end;
}
.dialog-success .dialog-body .input-login-action button,
dialog[data-shm] .dialog-body .input-login-action button,
dialog[shm] .dialog-body .input-login-action button,
dialog[data-pos] .dialog-body .input-login-action button {
  width: fit-content;
  padding: 5px 20px;
}
.dialog-success .dialog-body .input-login-action button.btn_login_guestUserPopup,
dialog[data-shm] .dialog-body .input-login-action button.btn_login_guestUserPopup,
dialog[shm] .dialog-body .input-login-action button.btn_login_guestUserPopup,
dialog[data-pos] .dialog-body .input-login-action button.btn_login_guestUserPopup {
  padding: 10px 0;
}
.dialog-success .dialog-body .userDetails .detail,
dialog[data-shm] .dialog-body .userDetails .detail,
dialog[shm] .dialog-body .userDetails .detail,
dialog[data-pos] .dialog-body .userDetails .detail {
  display: flex;
}
.dialog-success .dialog-body .userDetails .detail .detailHeading,
dialog[data-shm] .dialog-body .userDetails .detail .detailHeading,
dialog[shm] .dialog-body .userDetails .detail .detailHeading,
dialog[data-pos] .dialog-body .userDetails .detail .detailHeading {
  flex: 0 0 150px;
  font-weight: var(--font-weight-bold);
}
.dialog-success .dialog-body .userDetails .detail .detailValue,
dialog[data-shm] .dialog-body .userDetails .detail .detailValue,
dialog[shm] .dialog-body .userDetails .detail .detailValue,
dialog[data-pos] .dialog-body .userDetails .detail .detailValue {
  flex: 1 1 auto;
}
.dialog-success::backdrop,
dialog[data-shm]::backdrop,
dialog[shm]::backdrop,
dialog[data-pos]::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.dialog-success.notification,
dialog[data-shm].notification,
dialog[shm].notification,
dialog[data-pos].notification {
  max-width: 250px;
}
.dialog-success.notification .dialog-header,
.dialog-success.notification .dialog-footer,
dialog[data-shm].notification .dialog-header,
dialog[data-shm].notification .dialog-footer,
dialog[shm].notification .dialog-header,
dialog[shm].notification .dialog-footer,
dialog[data-pos].notification .dialog-header,
dialog[data-pos].notification .dialog-footer {
  display: none;
}
.dialog-success.noFooter .dialog-footer,
dialog[data-shm].noFooter .dialog-footer,
dialog[shm].noFooter .dialog-footer,
dialog[data-pos].noFooter .dialog-footer {
  display: none;
}
.dialog-success[data-pos="3"],
dialog[data-shm][data-pos="3"],
dialog[shm][data-pos="3"],
dialog[data-pos][data-pos="3"] {
  margin: 10px 10px auto auto;
}
.dialog-success.fluid-model,
dialog[data-shm].fluid-model,
dialog[shm].fluid-model,
dialog[data-pos].fluid-model {
  width: 95%;
}
/*error page*/
.errorPage {
  padding: 50px 0;
  color: var(--txt-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.errorPage .pageTitle {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: var(--font-body-lineheight);
  margin-bottom: 15px;
}
.errorPage .errorContent h1 {
  font-size: 11pc;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.errorPage .pageType .textHead {
  font-size: 18px;
  margin-bottom: 50px;
  font-weight: 600;
}
.errorPage .pageType .homeAction {
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary-400);
}
.errorPage .pageType .homeAction a {
  background: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.4;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px 11px;
  color: var(--clr-white);
  letter-spacing: 1.1px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 10px;
  display: inline-block;
  outline: none;
  border-radius: 30px;
}
.errorPage .pageType .homeAction a:hover {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
}
/*error page*/
/*pagination*/
.pagination {
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
  flex-wrap: wrap;
  display: flex;
}
.pagination .page-link {
  color: var(--txt-color);
  position: relative;
  margin-left: 0;
  line-height: inherit;
  background-color: var(--clr-white);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50% !important;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--font-family-roboto);
}
.pagination .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--clr-white);
}
.pagination .page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.pagination .page-link.icon-arrow-right:before {
  content: "›";
  font-family: Arial, sans-serif !important;
  font-size: 18px;
  font-weight: bold;
  color: var(--txt-color-light);
}
.pagination .page-link.icon-arrow-left:before {
  content: "‹";
  font-family: Arial, sans-serif !important;
  font-size: 18px;
  font-weight: bold;
  color: var(--txt-color-light);
}
.pagination .page-link:hover {
  z-index: 2;
  text-decoration: none;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--clr-white);
}
.pagination .page-link.page-next, .pagination .page-link.page-last, .pagination .page-link.page-first, .pagination .page-link.page-prev {
  padding: 0.5rem 0.75rem !important;
  width: unset !important;
  height: unset !important;
  border-radius: 20px !important;
  background-color: var(--clr-white);
  border: 1px solid var(--color-border);
}
.pagination .page-link.page-next:hover, .pagination .page-link.page-last:hover, .pagination .page-link.page-first:hover, .pagination .page-link.page-prev:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--clr-white);
}
.pagination .page-link.page-last, .pagination .page-link.page-first {
  display: none;
}
.pagination .page-link.page-prev, .pagination .page-link.page-next, .pagination .page-link.icon-arrow-left, .pagination .page-link.icon-arrow-right {
  padding: 0 !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
}
.pagination .page-link.page-prev:hover::before, .pagination .page-link.page-next:hover::before, .pagination .page-link.icon-arrow-left:hover::before, .pagination .page-link.icon-arrow-right:hover::before {
  color: var(--clr-white);
}
.pagination .page-link.page-prev:before {
  content: "‹";
  font-family: Arial, sans-serif !important;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: var(--txt-color-light);
  font-size: 16px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pagination .page-link.page-next:before {
  content: "›";
  font-family: Arial, sans-serif !important;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: var(--txt-color-light);
  font-size: 16px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*pagination*/
input[type=date],
input[type=text],
.form-control {
  border-width: 1px;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
input[type=date]::placeholder,
input[type=text]::placeholder,
.form-control::placeholder {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
input[type=date]:hover, input[type=date]:focus, input[type=date].active,
input[type=text]:hover,
input[type=text]:focus,
input[type=text].active,
.form-control:hover,
.form-control:focus,
.form-control.active {
  outline: none;
  box-shadow: none;
  background: var(--clr-white);
  border-width: 1px;
  border-style: solid;
  border-color: #ced4da;
  border-radius: 5px !important;
}
input[type=date]:disabled,
input[type=text]:disabled,
.form-control:disabled {
  background-color: #e3dfdf;
}
input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  appearance: textfield;
}
label {
  font-size: var(--font-body-size);
  font-weight: var(--font-weight-medium);
  color: var(--txt-color);
  line-height: var(--font-body-lineheight);
  letter-spacing: 0.32px;
  margin: 0 0 8px;
  padding: 0;
  text-transform: capitalize;
  width: 100%;
}
/************************************Form-section*********************************************/
.page-heading {
  margin: 0;
  margin-bottom: 25px;
  color: var(--txt-color);
  font-size: 1.4375rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: 2rem;
  letter-spacing: 0.06px;
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 2px solid #333;
}
.pageSubHeading {
  margin-bottom: 15px;
  color: var(--txt-color);
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: 2rem;
  letter-spacing: 0.06px;
  text-align: left;
}
#OrderSample .redMandat {
  color: #ff0000;
}
#OrderSample .form-group {
  margin-bottom: 30px;
}
#OrderSample .form-group label {
  font-size: 0.875rem;
}
#OrderSample .title {
  font-size: 2rem;
  color: var(--clr-black);
  font-weight: 500;
  line-height: 1.875rem;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 7px 0;
}
@media (max-width: 575.98px) {
  #OrderSample .title {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 1599.98px) {
  #OrderSample .title {
    font-size: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  #OrderSample .title {
    width: 100%;
  }
}
#OrderSample .form-group.required label:before {
  content: "*";
  color: #ff0000;
}
#OrderSample .form-group.required label:after {
  content: "";
  margin-left: 3px;
}
#OrderSample input:disabled {
  background-color: #ecf0f1;
}
#OrderSample #ASI,
#OrderSample #PPAI,
#OrderSample #SAGE,
#OrderSample #UPIC {
  background-color: #ecf0f1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  #OrderSample .col-50 {
    width: 100%;
  }
}
#FreightEstimator {
  cursor: default;
}
#FreightEstimator .redMandat {
  color: #ff0000;
}
#FreightEstimator .form-control {
  background-color: #ecf0f1;
  border-radius: 5px;
  border: none;
  padding: 0.375rem 0.75rem;
}
@media (max-width: 767.98px) {
  #FreightEstimator .upsrates {
    margin-top: 10px;
  }
}
#FreightEstimator #EstimatorData {
  display: flex;
}
@media (max-width: 767.98px) {
  #FreightEstimator #EstimatorData {
    flex-direction: column;
  }
}
#FreightEstimator #EstimatorData .contctForFreight {
  padding: 0;
}
#RequestQuote .redMandat {
  color: #ff0000;
}
#RequestQuote .form-group.required label:before {
  content: "*";
  color: #ff0000;
}
#RequestQuote .form-group.required label:after {
  content: "";
  margin-left: 3px;
}
.form-group.required label:after {
  content: "*";
  color: #ff0000;
}
.form-group.required .paymentOptions label:after {
  content: "";
}
/*button*/
.btn-primary {
  font-family: "Roboto", sans-serif !important;
  font-size: 1.125rem;
  font-weight: 400;
  background: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.4;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px 11px 20px;
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 1.1px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 10px;
  display: inline-block;
  outline: none;
  border-radius: 30px;
  min-height: 42px;
  transition: 0.3s;
}
@media (max-width: 1599.98px) {
  .btn-primary {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .btn-primary {
    padding: 5px 20px 7px 20px;
  }
}
.btn-primary.active, .btn-primary:focus, .btn-primary:active {
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}
.btn-primary i {
  color: var(--clr-white);
}
.btn-primary:hover {
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease-in;
  background-color: #fff;
  color: var(--secondary-color);
  border-color: 1px solid var(--secondary-color);
}
.btn-primary:hover i {
  color: var(--main-color);
}
.btn-primary + .btn {
  margin-left: 15px;
}
.btn-primary i {
  vertical-align: text-top;
  margin-right: 5px;
}
.btn-primary:focus, .btn-primary:active {
  box-shadow: none !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--clr-white) !important;
}
.btn-primary:disabled {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--clr-white) !important;
}
.btn-primary:disabled:hover {
  color: var(--clr-white) !important;
}
.btn-outline-primary {
  font-family: "Roboto", sans-serif !important;
  font-size: 1.125rem;
  font-weight: 400;
  background: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.4;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px 11px 20px;
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 1.1px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 10px;
  display: inline-block;
  outline: none;
  border-radius: 30px;
  min-height: 42px;
  border: 1px solid var(--secondary-color);
  background-color: #fff;
  color: var(--secondary-color);
}
@media (max-width: 1599.98px) {
  .btn-outline-primary {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .btn-outline-primary {
    padding: 5px 20px 7px 20px;
  }
}
.btn-outline-primary.active, .btn-outline-primary:focus, .btn-outline-primary:active {
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}
.btn-outline-primary:hover {
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease-in;
  background-color: var(--secondary-color);
  color: #fff;
}
.error-text {
  color: #dd0a32 !important;
  text-transform: uppercase;
  font-size: 11px !important;
  font-weight: 500 !important;
  margin-top: 5px;
}
.text-danger {
  color: #cf2536 !important;
  display: inline-block;
}
.text-danger[role=alert] {
  margin-top: 5px;
}
.starColor {
  color: #ff0000;
}
/*qty wrapper used in checkout page, cart popup,detail page*/
.qty .plus-minus-delete {
  border-radius: 5px;
  border: solid 1px #ddd;
  padding: 10px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  position: relative;
}
.qty .plus-minus-delete .btn-minus {
  position: absolute;
  top: 13px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b5c9d5;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 13px 3px rgba(207, 207, 207, 0.1607843137);
  font-size: 10px;
  color: #fff;
}
.qty .plus-minus-delete .btn-minus:hover {
  background: var(--main-color);
}
.qty .plus-minus-delete .btn-minus.disabled {
  pointer-events: none;
  opacity: 0.5 !important;
}
.qty .plus-minus-delete .btn-minus::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  top: 14px;
  background: #fff;
}
.qty .plus-minus-delete input {
  height: auto;
  padding: 8px 0;
  text-align: center;
  border: none;
  width: 100%;
  background: transparent;
}
.qty .plus-minus-delete input:hover, .qty .plus-minus-delete input:focus, .qty .plus-minus-delete input.active {
  outline: none;
  box-shadow: none;
}
.qty .plus-minus-delete .btn-plus {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b5c9d5;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 13px 3px rgba(207, 207, 207, 0.1607843137);
  font-size: 10px;
  color: #fff;
}
.qty .plus-minus-delete .btn-plus:hover {
  background: var(--main-color);
}
.qty .plus-minus-delete .btn-plus::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 10px;
  top: 14px;
  background: #fff;
}
.qty .plus-minus-delete .btn-plus::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 10px;
  top: 14px;
  background: #fff;
  transform: rotate(90deg);
}
/*custom slider*/
.t-slider {
  position: relative;
}
.t-slider .controls .nav {
  display: none;
}
.t-slider .controls .nav button {
  position: absolute;
  top: 50%;
  z-index: 3;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #fff;
  color: var(--txt-color);
  margin-top: 0 !important;
  transform: translateY(-50%);
  border: 0px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-origin: center;
}
.t-slider .controls .nav button.prev {
  left: 10px;
}
.t-slider .controls .nav button.next {
  right: 10px;
}
.t-slider .controls .nav button:disabled {
  opacity: 0.6;
}
.t-slider .controls .nav button .icon {
  font-size: 20px;
  transition: 0.1s;
}
.t-slider .controls .nav button:not(:disabled):hover {
  transform: scale(1.2) translateY(-50%);
}
.t-slider .controls .nav button:not(:disabled):hover .icon {
  transform: scale(0.8);
}
/*custom slider*/
/*swiper*/
@media (max-width: 575.98px) {
  .swiper .swiper-slide-active,
  .swiper .swiper-slide-next {
    opacity: 1;
  }
}
.swiper .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-button-next.swiper-button-disabled {
  background-color: #EEEEEE !important;
  color: #444444 !important;
  opacity: initial !important;
  border: none !important;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #F78F1E !important;
  border: 1px solid #F78F1E !important;
  color: var(--clr-white);
  margin-top: 0 !important;
  transform: translateY(-50%);
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 0px;
  display: none;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none !important;
  font-size: 0;
}
.loadingData {
  position: relative;
  min-height: 200px;
  z-index: 1;
}
.loadingData.absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}
.loadingData .custom-animsition-loading {
  position: absolute;
}
.loadingData .right-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  gap: 10px;
}
.loadingData .right-loader img {
  transform-origin: 50% 54%;
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/********************************************/
#login .title-main-wrapper {
  max-width: 450px;
  margin-top: 15px;
}
#login .title-main-wrapper span {
  text-transform: lowercase;
}
.img-fluid {
  width: 100%;
}
.view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}
.view-all-wrapper .view-all {
  display: inline-block;
  line-height: 16px;
}
.iconList {
  padding: 35px 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.iconList .icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.iconList .icons span {
  font-size: 36px;
}
.wishlistPageWrapper .noProducts {
  padding: 0px 0px 30px;
}
.staticContent {
  margin-bottom: 20px;
}
.staticContent span {
  line-height: 1.4;
}
.tawkChatBtn {
  position: fixed;
  bottom: 20px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #0e97e7;
  border-radius: 50%;
  border: 0px;
  z-index: 3;
}
.tawkChatBtn:focus {
  outline: none;
}
.tawkChatBtn svg {
  fill: #fff;
}
.spiner-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loadingSpinner {
  display: inline-block;
  vertical-align: sub;
  border: 4px solid var(--clr-white);
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0px;
  right: 9px;
  position: relative;
  top: 0px;
}
.newsletter_form .loadingSpinner {
  display: inline-block;
  vertical-align: sub;
  border: 4px solid #000;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0px;
  right: 20px;
  position: relative;
  top: 7px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
button {
  cursor: pointer;
}
button:focus {
  outline: none;
}
#ContactUs.wrapperContent {
  width: 100%;
}
#ContactUs .form-section-info span {
  margin: 0 3px;
}
.add-to-cart .imprint-locations label {
  margin: 8px 0 0 0 !important;
}
.requestQuoteTable {
  min-width: 100%;
  border-bottom: 2px solid #dee2e6;
  border-left: 0px solid #fff;
  border-top: 0px solid #dee2e6;
  border-right: 0px solid #fff;
}
.requestQuoteTable :hover {
  background-color: #dee2e6;
}
.quick-view-container .swiper {
  width: 100%;
}
.quick-view-container .swiper .swiper-button-prev:after {
  left: -15px;
  top: 0px;
  font-size: 0;
}
.quick-view-container .swiper .swiper-button-next:after {
  left: 4px !important;
  top: 0px;
  font-size: 0;
}
.quick-view-container .swiper .swiper-button-prev,
.quick-view-container .swiper .swiper-button-next {
  background-color: transparent;
  box-shadow: none;
  border: none;
  height: 0;
  width: 0;
}
.quick-view-container .swiper .swiper-button-prev:after,
.quick-view-container .swiper .swiper-button-next:after {
  font-size: 0;
}
.quick-view-container #detailPriceTable {
  border: 0;
}
.quick-view-container #detailPriceTable tbody {
  border: 0;
}
.quick-view-container #detailPriceTable tbody tr {
  border-bottom: 1px solid #ccc;
}
.quick-view-container #detailPriceTable tbody th,
.quick-view-container #detailPriceTable tbody td {
  font-size: 0.6875rem;
  padding: 15px 5px;
  width: 70px;
  border: 0;
}
.quick-view-container #detailPriceTable tbody th:first-child,
.quick-view-container #detailPriceTable tbody td:first-child {
  width: 75px;
}
.quick-view-container .product-pricing .cTHead {
  border-bottom: 1px solid #ccc;
  display: table;
}
.quick-view-container .product-pricing .cTHead th {
  padding: 5px;
  display: table-cell;
  width: 70px;
  font-size: 0.6875rem;
}
.quick-view-container .product-pricing .cTHead th:first-child {
  width: 75px;
}
.recaptchaWrapper {
  margin-bottom: 10px;
}
.recaptchaWrapper .recaptcha {
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: capitalize;
}
.comparePopUp .dialog-body table#CompareProd .mainTbody .closebutton .wishlistIcon i {
  font-size: 16px;
}
.comparePopUp .dialog-body table#CompareProd .mainTbody .closebutton .wishlistIcon span {
  display: none;
}
.salseflyer h2 {
  text-transform: uppercase;
  font-size: 2vw;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3411764706);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#order-catalog .userContactUsForm .input-freightType,
#order-catalog .userContactUsForm .input-shipperNo {
  display: none !important;
}
@media print {
  .comparePopUp .featuredIcon img {
    height: 20px;
    width: 50px;
    max-width: 50px;
  }
}
.comparePopUp .tr_Product_NotPrint {
  display: none;
}
@media print {
  .comparePopUp .featuredIcon img {
    height: 20px;
    width: 50px;
    max-width: 50px;
  }
  .actionIcons,
  .mobile-actions {
    display: none !important;
  }
}
.swiper-button-next:after {
  font-size: 0;
  display: none;
}
.bannerTopListing.container-fluid {
  position: relative;
  padding: 0 !important;
}
.bannerTopListing.container-fluid .breadCrumbWrapper-top {
  padding-top: 80px;
  background-color: transparent;
}
@media (max-width: 1279.98px) {
  .bannerTopListing.container-fluid .breadCrumbWrapper-top {
    padding-top: 12px;
    background-color: #DBEFE4;
  }
}
.bannerTopListing.container-fluid .categoryBanner {
  position: absolute;
  top: 0;
}
.bannerTopListing.container-fluid .categoryBanner:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
@media (max-width: 575.98px) {
  .bannerTopListing.container-fluid .categoryBanner {
    display: none;
  }
}
@media (min-width: 1025px) {
  .bannerTopListing.container-fluid .categoryBanner {
    min-height: auto;
  }
}
.bannerTopListing.container-fluid .breadcrumb .breadcrumb-item:nth-child(2) {
  pointer-events: none;
}
#products_main_wrapperBorder table {
  height: auto;
  border: none;
  margin-bottom: 0px;
  font-size: 14px;
}
#products_main_wrapperBorder table tbody tr td {
  border: none;
  padding: 0px;
  color: #444444;
  padding-left: 5px;
}
@media (max-width: 1024.98px) {
  #products_main_wrapperBorder table tbody tr td {
    font-size: 12px;
  }
}
#products_main_wrapperBorder table tbody tr td ul li {
  list-style: circle;
}
#products_main_wrapperBorder table .generalinfo .pull-right {
  display: flex;
  justify-content: space-between;
  position: relative;
  right: 0;
}
.videoplayer .dialog-footer {
  display: none !important;
}
.card-upper-block .featureIcon img {
  width: 80px;
  height: auto;
}
.flayer-box-wrapper .flayer-box-header {
  height: 80px;
}
.flayer-box-wrapper .flayer-box-body .flayer-btn-wrapper a {
  margin: 0;
  padding: 10px;
  min-height: inherit;
}
@keyframes highlight {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--main-color);
    color: white;
    transform: scale(1.1);
  }
  100% {
    background-color: transparent;
  }
}
@-webkit-keyframes highlight {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--main-color);
    color: white;
    -webkit-transform: scale(1.1);
  }
  100% {
    background-color: transparent;
  }
}
:root {
  --clr_1: #003C68;
  --clr_2: #40B06A;
  --clr_3: #E0E0E0;
  --clr_4: #272727;
  --clr_5: #FF9D2A;
  --clr-black: #000000;
  --clr-white: #fff;
  --clr-table-header: #111111;
  --header-text: #444444;
  --txt-color: #222222;
  --txt-color-light: #888888;
  --transition: 0.3s;
  --font-body-size: 14px;
  --font-body-weight: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-body-lineheight: 22px;
  --font-family: "Oswald", sans-serif;
  --footer-text: #6f6f6f;
  --main-color: #C5D7FC;
  --secondary-color: #003C68;
  --border-bottom-clr: #EAEAEA;
  --color-border: #D9D9D9;
  --light-bg: rgb(247, 249, 251);
  --light-blue: #2C2B49;
  --lightbackground: #EEEEEE;
  --font-family-nato: "noto sans", sans-serif;
  --font-family-roboto: Roboto,sans-serif;
}
/* Mixins and functions */
html,
body {
  scroll-behavior: smooth !important;
}
.homeContainer.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 575.98px) {
  .homeContainer.container-fluid {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
  }
}
.homeContainer.container-fluid .row > .col-lg-12 {
  padding: 0;
}
.marginBottom {
  margin-bottom: 45px;
}
@media (max-width: 575.98px) {
  .marginBottom {
    margin-bottom: 15px;
  }
}
.section_wrapper,
.productDetailWrapper {
  padding-top: 15px;
}
@media (max-width: 575.98px) {
  .section_wrapper,
  .productDetailWrapper {
    padding-left: 7.5px;
    padding-right: 7.5px;
    padding-top: 0;
  }
}
.trans-btn .theme-button {
  border: none;
  background: transparent;
  background-color: transparent;
}
.swiper-button-prev {
  left: 20px !important;
  position: absolute;
}
.swiper-button-next::after {
  content: "";
  transform: rotate(136deg) !important;
  left: 9px !important;
}
.swiper-button-prev,
.swiper-button-next {
  right: 20px;
  position: absolute;
  top: 50%;
  z-index: 99;
  border: 1px solid #BCBCBC;
  color: #bcbcbc;
  border-radius: 50%;
  font-size: 18px !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  box-shadow: 3px 3px 6px #b7b7b7;
  background-color: #fff;
  opacity: 1;
}
@media (max-width: 1024.98px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 50% !important;
  }
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--clr-white) !important;
  border: 1px solid var(--clr-white) !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 11px;
  height: 11px;
  background: transparent;
  text-indent: -9999px;
  border-top: 2px solid #bfbfbf;
  border-left: 2px solid #bfbfbf;
  transition: all 250ms ease-in-out;
  text-decoration: none;
  color: transparent;
  transform: rotate(-50deg);
  top: 11px;
  left: 13px;
}
.feedback-slider .swiper {
  position: inherit;
}
.feedback-slider .swiper-pagination {
  bottom: 10px;
}
.sticky-category {
  padding: 12px 0 !important;
  background-color: #F5F5F5 !important;
  position: sticky;
  z-index: 9;
  top: 0;
}
.post-thumbnail-entry {
  position: relative;
}
.post-thumbnail-list {
  position: relative;
}
.product {
  position: relative;
}
.product .product-image {
  position: relative;
}
.shop {
  position: relative;
}
.one-card-fix {
  padding-left: 221px !important;
}
@media (max-width: 1024.98px) {
  .one-card-fix {
    padding-left: 196px !important;
  }
}
@media (max-width: 991.98px) {
  .one-card-fix {
    padding-left: 238px !important;
  }
}
@media (max-width: 767.98px) {
  .one-card-fix {
    padding-left: 242px !important;
  }
}
@media (max-width: 575.98px) {
  .one-card-fix {
    padding-left: 283px !important;
  }
}
@media (max-width: 414.98px) {
  .one-card-fix {
    padding-left: 0px !important;
  }
}
.list-slider {
  position: relative;
}
.list-slider .fix-card {
  min-height: 100%;
  min-width: 199px;
  width: 15.4%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 15px 0;
  z-index: 9;
}
@media (max-width: 1024.98px) {
  .list-slider .fix-card {
    min-width: 170.75px;
  }
}
@media (max-width: 991.98px) {
  .list-slider .fix-card {
    min-width: 215.75px;
  }
}
@media (max-width: 767.98px) {
  .list-slider .fix-card {
    min-width: 222.33px;
  }
}
@media (max-width: 575.98px) {
  .list-slider .fix-card {
    min-width: 260.5px;
  }
}
@media (max-width: 414.98px) {
  .list-slider .fix-card {
    position: initial;
    width: 100%;
    margin-top: 20px;
  }
}
.list-slider .fix-card span {
  font-size: 1rem;
  display: block;
  line-height: 20px;
}
.compare-presentation {
  position: relative;
  cursor: pointer;
}
.compare-presentation .action {
  visibility: hidden !important;
}
.TopCategoriesCategoryView .row {
  margin: 0 !important;
  gap: 30px 20px;
}
@media (max-width: 1024.98px) {
  .TopCategoriesCategoryView .row {
    gap: 24px;
  }
}
.TopCategoriesCategoryView .row .category {
  width: calc(25% - 15px);
}
@media (max-width: 1024.98px) {
  .TopCategoriesCategoryView .row .category {
    width: calc(33.33% - 16px);
  }
}
@media (max-width: 767.98px) {
  .TopCategoriesCategoryView .row .category {
    width: calc(50% - 12px);
  }
}
.TopCategoriesCategoryView .row .category .category-image {
  border: 1px solid #eee;
}
.TopCategoriesCategoryView .row .category .category-image img {
  width: 100%;
  height: auto;
}
.TopCategoriesCategoryView .row .category .category-name {
  margin-top: 5px;
}
.TopCategoriesCategoryView .row .category .category-name h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: #444444;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.TopCategoriesCategoryView .row .category .category-name p {
  color: #777777;
  font-size: 14px;
  font-weight: 300;
  font-family: "Oswald", sans-serif;
  text-transform: lowercase;
  margin-bottom: 0;
  text-shadow: 0 0 1px #777;
}
.TopCategoriesCategoryView .card-cat {
  background-color: var(--clr-white);
}
.TopCategoriesCategoryView .card-cat.product-card-cat {
  border-radius: 0.25rem !important;
  cursor: pointer;
  display: block;
  width: auto;
  border: 1px solid transparent;
  margin: 10px;
}
.TopCategoriesCategoryView .card-cat.product-card-cat:hover {
  box-shadow: 0px 11px 20px 0px rgba(21, 80, 116, 0.3);
  border-color: #95D6FF;
  overflow: hidden;
}
.TopCategoriesCategoryView .card-cat.product-card-cat:hover .productImage img {
  transform: scale(1.05);
}
.TopCategoriesCategoryView .card-cat.product-card-cat .productImage {
  min-height: 145px;
  background-color: var(--clr-white);
  width: 100%;
  height: 100%;
  word-wrap: break-word;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.TopCategoriesCategoryView .card-cat.product-card-cat .productImage .img-box {
  width: 100%;
  text-align: center;
}
.TopCategoriesCategoryView .card-cat.product-card-cat .productImage img {
  height: 60px;
  width: auto;
  margin-top: 10px;
}
.TopCategoriesCategoryView .card-cat.product-card-cat .productImage .centered {
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.7px;
  display: flex;
  align-items: center;
  color: #000;
  margin-top: 15px;
  line-height: 1.4;
  padding: 0 5px;
}
.brands-image {
  display: flex;
  align-items: center;
}
.brands-image .image {
  margin-right: 40px;
  max-width: 100px;
}
.home-banner {
  margin-bottom: -14px;
}
.home-banner img {
  width: 100%;
}
.loginRight h2 {
  text-align: center;
  font-size: 2.28571rem;
  font-weight: 300;
  letter-spacing: 0.08px;
  line-height: 43px;
}
.login {
  max-width: 1100px;
  margin: 0 auto;
}
@keyframes hvr-icon-up {
  0%, 50%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(-6px);
  }
}
.collection-element {
  position: relative;
}
.collection-element .product-list {
  padding: 30px 0;
}
.collection-element .list-title .title {
  margin-bottom: 0px;
}
.list-title {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .list-title {
    margin-bottom: 15px;
  }
}
.list-title a {
  min-width: 100px;
  text-align: right;
}
.upcomingInfo .theme-button-2 {
  text-transform: uppercase;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.modal-main {
  position: fixed;
  background: white;
  width: 80%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.display-block {
  display: block !important;
}
.display-none {
  display: none !important;
}
.modal-main form {
  overflow: auto;
  height: 425px;
}
.add-to-cart {
  text-align: left;
}
.add-to-cart .pen-color-crousol .title {
  display: none;
}
.add-to-cart .pen-color-crousol .crousol-box .swiper .swiper-wrapper .swiper-slide .pen-color-img {
  border: none;
}
.add-to-cart .pen-color-crousol .crousol-box .swiper .swiper-wrapper .swiper-slide .active {
  border: 1px solid #51a3b1;
}
.add-to-cart .sku-container {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border: solid 1px #ececec;
  margin-bottom: 10px;
}
.add-to-cart .sku-container input {
  max-width: 100%;
  border: solid 1px #ccc;
  padding-left: 5px;
}
.add-to-cart .sku-container .form-control {
  color: #5e5f5f;
  background-color: #ecf0f1;
}
.add-to-cart .sku-container .size:last-child {
  border-right: none;
}
.add-to-cart .sku-container .size {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  padding: 10px;
  border-right: solid 1px #f2f2f2;
}
.add-to-cart .sku-container .label {
  color: #888;
  display: inline-block;
  width: 100%;
  text-align: left;
  padding-left: 0;
  font-size: 13px;
  margin: 10px 0;
}
#feature-category .list-title {
  justify-content: space-between;
}
#feature-category .list-title h3 {
  font-size: 38px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  text-transform: capitalize;
  color: var(--secondary-color);
  margin-bottom: 0;
}
@media (max-width: 1024.98px) {
  #feature-category .list-title h3 {
    font-size: 20px;
    text-align: left;
  }
}
.strike {
  text-decoration: line-through;
  color: red;
  margin-right: 5px;
}
.strike .currencySymbol {
  font-size: 14px;
}
.price-span.strike {
  color: #ff0000 !important;
}/* Mixins and functions */
._FeaturedCategories_ajbjy_2 {
  margin-top: 30px;
  padding-bottom: 0;
}
@media (max-width: 1024.98px) {
  ._FeaturedCategories_ajbjy_2 {
    margin-top: 0;
  }
}
._FeaturedCategories_ajbjy_2 .sectioneading {
  font-weight: 700;
  font-size: 1.625rem;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  margin-bottom: 20px;
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .list-title {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
@media (max-width: 575.98px) {
  ._FeaturedCategories_ajbjy_2 .title-main-wrapper .list-title {
    margin-bottom: 30px;
  }
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .list-title a {
  font-size: 15px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #F78F1E;
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .border-content-icon {
  margin-top: 30px;
  display: none !important;
  width: 100%;
  text-align: center;
  justify-content: center;
  position: relative;
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .border-content-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 1px;
  width: 130%;
  background-color: var(--color-border);
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .border-content-icon .box {
  width: 36px;
  height: 36px;
  border-radius: 2px 0px 0px 0px;
  background-color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}
@media (max-width: 575.98px) {
  ._FeaturedCategories_ajbjy_2 .title-main-wrapper .border-content-icon .box {
    width: 25px;
    height: 25px;
  }
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .border-content-icon .box .box-icon {
  transform: rotate(-45deg);
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .border-content-icon .box i {
  color: var(--clr-white);
  font-size: 15px;
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper .title {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-size: 2.375rem;
  font-weight: 500;
  width: auto;
  margin: 0 auto;
  line-height: 1;
  display: inline-block;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 1024.98px) {
  ._FeaturedCategories_ajbjy_2 .title-main-wrapper .title {
    font-size: 1.375rem;
  }
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper a {
  font-size: 0.9375rem;
  color: #F78F1E;
  text-transform: capitalize;
  font-weight: 500;
  transition: 0.3s;
  transform: scale(1);
  letter-spacing: 0em;
}
._FeaturedCategories_ajbjy_2 .title-main-wrapper a:hover {
  color: var(--secondary-color);
  transition: 0.3s;
  transform: scale(1.1);
}
._FeaturedCategories_ajbjy_2 .shopByCategoriesWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
._FeaturedCategories_ajbjy_2 .shopByCategoriesWrap .imgWrap {
  position: relative;
  flex-basis: calc(25% - 20px);
  max-width: calc(25% - 20px);
  margin-bottom: 60px;
}
._FeaturedCategories_ajbjy_2 .shopByCategoriesWrap .imgWrap p {
  display: inline-block;
  padding: 15px 0px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Oswald";
  color: var(--header-text);
}
._FeaturedCategories_ajbjy_2 .shopByCategoriesWrap .imgWrap img {
  width: 100%;
  height: auto;
}
@media (max-width: 575.98px) {
  ._FeaturedCategories_ajbjy_2 .shopByCategoriesWrap .imgWrap {
    flex-basis: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 400px) {
  ._FeaturedCategories_ajbjy_2 .shopByCategoriesWrap .imgWrap {
    flex-basis: 100%;
    max-width: 100%;
  }
}
/* Mixins and functions */
/****************slider show dots design*************/
._homepageBanner_h04hl_3 {
  max-width: 1920px;
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1025px) and (max-width: 1132px) {
  ._homepageBanner_h04hl_3 {
    margin-top: 0px;
  }
}
@media (max-width: 1024.98px) {
  ._homepageBanner_h04hl_3 {
    margin-top: 0px;
  }
}
._homepageBanner_h04hl_3 .swiper-slide a {
  display: block;
}
._homepageBanner_h04hl_3 .swiper .swiper-slide a {
  position: relative;
  display: block;
}
._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  max-width: 800px;
}
@media (max-width: 767.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText {
    left: 15px;
    top: auto;
    transform: none;
    z-index: 99;
    max-width: 227px;
    bottom: 10px;
  }
}
._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText p {
  font-size: 6.25rem;
  font-weight: 300;
  color: var(--clr-white);
  margin-bottom: 20px;
}
@media (max-width: 1599.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText p {
    font-size: 5.625rem;
  }
}
@media (max-width: 767.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText p {
    margin-bottom: 0px;
    font-size: 1.4375rem;
  }
}
._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText h1 {
  background-color: var(--main-color);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 46.58px;
  padding: 2px 5px 5px;
  color: var(--clr-white);
  display: inline;
}
@media (max-width: 1599.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText h1 {
    font-size: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-slide a .overylayText h1 {
    font-size: 0.875rem;
  }
}
._homepageBanner_h04hl_3 .swiper .swiper-button-prev,
._homepageBanner_h04hl_3 .swiper .swiper-button-next {
  position: absolute;
  top: 53%;
  width: 40px;
  height: 40px;
  background-color: #EEEEEE !important;
  border: none !important;
}
._homepageBanner_h04hl_3 .swiper .swiper-button-prev svg,
._homepageBanner_h04hl_3 .swiper .swiper-button-next svg {
  color: var(--header-text);
}
@media (max-width: 1024.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-button-prev,
  ._homepageBanner_h04hl_3 .swiper .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
._homepageBanner_h04hl_3 .swiper .swiper-button-prev.disabled,
._homepageBanner_h04hl_3 .swiper .swiper-button-next.disabled {
  display: none !important;
}
._homepageBanner_h04hl_3 .swiper .swiper-button-prev {
  left: 5.5% !important;
}
@media (max-width: 1024.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-button-prev {
    left: 5px !important;
  }
}
._homepageBanner_h04hl_3 .swiper .swiper-button-prev::before {
  content: "‹";
  font-size: 28px;
  color: #444444;
  margin-top: -4px;
  margin-left: -2px;
}
._homepageBanner_h04hl_3 .swiper .swiper-button-next {
  right: 6%;
}
@media (max-width: 1024.98px) {
  ._homepageBanner_h04hl_3 .swiper .swiper-button-next {
    right: 5px;
  }
}
._homepageBanner_h04hl_3 .swiper .swiper-button-next::before {
  content: "›";
  font-size: 28px;
  color: #444444;
  margin-top: -4px;
  margin-left: -2px;
}
._homepageBanner_h04hl_3 .slides-container {
  position: relative;
}
._homepageBanner_h04hl_3 .swiper-pagination {
  position: absolute;
  bottom: 30px;
  transform: translateX(-50%);
  left: 50% !important;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 16px;
}
@media (max-width: 767.98px) {
  ._homepageBanner_h04hl_3 .swiper-pagination {
    bottom: 12px;
  }
}
._homepageBanner_h04hl_3 .image-container {
  width: 100%;
  height: 100%;
  max-width: 1920px;
  max-height: 650px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f1f1f1;
  overflow: hidden;
}
._homepageBanner_h04hl_3 .image-container img {
  width: 100%;
  height: auto;
}/* Mixins and functions */
._webnc_17u0y_2 blockquote {
  max-width: 500px;
  width: unset;
}
._webnc_17u0y_2 h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024.98px) {
  ._webnc_17u0y_2 h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  ._webnc_17u0y_2 h3 {
    font-size: 1.125rem;
  }
}
._webnc_17u0y_2 a {
  color: var(--main-color);
}
._webnc_17u0y_2 .container-fluid {
  padding: 0;
}/* Mixins and functions */
._socialcompliance_1tnna_2 blockquote {
  max-width: 500px;
  width: unset;
}
._socialcompliance_1tnna_2 h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024.98px) {
  ._socialcompliance_1tnna_2 h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  ._socialcompliance_1tnna_2 h3 {
    font-size: 1.125rem;
  }
}
._socialcompliance_1tnna_2 a._btn_1tnna_21 {
  color: var(--clr-white);
}
._socialcompliance_1tnna_2 a {
  color: var(--secondary-color);
}
._socialcompliance_1tnna_2 #products_main_wrapperBorder table {
  height: auto;
  border: none;
  margin-bottom: 0px;
  font-size: 14px;
}
._socialcompliance_1tnna_2 #products_main_wrapperBorder table tbody tr td {
  border: none;
  padding: 0px;
}
._socialcompliance_1tnna_2 #products_main_wrapperBorder table tbody tr td ul li {
  list-style: circle;
}
._socialcompliance_1tnna_2 #products_main_wrapperBorder table .generalinfo .pull-right {
  display: flex;
  justify-content: space-between;
  position: relative;
  right: 0;
}
._socialcompliance_1tnna_2 #products_main_wrapperBorder table .generalinfo .pull-right a {
  color: var(--clr-white);
}
._socialcompliance_1tnna_2 #products_main_wrapperBorder table .generalinfo .pull-right a:hover {
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}/* Mixins and functions */
._catalog_tuph9_2 blockquote {
  max-width: 500px !important;
  width: unset !important;
}
._catalog_tuph9_2 h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024.98px) {
  ._catalog_tuph9_2 h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  ._catalog_tuph9_2 h3 {
    font-size: 1.125rem;
  }
}
._catalog_tuph9_2 a {
  color: var(--main-color) !important;
}
._catalog_tuph9_2 a:hover {
  color: var(--main-color);
}
@media (max-width: 1024.98px) {
  ._catalog_tuph9_2 .outer-catalog .inner-catalog form .row .col-sm-6 {
    margin-bottom: 30px;
  }
}/* Mixins and functions */
._lifeStyleGallery_1elzn_2 h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media (max-width: 1024.98px) {
  ._lifeStyleGallery_1elzn_2 h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  ._lifeStyleGallery_1elzn_2 h3 {
    font-size: 1.125rem;
  }
}
._lifeStyleGallery_1elzn_2 a {
  color: var(--main-color);
}
.cardwrapper {
  padding: 0.5rem 0rem 2rem;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}
.card {
  background: #ffffff;
  color: #333333;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
}
.card-image {
  background: #ffffff;
  display: block;
  position: relative;
  width: 100%;
}
.card-content {
  padding: 20px 10px;
}

/* Mixins and functions */
/**
 * Swiper 9.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 28, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}
.swiper, swiper-container {
  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-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide, 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, .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 {
  transform-style: preserve-3d;
}
.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-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-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.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, swiper-container: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);
  }
}
.pe-none {
  pointer-events: none;
}
.row:after {
  clear: both;
}
.modal-dialog-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  min-height: calc(100% - 3.5rem);
}
.modal-dialog.info .modal-header, .modal-dialog.error .modal-header, .modal-dialog.success .modal-header, .modal-dialog.warning .modal-header {
  color: #fff;
}
.modal-dialog.info .modal-header .close, .modal-dialog.error .modal-header .close, .modal-dialog.success .modal-header .close, .modal-dialog.warning .modal-header .close {
  color: inherit !important;
}
.modal-dialog.info .modal-header {
  background-color: #17a2b8;
}
.modal-dialog.error .modal-header {
  background-color: #e26262;
}
.modal-dialog.success .modal-header {
  background-color: #28a745;
}
.modal-dialog.warning .modal-header {
  background-color: #ffc107;
}
.font-weight-100 {
  font-weight: 100 !important;
}
.font-weight-200 {
  font-weight: 200 !important;
}
.font-weight-300 {
  font-weight: 300 !important;
}
.font-weight-400 {
  font-weight: 400 !important;
}
.font-weight-500 {
  font-weight: 500 !important;
}
.font-weight-600 {
  font-weight: 600 !important;
}
.font-weight-700 {
  font-weight: 700 !important;
}
.font-weight-800 {
  font-weight: 800 !important;
}
.font-weight-900 {
  font-weight: 900 !important;
}
.font-weight-bolder {
  font-weight: bolder !important;
}
.font-weight-lighter {
  font-weight: lighter !important;
}
/*Bootstrap 3.3.6 backward compatability hidden-visible classes*/
@media (max-width: 575px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-xs, .visible-sm, .visible-md, .visible-lg, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 575px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  .hidden-print {
    display: none !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
input:invalid {
  box-shadow: none;
}
/*!
 * Bootstrap v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
@-ms-viewport {
  width: device-width;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}
address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}
dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}
blockquote {
  margin: 0 0 1rem;
}
dfn {
  font-style: italic;
}
b,
strong {
  font-weight: bolder;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #0056b3;
  text-decoration: underline;
}
a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}
pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}
pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}
figure {
  margin: 0 0 1rem;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}
caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}
label {
  display: inline-block;
  margin-bottom: 0.5rem;
}
button {
  border-radius: 0;
}
button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}
input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}
textarea {
  overflow: auto;
  resize: vertical;
}
fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}
[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}
output {
  display: inline-block;
}
summary {
  display: list-item;
  cursor: pointer;
}
template {
  display: none;
}
[hidden] {
  display: none !important;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: inherit;
}
h1, .h1 {
  font-size: 2.5rem;
}
h2, .h2 {
  font-size: 2rem;
}
h3, .h3 {
  font-size: 1.75rem;
}
h4, .h4 {
  font-size: 1.5rem;
}
h5, .h5 {
  font-size: 1.25rem;
}
h6, .h6 {
  font-size: 1rem;
}
.lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
small,
.small {
  font-size: 80%;
  font-weight: 400;
}
mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  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: 90%;
  text-transform: uppercase;
}
.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}
.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto;
}
.figure {
  display: inline-block;
}
.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}
.figure-caption {
  font-size: 90%;
  color: #6c757d;
}
code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}
a > code {
  color: inherit;
}
kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}
pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}
.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px !important;
  margin-left: -15px !important;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.order-first {
  order: -1;
}
.order-last {
  order: 13;
}
.order-0 {
  order: 0;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.order-6 {
  order: 6;
}
.order-7 {
  order: 7;
}
.order-8 {
  order: 8;
}
.order-9 {
  order: 9;
}
.order-10 {
  order: 10;
}
.order-11 {
  order: 11;
}
.order-12 {
  order: 12;
}
.offset-1 {
  margin-left: 0.0833333333;
}
.offset-2 {
  margin-left: 0.1666666667;
}
.offset-3 {
  margin-left: 0.25;
}
.offset-4 {
  margin-left: 0.3333333333;
}
.offset-5 {
  margin-left: 0.4166666667;
}
.offset-6 {
  margin-left: 0.5;
}
.offset-7 {
  margin-left: 0.5833333333;
}
.offset-8 {
  margin-left: 0.6666666667;
}
.offset-9 {
  margin-left: 0.75;
}
.offset-10 {
  margin-left: 0.8333333333;
}
.offset-11 {
  margin-left: 0.9166666667;
}
@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 0.0833333333;
  }
  .offset-sm-2 {
    margin-left: 0.1666666667;
  }
  .offset-sm-3 {
    margin-left: 0.25;
  }
  .offset-sm-4 {
    margin-left: 0.3333333333;
  }
  .offset-sm-5 {
    margin-left: 0.4166666667;
  }
  .offset-sm-6 {
    margin-left: 0.5;
  }
  .offset-sm-7 {
    margin-left: 0.5833333333;
  }
  .offset-sm-8 {
    margin-left: 0.6666666667;
  }
  .offset-sm-9 {
    margin-left: 0.75;
  }
  .offset-sm-10 {
    margin-left: 0.8333333333;
  }
  .offset-sm-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 0.0833333333;
  }
  .offset-md-2 {
    margin-left: 0.1666666667;
  }
  .offset-md-3 {
    margin-left: 0.25;
  }
  .offset-md-4 {
    margin-left: 0.3333333333;
  }
  .offset-md-5 {
    margin-left: 0.4166666667;
  }
  .offset-md-6 {
    margin-left: 0.5;
  }
  .offset-md-7 {
    margin-left: 0.5833333333;
  }
  .offset-md-8 {
    margin-left: 0.6666666667;
  }
  .offset-md-9 {
    margin-left: 0.75;
  }
  .offset-md-10 {
    margin-left: 0.8333333333;
  }
  .offset-md-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 0.0833333333;
  }
  .offset-lg-2 {
    margin-left: 0.1666666667;
  }
  .offset-lg-3 {
    margin-left: 0.25;
  }
  .offset-lg-4 {
    margin-left: 0.3333333333;
  }
  .offset-lg-5 {
    margin-left: 0.4166666667;
  }
  .offset-lg-6 {
    margin-left: 0.5;
  }
  .offset-lg-7 {
    margin-left: 0.5833333333;
  }
  .offset-lg-8 {
    margin-left: 0.6666666667;
  }
  .offset-lg-9 {
    margin-left: 0.75;
  }
  .offset-lg-10 {
    margin-left: 0.8333333333;
  }
  .offset-lg-11 {
    margin-left: 0.9166666667;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 0.0833333333;
  }
  .offset-xl-2 {
    margin-left: 0.1666666667;
  }
  .offset-xl-3 {
    margin-left: 0.25;
  }
  .offset-xl-4 {
    margin-left: 0.3333333333;
  }
  .offset-xl-5 {
    margin-left: 0.4166666667;
  }
  .offset-xl-6 {
    margin-left: 0.5;
  }
  .offset-xl-7 {
    margin-left: 0.5833333333;
  }
  .offset-xl-8 {
    margin-left: 0.6666666667;
  }
  .offset-xl-9 {
    margin-left: 0.75;
  }
  .offset-xl-10 {
    margin-left: 0.8333333333;
  }
  .offset-xl-11 {
    margin-left: 0.9166666667;
  }
}
.table {
  width: 100%;
  background-color: transparent;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}
.table .table {
  background-color: #fff;
}
.table-sm th,
.table-sm td {
  padding: 0.3rem;
}
.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}
.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}
.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}
.table-hover .table-primary:hover {
  background-color: #9fcdff;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}
.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}
.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}
.table-success,
.table-success > th,
.table-success > td {
  background-color: #c3e6cb;
}
.table-hover .table-success:hover {
  background-color: #b1dfbb;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}
.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}
.table-hover .table-info:hover {
  background-color: #abdde5;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}
.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}
.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}
.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}
.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}
.table-hover .table-light:hover {
  background-color: #ececf6;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}
.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}
.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}
.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}
.table .thead-dark th {
  color: #fff;
  background-color: #212529;
  border-color: #32383e;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.table-dark {
  color: #fff;
  background-color: #212529;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #32383e;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.075);
}
@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.table-responsive > .table-bordered {
  border: 0;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}
.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}
.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}
.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}
.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}
.form-control-sm {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.form-control-lg {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
select.form-control[size], select.form-control[multiple] {
  height: auto;
}
textarea.form-control {
  height: auto;
}
.form-group {
  margin-bottom: 1rem;
}
.form-text {
  display: block;
  margin-top: 0.25rem;
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}
.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}
.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}
.form-check-label {
  margin-bottom: 0;
}
.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}
.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}
.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;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .form-control:valid, .form-control.is-valid,
.was-validated .custom-select:valid,
.custom-select.is-valid {
  border-color: #28a745;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.custom-select.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .form-control:valid ~ .valid-feedback,
.was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback,
.form-control.is-valid ~ .valid-tooltip,
.was-validated .custom-select:valid ~ .valid-feedback,
.was-validated .custom-select:valid ~ .valid-tooltip,
.custom-select.is-valid ~ .valid-feedback,
.custom-select.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-control-file:valid ~ .valid-feedback,
.was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback,
.form-control-file.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  background-color: #71dd8a;
}
.was-validated .custom-control-input:valid ~ .valid-feedback,
.was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback,
.custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #34ce57;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745;
}
.was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after {
  border-color: inherit;
}
.was-validated .custom-file-input:valid ~ .valid-feedback,
.was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback,
.custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}
.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}
.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;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}
.was-validated .form-control:invalid, .form-control.is-invalid,
.was-validated .custom-select:invalid,
.custom-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.custom-select.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip,
.was-validated .custom-select:invalid ~ .invalid-feedback,
.was-validated .custom-select:invalid ~ .invalid-tooltip,
.custom-select.is-invalid ~ .invalid-feedback,
.custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  background-color: #efa2a9;
}
.was-validated .custom-control-input:invalid ~ .invalid-feedback,
.was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback,
.custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #e4606d;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}
.was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after {
  border-color: inherit;
}
.was-validated .custom-file-input:invalid ~ .invalid-feedback,
.was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback,
.custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  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;
}
@media screen and (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover, .btn:focus {
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.btn.disabled, .btn:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}
.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}
.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}
.btn-secondary:focus, .btn-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:hover {
  color: #fff;
  background-color: #218838;
  border-color: #1e7e34;
}
.btn-success:focus, .btn-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #1e7e34;
  border-color: #1c7430;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}
.btn-info:focus, .btn-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}
.btn-danger:focus, .btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}
.btn-dark:focus, .btn-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  background-image: none;
  border-color: #007bff;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}
.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  background-image: none;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-success {
  color: #28a745;
  background-color: transparent;
  background-image: none;
  border-color: #28a745;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.btn-outline-info {
  color: #17a2b8;
  background-color: transparent;
  background-image: none;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-warning {
  color: #ffc107;
  background-color: transparent;
  background-image: none;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-danger {
  color: #dc3545;
  background-color: transparent;
  background-image: none;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}
.btn-outline-light {
  color: #f8f9fa;
  background-color: transparent;
  background-image: none;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-dark {
  color: #343a40;
  background-color: transparent;
  background-image: none;
  border-color: #343a40;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}
.btn-link {
  font-weight: 400;
  color: #007bff;
  background-color: transparent;
}
.btn-link:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: transparent;
  border-color: transparent;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: none;
  border-color: transparent;
  box-shadow: none;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}
.writeReviewBtn {
  border: none;
}
.writeReviewBtn:hover {
  color: #21C07B;
}
.btn-lg, .btn-group-lg > .btn {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.btn-sm, .btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}
input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}
.fade {
  transition: opacity 0.15s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}
.dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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 {
  margin-left: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.dropdown-menu-right {
  right: 0;
  left: auto;
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  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;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}
.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}
.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  background-color: transparent;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}
.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 0 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group,
.btn-group-vertical .btn + .btn,
.btn-group-vertical .btn + .btn-group,
.btn-group-vertical .btn-group + .btn,
.btn-group-vertical .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}
.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}
.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}
.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical .btn,
.btn-group-vertical .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: -1px;
}
.input-group-prepend {
  margin-right: -1px;
}
.input-group-append {
  margin-left: -1px;
}
.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  height: calc(2.875rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  height: calc(1.8125rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}
.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}
.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}
.custom-control-label {
  position: relative;
  margin-bottom: 0;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  user-select: none;
  background-color: #dee2e6;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  background-size: 8px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(128, 189, 255, 0.5);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  opacity: 0;
}
.custom-select-sm {
  height: calc(1.8125rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%;
}
.custom-select-lg {
  height: calc(2.875rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%;
}
.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin-bottom: 0;
}
.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:focus ~ .custom-file-label::after {
  border-color: #80bdff;
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: 2.25rem;
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: 1px solid #ced4da;
  border-radius: 0 0.25rem 0.25rem 0;
}
.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media screen and (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    transition: none;
  }
}
.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
}
.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  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 {
  border-radius: 0.25rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}
.navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}
.card-title {
  margin-bottom: 0.75rem;
}
.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}
.card-text:last-child {
  margin-bottom: 0;
}
.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}
.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}
.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}
.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}
.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}
.card-img {
  width: 100%;
  border-radius: calc(0.25rem - 1px);
}
.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}
.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px);
}
.card-deck {
  display: flex;
  flex-direction: column;
}
.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}
.card-group {
  display: flex;
  flex-direction: column;
}
.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-top,
  .card-group > .card:first-child .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:first-child .card-img-bottom,
  .card-group > .card:first-child .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-top,
  .card-group > .card:last-child .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:last-child .card-img-bottom,
  .card-group > .card:last-child .card-footer {
    border-bottom-left-radius: 0;
  }
  .card-group > .card:only-child {
    border-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-top,
  .card-group > .card:only-child .card-header {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
  }
  .card-group > .card:only-child .card-img-bottom,
  .card-group > .card:only-child .card-footer {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
    border-radius: 0;
  }
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header,
  .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer {
    border-radius: 0;
  }
}
.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}
.accordion .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}
.accordion .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}
.accordion .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
}
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}
.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}
.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}
.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}
.badge:empty {
  display: none;
}
.btn .badge {
  position: relative;
  top: -1px;
}
.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}
.badge-primary {
  color: #fff;
  background-color: #007bff;
}
.badge-primary[href]:hover, .badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0062cc;
}
.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
.badge-secondary[href]:hover, .badge-secondary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #545b62;
}
.badge-success {
  color: #fff;
  background-color: #28a745;
}
.badge-success[href]:hover, .badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1e7e34;
}
.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
.badge-info[href]:hover, .badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #117a8b;
}
.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
.badge-warning[href]:hover, .badge-warning[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #d39e00;
}
.badge-danger {
  color: #fff;
  background-color: #dc3545;
}
.badge-danger[href]:hover, .badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #bd2130;
}
.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
.badge-light[href]:hover, .badge-light[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #dae0e5;
}
.badge-dark {
  color: #fff;
  background-color: #343a40;
}
.badge-dark[href]:hover, .badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #1d2124;
}
.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}
.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.alert-heading {
  color: inherit;
}
.alert-link {
  font-weight: 700;
}
.alert-dismissible {
  padding-right: 4rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}
.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.alert-primary hr {
  border-top-color: #9fcdff;
}
.alert-primary .alert-link {
  color: #002752;
}
.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}
.alert-secondary hr {
  border-top-color: #c8cbcf;
}
.alert-secondary .alert-link {
  color: #202326;
}
.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.alert-success hr {
  border-top-color: #b1dfbb;
}
.alert-success .alert-link {
  color: #0b2e13;
}
.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}
.alert-info hr {
  border-top-color: #abdde5;
}
.alert-info .alert-link {
  color: #062c33;
}
.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #533f03;
}
.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert-danger hr {
  border-top-color: #f1b0b7;
}
.alert-danger .alert-link {
  color: #491217;
}
.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}
.alert-light hr {
  border-top-color: #ececf6;
}
.alert-light .alert-link {
  color: #686868;
}
.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}
.alert-dark hr {
  border-top-color: #b9bbbe;
}
.alert-dark .alert-link {
  color: #040505;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}
.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .progress-bar {
    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 {
  animation: progress-bar-stripes 1s linear infinite;
}
.media {
  display: flex;
  align-items: flex-start;
}
.media-body {
  flex: 1;
}
.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}
.list-group-item:hover, .list-group-item:focus {
  z-index: 1;
  text-decoration: none;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}
.list-group-flush:last-child .list-group-item:last-child {
  border-bottom: 0;
}
.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}
.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}
.list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #155724;
  background-color: #b1dfbb;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}
.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}
.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}
.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}
.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}
.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}
.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -25%);
}
@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}
.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}
.modal-content {
  position: relative;
  display: flex;
  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.3rem;
  outline: 0;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}
.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}
.modal-footer > :not(:first-child) {
  margin-left: 0.25rem;
}
.modal-footer > :not(:last-child) {
  margin-right: 0.25rem;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}
.modal-xl {
  max-width: 900px !important;
}
.modal-lg {
  max-width: 800px !important;
}
.modal-md {
  max-width: 500px !important;
}
.modal-sm {
  max-width: 300px !important;
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  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 .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}
.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}
.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}
.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem;
}
.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  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 rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}
.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top .arrow, .bs-popover-auto[x-placement^=top] .arrow {
  bottom: calc((0.5rem + 1px) * -1);
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before,
.bs-popover-top .arrow::after,
.bs-popover-auto[x-placement^=top] .arrow::after {
  border-width: 0.5rem 0.5rem 0;
}
.bs-popover-top .arrow::before, .bs-popover-auto[x-placement^=top] .arrow::before {
  bottom: 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::after {
  bottom: 1px;
  border-top-color: #fff;
}
.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right .arrow, .bs-popover-auto[x-placement^=right] .arrow {
  left: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before,
.bs-popover-right .arrow::after,
.bs-popover-auto[x-placement^=right] .arrow::after {
  border-width: 0.5rem 0.5rem 0.5rem 0;
}
.bs-popover-right .arrow::before, .bs-popover-auto[x-placement^=right] .arrow::before {
  left: 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::after {
  left: 1px;
  border-right-color: #fff;
}
.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom .arrow, .bs-popover-auto[x-placement^=bottom] .arrow {
  top: calc((0.5rem + 1px) * -1);
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before,
.bs-popover-bottom .arrow::after,
.bs-popover-auto[x-placement^=bottom] .arrow::after {
  border-width: 0 0.5rem 0.5rem 0.5rem;
}
.bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^=bottom] .arrow::before {
  top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::after {
  top: 1px;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}
.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left .arrow, .bs-popover-auto[x-placement^=left] .arrow {
  right: calc((0.5rem + 1px) * -1);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before,
.bs-popover-left .arrow::after,
.bs-popover-auto[x-placement^=left] .arrow::after {
  border-width: 0.5rem 0 0.5rem 0.5rem;
}
.bs-popover-left .arrow::before, .bs-popover-auto[x-placement^=left] .arrow::before {
  right: 0;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::after {
  right: 1px;
  border-left-color: #fff;
}
.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}
.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}
.carousel {
  position: relative;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  backface-visibility: hidden;
  perspective: 1000px;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
  transition: transform 0.6s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    transition: none;
  }
}
.carousel-item-next,
.carousel-item-prev {
  position: absolute;
  top: 0;
}
.carousel-item-next.carousel-item-left,
.carousel-item-prev.carousel-item-right {
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next.carousel-item-left,
  .carousel-item-prev.carousel-item-right {
    transform: translate3d(0, 0, 0);
  }
}
.carousel-item-next,
.active.carousel-item-right {
  transform: translateX(100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-next,
  .active.carousel-item-right {
    transform: translate3d(100%, 0, 0);
  }
}
.carousel-item-prev,
.active.carousel-item-left {
  transform: translateX(-100%);
}
@supports (transform-style: preserve-3d) {
  .carousel-item-prev,
  .active.carousel-item-left {
    transform: translate3d(-100%, 0, 0);
  }
}
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}
@supports (transform-style: preserve-3d) {
  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.5);
}
.carousel-indicators li::before {
  position: absolute;
  top: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators li::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 10px;
  content: "";
}
.carousel-indicators .active {
  background-color: #fff;
}
.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}
.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;
}
.bg-primary {
  background-color: #007bff !important;
}
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}
.bg-secondary {
  background-color: #6c757d !important;
}
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}
.bg-success {
  background-color: #28a745 !important;
}
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important;
}
.bg-info {
  background-color: #17a2b8 !important;
}
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}
.bg-warning {
  background-color: #ffc107 !important;
}
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}
.bg-danger {
  background-color: #dc3545 !important;
}
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}
.bg-light {
  background-color: #f8f9fa !important;
}
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}
.bg-dark {
  background-color: #343a40 !important;
}
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}
.bg-white {
  background-color: #fff !important;
}
.bg-transparent {
  background-color: transparent !important;
}
.border {
  border: 1px solid #dee2e6 !important;
}
.border-top {
  border-top: 1px solid #dee2e6 !important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}
.border-left {
  border-left: 1px solid #dee2e6 !important;
}
.border-0 {
  border: 0 !important;
}
.border-top-0 {
  border-top: 0 !important;
}
.border-right-0 {
  border-right: 0 !important;
}
.border-bottom-0 {
  border-bottom: 0 !important;
}
.border-left-0 {
  border-left: 0 !important;
}
.border-primary {
  border-color: #007bff !important;
}
.border-secondary {
  border-color: #6c757d !important;
}
.border-success {
  border-color: #28a745 !important;
}
.border-info {
  border-color: #17a2b8 !important;
}
.border-warning {
  border-color: #ffc107 !important;
}
.border-danger {
  border-color: #dc3545 !important;
}
.border-light {
  border-color: #f8f9fa !important;
}
.border-dark {
  border-color: #343a40 !important;
}
.border-white {
  border-color: #fff !important;
}
.rounded {
  border-radius: 0.25rem !important;
}
.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}
.d-none {
  display: none !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.embed-responsive-21by9::before {
  padding-top: 0.4285714286;
}
.embed-responsive-16by9::before {
  padding-top: 0.5625;
}
.embed-responsive-4by3::before {
  padding-top: 0.75;
}
.embed-responsive-1by1::before {
  padding-top: 1;
}
.flex-row {
  flex-direction: row !important;
}
.flex-column {
  flex-direction: column !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-column-reverse {
  flex-direction: column-reverse !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}
.float-right {
  float: right !important;
}
.float-none {
  float: none !important;
}
@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: 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;
}
.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}
.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}
@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-none {
  box-shadow: none !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;
}
.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;
}
.mw-100 {
  max-width: 100% !important;
}
.mh-100 {
  max-height: 100% !important;
}
.m-0 {
  margin: 0 !important;
}
.mt-0,
.my-0 {
  margin-top: 0 !important;
}
.mr-0,
.mx-0 {
  margin-right: 0 !important;
}
.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}
.ml-0,
.mx-0 {
  margin-left: 0 !important;
}
.m-1 {
  margin: 0.25rem !important;
}
.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}
.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}
.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}
.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}
.m-2 {
  margin: 0.5rem !important;
}
.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}
.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}
.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}
.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}
.m-3 {
  margin: 1rem !important;
}
.mt-3,
.my-3 {
  margin-top: 1rem !important;
}
.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}
.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}
.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}
.m-4 {
  margin: 1.5rem !important;
}
.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}
.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}
.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}
.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}
.m-5 {
  margin: 3rem !important;
}
.mt-5,
.my-5 {
  margin-top: 3rem !important;
}
.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}
.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}
.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.pt-0,
.py-0 {
  padding-top: 0 !important;
}
.pr-0,
.px-0 {
  padding-right: 0 !important;
}
.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}
.pl-0,
.px-0 {
  padding-left: 0 !important;
}
.p-1 {
  padding: 0.25rem !important;
}
.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}
.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}
.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}
.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}
.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}
.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}
.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}
.p-3 {
  padding: 1rem !important;
}
.pt-3,
.py-3 {
  padding-top: 1rem !important;
}
.pr-3,
.px-3 {
  padding-right: 1rem !important;
}
.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}
.pl-3,
.px-3 {
  padding-left: 1rem !important;
}
.p-4 {
  padding: 1.5rem !important;
}
.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}
.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}
.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}
.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}
.p-5 {
  padding: 3rem !important;
}
.pt-5,
.py-5 {
  padding-top: 3rem !important;
}
.pr-5,
.px-5 {
  padding-right: 3rem !important;
}
.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}
.pl-5,
.px-5 {
  padding-left: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.mt-auto,
.my-auto {
  margin-top: auto !important;
}
.mr-auto,
.mx-auto {
  margin-right: auto !important;
}
.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}
.ml-auto,
.mx-auto {
  margin-left: auto !important;
}
@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-justify {
  text-align: justify !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-center {
  text-align: center !important;
}
@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.font-weight-light {
  font-weight: 300 !important;
}
.font-weight-normal {
  font-weight: 400 !important;
}
.font-weight-bold {
  font-weight: 700 !important;
}
.font-italic {
  font-style: italic !important;
}
.text-white {
  color: #fff !important;
}
.text-primary {
  color: #007bff !important;
}
a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}
.text-secondary {
  color: #6c757d !important;
}
a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important;
}
.text-success {
  color: #28a745 !important;
}
a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}
.text-info {
  color: #17a2b8 !important;
}
a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}
.text-warning {
  color: #ffc107 !important;
}
a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}
.text-danger {
  color: #dc3545 !important;
}
a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}
.text-light {
  color: #f8f9fa !important;
}
a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}
.text-dark {
  color: #343a40 !important;
}
a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}
.text-body {
  color: #212529 !important;
}
.text-muted {
  color: #6c757d !important;
}
.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}
.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
form {
  width: 100%;
}
:root {
  --clr_1: #003C68;
  --clr_2: #40B06A;
  --clr_3: #E0E0E0;
  --clr_4: #272727;
  --clr_5: #FF9D2A;
  --clr-black: #000000;
  --clr-white: #fff;
  --clr-table-header: #111111;
  --header-text: #444444;
  --txt-color: #222222;
  --txt-color-light: #888888;
  --transition: 0.3s;
  --font-body-size: 14px;
  --font-body-weight: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-body-lineheight: 22px;
  --font-family: "Oswald", sans-serif;
  --footer-text: #6f6f6f;
  --main-color: #C5D7FC;
  --secondary-color: #003C68;
  --border-bottom-clr: #EAEAEA;
  --color-border: #D9D9D9;
  --light-bg: rgb(247, 249, 251);
  --light-blue: #2C2B49;
  --lightbackground: #EEEEEE;
  --font-family-nato: "noto sans", sans-serif;
  --font-family-roboto: Roboto,sans-serif;
}
* {
  box-sizing: border-box;
  scrollbar-width: thin !important;
}
html,
body {
  margin: 0;
  height: 100%;
  background-color: transparent;
}
body {
  font-size: var(--font-body-size);
  line-height: 1;
  background-color: white !important;
}
body.sidebar-open {
  overflow: hidden !important;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.row.toBeRemoved {
  display: none;
}
.modal[data-id=modal-template] {
  display: none;
}
.page-load-container {
  display: none;
}
a {
  text-decoration: none;
  cursor: pointer;
  color: inherit;
}
a:focus {
  outline: none;
}
a:hover {
  text-decoration: none;
  color: inherit;
}
ul {
  margin-bottom: 0;
  list-style: none;
  padding: 0;
  margin-top: 0;
}
label {
  margin: 0;
}
.backdrop {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: 0.4s;
  transition-delay: 0.2s;
}
@media (min-width: 1366px) {
  .container-fluid,
  .container {
    max-width: 1310px;
    margin: auto;
  }
}
@font-face {
  font-family: "icomoon";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.eot?5pkm7a");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.eot?5pkm7a#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.ttf?5pkm7a") format("truetype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.woff?5pkm7a") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/icomoon/icomoon.svg?5pkm7a#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: #888888;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Arrow icons with Unicode fallback */
.icon-arrow-left:before {
  content: "‹";
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
}
.icon-arrow-right:before {
  content: "›";
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
}
@font-face {
  font-family: "Oswald";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Medium.svg#Oswald-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Oswald";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Oswald-Light.svg#Oswald-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-SemiBold.svg#Roboto-SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.eot");
  src: url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.eot?#iefix") format("embedded-opentype"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.woff2") format("woff2"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.woff") format("woff"), url("https://d207zvy2rsg5b5.cloudfront.net/F1257449-8029-4908-B5CD-1C3B20753856/css/fonts/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
#root {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
.currencySymbol::before {
  content: "$";
}
@media (max-width: 1024.98px) {
  body {
    overflow-x: hidden;
  }
}
details::details-content {
  height: 0;
  transition: height 0.3s, content-visibility 0.3s;
  transition-behavior: allow-discrete;
  overflow: hidden;
}
details[open]::details-content {
  height: max-content;
}
#TopCategories .product-sec-btn,
#popularProducts .product-sec-btn {
  display: none;
}
.product-sec-btn {
  text-align: center;
  margin-top: 0px;
}
.product-sec-btn .view-all-btn {
  font-size: 15px;
  cursor: pointer;
  font-weight: 500;
  line-height: 25.88px;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--txt-color-light);
  text-transform: capitalize;
  font-family: "Oswald", sans-serif;
}
@media (max-width: 575.98px) {
  .product-sec-btn .view-all-btn {
    font-size: 0.875rem;
  }
}
.product-sec-btn .view-all-btn.font-6 {
  font-size: 0.9375rem;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  color: #F78F1E;
  text-transform: capitalize;
}
.product-sec-btn .view-all-btn:hover {
  color: var(--main-color);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Oswald", serif;
  letter-spacing: 0.5px;
}
p,
span,
a,
div {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.5px;
  line-height: 20px;
  font-size: 16px;
}
.theme-color {
  color: var(--main-color) !important;
}
.title_with_border {
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--main-color);
}
.title_main {
  font-weight: 700;
  color: var(--main-color);
}
@media (max-width: 767.98px) {
  .title_main {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1025px) and (min-width: 500px) {
  .simple-modal-open .wishlistmessage {
    max-width: fit-content !important;
  }
}
.hidebasketpopup {
  display: none;
}
strong .link {
  color: var(--main-color);
}
strong .link:hover {
  text-decoration: underline;
  color: var(--main-color) !important;
}
.title-main-wrapper,
.similarProductHeading {
  position: relative;
  text-align: left;
}
.title-main-wrapper.hasBtn,
.similarProductHeading.hasBtn {
  padding-bottom: 15px;
}
.title-main-wrapper .title,
.similarProductHeading .title {
  color: var(--txt-color);
  font-size: 1.29375rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
}
@media (max-width: 1024.98px) {
  .title-main-wrapper .title,
  .similarProductHeading .title {
    margin-bottom: 8px;
  }
}
@media (max-width: 767.98px) {
  .title-main-wrapper .title,
  .similarProductHeading .title {
    font-size: 0.91875rem;
  }
}
.title-main-wrapper .title span,
.similarProductHeading .title span {
  display: inline-block;
  vertical-align: top;
  z-index: 2;
  max-width: 100%;
  width: auto;
  background: var(--clr-white);
}
.title-main-wrapper .view_all,
.similarProductHeading .view_all {
  display: inline-block;
  line-height: 15px;
}
.swiper-slide .product-card {
  height: 100%;
}
.go2top {
  display: none !important;
}
.backDrop {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: 30;
  height: 100% !important;
  width: 100%;
  background-color: rgba(35, 35, 35, 0.8);
  position: fixed;
}
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  cursor: pointer;
  z-index: 30;
  height: 100% !important;
  width: 100%;
  background-color: rgba(35, 35, 35, 0.8);
}
.stickyCenterMenu_wrapper,
.popup_inner {
  width: 100%;
  height: 100%;
}
.overlay_disable {
  visibility: hidden !important;
  opacity: 0 !important;
}
/*slider test*/
#priceCollapse {
  margin-bottom: 30px;
}
.priceFilterWrapper {
  height: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
  position: relative;
}
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 5px;
}
.slider__track,
.slider__range,
.slider__left-value,
.slider__right-value {
  position: absolute;
}
.slider__track,
.slider__range {
  border-radius: 3px;
  height: 5px;
}
.slider__track {
  background-color: var(--lightbackground);
  width: 100%;
  z-index: 1;
}
.slider__range {
  background-color: var(--lightbackground);
  z-index: 2;
}
.rangeStrt {
  position: absolute;
  left: 0;
  top: 0px;
}
.rangeEnd {
  position: absolute;
  right: 0;
  top: 0px;
}
.slider__left-value,
.slider__right-value {
  color: #40b06a;
  font-size: 0.875rem;
  margin-top: 20px;
}
.slider__left-value {
  left: 6px;
}
.slider__right-value {
  right: -4px;
}
/* Removing the default appearance */
.thumb,
.thumb::-webkit-slider-thumb {
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.thumb {
  pointer-events: none;
  position: absolute;
  height: 0;
  /*width: 200px;*/
  width: 100%;
  outline: none;
}
.thumb--zindex-3 {
  z-index: 3;
}
.thumb--zindex-4 {
  z-index: 4;
}
.thumb--zindex-5 {
  z-index: 5;
}
/* For Chrome browsers */
.thumb::-webkit-slider-thumb {
  background-color: var(--clr_5);
  border: 3px solid var(--clr_5);
  border-radius: 50%;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
/* For Firefox browsers */
.thumb::-moz-range-thumb {
  background-color: var(--main-color);
  border: 3px solid var(--main-color);
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  height: 18px;
  width: 18px;
  margin-top: 4px;
  pointer-events: all;
  position: relative;
}
/*slider test*/
.input-group.rememberMe {
  display: flex;
}
.input-group.rememberMe label {
  display: flex;
}
.input-group.rememberMe label input[type=checkbox] {
  margin-right: 5px;
  accent-color: var(--txt-color);
}
.input-group .forgotBtn {
  cursor: pointer;
  line-height: 22px;
  color: var(--txt-color);
}
/*******************************************************modal*****************************************************************/
.modal .modal-dialog .modal-content {
  border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  background: var(--clr-black);
  border-radius: 0;
  padding: 8px;
}
.modal .modal-dialog .modal-content .modal-header .close {
  color: var(--clr-white);
  text-shadow: none;
}
.modal .modal-dialog .modal-content .modal-header .close:focus, .modal .modal-dialog .modal-content .modal-header .close.active {
  box-shadow: none;
  outline: none;
}
.modal .modal-dialog .modal-content .modal-body {
  font-weight: var(--font-weight-bold);
  color: var(--txt-color);
}
.modal .modal-dialog.success.notification .modal-header,
.modal .modal-dialog.success.notification .modal-footer {
  display: none;
}
/*Line scale Loader*/
.animsition-loading,
.custom-animsition-loading {
  background-color: var(--clr-white);
  z-index: 10104 !important;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.animsition-loading .loader,
.custom-animsition-loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 100;
}
.animsition-loading .loader .line-scale > div,
.custom-animsition-loading .loader .line-scale > div {
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  display: inline-block;
  background: var(--clr-black);
  animation-fill-mode: both;
  animation-name: line-scale;
  animation-timing-function: cubic-bezier(0.2, 0.68, 0.18, 1.08);
  animation-iteration-count: infinite;
  animation-duration: 1s;
}
.animsition-loading .loader .line-scale > div:nth-child(1),
.custom-animsition-loading .loader .line-scale > div:nth-child(1) {
  animation-delay: -0.4s;
}
.animsition-loading .loader .line-scale > div:nth-child(2),
.custom-animsition-loading .loader .line-scale > div:nth-child(2) {
  animation-delay: -0.3s;
}
.animsition-loading .loader .line-scale > div:nth-child(3),
.custom-animsition-loading .loader .line-scale > div:nth-child(3) {
  animation-delay: -0.2s;
}
.animsition-loading .loader .line-scale > div:nth-child(4),
.custom-animsition-loading .loader .line-scale > div:nth-child(4) {
  animation-delay: -0.1s;
}
.animsition-loading .loader .line-scale > div:nth-child(5),
.custom-animsition-loading .loader .line-scale > div:nth-child(5) {
  animation-delay: 0s;
}
@keyframes line-scale {
  0%, 100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.4);
  }
}
#loaderWrapper {
  position: relative;
}
#loaderWrapper .custom-animsition-loading {
  position: absolute;
  height: 200px;
}
/*line scale loader*/
/*table styling*/
.custom-table {
  display: flex;
  flex-direction: column;
  gap: 0px 8px;
  line-height: 18px;
}
.custom-table-header {
  display: flex;
  font-weight: 600;
  margin: 0 -2px -1px -2px;
}
.custom-table-header .tableHeaderCell {
  display: flex;
  flex: 1;
  background: var(--main-color);
  align-items: center;
  justify-content: center;
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #dee2e6;
  color: var(--clr-white);
  margin: 0 1px;
  padding: 10px 5px;
  border-radius: 0 !important;
}
.custom-table-header .tableHeaderCell:first-child {
  border-left: 1px solid #dee2e6;
  border-radius: 12px 0 0 12px;
}
.custom-table-header .tableHeaderCell:last-child {
  border-right: 1px solid #dee2e6;
  border-radius: 0 12px 12px 0;
}
.custom-table-header .tableHeaderCell.dateHeader {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.custom-table-header .tableHeaderCell .sortBy {
  display: flex;
  flex-direction: column;
}
.custom-table-header .tableHeaderCell:hover .tableHeaderCell {
  background: var(--clr-white);
}
.custom-table-body {
  display: flex;
  flex-direction: column;
  border: solid 1px #c6c6c6;
  scrollbar-width: thin;
}
.custom-table-body::-webkit-scrollbar {
  width: 5px;
}
.custom-table-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.custom-table-body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
.custom-table-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.custom-table-body .noOrderData {
  border-radius: 0px;
  border: 1px solid #dee2e6;
  padding: 20px;
  background: #fff;
  text-align: center;
  font-size: 20px;
}
.custom-table-body .noGiftData {
  padding: 12px;
  background: #fff;
  width: 100%;
  border-radius: 12px;
}
.custom-table-body .item-data {
  display: flex;
  border-radius: 12px;
  border: 1px solid #dee2e6;
  width: 100%;
}
.custom-table-body .item-data .table-cell {
  flex: 1;
  padding: 12px;
  display: flex;
  align-items: center;
  background: #fff;
}
.custom-table-body .item-data .table-cell:first-child {
  border-radius: 12px 0 0 12px;
}
.custom-table-body .item-data .table-cell:last-child {
  border-radius: 0 12px 12px 0;
}
.custom-table-body .item-data:hover {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}
.custom-table-body .item-data:hover .table-cell {
  background: var(--clr-white);
}
.custom-table-body .toggleWrapper {
  position: relative;
}
.custom-table-body .toggleWrapper .toggleBtn {
  border: none;
  background: transparent;
}
.custom-table-body .toggleWrapper .toggleBtn:focus, .custom-table-body .toggleWrapper .toggleBtn.active {
  outline: 0;
  box-shadow: none;
}
.custom-table-body .toggleWrapper .actionBtnWrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 5px 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.custom-table-body .toggleWrapper .actionBtnWrapper .btn {
  font-size: var(--font-body-size) !important;
  color: var(--txt-color) !important;
  background: var(--clr-white) !important;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
}
.custom-table-body .toggleWrapper .actionBtnWrapper .btn:focus, .custom-table-body .toggleWrapper .actionBtnWrapper .btn.active {
  outline: 0;
  box-shadow: none;
  font-weight: var(--font-weight-bold);
}
.custom-table-body .toggleWrapper:hover .actionBtnWrapper {
  opacity: 1;
  visibility: visible;
}
.table-bordered {
  background: var(--clr-white);
}
.table-responsive {
  overflow-y: hidden;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  margin-bottom: 15px;
}
.table-responsive .table tbody {
  border: 1px solid #ffffff;
}
.table-responsive .table tr th,
.table-responsive .table tr td {
  border-right: 1px solid #ffffff;
  vertical-align: middle;
  background-color: var(--lightbackground);
}
@media (max-width: 414.98px) {
  .table-responsive .table tr th,
  .table-responsive .table tr td {
    font-size: 16px;
  }
}
.table-responsive.orderReport {
  overflow: visible !important;
  margin-top: 50px;
}
@media (max-width: 575.98px) {
  .table-responsive.orderReport {
    overflow-x: auto !important;
  }
}
.table-responsive.orderReport table tr th,
.table-responsive.orderReport table tr td {
  font-size: 0.875rem;
}
.table-responsive.orderReport table tr th .icon-Eye,
.table-responsive.orderReport table tr td .icon-Eye {
  font-size: 20px;
  transition: 0.3s;
  cursor: pointer;
}
.table-responsive.orderReport table tr th .icon-Eye:hover::before,
.table-responsive.orderReport table tr td .icon-Eye:hover::before {
  color: var(--main-color);
}
@media (max-width: 575.98px) {
  .table-responsive.orderReport.overflowOnResponsive {
    overflow-x: auto !important;
  }
  .table-responsive.orderReport.overflowOnResponsive .custom-table-body {
    border: none;
  }
}
.modal .dialog-container {
  width: 95%;
}
.dialog-success,
dialog[data-shm],
dialog[shm],
dialog[data-pos] {
  width: 100%;
  max-width: 500px;
  padding: 0;
  border: 0;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
  overflow: unset !important;
}
@media (max-width: 1024.98px) {
  .dialog-success,
  dialog[data-shm],
  dialog[shm],
  dialog[data-pos] {
    width: 90%;
  }
}
.dialog-success .dialog-header,
dialog[data-shm] .dialog-header,
dialog[shm] .dialog-header,
dialog[data-pos] .dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: var(--secondary-color);
  position: relative;
}
.dialog-success .dialog-header .dialog-title,
dialog[data-shm] .dialog-header .dialog-title,
dialog[shm] .dialog-header .dialog-title,
dialog[data-pos] .dialog-header .dialog-title {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  text-align: left;
}
.dialog-success .dialog-header button.close,
dialog[data-shm] .dialog-header button.close,
dialog[shm] .dialog-header button.close,
dialog[data-pos] .dialog-header button.close {
  color: var(--clr-white) !important;
  text-shadow: none;
  opacity: 1 !important;
  font-weight: 500 !important;
  display: flex;
  align-items: center;
  height: 16px;
  width: 16px;
  justify-content: center;
  font-size: 28px !important;
  background-color: transparent;
}
.dialog-success .dialog-header button.close .icon-Close,
dialog[data-shm] .dialog-header button.close .icon-Close,
dialog[shm] .dialog-header button.close .icon-Close,
dialog[data-pos] .dialog-header button.close .icon-Close {
  font-size: 24px;
  font-weight: 600;
}
.dialog-success .dialog-header button.close .icon-Close:before,
dialog[data-shm] .dialog-header button.close .icon-Close:before,
dialog[shm] .dialog-header button.close .icon-Close:before,
dialog[data-pos] .dialog-header button.close .icon-Close:before {
  color: #fff;
}
.dialog-success .dialog-header button.close:focus, .dialog-success .dialog-header button.close.active,
dialog[data-shm] .dialog-header button.close:focus,
dialog[data-shm] .dialog-header button.close.active,
dialog[shm] .dialog-header button.close:focus,
dialog[shm] .dialog-header button.close.active,
dialog[data-pos] .dialog-header button.close:focus,
dialog[data-pos] .dialog-header button.close.active {
  box-shadow: none;
  outline: none;
}
.dialog-success .dialog-footer,
dialog[data-shm] .dialog-footer,
dialog[shm] .dialog-footer,
dialog[data-pos] .dialog-footer {
  padding: 10px;
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
}
.dialog-success .dialog-footer button,
dialog[data-shm] .dialog-footer button,
dialog[shm] .dialog-footer button,
dialog[data-pos] .dialog-footer button {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  line-height: var(--font-body-lineheight);
  border: none;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  width: fit-content;
  padding: 5px 20px;
  cursor: pointer;
}
.dialog-success .dialog-footer button.active, .dialog-success .dialog-footer button:focus, .dialog-success .dialog-footer button:active, .dialog-success .dialog-footer button:hover,
dialog[data-shm] .dialog-footer button.active,
dialog[data-shm] .dialog-footer button:focus,
dialog[data-shm] .dialog-footer button:active,
dialog[data-shm] .dialog-footer button:hover,
dialog[shm] .dialog-footer button.active,
dialog[shm] .dialog-footer button:focus,
dialog[shm] .dialog-footer button:active,
dialog[shm] .dialog-footer button:hover,
dialog[data-pos] .dialog-footer button.active,
dialog[data-pos] .dialog-footer button:focus,
dialog[data-pos] .dialog-footer button:active,
dialog[data-pos] .dialog-footer button:hover {
  box-shadow: none !important;
  outline: none;
  border: none !important;
}
.dialog-success .dialog-footer button:hover,
dialog[data-shm] .dialog-footer button:hover,
dialog[shm] .dialog-footer button:hover,
dialog[data-pos] .dialog-footer button:hover {
  background-color: var(--secondary-color) !important;
}
.dialog-success .dialog-footer button:disabled,
dialog[data-shm] .dialog-footer button:disabled,
dialog[shm] .dialog-footer button:disabled,
dialog[data-pos] .dialog-footer button:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.dialog-success .dialog-footer button:last-child,
dialog[data-shm] .dialog-footer button:last-child,
dialog[shm] .dialog-footer button:last-child,
dialog[data-pos] .dialog-footer button:last-child {
  display: none;
}
.dialog-success .dialog-body,
dialog[data-shm] .dialog-body,
dialog[shm] .dialog-body,
dialog[data-pos] .dialog-body {
  padding: 15px;
  overflow-y: auto !important;
  max-height: 80vh;
  height: auto;
  font-size: 13px;
  scrollbar-width: thin;
  text-align: left;
  margin: 0;
}
.dialog-success .dialog-body::-webkit-scrollbar,
dialog[data-shm] .dialog-body::-webkit-scrollbar,
dialog[shm] .dialog-body::-webkit-scrollbar,
dialog[data-pos] .dialog-body::-webkit-scrollbar {
  width: 5px;
}
.dialog-success .dialog-body::-webkit-scrollbar-track,
dialog[data-shm] .dialog-body::-webkit-scrollbar-track,
dialog[shm] .dialog-body::-webkit-scrollbar-track,
dialog[data-pos] .dialog-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.dialog-success .dialog-body::-webkit-scrollbar-thumb,
dialog[data-shm] .dialog-body::-webkit-scrollbar-thumb,
dialog[shm] .dialog-body::-webkit-scrollbar-thumb,
dialog[data-pos] .dialog-body::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
.dialog-success .dialog-body::-webkit-scrollbar-thumb:hover,
dialog[data-shm] .dialog-body::-webkit-scrollbar-thumb:hover,
dialog[shm] .dialog-body::-webkit-scrollbar-thumb:hover,
dialog[data-pos] .dialog-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.dialog-success .dialog-body .input-group,
dialog[data-shm] .dialog-body .input-group,
dialog[shm] .dialog-body .input-group,
dialog[data-pos] .dialog-body .input-group {
  display: flex;
  align-items: center;
}
.dialog-success .dialog-body .input-group .label,
dialog[data-shm] .dialog-body .input-group .label,
dialog[shm] .dialog-body .input-group .label,
dialog[data-pos] .dialog-body .input-group .label {
  margin-bottom: 0 !important;
  flex: 0 0 200px;
  max-width: 200px;
}
.dialog-success .dialog-body .input-group .fieldWrapper,
dialog[data-shm] .dialog-body .input-group .fieldWrapper,
dialog[shm] .dialog-body .input-group .fieldWrapper,
dialog[data-pos] .dialog-body .input-group .fieldWrapper {
  flex: 1 1 auto;
}
.dialog-success .dialog-body .input-group .review-ratings,
dialog[data-shm] .dialog-body .input-group .review-ratings,
dialog[shm] .dialog-body .input-group .review-ratings,
dialog[data-pos] .dialog-body .input-group .review-ratings {
  display: flex;
  column-gap: 5px;
}
.dialog-success .dialog-body .input-group .review-ratings span,
dialog[data-shm] .dialog-body .input-group .review-ratings span,
dialog[shm] .dialog-body .input-group .review-ratings span,
dialog[data-pos] .dialog-body .input-group .review-ratings span {
  font-size: calc(var(--font-body-size) + 2px);
  cursor: pointer;
}
.dialog-success .dialog-body .input-login-action,
dialog[data-shm] .dialog-body .input-login-action,
dialog[shm] .dialog-body .input-login-action,
dialog[data-pos] .dialog-body .input-login-action {
  display: flex;
  column-gap: 10px;
  justify-content: flex-end;
}
.dialog-success .dialog-body .input-login-action button,
dialog[data-shm] .dialog-body .input-login-action button,
dialog[shm] .dialog-body .input-login-action button,
dialog[data-pos] .dialog-body .input-login-action button {
  width: fit-content;
  padding: 5px 20px;
}
.dialog-success .dialog-body .input-login-action button.btn_login_guestUserPopup,
dialog[data-shm] .dialog-body .input-login-action button.btn_login_guestUserPopup,
dialog[shm] .dialog-body .input-login-action button.btn_login_guestUserPopup,
dialog[data-pos] .dialog-body .input-login-action button.btn_login_guestUserPopup {
  padding: 10px 0;
}
.dialog-success .dialog-body .userDetails .detail,
dialog[data-shm] .dialog-body .userDetails .detail,
dialog[shm] .dialog-body .userDetails .detail,
dialog[data-pos] .dialog-body .userDetails .detail {
  display: flex;
}
.dialog-success .dialog-body .userDetails .detail .detailHeading,
dialog[data-shm] .dialog-body .userDetails .detail .detailHeading,
dialog[shm] .dialog-body .userDetails .detail .detailHeading,
dialog[data-pos] .dialog-body .userDetails .detail .detailHeading {
  flex: 0 0 150px;
  font-weight: var(--font-weight-bold);
}
.dialog-success .dialog-body .userDetails .detail .detailValue,
dialog[data-shm] .dialog-body .userDetails .detail .detailValue,
dialog[shm] .dialog-body .userDetails .detail .detailValue,
dialog[data-pos] .dialog-body .userDetails .detail .detailValue {
  flex: 1 1 auto;
}
.dialog-success::backdrop,
dialog[data-shm]::backdrop,
dialog[shm]::backdrop,
dialog[data-pos]::backdrop {
  background: rgba(0, 0, 0, 0.7);
}
.dialog-success.notification,
dialog[data-shm].notification,
dialog[shm].notification,
dialog[data-pos].notification {
  max-width: 250px;
}
.dialog-success.notification .dialog-header,
.dialog-success.notification .dialog-footer,
dialog[data-shm].notification .dialog-header,
dialog[data-shm].notification .dialog-footer,
dialog[shm].notification .dialog-header,
dialog[shm].notification .dialog-footer,
dialog[data-pos].notification .dialog-header,
dialog[data-pos].notification .dialog-footer {
  display: none;
}
.dialog-success.noFooter .dialog-footer,
dialog[data-shm].noFooter .dialog-footer,
dialog[shm].noFooter .dialog-footer,
dialog[data-pos].noFooter .dialog-footer {
  display: none;
}
.dialog-success[data-pos="3"],
dialog[data-shm][data-pos="3"],
dialog[shm][data-pos="3"],
dialog[data-pos][data-pos="3"] {
  margin: 10px 10px auto auto;
}
.dialog-success.fluid-model,
dialog[data-shm].fluid-model,
dialog[shm].fluid-model,
dialog[data-pos].fluid-model {
  width: 95%;
}
/*error page*/
.errorPage {
  padding: 50px 0;
  color: var(--txt-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.errorPage .pageTitle {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: var(--font-body-lineheight);
  margin-bottom: 15px;
}
.errorPage .errorContent h1 {
  font-size: 11pc;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}
.errorPage .pageType .textHead {
  font-size: 18px;
  margin-bottom: 50px;
  font-weight: 600;
}
.errorPage .pageType .homeAction {
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary-400);
}
.errorPage .pageType .homeAction a {
  background: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.4;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px 11px;
  color: var(--clr-white);
  letter-spacing: 1.1px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 10px;
  display: inline-block;
  outline: none;
  border-radius: 30px;
}
.errorPage .pageType .homeAction a:hover {
  border: 1px solid var(--secondary-color);
  background-color: transparent;
  color: var(--secondary-color);
}
/*error page*/
/*pagination*/
.pagination {
  justify-content: center;
  gap: 8px;
  margin-top: 35px;
  flex-wrap: wrap;
  display: flex;
}
.pagination .page-link {
  color: var(--txt-color);
  position: relative;
  margin-left: 0;
  line-height: inherit;
  background-color: var(--clr-white);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 50% !important;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-family: var(--font-family-roboto);
}
.pagination .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--clr-white);
}
.pagination .page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}
.pagination .page-link.icon-arrow-right:before {
  content: "›";
  font-family: Arial, sans-serif !important;
  font-size: 18px;
  font-weight: bold;
  color: var(--txt-color-light);
}
.pagination .page-link.icon-arrow-left:before {
  content: "‹";
  font-family: Arial, sans-serif !important;
  font-size: 18px;
  font-weight: bold;
  color: var(--txt-color-light);
}
.pagination .page-link:hover {
  z-index: 2;
  text-decoration: none;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--clr-white);
}
.pagination .page-link.page-next, .pagination .page-link.page-last, .pagination .page-link.page-first, .pagination .page-link.page-prev {
  padding: 0.5rem 0.75rem !important;
  width: unset !important;
  height: unset !important;
  border-radius: 20px !important;
  background-color: var(--clr-white);
  border: 1px solid var(--color-border);
}
.pagination .page-link.page-next:hover, .pagination .page-link.page-last:hover, .pagination .page-link.page-first:hover, .pagination .page-link.page-prev:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--clr-white);
}
.pagination .page-link.page-last, .pagination .page-link.page-first {
  display: none;
}
.pagination .page-link.page-prev, .pagination .page-link.page-next, .pagination .page-link.icon-arrow-left, .pagination .page-link.icon-arrow-right {
  padding: 0 !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50% !important;
}
.pagination .page-link.page-prev:hover::before, .pagination .page-link.page-next:hover::before, .pagination .page-link.icon-arrow-left:hover::before, .pagination .page-link.icon-arrow-right:hover::before {
  color: var(--clr-white);
}
.pagination .page-link.page-prev:before {
  content: "‹";
  font-family: Arial, sans-serif !important;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: var(--txt-color-light);
  font-size: 16px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pagination .page-link.page-next:before {
  content: "›";
  font-family: Arial, sans-serif !important;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  color: var(--txt-color-light);
  font-size: 16px;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*pagination*/
input[type=date],
input[type=text],
.form-control {
  border-width: 1px;
  border-radius: 5px;
  padding: 5px 10px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
input[type=date]::placeholder,
input[type=text]::placeholder,
.form-control::placeholder {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
input[type=date]:hover, input[type=date]:focus, input[type=date].active,
input[type=text]:hover,
input[type=text]:focus,
input[type=text].active,
.form-control:hover,
.form-control:focus,
.form-control.active {
  outline: none;
  box-shadow: none;
  background: var(--clr-white);
  border-width: 1px;
  border-style: solid;
  border-color: #ced4da;
  border-radius: 5px !important;
}
input[type=date]:disabled,
input[type=text]:disabled,
.form-control:disabled {
  background-color: #e3dfdf;
}
input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type=number] {
  appearance: textfield;
}
label {
  font-size: var(--font-body-size);
  font-weight: var(--font-weight-medium);
  color: var(--txt-color);
  line-height: var(--font-body-lineheight);
  letter-spacing: 0.32px;
  margin: 0 0 8px;
  padding: 0;
  text-transform: capitalize;
  width: 100%;
}
/************************************Form-section*********************************************/
.page-heading {
  margin: 0;
  margin-bottom: 25px;
  color: var(--txt-color);
  font-size: 1.4375rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: 2rem;
  letter-spacing: 0.06px;
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 2px solid #333;
}
.pageSubHeading {
  margin-bottom: 15px;
  color: var(--txt-color);
  font-size: 1.5rem;
  text-transform: capitalize;
  font-weight: var(--font-weight-bold);
  line-height: 2rem;
  letter-spacing: 0.06px;
  text-align: left;
}
#OrderSample .redMandat {
  color: #ff0000;
}
#OrderSample .form-group {
  margin-bottom: 30px;
}
#OrderSample .form-group label {
  font-size: 0.875rem;
}
#OrderSample .title {
  font-size: 2rem;
  color: var(--clr-black);
  font-weight: 500;
  line-height: 1.875rem;
  text-transform: uppercase;
  text-align: left;
  margin: 0 0 7px 0;
}
@media (max-width: 575.98px) {
  #OrderSample .title {
    width: 100%;
    text-align: left;
  }
}
@media (max-width: 1599.98px) {
  #OrderSample .title {
    font-size: 1.625rem;
  }
}
@media (max-width: 575.98px) {
  #OrderSample .title {
    width: 100%;
  }
}
#OrderSample .form-group.required label:before {
  content: "*";
  color: #ff0000;
}
#OrderSample .form-group.required label:after {
  content: "";
  margin-left: 3px;
}
#OrderSample input:disabled {
  background-color: #ecf0f1;
}
#OrderSample #ASI,
#OrderSample #PPAI,
#OrderSample #SAGE,
#OrderSample #UPIC {
  background-color: #ecf0f1;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  #OrderSample .col-50 {
    width: 100%;
  }
}
#FreightEstimator {
  cursor: default;
}
#FreightEstimator .redMandat {
  color: #ff0000;
}
#FreightEstimator .form-control {
  background-color: #ecf0f1;
  border-radius: 5px;
  border: none;
  padding: 0.375rem 0.75rem;
}
@media (max-width: 767.98px) {
  #FreightEstimator .upsrates {
    margin-top: 10px;
  }
}
#FreightEstimator #EstimatorData {
  display: flex;
}
@media (max-width: 767.98px) {
  #FreightEstimator #EstimatorData {
    flex-direction: column;
  }
}
#FreightEstimator #EstimatorData .contctForFreight {
  padding: 0;
}
#RequestQuote .redMandat {
  color: #ff0000;
}
#RequestQuote .form-group.required label:before {
  content: "*";
  color: #ff0000;
}
#RequestQuote .form-group.required label:after {
  content: "";
  margin-left: 3px;
}
.form-group.required label:after {
  content: "*";
  color: #ff0000;
}
.form-group.required .paymentOptions label:after {
  content: "";
}
/*button*/
.btn-primary {
  font-family: "Roboto", sans-serif !important;
  font-size: 1.125rem;
  font-weight: 400;
  background: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.4;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px 11px 20px;
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 1.1px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 10px;
  display: inline-block;
  outline: none;
  border-radius: 30px;
  min-height: 42px;
  transition: 0.3s;
}
@media (max-width: 1599.98px) {
  .btn-primary {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .btn-primary {
    padding: 5px 20px 7px 20px;
  }
}
.btn-primary.active, .btn-primary:focus, .btn-primary:active {
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}
.btn-primary i {
  color: var(--clr-white);
}
.btn-primary:hover {
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease-in;
  background-color: #fff;
  color: var(--secondary-color);
  border-color: 1px solid var(--secondary-color);
}
.btn-primary:hover i {
  color: var(--main-color);
}
.btn-primary + .btn {
  margin-left: 15px;
}
.btn-primary i {
  vertical-align: text-top;
  margin-right: 5px;
}
.btn-primary:focus, .btn-primary:active {
  box-shadow: none !important;
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--clr-white) !important;
}
.btn-primary:disabled {
  background-color: var(--secondary-color) !important;
  border-color: var(--secondary-color) !important;
  color: var(--clr-white) !important;
}
.btn-primary:disabled:hover {
  color: var(--clr-white) !important;
}
.btn-outline-primary {
  font-family: "Roboto", sans-serif !important;
  font-size: 1.125rem;
  font-weight: 400;
  background: var(--secondary-color);
  text-transform: uppercase;
  line-height: 1.4;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px 11px 20px;
  color: var(--clr-white);
  transition: 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: 1.1px;
  justify-content: center;
  align-items: center;
  min-width: 100px;
  margin-top: 10px;
  display: inline-block;
  outline: none;
  border-radius: 30px;
  min-height: 42px;
  border: 1px solid var(--secondary-color);
  background-color: #fff;
  color: var(--secondary-color);
}
@media (max-width: 1599.98px) {
  .btn-outline-primary {
    font-size: 0.875rem;
  }
}
@media (max-width: 575.98px) {
  .btn-outline-primary {
    padding: 5px 20px 7px 20px;
  }
}
.btn-outline-primary.active, .btn-outline-primary:focus, .btn-outline-primary:active {
  box-shadow: none !important;
  outline: none;
  text-decoration: none;
}
.btn-outline-primary:hover {
  border: 1px solid var(--secondary-color);
  transition: all 0.3s ease-in;
  background-color: var(--secondary-color);
  color: #fff;
}
.error-text {
  color: #dd0a32 !important;
  text-transform: uppercase;
  font-size: 11px !important;
  font-weight: 500 !important;
  margin-top: 5px;
}
.text-danger {
  color: #cf2536 !important;
  display: inline-block;
}
.text-danger[role=alert] {
  margin-top: 5px;
}
.starColor {
  color: #ff0000;
}
/*qty wrapper used in checkout page, cart popup,detail page*/
.qty .plus-minus-delete {
  border-radius: 5px;
  border: solid 1px #ddd;
  padding: 10px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 130px;
  position: relative;
}
.qty .plus-minus-delete .btn-minus {
  position: absolute;
  top: 13px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b5c9d5;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 13px 3px rgba(207, 207, 207, 0.1607843137);
  font-size: 10px;
  color: #fff;
}
.qty .plus-minus-delete .btn-minus:hover {
  background: var(--main-color);
}
.qty .plus-minus-delete .btn-minus.disabled {
  pointer-events: none;
  opacity: 0.5 !important;
}
.qty .plus-minus-delete .btn-minus::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 2px;
  top: 14px;
  background: #fff;
}
.qty .plus-minus-delete input {
  height: auto;
  padding: 8px 0;
  text-align: center;
  border: none;
  width: 100%;
  background: transparent;
}
.qty .plus-minus-delete input:hover, .qty .plus-minus-delete input:focus, .qty .plus-minus-delete input.active {
  outline: none;
  box-shadow: none;
}
.qty .plus-minus-delete .btn-plus {
  position: absolute;
  top: 13px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b5c9d5;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 0 13px 3px rgba(207, 207, 207, 0.1607843137);
  font-size: 10px;
  color: #fff;
}
.qty .plus-minus-delete .btn-plus:hover {
  background: var(--main-color);
}
.qty .plus-minus-delete .btn-plus::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 10px;
  top: 14px;
  background: #fff;
}
.qty .plus-minus-delete .btn-plus::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  left: 10px;
  top: 14px;
  background: #fff;
  transform: rotate(90deg);
}
/*custom slider*/
.t-slider {
  position: relative;
}
.t-slider .controls .nav {
  display: none;
}
.t-slider .controls .nav button {
  position: absolute;
  top: 50%;
  z-index: 3;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #fff;
  color: var(--txt-color);
  margin-top: 0 !important;
  transform: translateY(-50%);
  border: 0px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-origin: center;
}
.t-slider .controls .nav button.prev {
  left: 10px;
}
.t-slider .controls .nav button.next {
  right: 10px;
}
.t-slider .controls .nav button:disabled {
  opacity: 0.6;
}
.t-slider .controls .nav button .icon {
  font-size: 20px;
  transition: 0.1s;
}
.t-slider .controls .nav button:not(:disabled):hover {
  transform: scale(1.2) translateY(-50%);
}
.t-slider .controls .nav button:not(:disabled):hover .icon {
  transform: scale(0.8);
}
/*custom slider*/
/*swiper*/
@media (max-width: 575.98px) {
  .swiper .swiper-slide-active,
  .swiper .swiper-slide-next {
    opacity: 1;
  }
}
.swiper .swiper-button-prev.swiper-button-disabled,
.swiper .swiper-button-next.swiper-button-disabled {
  background-color: #EEEEEE !important;
  color: #444444 !important;
  opacity: initial !important;
  border: none !important;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #F78F1E !important;
  border: 1px solid #F78F1E !important;
  color: var(--clr-white);
  margin-top: 0 !important;
  transform: translateY(-50%);
}
.swiper .swiper-button-prev::after,
.swiper .swiper-button-next::after {
  font-size: 0px;
  display: none;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none !important;
  font-size: 0;
}
.loadingData {
  position: relative;
  min-height: 200px;
  z-index: 1;
}
.loadingData.absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}
.loadingData .custom-animsition-loading {
  position: absolute;
}
.loadingData .right-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 300;
  gap: 10px;
}
.loadingData .right-loader img {
  transform-origin: 50% 54%;
  animation: rotate 1s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/********************************************/
#login .title-main-wrapper {
  max-width: 450px;
  margin-top: 15px;
}
#login .title-main-wrapper span {
  text-transform: lowercase;
}
.img-fluid {
  width: 100%;
}
.view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  overflow: hidden;
}
.view-all-wrapper .view-all {
  display: inline-block;
  line-height: 16px;
}
.iconList {
  padding: 35px 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.iconList .icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.iconList .icons span {
  font-size: 36px;
}
.wishlistPageWrapper .noProducts {
  padding: 0px 0px 30px;
}
.staticContent {
  margin-bottom: 20px;
}
.staticContent span {
  line-height: 1.4;
}
.tawkChatBtn {
  position: fixed;
  bottom: 20px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #0e97e7;
  border-radius: 50%;
  border: 0px;
  z-index: 3;
}
.tawkChatBtn:focus {
  outline: none;
}
.tawkChatBtn svg {
  fill: #fff;
}
.spiner-full {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.loadingSpinner {
  display: inline-block;
  vertical-align: sub;
  border: 4px solid var(--clr-white);
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0px;
  right: 9px;
  position: relative;
  top: 0px;
}
.newsletter_form .loadingSpinner {
  display: inline-block;
  vertical-align: sub;
  border: 4px solid #000;
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border-top: 4px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 0px;
  right: 20px;
  position: relative;
  top: 7px;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
button {
  cursor: pointer;
}
button:focus {
  outline: none;
}
#ContactUs.wrapperContent {
  width: 100%;
}
#ContactUs .form-section-info span {
  margin: 0 3px;
}
.add-to-cart .imprint-locations label {
  margin: 8px 0 0 0 !important;
}
.requestQuoteTable {
  min-width: 100%;
  border-bottom: 2px solid #dee2e6;
  border-left: 0px solid #fff;
  border-top: 0px solid #dee2e6;
  border-right: 0px solid #fff;
}
.requestQuoteTable :hover {
  background-color: #dee2e6;
}
.quick-view-container .swiper {
  width: 100%;
}
.quick-view-container .swiper .swiper-button-prev:after {
  left: -15px;
  top: 0px;
  font-size: 0;
}
.quick-view-container .swiper .swiper-button-next:after {
  left: 4px !important;
  top: 0px;
  font-size: 0;
}
.quick-view-container .swiper .swiper-button-prev,
.quick-view-container .swiper .swiper-button-next {
  background-color: transparent;
  box-shadow: none;
  border: none;
  height: 0;
  width: 0;
}
.quick-view-container .swiper .swiper-button-prev:after,
.quick-view-container .swiper .swiper-button-next:after {
  font-size: 0;
}
.quick-view-container #detailPriceTable {
  border: 0;
}
.quick-view-container #detailPriceTable tbody {
  border: 0;
}
.quick-view-container #detailPriceTable tbody tr {
  border-bottom: 1px solid #ccc;
}
.quick-view-container #detailPriceTable tbody th,
.quick-view-container #detailPriceTable tbody td {
  font-size: 0.6875rem;
  padding: 15px 5px;
  width: 70px;
  border: 0;
}
.quick-view-container #detailPriceTable tbody th:first-child,
.quick-view-container #detailPriceTable tbody td:first-child {
  width: 75px;
}
.quick-view-container .product-pricing .cTHead {
  border-bottom: 1px solid #ccc;
  display: table;
}
.quick-view-container .product-pricing .cTHead th {
  padding: 5px;
  display: table-cell;
  width: 70px;
  font-size: 0.6875rem;
}
.quick-view-container .product-pricing .cTHead th:first-child {
  width: 75px;
}
.recaptchaWrapper {
  margin-bottom: 10px;
}
.recaptchaWrapper .recaptcha {
  margin-bottom: 5px;
  font-weight: 400;
  text-transform: capitalize;
}
.comparePopUp .dialog-body table#CompareProd .mainTbody .closebutton .wishlistIcon i {
  font-size: 16px;
}
.comparePopUp .dialog-body table#CompareProd .mainTbody .closebutton .wishlistIcon span {
  display: none;
}
.salseflyer h2 {
  text-transform: uppercase;
  font-size: 2vw;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.3411764706);
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#order-catalog .userContactUsForm .input-freightType,
#order-catalog .userContactUsForm .input-shipperNo {
  display: none !important;
}
@media print {
  .comparePopUp .featuredIcon img {
    height: 20px;
    width: 50px;
    max-width: 50px;
  }
}
.comparePopUp .tr_Product_NotPrint {
  display: none;
}
@media print {
  .comparePopUp .featuredIcon img {
    height: 20px;
    width: 50px;
    max-width: 50px;
  }
  .actionIcons,
  .mobile-actions {
    display: none !important;
  }
}
.swiper-button-next:after {
  font-size: 0;
  display: none;
}
.bannerTopListing.container-fluid {
  position: relative;
  padding: 0 !important;
}
.bannerTopListing.container-fluid .breadCrumbWrapper-top {
  padding-top: 80px;
  background-color: transparent;
}
@media (max-width: 1279.98px) {
  .bannerTopListing.container-fluid .breadCrumbWrapper-top {
    padding-top: 12px;
    background-color: #DBEFE4;
  }
}
.bannerTopListing.container-fluid .categoryBanner {
  position: absolute;
  top: 0;
}
.bannerTopListing.container-fluid .categoryBanner:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
}
@media (max-width: 575.98px) {
  .bannerTopListing.container-fluid .categoryBanner {
    display: none;
  }
}
@media (min-width: 1025px) {
  .bannerTopListing.container-fluid .categoryBanner {
    min-height: auto;
  }
}
.bannerTopListing.container-fluid .breadcrumb .breadcrumb-item:nth-child(2) {
  pointer-events: none;
}
#products_main_wrapperBorder table {
  height: auto;
  border: none;
  margin-bottom: 0px;
  font-size: 14px;
}
#products_main_wrapperBorder table tbody tr td {
  border: none;
  padding: 0px;
  color: #444444;
  padding-left: 5px;
}
@media (max-width: 1024.98px) {
  #products_main_wrapperBorder table tbody tr td {
    font-size: 12px;
  }
}
#products_main_wrapperBorder table tbody tr td ul li {
  list-style: circle;
}
#products_main_wrapperBorder table .generalinfo .pull-right {
  display: flex;
  justify-content: space-between;
  position: relative;
  right: 0;
}
.videoplayer .dialog-footer {
  display: none !important;
}
.card-upper-block .featureIcon img {
  width: 80px;
  height: auto;
}
.flayer-box-wrapper .flayer-box-header {
  height: 80px;
}
.flayer-box-wrapper .flayer-box-body .flayer-btn-wrapper a {
  margin: 0;
  padding: 10px;
  min-height: inherit;
}
@keyframes highlight {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--main-color);
    color: white;
    transform: scale(1.1);
  }
  100% {
    background-color: transparent;
  }
}
@-webkit-keyframes highlight {
  0% {
    background-color: transparent;
  }
  50% {
    background-color: var(--main-color);
    color: white;
    -webkit-transform: scale(1.1);
  }
  100% {
    background-color: transparent;
  }
}