/*
 *  Bootstrap TouchSpin - v3.1.1
 *  A mobile and touch friendly input spinner component for Bootstrap 3.
 *  http://www.virtuosoft.eu/code/bootstrap-touchspin/
 *
 *  Made by István Ujj-Mészáros
 *  Under Apache License v2.0 License
 */

.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400}
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }

/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus, .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(default-skin.png) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url(default-skin.svg); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url(preloader.gif) 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

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

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

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }

/*
* iziToast | v1.4.0
* http://izitoast.marcelodolce.com
* by Marcelo Dolce.
*/
.iziToast-capsule{font-size:0;height:0;width:100%;transform:translateZ(0);backface-visibility:hidden;transition:transform .5s cubic-bezier(.25,.8,.25,1),height .5s cubic-bezier(.25,.8,.25,1)}.iziToast-capsule,.iziToast-capsule *{box-sizing:border-box}.iziToast-overlay{display:block;position:fixed;top:-100px;left:0;right:0;bottom:-100px;z-index:997}.iziToast{display:inline-block;clear:both;position:relative;font-family:'Lato',Tahoma,Arial;font-size:14px;padding:8px 45px 9px 0;background:rgba(238,238,238,.9);border-color:rgba(238,238,238,.9);width:100%;pointer-events:all;cursor:default;transform:translateX(0);-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;min-height:54px}.iziToast>.iziToast-progressbar{position:absolute;left:0;bottom:0;width:100%;z-index:1;background:rgba(255,255,255,.2)}.iziToast>.iziToast-progressbar>div{height:2px;width:100%;background:rgba(0,0,0,.3);border-radius:0 0 3px 3px}.iziToast.iziToast-balloon:before{content:'';position:absolute;right:8px;left:auto;width:0;height:0;top:100%;border-right:0 solid transparent;border-left:15px solid transparent;border-top:10px solid #000;border-top-color:inherit;border-radius:0}.iziToast.iziToast-balloon .iziToast-progressbar{top:0;bottom:auto}.iziToast.iziToast-balloon>div{border-radius:0 0 0 3px}.iziToast>.iziToast-cover{position:absolute;left:0;top:0;bottom:0;height:100%;margin:0;background-size:100%;background-position:50% 50%;background-repeat:no-repeat;background-color:rgba(0,0,0,.1)}.iziToast>.iziToast-close{position:absolute;right:0;top:0;border:0;padding:0;opacity:.6;width:42px;height:100%;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAJPAAACTwBcGfW0QAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAD3SURBVFiF1ZdtDoMgDEBfdi4PwAX8vLFn0qT7wxantojKupmQmCi8R4tSACpgjC2ICCUbEBa8ingjsU1AXRBeR8aLN64FiknswN8CYefBBDQ3whuFESy7WyQMeC0ipEI0A+0FeBvHUFN8xPaUhAH/iKoWsnXHGegy4J0yxialOfaHJAz4bhRzQzgDvdGnz4GbAonZbCQMuBm1K/kcFu8Mp1N2cFFpsxsMuJqqbIGExGl4loARajU1twskJLLhIsID7+tvUoDnIjTg5T9DPH9EBrz8rxjPzciAl9+O8SxI8CzJ8CxKFfh3ynK8Dyb8wNHM/XDqejx/AtNyPO87tNybAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:8px;cursor:pointer;outline:0}.iziToast>.iziToast-close:hover{opacity:1}.iziToast>.iziToast-body{position:relative;padding:0 0 0 10px;height:auto;min-height:36px;margin:0 0 0 15px;text-align:left}.iziToast>.iziToast-body:after{content:"";display:table;clear:both}.iziToast>.iziToast-body .iziToast-texts{margin:10px 0 0;padding-right:2px;display:inline-block;float:left}.iziToast>.iziToast-body .iziToast-inputs{min-height:19px;float:left;margin:3px -2px}.iziToast>.iziToast-body .iziToast-inputs>input:not([type=checkbox]):not([type=radio]),.iziToast>.iziToast-body .iziToast-inputs>select{position:relative;display:inline-block;margin:2px;border-radius:2px;border:0;padding:4px 7px;font-size:13px;letter-spacing:.02em;background:rgba(0,0,0,.1);color:#000;box-shadow:0 0 0 1px rgba(0,0,0,.2);min-height:26px}.iziToast>.iziToast-body .iziToast-inputs>input:not([type=checkbox]):not([type=radio]):focus,.iziToast>.iziToast-body .iziToast-inputs>select:focus{box-shadow:0 0 0 1px rgba(0,0,0,.6)}.iziToast>.iziToast-body .iziToast-buttons{min-height:17px;float:left;margin:4px -2px}.iziToast>.iziToast-body .iziToast-buttons>a,.iziToast>.iziToast-body .iziToast-buttons>button,.iziToast>.iziToast-body .iziToast-buttons>input:not([type=checkbox]):not([type=radio]){position:relative;display:inline-block;margin:2px;border-radius:2px;border:0;padding:5px 10px;font-size:12px;letter-spacing:.02em;cursor:pointer;background:rgba(0,0,0,.1);color:#000}.iziToast>.iziToast-body .iziToast-buttons>a:hover,.iziToast>.iziToast-body .iziToast-buttons>button:hover,.iziToast>.iziToast-body .iziToast-buttons>input:not([type=checkbox]):not([type=radio]):hover{background:rgba(0,0,0,.2)}.iziToast>.iziToast-body .iziToast-buttons>a:focus,.iziToast>.iziToast-body .iziToast-buttons>button:focus,.iziToast>.iziToast-body .iziToast-buttons>input:not([type=checkbox]):not([type=radio]):focus{box-shadow:0 0 0 1px rgba(0,0,0,.6)}.iziToast>.iziToast-body .iziToast-buttons>a:active,.iziToast>.iziToast-body .iziToast-buttons>button:active,.iziToast>.iziToast-body .iziToast-buttons>input:not([type=checkbox]):not([type=radio]):active{top:1px}.iziToast>.iziToast-body .iziToast-icon{position:absolute;left:0;top:50%;display:table;font-size:23px;line-height:24px;margin-top:-12px;color:#000;width:24px;height:24px}.iziToast>.iziToast-body .iziToast-icon.ico-info{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAflBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACCtoPsAAAAKXRSTlMA6PsIvDob+OapavVhWRYPrIry2MxGQ97czsOzpJaMcE0qJQOwVtKjfxCVFeIAAAI3SURBVFjDlJPZsoIwEETnCiGyb8q+qmjl/3/wFmGKwjBROS9QWbtnOqDDGPq4MdMkSc0m7gcDDhF4NRdv8NoL4EcMpzoJglPl/KTDz4WW3IdvXEvxkfIKn7BMZb1bFK4yZFqghZ03jk0nG8N5NBwzx9xU5cxAg8fXi20/hDdC316lcA8o7t16eRuQvW1XGd2d2P8QSHQDDbdIII/9CR3lUF+lbucfJy4WfMS64EJPORnrZxtfc2pjJdnbuags3l04TTtJMXrdTph4Pyg4XAjugAJqMDf5Rf+oXx2/qi4u6nipakIi7CsgiuMSEF9IGKg8heQJKkxIfFSUU/egWSwNrS1fPDtLfon8sZOcYUQml1Qv9a3kfwsEUyJEMgFBKzdV8o3Iw9yAjg1jdLQCV4qbd3no8yD2GugaC3oMbF0NYHCpJYSDhNI5N2DAWB4F4z9Aj/04Cna/x7eVAQ17vRjQZPh+G/kddYv0h49yY4NWNDWMMOMUIRYvlTECmrN8pUAjo5RCMn8KoPmbJ/+Appgnk//Sy90GYBCGgm7IAskQ7D9hFKW4ApB1ei3FSYD9PjGAKygAV+ARFYBH5BsVgG9kkBSAQWKUFYBRZpkUgGVinRWAdUZQDABBQdIcAElDVBUAUUXWHQBZx1gMAGMprM0AsLbVXHsA5trZe93/wp3svQ0YNb/jWV3AIOLsMtlznSNOH7JqjOpDVh7z8qCZR10ftvO4nxeOvPLkpSuvfXnxzKtvXr7j+v8C5ii0e71At7cAAAAASUVORK5CYII=) no-repeat 50% 50%;background-size:85%}.iziToast>.iziToast-body .iziToast-icon.ico-warning{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEQAAABECAMAAAAPzWOAAAAAkFBMVEUAAAAAAAABAAIAAAABAAIAAAMAAAABAAIBAAIBAAIAAAIAAAABAAIAAAABAAICAAICAAIAAAIAAAAAAAAAAAABAAIBAAIAAAMAAAABAAIBAAMBAAECAAIAAAIAAAIAAAABAAIBAAIBAAMBAAIBAAEAAAIAAAMAAAAAAAABAAECAAICAAIAAAIAAAMAAAQAAAE05yNAAAAAL3RSTlMAB+kD7V8Q+PXicwv7I9iYhkAzJxnx01IV5cmnk2xmHfzexsK4eEw5L7Gei39aRw640awAAAHQSURBVFjD7ZfJdoJAEEWJgCiI4oDiPM8m7///LidErRO7sHrY5u7YXLr7vKqu9kTC0HPmo9n8cJbEQOzqqAdAUHeUZACQuTkGDQBoDJwkHZR0XBz9FkpafXuHP0SJ09mGeJLZ5wwlTmcbA0THPmdEK7XPGTG1zxmInn3OiJ19zkB0jSVTKExMHT0wjAwlWzC0fSPHF1gWRpIhWMYm7fYTFcQGlbemf4dFfdTGg0B/KXM8qBU/3wntbq7rSGqvJ9kla6IpueFJet8fxfem5yhykjyOgNaWF1qSGd5JMNNxpNF7SZQaVh5JzLrTCZIEJ1GyEyVyd+pClMjdaSJK5O40giSRu5PfFiVyd1pAksjdKRnrSsbVdbiHrgT7yss315fkVQPLFQrL+4FHeOXKO5YRFEKv5AiFaMlKLlBpJuVCJlC5sJfvCgztru/3NmBYccPgGTxRAzxn1XGEMUf58pXZvjoOsOCgjL08+b53mtfAM/SVsZcjKLtysQZPqIy9HPP3m/3zKItRwT0LyQo8sTr26tcO83DIUMWIJjierHLsJda/tbNBFY0BP/bKtcM8HNIWCK3aYR4OMzgxo5w5EFLOLKDExXAm9gI4E3iAO94/Ct/lKWuM2LMGbgAAAABJRU5ErkJggg==) no-repeat 50% 50%;background-size:85%}.iziToast>.iziToast-body .iziToast-icon.ico-error{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAeFBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVyEiIAAAAJ3RSTlMA3BsB98QV8uSyWVUFz7+kcWMM2LuZioBpTUVBNcq2qaibj4d1azLZZYABAAACZElEQVRYw7WX25KCMAyGAxUoFDkpiohnV97/DXeGBtoOUprZ2dyo1K82fxKbwJJVp+KQZ7so2mX5oThVQLKwjDe9YZu4DF3ptAn6rxY0qQPOEq9fNC9ha3y77a22ba24v+9Xbe8v8x03dPOC2/NdvB6xeSreLfGJpnx0TyotKqLm2s7Jd/WO6ivXNp0tCy02R/aFz5VQ5wUPlUL5fIfj5KIlVGU0nWHm/5QtoTVMWY8mzIVu1K9O7XH2JiU/xnOOT39gnUfj+lFHddx4tFjL3/H8jjzaFCy2Rf0c/fdQyQszI8BDR973IyMSKa4krjxAiW/lkRvMP+bKK9WbYS1ASQg8dKjaUGlYPwRe/WoIkz8tiQchH5QAEMv6T0k8MD4mUyWr4E7jAWqZ+xWcMIYkXvlwggJ3IvFK+wIOcpXAo8n8P0COAaXyKH4OsjBuZB4ew0IGu+H1SebhNazsQBbWm8yj+hFuUJB5eMsN0IUXmYendAFFfJB5uEkRMYwxmcd6zDGRtmQePEykAgubymMRFmMxCSIPCRbTuFNN5OGORTjmNGc0Po0m8Uv0gcCry6xUhR2QeLii9tofbEfhz/qvNti+OfPqNm2Mq6105FUMvdT4GPmufMiV8PqBMkc+DdT1bjYYbjzU/ew23VP4n3mLAz4n8Jtv/Ui3ceTT2mzz5o1mZt0gnBpmsdjqRqVlmplcPdqa7X23kL9brdm2t/uBYDPn2+tyu48mtIGD10JTuUrukVrbCFiwDzcHrPjxKt7PW+AZQyT/WESO+1WL7f3o+WLHL2dYMSZsg6dg/z360ofvP4//v1NPzgs28WlWAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:80%}.iziToast>.iziToast-body .iziToast-icon.ico-success{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABt0UjBAAAACnRSTlMApAPhIFn82wgGv8mVtwAAAKVJREFUSMft0LEJAkEARNFFFEw1NFJb8CKjAy1AEOzAxNw+bEEEg6nyFjbY4LOzcBwX7S/gwUxoTdIn+Jbv4Lv8bx446+kB6VsBtK0B+wbMCKxrwL33wOrVeeChX28n7KTOTjgoEu6DRSYAgAAAAkAmAIAAAAIACQIkMkACAAgAIACAyECBKAOJuCagTJwSUCaUAEMAABEBRwAAEQFLbCJgO4bW+AZKGnktR+jAFAAAAABJRU5ErkJggg==) no-repeat 50% 50%;background-size:85%}.iziToast>.iziToast-body .iziToast-icon.ico-question{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAQAAAAAYLlVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfhCQkUEhFovxTxAAAEDklEQVRo3s2ZTWgTQRTHf03ipTRUqghNSgsRjHgQrFUQC6JgD1Kak3gQUUoPqRdBglf1oBehBws9Cn4cGk+1SOmh2upBxAYVoeJHrR9tgq0i1Cq0lqYeks7MbpPdmU00/c8hm9n33v/t7Nt5M2+qMEWQI0QIibZKRrQpHvLL2KI2wnQzzBKrDm2RIeKEy01dTYKUI7G1ZRknQXV5yP10kTYgly1NF/5S6duZ8ES+1iZodyaocrjXxE0OFeifYYgp0mRIkwFChAkRJsIxGgrIP+I0n82fvZW5dc/zkss0O2o1c5mX6/TmaDWl77RFe5YkUW3tKEmyFv0lOvXJ/fTYnmCEFuMRbGHEZqVHLyT9DFjUJmkzJl9DG5MWWwM6Llif/gF1nukB6nhgGwUXdFrE+wiURA8QoM9i0zEWWpXQW+ZsyeRrOMuyEo5Fv4gmy4dXPvqcC+pH2VRYaMwy+OWG+iLGCgm0W0Kv9HdvR8ASjmKCXpuK/bxiV/76A/v5UdDIZuKcJGjrnec5KZ7wwsWFOp6xPX/9mt2sqDe7FO+Kf/fXHBPPDWpdXGhTpLvUG9VKwh1xMDDjkvu+cNDFBTk7ptX1QkKZ850m3duu6fcrWxwdaFFyREJ2j4vOpKP6Du6z4uJCv8sYJIVkCnJBGGZaBONO3roY2EqNrSfIPi7SKP4fdXyNUd6I6wbSAHEl33tFLe+FlSsusnK90A0+oEPcuufZgXnOi+u9LrKSJQZQw6LwqBnv2CKsfHORbFbyQhA6xN/pEuihSdj56Co7LWRjPiKie6gkB2LiKuUqK5kiPkLiz1QJ9K1cNXBAMoUCigNpQ9IqDtMI1HKA4/jyvUsaoSyZLA5kjOjDPFZen8Ql5TsvBskUgjciIPSX3QAXC86DT7VWvlEh/xZ+ij9BDVWJ0QL0SbZq6QaFxoLPcXPmBLveLCc4wXdDK6s+6/vwhCSniFLPXW0NJe5UB8zKCsviqpc7vGPVQFcyZbyPwGD+d5ZnxmNWlhG4xSBZZjivjIWHEQgoDkSMjMwTo54569JSE5IpA7EyJSMTyGTUAUFlO1ZKOtaHTMeL1PhYYFTcihmY2cQ5+ullj7EDkiVfVez2sCTz8yiv84djhg7IJVk81xFWJlPdfHBG0flkRC/zQFZ+DSllNtfDdUsOMCliyGX5uOzU3ZhIXFDof4m1gDuKbEx0t2YS25gVGpcMnr/I1kx3c6piB8P8ZoqEwfMX3ZyCXynJTmq/U7NUXqfUzCbWL1wqVKBQUeESzQYoUlW8TAcVL1RCxUu1G6BYXfFyfQ4VPbDI4T8d2WzgQ6sc/vmxnTsqfHCZQzUJxm1h5dxS5Tu6lQgTZ0ipqRVqSwzTbbLHMt+c19iO76tsx/cLZub+Ali+tYC93olEAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTA5LTA5VDIwOjE4OjE3KzAyOjAwjKtfjgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wOS0wOVQyMDoxODoxNyswMjowMP325zIAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:85%}.iziToast>.iziToast-body .iziToast-message,.iziToast>.iziToast-body .iziToast-title{padding:0;font-size:14px;line-height:16px;text-align:left;float:left;white-space:normal}.iziToast>.iziToast-body .iziToast-title{color:#000;margin:0}.iziToast>.iziToast-body .iziToast-message{margin:0 0 10px;color:rgba(0,0,0,.6)}.iziToast.iziToast-animateInside .iziToast-buttons-child,.iziToast.iziToast-animateInside .iziToast-icon,.iziToast.iziToast-animateInside .iziToast-inputs-child,.iziToast.iziToast-animateInside .iziToast-message,.iziToast.iziToast-animateInside .iziToast-title{opacity:0}.iziToast-target{position:relative;width:100%;margin:0 auto}.iziToast-target .iziToast-capsule{overflow:hidden}.iziToast-target .iziToast-capsule:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0}.iziToast-target .iziToast-capsule .iziToast{width:100%;float:left}.iziToast-wrapper{z-index:99999;position:fixed;width:100%;pointer-events:none;display:flex;flex-direction:column}.iziToast-wrapper .iziToast.iziToast-balloon:before{border-right:0 solid transparent;border-left:15px solid transparent;border-top:10px solid #000;border-top-color:inherit;right:8px;left:auto}.iziToast-wrapper-bottomLeft{left:0;bottom:0;text-align:left}.iziToast-wrapper-bottomLeft .iziToast.iziToast-balloon:before,.iziToast-wrapper-topLeft .iziToast.iziToast-balloon:before{border-right:15px solid transparent;border-left:0 solid transparent;right:auto;left:8px}.iziToast-wrapper-bottomRight{right:0;bottom:0;text-align:right}.iziToast-wrapper-topLeft{left:0;top:0;text-align:left}.iziToast-wrapper-topRight{top:0;right:0;text-align:right}.iziToast-wrapper-topCenter{top:0;left:0;right:0;text-align:center}.iziToast-wrapper-bottomCenter,.iziToast-wrapper-center{bottom:0;left:0;right:0;text-align:center}.iziToast-wrapper-center{top:0;justify-content:center;flex-flow:column;align-items:center}.iziToast-rtl{direction:rtl;padding:8px 0 9px 45px;font-family:Tahoma,'Lato',Arial}.iziToast-rtl .iziToast-cover{left:auto;right:0}.iziToast-rtl .iziToast-close{right:auto;left:0}.iziToast-rtl .iziToast-body{padding:0 10px 0 0;margin:0 16px 0 0;text-align:right}.iziToast-rtl .iziToast-body .iziToast-buttons,.iziToast-rtl .iziToast-body .iziToast-inputs,.iziToast-rtl .iziToast-body .iziToast-message,.iziToast-rtl .iziToast-body .iziToast-texts,.iziToast-rtl .iziToast-body .iziToast-title{float:right;text-align:right}.iziToast-rtl .iziToast-body .iziToast-icon{left:auto;right:0}@media only screen and (min-width:568px){.iziToast-wrapper{padding:10px 15px}.iziToast{margin:5px 0;border-radius:3px;width:auto}.iziToast:after{content:'';z-index:-1;position:absolute;top:0;left:0;width:100%;height:100%;border-radius:3px;box-shadow:inset 0 -10px 20px -10px rgba(0,0,0,.2),inset 0 0 5px rgba(0,0,0,.1),0 8px 8px -5px rgba(0,0,0,.25)}.iziToast:not(.iziToast-rtl) .iziToast-cover{border-radius:3px 0 0 3px}.iziToast.iziToast-rtl .iziToast-cover{border-radius:0 3px 3px 0}.iziToast.iziToast-color-dark:after{box-shadow:inset 0 -10px 20px -10px rgba(255,255,255,.3),0 10px 10px -5px rgba(0,0,0,.25)}.iziToast.iziToast-balloon .iziToast-progressbar{background:0 0}.iziToast.iziToast-balloon:after{box-shadow:0 10px 10px -5px rgba(0,0,0,.25),inset 0 10px 20px -5px rgba(0,0,0,.25)}.iziToast-target .iziToast:after{box-shadow:inset 0 -10px 20px -10px rgba(0,0,0,.2),inset 0 0 5px rgba(0,0,0,.1)}}.iziToast.iziToast-theme-dark{background:#565c70;border-color:#565c70}.iziToast.iziToast-theme-dark .iziToast-title{color:#fff}.iziToast.iziToast-theme-dark .iziToast-message{color:rgba(255,255,255,.7);font-weight:300}.iziToast.iziToast-theme-dark .iziToast-close{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAQAAADZc7J/AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfgCR4OIQIPSao6AAAAwElEQVRIx72VUQ6EIAwFmz2XB+AConhjzqTJ7JeGKhLYlyx/BGdoBVpjIpMJNjgIZDKTkQHYmYfwmR2AfAqGFBcO2QjXZCd24bEggvd1KBx+xlwoDpYmvnBUUy68DYXD77ESr8WDtYqvxRex7a8oHP4Wo1Mkt5I68Mc+qYqv1h5OsZmZsQ3gj/02h6cO/KEYx29hu3R+VTTwz6D3TymIP1E8RvEiiVdZfEzicxYLiljSxKIqlnW5seitTW6uYnv/Aqh4whX3mEUrAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE2LTA5LTMwVDE0OjMzOjAyKzAyOjAwl6RMVgAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNi0wOS0zMFQxNDozMzowMiswMjowMOb59OoAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:8px}.iziToast.iziToast-theme-dark .iziToast-icon{color:#fff}.iziToast.iziToast-theme-dark .iziToast-icon.ico-info{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAflBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////vroaSAAAAKXRSTlMA6PsIvDob+OapavVhWRYPrIry2MxGQ97czsOzpJaMcE0qJQOwVtKjfxCVFeIAAAI3SURBVFjDlJPZsoIwEETnCiGyb8q+qmjl/3/wFmGKwjBROS9QWbtnOqDDGPq4MdMkSc0m7gcDDhF4NRdv8NoL4EcMpzoJglPl/KTDz4WW3IdvXEvxkfIKn7BMZb1bFK4yZFqghZ03jk0nG8N5NBwzx9xU5cxAg8fXi20/hDdC316lcA8o7t16eRuQvW1XGd2d2P8QSHQDDbdIII/9CR3lUF+lbucfJy4WfMS64EJPORnrZxtfc2pjJdnbuags3l04TTtJMXrdTph4Pyg4XAjugAJqMDf5Rf+oXx2/qi4u6nipakIi7CsgiuMSEF9IGKg8heQJKkxIfFSUU/egWSwNrS1fPDtLfon8sZOcYUQml1Qv9a3kfwsEUyJEMgFBKzdV8o3Iw9yAjg1jdLQCV4qbd3no8yD2GugaC3oMbF0NYHCpJYSDhNI5N2DAWB4F4z9Aj/04Cna/x7eVAQ17vRjQZPh+G/kddYv0h49yY4NWNDWMMOMUIRYvlTECmrN8pUAjo5RCMn8KoPmbJ/+Appgnk//Sy90GYBCGgm7IAskQ7D9hFKW4ApB1ei3FSYD9PjGAKygAV+ARFYBH5BsVgG9kkBSAQWKUFYBRZpkUgGVinRWAdUZQDABBQdIcAElDVBUAUUXWHQBZx1gMAGMprM0AsLbVXHsA5trZe93/wp3svQ0YNb/jWV3AIOLsMtlznSNOH7JqjOpDVh7z8qCZR10ftvO4nxeOvPLkpSuvfXnxzKtvXr7j+v8C5ii0e71At7cAAAAASUVORK5CYII=) no-repeat 50% 50%;background-size:85%}.iziToast.iziToast-theme-dark .iziToast-icon.ico-warning{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEQAAABECAMAAAAPzWOAAAAAllBMVEUAAAD////+//3+//3+//3///////z+//3+//3+//3////////////9//3////+//39//3///3////////////+//3+//39//3///z+//z+//7///3///3///3///3////////+//3+//3+//3+//z+//3+//7///3///z////////+//79//3///3///z///v+//3///+trXouAAAAMHRSTlMAB+j87RBf+PXiCwQClSPYhkAzJxnx05tSyadzcmxmHRbp5d7Gwrh4TDkvsYt/WkdQzCITAAAB1UlEQVRYw+3XaXKCQBCGYSIIighoxCVqNJrEPfly/8vFImKXduNsf/Mc4K1y7FnwlMLQc/bUbj85R6bA1LXRDICg6RjJcZa7NQYtnLUGTpERSiOXxrOPkv9s30iGKDmtbYir3H7OUHJa2ylAuvZzRvzUfs7Ii/2cgfTt54x82s8ZSM848gJmYtroQzA2jHwA+LkBIEuMGt+QIng1igzlyMrkuP2CyOi47axRaYTL5jhDJehoR+aovC29s3iIyly3Eb+hRCvZo2qsGTnhKr2cLDS+J73GsqBI9W80UCmWWpEuhIjh6ZRGjyNRarjzKGJ2Ou2himCvjHwqI+rTqQdlRH06TZQR9ek0hiqiPp06mV4ke7QPX6ERUZxO8Uo3sqrfhxvoRrCpvXwL/UjR9GRHMIvLgke4d5QbiwhM6JV2YKKF4vIl7XIBkwm4keryJVmvk/TfwcmPwQNkUQuyA2/sYGwnXL7GPu4bW1jYsmevrNj09/MGZMOEPXslQVqO8hqykD17JfPHP/bmo2yGGpdZiH3IZvzZa7B3+IdDjjpjesHJcvbs5dZ/e+cddVoDdvlq7x12Nac+iN7e4R8OXTjp0pw5CGnOLNDEzeBs5gVwFniAO+8f8wvfeXP2hyqnmwAAAABJRU5ErkJggg==) no-repeat 50% 50%;background-size:85%}.iziToast.iziToast-theme-dark .iziToast-icon.ico-error{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAeFBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////GqOSsAAAAJ3RSTlMA3BsB98QV8uSyWVUFz6RxYwzYvbupmYqAaU1FQTXKv7abj4d1azKNUit3AAACZElEQVRYw7WXaZOCMAyGw30UORRQBLxX/v8/3BkaWjrY2szO5otKfGrzJrEp6Kw6F8f8sI+i/SE/FucKSBaWiT8p5idlaEtnXTB9tKDLLHAvdSatOan3je93k9F2vRF36+mr1a6eH2NFNydoHq/ieU/UXcWjjk9XykdNWq2ywtp4tXL6Wb2T/MqtzzZutsrNyfvA51KoQROhVCjfrnASIRpSVUZiD5v4RbWExjRdJzSmOsZFvzYz59kRSr6V5zE+/QELHkNdb3VRx45HS1b1u+zfkkcbRAZ3qJ9l/A4qefHUDMShJe+6kZKJDD2pLQ9Q4lu+5Q7rz7Plperd7AtQEgIPI6o2dxr2D4GXvxqCiKcn8cD4gxIAEt7/GYkHL16KqeJd0NB4gJbXfgVnzCGJlzGcocCVSLzUvoAj9xJ4NF7/R8gxoVQexc/hgBpSebjPjgPs59cHmYfn7NkDb6wXmUf1I1ygIPPw4gtgCE8yDw8eAop4J/PQcBExjQmZx37MsZB2ZB4cLKQCG5vKYxMWSzMxIg8pNtOyUkvkocEmXGo69mh8FgnxS4yBwMvDrJSNHZB4uC3ayz/YkcIP4lflwVIT+OU07ZSjrbTkZQ6dTPkYubZ8GC/Cqxu6WvJZII93dcCw46GdNqdpTeF/tiMOuDGB9z/NI6NvyWetGPM0g+bVNeovBmamHXWj0nCbEaGeTMN2PWrqd6cM26ZxP2DeJvj+ph/30Zi/GmRbtlK5SptI+nwGGnvH6gUruT+L16MJHF+58rwNIifTV0vM8+hwMeOXAb6Yx0wXT+b999WXfvn+8/X/F7fWzjdTord5AAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:80%}.iziToast.iziToast-theme-dark .iziToast-icon.ico-success{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABABAMAAABYR2ztAAAAIVBMVEUAAAD////////////////////////////////////////PIev5AAAACnRSTlMApAPhIFn82wgGv8mVtwAAAKVJREFUSMft0LEJAkEARNFFFEw1NFJb8CKjAy1AEOzAxNw+bEEEg6nyFjbY4LOzcBwX7S/gwUxoTdIn+Jbv4Lv8bx446+kB6VsBtK0B+wbMCKxrwL33wOrVeeChX28n7KTOTjgoEu6DRSYAgAAAAkAmAIAAAAIACQIkMkACAAgAIACAyECBKAOJuCagTJwSUCaUAEMAABEBRwAAEQFLbCJgO4bW+AZKGnktR+jAFAAAAABJRU5ErkJggg==) no-repeat 50% 50%;background-size:85%}.iziToast.iziToast-theme-dark .iziToast-icon.ico-question{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAQAAAAAYLlVAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QAAKqNIzIAAAAJcEhZcwAADdcAAA3XAUIom3gAAAAHdElNRQfhCQkUEg18vki+AAAETUlEQVRo3s1ZTWhbRxD+VlIuxsLFCYVIIQYVopBDoK5bKDWUBupDMNbJ5FBKg/FBziUQdE9yaC+FHBrwsdCfQ9RTGoLxwWl+DqHEojUFFydxnB9bInZDqOsErBrr6yGvs/ueX97bldTKo4Pe7puZb3Z33s7srIIjMY1jyCEjP6ImvyX8pF64arSHznKC06wzijY5xSKz7YbuYokV2lODsyyxqz3gSY6z6gCuqcpxJluFH+Z8U+D/0jyHoxFUBHgfvsGHIS9WMIUlVFFDFTUAGWSRQRY5HMeBEP6b+Ew9dh/7INd2jGeO59kfKdXP85zbIbfGQVf4sYC3N1hm3lo6zzIbPvk6x+zBk7wQGMEMB5xncIAzAS0XrFySSV72iS1yyBVcdA1x0afrsoUJgdFfY2+z8ADAXl7zz0KcwJiPfZKpVuABgClO+nRG+QIHDdfb4qlWwUXvKW4Z7vi6L4J9vg+vbfCeCeZH2RfOdMOc/HbCA4BvIW6EMQz7XK/ltd+hP+VzR9mgva2YSfyGI17fA7ynnocqeQNFfIJ0oHsdv6CC2+rXGBN6cQdveY3fcVRtmy/HDete+93zy8jA8zV7YkwYMrjHzRddRsCdiVCwwmh6wg9iTNC7Y9XIF1iS7kbUpsvvGEdPuTfSgAEjRpR096x0liPFD/Eqt2NMuBQzB2XhrACAApjFsuQFh9XdGAX70B3oSuNdnMVBaX+sopYxjwVpHFBVACyKTXNoktjD+6Ll8xhenS9MAAkAI/Lux2YNUOs4I413Ypg1SgEAu7kpFvWjaeJe0fJHDGe/cNaZBkekudw8PMA+0fMwlndZeAsJ5KR/qhUDUJCnSiyvRsolkJHGUgvjH8QXDgZopEzKMKDqCKrwEQ4C6MH7GEXC665buLJG8hlQc4LP4paxfJrOqYVYYY2UARfEIazTbgDg2dB98GebzJd54b8L/iWNdLyooeR6CHyZ+6xk0yKxkYg6nEVSUG4VJ9QJ9cxRCxO+9WiOyvgUeexXP1hLGH5nGuBWVtiSp4vqe3VP0UFWI9Wan4Er3v8q7jjPWVtm4FtcQQMrOKO2nOQCM5AyDMi56FDrKHA/1nyppS1ppBpYaE8wciEjGI2AaeM41kI4doDX4XiT3Qm1gevyruCgZg9P8xIv8m1nCzTKq6oiJ9xTMiZ505P5m8cdZ0CnZMVXHVljM7WMBzxpyDxygtdxoCEFTaMIWbZU85UvBjgUMYy0fBaAF8V1Lj9qWQ1aMZ5f4k9r+AGMSkMP1vZoZih6k6sicc5h/OFHM9vDqU/VIU7zJZdYYsKGH4g4nAJMGiXZRds1pVMoZ69RM5vfkbh0qkBhsnS2RLMLilQdL9MBHS9UAh0v1e6CYnXHy/WeeCcvLDwl/9OVze69tPKM+M+v7eJN6OzFpWdEF0ucDbhVNFXadnVrmJFlkVNGTS2M6pzmhMvltfPhnN2B63sVuL7fcNP3D1TSk2ihosPrAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE3LTA5LTA5VDIwOjE4OjEzKzAyOjAweOR7nQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNy0wOS0wOVQyMDoxODoxMyswMjowMAm5wyEAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAAAElFTkSuQmCC) no-repeat 50% 50%;background-size:85%}.iziToast.iziToast-theme-dark .iziToast-buttons>a,.iziToast.iziToast-theme-dark .iziToast-buttons>button,.iziToast.iziToast-theme-dark .iziToast-buttons>input{color:#fff;background:rgba(255,255,255,.1)}.iziToast.iziToast-theme-dark .iziToast-buttons>a:hover,.iziToast.iziToast-theme-dark .iziToast-buttons>button:hover,.iziToast.iziToast-theme-dark .iziToast-buttons>input:hover{background:rgba(255,255,255,.2)}.iziToast.iziToast-theme-dark .iziToast-buttons>a:focus,.iziToast.iziToast-theme-dark .iziToast-buttons>button:focus,.iziToast.iziToast-theme-dark .iziToast-buttons>input:focus{box-shadow:0 0 0 1px rgba(255,255,255,.6)}.iziToast.iziToast-color-red{background:rgba(255,175,180,.9);border-color:rgba(255,175,180,.9)}.iziToast.iziToast-color-orange{background:rgba(255,207,165,.9);border-color:rgba(255,207,165,.9)}.iziToast.iziToast-color-yellow{background:rgba(255,249,178,.9);border-color:rgba(255,249,178,.9)}.iziToast.iziToast-color-blue{background:rgba(157,222,255,.9);border-color:rgba(157,222,255,.9)}.iziToast.iziToast-color-green{background:rgba(166,239,184,.9);border-color:rgba(166,239,184,.9)}.iziToast.iziToast-layout2 .iziToast-body .iziToast-message,.iziToast.iziToast-layout2 .iziToast-body .iziToast-texts{width:100%}.iziToast.iziToast-layout3{border-radius:2px}.iziToast.iziToast-layout3::after{display:none}.iziToast .revealIn,.iziToast.revealIn{-webkit-animation:iziT-revealIn 1s cubic-bezier(.25,1.6,.25,1) both;-moz-animation:iziT-revealIn 1s cubic-bezier(.25,1.6,.25,1) both;animation:iziT-revealIn 1s cubic-bezier(.25,1.6,.25,1) both}.iziToast .slideIn,.iziToast.slideIn{-webkit-animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both;-moz-animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both;animation:iziT-slideIn 1s cubic-bezier(.16,.81,.32,1) both}.iziToast.bounceInLeft{-webkit-animation:iziT-bounceInLeft .7s ease-in-out both;animation:iziT-bounceInLeft .7s ease-in-out both}.iziToast.bounceInRight{-webkit-animation:iziT-bounceInRight .85s ease-in-out both;animation:iziT-bounceInRight .85s ease-in-out both}.iziToast.bounceInDown{-webkit-animation:iziT-bounceInDown .7s ease-in-out both;animation:iziT-bounceInDown .7s ease-in-out both}.iziToast.bounceInUp{-webkit-animation:iziT-bounceInUp .7s ease-in-out both;animation:iziT-bounceInUp .7s ease-in-out both}.iziToast .fadeIn,.iziToast.fadeIn{-webkit-animation:iziT-fadeIn .5s ease both;animation:iziT-fadeIn .5s ease both}.iziToast.fadeInUp{-webkit-animation:iziT-fadeInUp .7s ease both;animation:iziT-fadeInUp .7s ease both}.iziToast.fadeInDown{-webkit-animation:iziT-fadeInDown .7s ease both;animation:iziT-fadeInDown .7s ease both}.iziToast.fadeInLeft{-webkit-animation:iziT-fadeInLeft .85s cubic-bezier(.25,.8,.25,1) both;animation:iziT-fadeInLeft .85s cubic-bezier(.25,.8,.25,1) both}.iziToast.fadeInRight{-webkit-animation:iziT-fadeInRight .85s cubic-bezier(.25,.8,.25,1) both;animation:iziT-fadeInRight .85s cubic-bezier(.25,.8,.25,1) both}.iziToast.flipInX{-webkit-animation:iziT-flipInX .85s cubic-bezier(.35,0,.25,1) both;animation:iziT-flipInX .85s cubic-bezier(.35,0,.25,1) both}.iziToast.fadeOut{-webkit-animation:iziT-fadeOut .7s ease both;animation:iziT-fadeOut .7s ease both}.iziToast.fadeOutDown{-webkit-animation:iziT-fadeOutDown .7s cubic-bezier(.4,.45,.15,.91) both;animation:iziT-fadeOutDown .7s cubic-bezier(.4,.45,.15,.91) both}.iziToast.fadeOutUp{-webkit-animation:iziT-fadeOutUp .7s cubic-bezier(.4,.45,.15,.91) both;animation:iziT-fadeOutUp .7s cubic-bezier(.4,.45,.15,.91) both}.iziToast.fadeOutLeft{-webkit-animation:iziT-fadeOutLeft .5s ease both;animation:iziT-fadeOutLeft .5s ease both}.iziToast.fadeOutRight{-webkit-animation:iziT-fadeOutRight .5s ease both;animation:iziT-fadeOutRight .5s ease both}.iziToast.flipOutX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation:iziT-flipOutX .7s cubic-bezier(.4,.45,.15,.91) both;animation:iziT-flipOutX .7s cubic-bezier(.4,.45,.15,.91) both}.iziToast-overlay.fadeIn{-webkit-animation:iziT-fadeIn .5s ease both;animation:iziT-fadeIn .5s ease both}.iziToast-overlay.fadeOut{-webkit-animation:iziT-fadeOut .7s ease both;animation:iziT-fadeOut .7s ease both}@-webkit-keyframes iziT-revealIn{0%{opacity:0;-webkit-transform:scale3d(.3,.3,1)}to{opacity:1}}@-moz-keyframes iziT-revealIn{0%{opacity:0;-moz-transform:scale3d(.3,.3,1)}to{opacity:1}}@-webkit-keyframes iziT-slideIn{0%{opacity:0;-webkit-transform:translateX(50px)}to{opacity:1;-webkit-transform:translateX(0)}}@-moz-keyframes iziT-slideIn{0%{opacity:0;-moz-transform:translateX(50px)}to{opacity:1;-moz-transform:translateX(0)}}@-webkit-keyframes iziT-bounceInLeft{0%{opacity:0;-webkit-transform:translateX(280px)}50%{opacity:1;-webkit-transform:translateX(-20px)}70%{-webkit-transform:translateX(10px)}to{-webkit-transform:translateX(0)}}@-webkit-keyframes iziT-bounceInRight{0%{opacity:0;-webkit-transform:translateX(-280px)}50%{opacity:1;-webkit-transform:translateX(20px)}70%{-webkit-transform:translateX(-10px)}to{-webkit-transform:translateX(0)}}@-webkit-keyframes iziT-bounceInDown{0%{opacity:0;-webkit-transform:translateY(-200px)}50%{opacity:1;-webkit-transform:translateY(10px)}70%{-webkit-transform:translateY(-5px)}to{-webkit-transform:translateY(0)}}@-webkit-keyframes iziT-bounceInUp{0%{opacity:0;-webkit-transform:translateY(200px)}50%{opacity:1;-webkit-transform:translateY(-10px)}70%{-webkit-transform:translateY(5px)}to{-webkit-transform:translateY(0)}}@-webkit-keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes iziT-fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(300px,0,0);transform:translate3d(300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInRight{0%{opacity:0;-webkit-transform:translate3d(-300px,0,0);transform:translate3d(-300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg)}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@-webkit-keyframes iziT-fadeOut{0%{opacity:1}to{opacity:0}}@-webkit-keyframes iziT-fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes iziT-fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes iziT-fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-200px,0,0);transform:translate3d(-200px,0,0)}}@-webkit-keyframes iziT-fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(200px,0,0);transform:translate3d(200px,0,0)}}@-webkit-keyframes iziT-flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@-moz-keyframes iziT-revealIn{0%{opacity:0;transform:scale3d(.3,.3,1)}to{opacity:1}}@-webkit-keyframes iziT-revealIn{0%{opacity:0;transform:scale3d(.3,.3,1)}to{opacity:1}}@-o-keyframes iziT-revealIn{0%{opacity:0;transform:scale3d(.3,.3,1)}to{opacity:1}}@keyframes iziT-revealIn{0%{opacity:0;transform:scale3d(.3,.3,1)}to{opacity:1}}@-moz-keyframes iziT-slideIn{0%{opacity:0;transform:translateX(50px)}to{opacity:1;transform:translateX(0)}}@-webkit-keyframes iziT-slideIn{0%{opacity:0;transform:translateX(50px)}to{opacity:1;transform:translateX(0)}}@-o-keyframes iziT-slideIn{0%{opacity:0;transform:translateX(50px)}to{opacity:1;transform:translateX(0)}}@keyframes iziT-slideIn{0%{opacity:0;transform:translateX(50px)}to{opacity:1;transform:translateX(0)}}@-moz-keyframes iziT-bounceInLeft{0%{opacity:0;transform:translateX(280px)}50%{opacity:1;transform:translateX(-20px)}70%{transform:translateX(10px)}to{transform:translateX(0)}}@-webkit-keyframes iziT-bounceInLeft{0%{opacity:0;transform:translateX(280px)}50%{opacity:1;transform:translateX(-20px)}70%{transform:translateX(10px)}to{transform:translateX(0)}}@-o-keyframes iziT-bounceInLeft{0%{opacity:0;transform:translateX(280px)}50%{opacity:1;transform:translateX(-20px)}70%{transform:translateX(10px)}to{transform:translateX(0)}}@keyframes iziT-bounceInLeft{0%{opacity:0;transform:translateX(280px)}50%{opacity:1;transform:translateX(-20px)}70%{transform:translateX(10px)}to{transform:translateX(0)}}@-moz-keyframes iziT-bounceInRight{0%{opacity:0;transform:translateX(-280px)}50%{opacity:1;transform:translateX(20px)}70%{transform:translateX(-10px)}to{transform:translateX(0)}}@-webkit-keyframes iziT-bounceInRight{0%{opacity:0;transform:translateX(-280px)}50%{opacity:1;transform:translateX(20px)}70%{transform:translateX(-10px)}to{transform:translateX(0)}}@-o-keyframes iziT-bounceInRight{0%{opacity:0;transform:translateX(-280px)}50%{opacity:1;transform:translateX(20px)}70%{transform:translateX(-10px)}to{transform:translateX(0)}}@keyframes iziT-bounceInRight{0%{opacity:0;transform:translateX(-280px)}50%{opacity:1;transform:translateX(20px)}70%{transform:translateX(-10px)}to{transform:translateX(0)}}@-moz-keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}@-webkit-keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}@-o-keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}@keyframes iziT-bounceInDown{0%{opacity:0;transform:translateY(-200px)}50%{opacity:1;transform:translateY(10px)}70%{transform:translateY(-5px)}to{transform:translateY(0)}}@-moz-keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@-webkit-keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@-o-keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@keyframes iziT-bounceInUp{0%{opacity:0;transform:translateY(200px)}50%{opacity:1;transform:translateY(-10px)}70%{transform:translateY(5px)}to{transform:translateY(0)}}@-moz-keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@-webkit-keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@-o-keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes iziT-fadeIn{0%{opacity:0}to{opacity:1}}@-moz-keyframes iziT-fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-o-keyframes iziT-fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes iziT-fadeInUp{0%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-moz-keyframes iziT-fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-o-keyframes iziT-fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes iziT-fadeInDown{0%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-moz-keyframes iziT-fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(300px,0,0);transform:translate3d(300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(300px,0,0);transform:translate3d(300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-o-keyframes iziT-fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(300px,0,0);transform:translate3d(300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes iziT-fadeInLeft{0%{opacity:0;-webkit-transform:translate3d(300px,0,0);transform:translate3d(300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-moz-keyframes iziT-fadeInRight{0%{opacity:0;-webkit-transform:translate3d(-300px,0,0);transform:translate3d(-300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-webkit-keyframes iziT-fadeInRight{0%{opacity:0;-webkit-transform:translate3d(-300px,0,0);transform:translate3d(-300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-o-keyframes iziT-fadeInRight{0%{opacity:0;-webkit-transform:translate3d(-300px,0,0);transform:translate3d(-300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@keyframes iziT-fadeInRight{0%{opacity:0;-webkit-transform:translate3d(-300px,0,0);transform:translate3d(-300px,0,0)}to{opacity:1;-webkit-transform:none;transform:none}}@-moz-keyframes iziT-flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg)}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@-webkit-keyframes iziT-flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg)}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@-o-keyframes iziT-flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg)}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes iziT-flipInX{0%{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg)}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@-moz-keyframes iziT-fadeOut{0%{opacity:1}to{opacity:0}}@-webkit-keyframes iziT-fadeOut{0%{opacity:1}to{opacity:0}}@-o-keyframes iziT-fadeOut{0%{opacity:1}to{opacity:0}}@keyframes iziT-fadeOut{0%{opacity:1}to{opacity:0}}@-moz-keyframes iziT-fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-webkit-keyframes iziT-fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-o-keyframes iziT-fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes iziT-fadeOutDown{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@-moz-keyframes iziT-fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-webkit-keyframes iziT-fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-o-keyframes iziT-fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes iziT-fadeOutUp{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@-moz-keyframes iziT-fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-200px,0,0);transform:translate3d(-200px,0,0)}}@-webkit-keyframes iziT-fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-200px,0,0);transform:translate3d(-200px,0,0)}}@-o-keyframes iziT-fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-200px,0,0);transform:translate3d(-200px,0,0)}}@keyframes iziT-fadeOutLeft{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(-200px,0,0);transform:translate3d(-200px,0,0)}}@-moz-keyframes iziT-fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(200px,0,0);transform:translate3d(200px,0,0)}}@-webkit-keyframes iziT-fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(200px,0,0);transform:translate3d(200px,0,0)}}@-o-keyframes iziT-fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(200px,0,0);transform:translate3d(200px,0,0)}}@keyframes iziT-fadeOutRight{0%{opacity:1}to{opacity:0;-webkit-transform:translate3d(200px,0,0);transform:translate3d(200px,0,0)}}@-moz-keyframes iziT-flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@-webkit-keyframes iziT-flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@-o-keyframes iziT-flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes iziT-flipOutX{0%{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}
/**
 * Swiper 8.3.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 26, 2022
 */

@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{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.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-3d.swiper-css-mode .swiper-wrapper{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,.swiper-3d .swiper-wrapper{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-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-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}
:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top: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:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right: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:10px;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:10px;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{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background: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: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:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}
.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}
.ts-wrapper.single .ts-control,.ts-wrapper.single .ts-control input{cursor:pointer}.ts-wrapper.plugin-drag_drop.multi>.ts-control>div.ui-sortable-placeholder{background:#f2f2f2!important;background:rgba(0,0,0,.06)!important;border:0!important;box-shadow:inset 0 0 12px 4px #fff;visibility:visible!important}.ts-wrapper.plugin-drag_drop .ui-sortable-placeholder:after{content:"!";visibility:hidden}.ts-wrapper.plugin-drag_drop .ui-sortable-helper{box-shadow:0 2px 5px rgba(0,0,0,.2)}.plugin-checkbox_options .option input{margin-right:.5rem}.plugin-clear_button .ts-control{padding-right:calc(1em + 18px)!important}.plugin-clear_button .clear-button{background:transparent!important;cursor:pointer;margin-right:0!important;opacity:0;position:absolute;right:2px;top:8px;transition:opacity .5s}.plugin-clear_button.single .clear-button{right:calc(2px + 2rem)}.plugin-clear_button.focus.has-items .clear-button,.plugin-clear_button:not(.disabled):hover.has-items .clear-button{opacity:1}.ts-wrapper .dropdown-header{background:#f8f8f8;border-bottom:1px solid #d0d0d0;border-radius:3px 3px 0 0;padding:10px 8px;position:relative}.ts-wrapper .dropdown-header-close{color:#303030;font-size:20px!important;line-height:20px;margin-top:-12px;opacity:.4;position:absolute;right:8px;top:50%}.ts-wrapper .dropdown-header-close:hover{color:#000}.plugin-dropdown_input.focus.dropdown-active .ts-control{border:1px solid #d0d0d0;box-shadow:none}.plugin-dropdown_input .dropdown-input{background:transparent;border:solid #d0d0d0;border-width:0 0 1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);display:block;padding:8px;width:100%}.plugin-dropdown_input .items-placeholder{border:0!important;box-shadow:none!important;width:100%}.plugin-dropdown_input.dropdown-active .items-placeholder,.plugin-dropdown_input.has-items .items-placeholder{display:none!important}.ts-wrapper.plugin-input_autogrow.has-items .ts-control>input{min-width:0}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input{flex:none;min-width:4px}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::-webkit-input-placeholder{color:transparent}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::-ms-input-placeholder{color:transparent}.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control>input::placeholder{color:transparent}.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content{display:flex}.ts-dropdown.plugin-optgroup_columns .optgroup{border-right:1px solid #f2f2f2;border-top:0;flex-basis:0;flex-grow:1;min-width:0}.ts-dropdown.plugin-optgroup_columns .optgroup:last-child{border-right:0}.ts-dropdown.plugin-optgroup_columns .optgroup:before{display:none}.ts-dropdown.plugin-optgroup_columns .optgroup-header{border-top:0}.ts-wrapper.plugin-remove_button .item{align-items:center;display:inline-flex;padding-right:0!important}.ts-wrapper.plugin-remove_button .item .remove{border-left:1px solid #0073bb;border-radius:0 2px 2px 0;box-sizing:border-box;color:inherit;display:inline-block;margin-left:6px;padding:0 6px;text-decoration:none;vertical-align:middle}.ts-wrapper.plugin-remove_button .item .remove:hover{background:rgba(0,0,0,.05)}.ts-wrapper.plugin-remove_button .item.active .remove{border-left-color:#00578d}.ts-wrapper.plugin-remove_button.disabled .item .remove:hover{background:none}.ts-wrapper.plugin-remove_button.disabled .item .remove{border-left-color:#aaa}.ts-wrapper.plugin-remove_button .remove-single{font-size:23px;position:absolute;right:0;top:0}.ts-wrapper{position:relative}.ts-control,.ts-control input,.ts-dropdown{font-smoothing:inherit;color:#303030;font-family:inherit;font-size:13px;line-height:18px}.ts-control,.ts-wrapper.single.input-active .ts-control{background:#fff;cursor:text}.ts-control{border:1px solid #d0d0d0;border-radius:3px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1);box-sizing:border-box;display:flex;flex-wrap:wrap;overflow:hidden;padding:8px;position:relative;width:100%;z-index:1}.ts-wrapper.multi.has-items .ts-control{padding:5px 8px 2px}.full .ts-control{background-color:#fff}.disabled .ts-control,.disabled .ts-control *{cursor:default!important}.focus .ts-control{box-shadow:inset 0 1px 2px rgba(0,0,0,.15)}.ts-control>*{display:inline-block;vertical-align:baseline}.ts-wrapper.multi .ts-control>div{background:#1da7ee;border:1px solid #0073bb;color:#fff;cursor:pointer;margin:0 3px 3px 0;padding:2px 6px}.ts-wrapper.multi .ts-control>div.active{background:#92c836;border:1px solid #00578d;color:#fff}.ts-wrapper.multi.disabled .ts-control>div,.ts-wrapper.multi.disabled .ts-control>div.active{background:#d2d2d2;border:1px solid #aaa;color:#fff}.ts-control>input{background:none!important;border:0!important;box-shadow:none!important;display:inline-block!important;flex:1 1 auto;line-height:inherit!important;margin:0!important;max-height:none!important;max-width:100%!important;min-height:0!important;min-width:7rem;padding:0!important;text-indent:0!important;-webkit-user-select:auto!important;-moz-user-select:auto!important;-ms-user-select:auto!important;user-select:auto!important}.ts-control>input::-ms-clear{display:none}.ts-control>input:focus{outline:none!important}.has-items .ts-control>input{margin:0 4px!important}.ts-control.rtl{text-align:right}.ts-control.rtl.single .ts-control:after{left:15px;right:auto}.ts-control.rtl .ts-control>input{margin:0 4px 0 -2px!important}.disabled .ts-control{background-color:#fafafa;opacity:.5}.input-hidden .ts-control>input{left:-10000px;opacity:0;position:absolute}.ts-dropdown{background:#fff;border:1px solid #d0d0d0;border-radius:0 0 3px 3px;border-top:0;box-shadow:0 1px 3px rgba(0,0,0,.1);box-sizing:border-box;left:0;margin:.25rem 0 0;position:absolute;top:100%;width:100%;z-index:10}.ts-dropdown [data-selectable]{cursor:pointer;overflow:hidden}.ts-dropdown [data-selectable] .highlight{background:rgba(125,168,208,.2);border-radius:1px}.ts-dropdown .create,.ts-dropdown .no-results,.ts-dropdown .optgroup-header,.ts-dropdown .option{padding:5px 8px}.ts-dropdown .option,.ts-dropdown [data-disabled],.ts-dropdown [data-disabled] [data-selectable].option{cursor:inherit;opacity:.5}.ts-dropdown [data-selectable].option{cursor:pointer;opacity:1}.ts-dropdown .optgroup:first-child .optgroup-header{border-top:0}.ts-dropdown .optgroup-header{background:#fff;color:#303030;cursor:default}.ts-dropdown .active{background-color:#f5fafd;color:#495c68}.ts-dropdown .active.create{color:#495c68}.ts-dropdown .create{color:rgba(48,48,48,.5)}.ts-dropdown .spinner{display:inline-block;height:30px;margin:5px 8px;width:30px}.ts-dropdown .spinner:after{animation:lds-dual-ring 1.2s linear infinite;border-color:#d0d0d0 transparent;border-radius:50%;border-style:solid;border-width:5px;content:" ";display:block;height:24px;margin:3px;width:24px}@keyframes lds-dual-ring{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.ts-dropdown-content{overflow-scrolling:touch;max-height:200px;overflow-x:hidden;overflow-y:auto;scroll-behavior:smooth}.ts-hidden-accessible{clip:rect(0 0 0 0)!important;border:0!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.ts-wrapper.single .ts-control{padding-right:2rem}.ts-wrapper.single .ts-control:after{border-color:grey transparent transparent;border-style:solid;border-width:5px 5px 0;content:" ";display:block;height:0;margin-top:-3px;position:absolute;right:15px;top:50%;width:0}.ts-wrapper.single.dropdown-active .ts-control:after{border-color:transparent transparent grey;border-width:0 5px 5px;margin-top:-4px}.ts-wrapper.single.input-active .ts-control,.ts-wrapper.single.input-active .ts-control input{cursor:text}.ts-wrapper{display:flex;min-height:36px}.ts-wrapper.multi.has-items .ts-control{padding-left:5px;padding-right:5px}.ts-wrapper.multi .ts-control [data-value]{background-color:#1b9dec;background-image:linear-gradient(180deg,#1da7ee,#178ee9);background-repeat:repeat-x;border-radius:3px;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 1px hsla(0,0%,100%,.03);text-shadow:0 1px 0 rgba(0,51,83,.3)}.ts-wrapper.multi .ts-control [data-value].active{background-color:#0085d4;background-image:linear-gradient(180deg,#008fd8,#0075cf);background-repeat:repeat-x}.ts-wrapper.multi.disabled .ts-control [data-value]{background:none;box-shadow:none;color:#999;text-shadow:none}.ts-wrapper.multi.disabled .ts-control [data-value],.ts-wrapper.multi.disabled .ts-control [data-value] .remove{border-color:#e6e6e6}.ts-wrapper.multi.disabled .ts-control [data-value] .remove{background:none}.ts-wrapper.single .ts-control{background-color:#f9f9f9;background-image:linear-gradient(180deg,#fefefe,#f2f2f2);background-repeat:repeat-x;box-shadow:0 1px 0 rgba(0,0,0,.05),inset 0 1px 0 hsla(0,0%,100%,.8)}.ts-dropdown.single,.ts-wrapper.single .ts-control{border-color:#b8b8b8}.dropdown-active .ts-control{border-radius:3px 3px 0 0}.ts-dropdown .optgroup-header{font-size:.85em;font-weight:700;padding-top:7px}.ts-dropdown .optgroup{border-top:1px solid #f0f0f0}.ts-dropdown .optgroup:first-child{border-top:0}
.tingle-modal *{box-sizing:border-box}.tingle-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1000;display:flex;visibility:hidden;flex-direction:column;align-items:center;overflow:hidden;-webkit-overflow-scrolling:touch;background:rgba(0,0,0,.9);opacity:0;cursor:url("data:image/svg+xml,%3Csvg width='19' height='19' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.514.535l-6.42 6.42L2.677.536a1.517 1.517 0 00-2.14 0 1.517 1.517 0 000 2.14l6.42 6.419-6.42 6.419a1.517 1.517 0 000 2.14 1.517 1.517 0 002.14 0l6.419-6.42 6.419 6.42a1.517 1.517 0 002.14 0 1.517 1.517 0 000-2.14l-6.42-6.42 6.42-6.418a1.517 1.517 0 000-2.14 1.516 1.516 0 00-2.14 0z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E"),auto}@supports ((-webkit-backdrop-filter:blur(12px)) or (backdrop-filter:blur(12px))){.tingle-modal{-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px)}}.tingle-modal--confirm .tingle-modal-box{text-align:center}.tingle-modal--noOverlayClose{cursor:default}.tingle-modal--noClose .tingle-modal__close{display:none}.tingle-modal__close{position:fixed;top:2.5rem;right:2.5rem;z-index:1000;padding:0;width:2rem;height:2rem;border:none;background-color:transparent;color:#fff;cursor:pointer}.tingle-modal__close svg *{fill:currentColor}.tingle-modal__closeLabel{display:none}.tingle-modal__close:hover{color:#fff}.tingle-modal-box{position:relative;flex-shrink:0;margin-top:auto;margin-bottom:auto;width:60%;border-radius:4px;background:#fff;opacity:1;cursor:auto;will-change:transform,opacity}.tingle-modal-box__content{padding:3rem 3rem}.tingle-modal-box__footer{padding:1.5rem 2rem;width:auto;border-bottom-right-radius:4px;border-bottom-left-radius:4px;background-color:#f5f5f5;cursor:auto}.tingle-modal-box__footer::after{display:table;clear:both;content:""}.tingle-modal-box__footer--sticky{position:fixed;bottom:-200px;z-index:10001;opacity:1;transition:bottom .3s ease-in-out .3s}.tingle-enabled{position:fixed;right:0;left:0;overflow:hidden}.tingle-modal--visible .tingle-modal-box__footer{bottom:0}.tingle-modal--visible{visibility:visible;opacity:1}.tingle-modal--visible .tingle-modal-box{animation:scale .2s cubic-bezier(.68,-.55,.265,1.55) forwards}.tingle-modal--overflow{overflow-y:scroll;padding-top:8vh}.tingle-btn{display:inline-block;margin:0 .5rem;padding:1rem 2rem;border:none;background-color:grey;box-shadow:none;color:#fff;vertical-align:middle;text-decoration:none;font-size:inherit;font-family:inherit;line-height:normal;cursor:pointer;transition:background-color .4s ease}.tingle-btn--primary{background-color:#3498db}.tingle-btn--danger{background-color:#e74c3c}.tingle-btn--default{background-color:#34495e}.tingle-btn--pull-left{float:left}.tingle-btn--pull-right{float:right}@media (max-width :540px){.tingle-modal{top:0;display:block;padding-top:60px;width:100%}.tingle-modal-box{width:auto;border-radius:0}.tingle-modal-box__content{overflow-y:scroll}.tingle-modal--noClose{top:0}.tingle-modal--noOverlayClose{padding-top:0}.tingle-modal-box__footer .tingle-btn{display:block;float:none;margin-bottom:1rem;width:100%}.tingle-modal__close{top:0;right:0;left:0;display:block;width:100%;height:60px;border:none;background-color:#2c3e50;box-shadow:none;color:#fff}.tingle-modal__closeLabel{display:inline-block;vertical-align:middle;font-size:1.6rem;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif}.tingle-modal__closeIcon{display:inline-block;margin-right:.8rem;width:1.6rem;vertical-align:middle;font-size:0}}@keyframes scale{0%{opacity:0;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}
@charset "UTF-8";
@font-face {
  font-family: 'Montserrat';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url("../font/Montserrat.woff2") format("woff2"); }

@font-face {
  font-family: 'Montserrat Classic';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../font/MontserratClassic.woff2") format("woff2"); }

@font-face {
  font-family: 'Anton';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../font/Anton-Regular.woff2") format("woff2"); }

@font-face {
  font-family: 'Source Code Pro';
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  src: url("../font/SourceCodePro-VariableFont_wght.woff2") format("woff2"); }

/*!
 * 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: #2866e8;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #ff0019;
  --orange: #E65400;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #444444;
  --primary: #000;
  --secondary: #fff;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #ff0019;
  --light: #f5f5f5;
  --dark: #000;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: "Montserrat", sans-serif;
  --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: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: "wght" 400;
  line-height: 1.5;
  color: #666666;
  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: "wght" 700; }

dd {
  margin-bottom: .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: -.25em; }

sup {
  top: -.5em; }

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }
  a:hover {
    color: black;
    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; }

th {
  text-align: inherit; }

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: .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: "Anton", sans-serif;
  font-weight: "wght" 600;
  line-height: 1.2;
  color: #2866e8; }

h1, .h1 {
  font-size: 4.5rem; }

h2, .h2 {
  font-size: 2.875rem; }

h3, .h3 {
  font-size: 2rem; }

h4, .h4 {
  font-size: 1.5rem; }

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

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

.lead {
  font-size: 1.09375rem;
  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: "wght" 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.09375rem; }

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014 \00A0"; }

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0;
  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; }

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 760px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 1000px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1280px; } }

.container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  max-width: 100%; }

.col-auto {
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  -ms-flex: 0 0 8.33333%;
      flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  -ms-flex: 0 0 16.66667%;
      flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  -ms-flex: 0 0 25%;
      flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  -ms-flex: 0 0 33.33333%;
      flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  -ms-flex: 0 0 41.66667%;
      flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  -ms-flex: 0 0 50%;
      flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  -ms-flex: 0 0 58.33333%;
      flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  -ms-flex: 0 0 66.66667%;
      flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  -ms-flex: 0 0 75%;
      flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  -ms-flex: 0 0 83.33333%;
      flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  -ms-flex: 0 0 91.66667%;
      flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  -ms-flex-order: -1;
      order: -1; }

.order-last {
  -ms-flex-order: 13;
      order: 13; }

.order-0 {
  -ms-flex-order: 0;
      order: 0; }

.order-1 {
  -ms-flex-order: 1;
      order: 1; }

.order-2 {
  -ms-flex-order: 2;
      order: 2; }

.order-3 {
  -ms-flex-order: 3;
      order: 3; }

.order-4 {
  -ms-flex-order: 4;
      order: 4; }

.order-5 {
  -ms-flex-order: 5;
      order: 5; }

.order-6 {
  -ms-flex-order: 6;
      order: 6; }

.order-7 {
  -ms-flex-order: 7;
      order: 7; }

.order-8 {
  -ms-flex-order: 8;
      order: 8; }

.order-9 {
  -ms-flex-order: 9;
      order: 9; }

.order-10 {
  -ms-flex-order: 10;
      order: 10; }

.order-11 {
  -ms-flex-order: 11;
      order: 11; }

.order-12 {
  -ms-flex-order: 12;
      order: 12; }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-sm-1 {
    -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -ms-flex-order: -1;
        order: -1; }
  .order-sm-last {
    -ms-flex-order: 13;
        order: 13; }
  .order-sm-0 {
    -ms-flex-order: 0;
        order: 0; }
  .order-sm-1 {
    -ms-flex-order: 1;
        order: 1; }
  .order-sm-2 {
    -ms-flex-order: 2;
        order: 2; }
  .order-sm-3 {
    -ms-flex-order: 3;
        order: 3; }
  .order-sm-4 {
    -ms-flex-order: 4;
        order: 4; }
  .order-sm-5 {
    -ms-flex-order: 5;
        order: 5; }
  .order-sm-6 {
    -ms-flex-order: 6;
        order: 6; }
  .order-sm-7 {
    -ms-flex-order: 7;
        order: 7; }
  .order-sm-8 {
    -ms-flex-order: 8;
        order: 8; }
  .order-sm-9 {
    -ms-flex-order: 9;
        order: 9; }
  .order-sm-10 {
    -ms-flex-order: 10;
        order: 10; }
  .order-sm-11 {
    -ms-flex-order: 11;
        order: 11; }
  .order-sm-12 {
    -ms-flex-order: 12;
        order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-md-1 {
    -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -ms-flex-order: -1;
        order: -1; }
  .order-md-last {
    -ms-flex-order: 13;
        order: 13; }
  .order-md-0 {
    -ms-flex-order: 0;
        order: 0; }
  .order-md-1 {
    -ms-flex-order: 1;
        order: 1; }
  .order-md-2 {
    -ms-flex-order: 2;
        order: 2; }
  .order-md-3 {
    -ms-flex-order: 3;
        order: 3; }
  .order-md-4 {
    -ms-flex-order: 4;
        order: 4; }
  .order-md-5 {
    -ms-flex-order: 5;
        order: 5; }
  .order-md-6 {
    -ms-flex-order: 6;
        order: 6; }
  .order-md-7 {
    -ms-flex-order: 7;
        order: 7; }
  .order-md-8 {
    -ms-flex-order: 8;
        order: 8; }
  .order-md-9 {
    -ms-flex-order: 9;
        order: 9; }
  .order-md-10 {
    -ms-flex-order: 10;
        order: 10; }
  .order-md-11 {
    -ms-flex-order: 11;
        order: 11; }
  .order-md-12 {
    -ms-flex-order: 12;
        order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-lg-1 {
    -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -ms-flex-order: -1;
        order: -1; }
  .order-lg-last {
    -ms-flex-order: 13;
        order: 13; }
  .order-lg-0 {
    -ms-flex-order: 0;
        order: 0; }
  .order-lg-1 {
    -ms-flex-order: 1;
        order: 1; }
  .order-lg-2 {
    -ms-flex-order: 2;
        order: 2; }
  .order-lg-3 {
    -ms-flex-order: 3;
        order: 3; }
  .order-lg-4 {
    -ms-flex-order: 4;
        order: 4; }
  .order-lg-5 {
    -ms-flex-order: 5;
        order: 5; }
  .order-lg-6 {
    -ms-flex-order: 6;
        order: 6; }
  .order-lg-7 {
    -ms-flex-order: 7;
        order: 7; }
  .order-lg-8 {
    -ms-flex-order: 8;
        order: 8; }
  .order-lg-9 {
    -ms-flex-order: 9;
        order: 9; }
  .order-lg-10 {
    -ms-flex-order: 10;
        order: 10; }
  .order-lg-11 {
    -ms-flex-order: 11;
        order: 11; }
  .order-lg-12 {
    -ms-flex-order: 12;
        order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-xl-1 {
    -ms-flex: 0 0 8.33333%;
        flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    -ms-flex: 0 0 16.66667%;
        flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
        flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -ms-flex: 0 0 33.33333%;
        flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    -ms-flex: 0 0 41.66667%;
        flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
        flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -ms-flex: 0 0 58.33333%;
        flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    -ms-flex: 0 0 66.66667%;
        flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
        flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -ms-flex: 0 0 83.33333%;
        flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    -ms-flex: 0 0 91.66667%;
        flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -ms-flex-order: -1;
        order: -1; }
  .order-xl-last {
    -ms-flex-order: 13;
        order: 13; }
  .order-xl-0 {
    -ms-flex-order: 0;
        order: 0; }
  .order-xl-1 {
    -ms-flex-order: 1;
        order: 1; }
  .order-xl-2 {
    -ms-flex-order: 2;
        order: 2; }
  .order-xl-3 {
    -ms-flex-order: 3;
        order: 3; }
  .order-xl-4 {
    -ms-flex-order: 4;
        order: 4; }
  .order-xl-5 {
    -ms-flex-order: 5;
        order: 5; }
  .order-xl-6 {
    -ms-flex-order: 6;
        order: 6; }
  .order-xl-7 {
    -ms-flex-order: 7;
        order: 7; }
  .order-xl-8 {
    -ms-flex-order: 8;
        order: 8; }
  .order-xl-9 {
    -ms-flex-order: 9;
        order: 9; }
  .order-xl-10 {
    -ms-flex-order: 10;
        order: 10; }
  .order-xl-11 {
    -ms-flex-order: 11;
        order: 11; }
  .order-xl-12 {
    -ms-flex-order: 12;
        order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

.table {
  width: 100%;
  margin-bottom: 1rem;
  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: #b8b8b8; }

.table-hover .table-primary:hover {
  background-color: #ababab; }
  .table-hover .table-primary:hover > td,
  .table-hover .table-primary:hover > th {
    background-color: #ababab; }

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: white; }

.table-hover .table-secondary:hover {
  background-color: #f2f2f2; }
  .table-hover .table-secondary:hover > td,
  .table-hover .table-secondary:hover > th {
    background-color: #f2f2f2; }

.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: #ffb8bf; }

.table-hover .table-danger:hover {
  background-color: #ff9fa8; }
  .table-hover .table-danger:hover > td,
  .table-hover .table-danger:hover > th {
    background-color: #ff9fa8; }

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fcfcfc; }

.table-hover .table-light:hover {
  background-color: #efefef; }
  .table-hover .table-light:hover > td,
  .table-hover .table-light:hover > th {
    background-color: #efefef; }

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #b8b8b8; }

.table-hover .table-dark:hover {
  background-color: #ababab; }
  .table-hover .table-dark:hover > td,
  .table-hover .table-dark:hover > th {
    background-color: #ababab; }

.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: #666666;
  background-color: #dddddd;
  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.0625rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666666;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0;
  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: #666666;
    background-color: #fff;
    border-color: #404040;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
  .form-control::-webkit-input-placeholder {
    color: #666666;
    opacity: 1; }
  .form-control:-ms-input-placeholder {
    color: #666666;
    opacity: 1; }
  .form-control::placeholder {
    color: #666666;
    opacity: 1; }
  .form-control:disabled, .form-control[readonly] {
    background-color: #dddddd;
    opacity: 1; }

select.form-control:focus::-ms-value {
  color: #666666;
  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.09375rem;
  line-height: 1.5; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.76562rem;
  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: #666666;
  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.64844rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.76562rem;
  line-height: 1.5;
  border-radius: 0; }

.form-control-lg {
  height: calc(2.64062rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0; }

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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      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: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      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: .1rem;
  font-size: 0.76562rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0; }

.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: #ff0019; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.76562rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255, 0, 25, 0.9);
  border-radius: 0; }

.was-validated .form-control:invalid, .form-control.is-invalid, .was-validated
.custom-select:invalid,
.custom-select.is-invalid {
  border-color: #ff0019; }
  .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated
  .custom-select:invalid:focus,
  .custom-select.is-invalid:focus {
    border-color: #ff0019;
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 25, 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: #ff0019; }

.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: #ff0019; }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: #ff808c; }

.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: #ff3347; }

.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(255, 0, 25, 0.25); }

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #ff0019; }
  .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(255, 0, 25, 0.25); }

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center; }
  .form-inline .form-check {
    width: 100%; }
  @media (min-width: 576px) {
    .form-inline label {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      margin-bottom: 0; }
    .form-inline .form-group {
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
      -ms-flex-align: center;
          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: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: 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 {
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center; }
    .form-inline .custom-control-label {
      margin-bottom: 0; } }

.btn, .axadblock .axadblock-link {
  display: inline-block;
  font-weight: "wght" 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0;
  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, .axadblock .axadblock-link {
      transition: none; } }
  .btn:hover, .axadblock .axadblock-link:hover, .btn:focus, .axadblock .axadblock-link:focus {
    text-decoration: none; }
  .btn:focus, .axadblock .axadblock-link:focus, .btn.focus, .axadblock .focus.axadblock-link {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
  .btn.disabled, .axadblock .disabled.axadblock-link, .btn:disabled, .axadblock .axadblock-link:disabled {
    opacity: 0.65; }
  .btn:not(:disabled):not(.disabled), .axadblock .axadblock-link:not(:disabled):not(.disabled) {
    cursor: pointer; }

a.btn.disabled, .axadblock a.disabled.axadblock-link,
fieldset:disabled a.btn,
fieldset:disabled .axadblock a.axadblock-link,
.axadblock fieldset:disabled a.axadblock-link {
  pointer-events: none; }

.btn-primary, #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link {
  color: #fff;
  background-color: #000;
  border-color: #000; }
  .btn-primary:hover, #pagenotfound .page-not-found .notfound-img .btn:hover, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:hover, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:hover {
    color: #fff;
    background-color: black;
    border-color: black; }
  .btn-primary:focus, #pagenotfound .page-not-found .notfound-img .btn:focus, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:focus, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:focus, .btn-primary.focus, #pagenotfound .page-not-found .notfound-img .focus.btn, #pagenotfound .page-not-found .notfound-img .axadblock .focus.axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .focus.axadblock-link {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); }
  .btn-primary.disabled, #pagenotfound .page-not-found .notfound-img .disabled.btn, #pagenotfound .page-not-found .notfound-img .axadblock .disabled.axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .disabled.axadblock-link, .btn-primary:disabled, #pagenotfound .page-not-found .notfound-img .btn:disabled, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:disabled, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:disabled {
    color: #fff;
    background-color: #000;
    border-color: #000; }
  .btn-primary:not(:disabled):not(.disabled):active, #pagenotfound .page-not-found .notfound-img .btn:not(:disabled):not(.disabled):active, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:not(:disabled):not(.disabled):active, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, #pagenotfound .page-not-found .notfound-img .btn:not(:disabled):not(.disabled).active, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:not(:disabled):not(.disabled).active, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:not(:disabled):not(.disabled).active,
  .show > .btn-primary.dropdown-toggle,
  #pagenotfound .page-not-found .notfound-img .show > .dropdown-toggle.btn,
  #pagenotfound .page-not-found .notfound-img .axadblock .show > .dropdown-toggle.axadblock-link,
  .axadblock #pagenotfound .page-not-found .notfound-img .show > .dropdown-toggle.axadblock-link {
    color: #fff;
    background-color: black;
    border-color: black; }
    .btn-primary:not(:disabled):not(.disabled):active:focus, #pagenotfound .page-not-found .notfound-img .btn:not(:disabled):not(.disabled):active:focus, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:not(:disabled):not(.disabled):active:focus, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, #pagenotfound .page-not-found .notfound-img .btn:not(:disabled):not(.disabled).active:focus, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:not(:disabled):not(.disabled).active:focus, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:not(:disabled):not(.disabled).active:focus,
    .show > .btn-primary.dropdown-toggle:focus,
    #pagenotfound .page-not-found .notfound-img .show > .dropdown-toggle.btn:focus,
    #pagenotfound .page-not-found .notfound-img .axadblock .show > .dropdown-toggle.axadblock-link:focus,
    .axadblock #pagenotfound .page-not-found .notfound-img .show > .dropdown-toggle.axadblock-link:focus {
      box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); }

.btn-secondary, .axadblock .axadblock-link {
  color: #212529;
  background-color: #fff;
  border-color: #fff; }
  .btn-secondary:hover, .axadblock .axadblock-link:hover {
    color: #212529;
    background-color: #ececec;
    border-color: #e6e6e6; }
  .btn-secondary:focus, .axadblock .axadblock-link:focus, .btn-secondary.focus, .axadblock .focus.axadblock-link {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .btn-secondary.disabled, .axadblock .disabled.axadblock-link, .btn-secondary:disabled, .axadblock .axadblock-link:disabled {
    color: #212529;
    background-color: #fff;
    border-color: #fff; }
  .btn-secondary:not(:disabled):not(.disabled):active, .axadblock .axadblock-link:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .axadblock .axadblock-link:not(:disabled):not(.disabled).active,
  .show > .btn-secondary.dropdown-toggle,
  .axadblock .show > .dropdown-toggle.axadblock-link {
    color: #212529;
    background-color: #e6e6e6;
    border-color: #dfdfdf; }
    .btn-secondary:not(:disabled):not(.disabled):active:focus, .axadblock .axadblock-link:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .axadblock .axadblock-link:not(:disabled):not(.disabled).active:focus,
    .show > .btn-secondary.dropdown-toggle:focus,
    .axadblock .show > .dropdown-toggle.axadblock-link:focus {
      box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 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: #ff0019;
  border-color: #ff0019; }
  .btn-danger:hover {
    color: #fff;
    background-color: #d90015;
    border-color: #cc0014; }
  .btn-danger:focus, .btn-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 25, 0.5); }
  .btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #ff0019;
    border-color: #ff0019; }
  .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
  .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #cc0014;
    border-color: #bf0013; }
    .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(255, 0, 25, 0.5); }

.btn-light {
  color: #212529;
  background-color: #f5f5f5;
  border-color: #f5f5f5; }
  .btn-light:hover {
    color: #212529;
    background-color: #e2e2e2;
    border-color: gainsboro; }
  .btn-light:focus, .btn-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5); }
  .btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f5f5f5;
    border-color: #f5f5f5; }
  .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
  .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: gainsboro;
    border-color: #d5d5d5; }
    .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(245, 245, 245, 0.5); }

.btn-dark {
  color: #fff;
  background-color: #000;
  border-color: #000; }
  .btn-dark:hover {
    color: #fff;
    background-color: black;
    border-color: black; }
  .btn-dark:focus, .btn-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); }
  .btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #000;
    border-color: #000; }
  .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
  .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: black;
    border-color: black; }
    .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(0, 0, 0, 0.5); }

.btn-outline-primary {
  color: #000;
  background-color: transparent;
  background-image: none;
  border-color: #000; }
  .btn-outline-primary:hover {
    color: #fff;
    background-color: #000;
    border-color: #000; }
  .btn-outline-primary:focus, .btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); }
  .btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #000;
    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: #000;
    border-color: #000; }
    .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, 0, 0, 0.5); }

.btn-outline-secondary {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff; }
  .btn-outline-secondary:hover {
    color: #212529;
    background-color: #fff;
    border-color: #fff; }
  .btn-outline-secondary:focus, .btn-outline-secondary.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #fff;
    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: #212529;
    background-color: #fff;
    border-color: #fff; }
    .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(255, 255, 255, 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: #ff0019;
  background-color: transparent;
  background-image: none;
  border-color: #ff0019; }
  .btn-outline-danger:hover {
    color: #fff;
    background-color: #ff0019;
    border-color: #ff0019; }
  .btn-outline-danger:focus, .btn-outline-danger.focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 25, 0.5); }
  .btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #ff0019;
    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: #ff0019;
    border-color: #ff0019; }
    .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(255, 0, 25, 0.5); }

.btn-outline-light {
  color: #f5f5f5;
  background-color: transparent;
  background-image: none;
  border-color: #f5f5f5; }
  .btn-outline-light:hover {
    color: #212529;
    background-color: #f5f5f5;
    border-color: #f5f5f5; }
  .btn-outline-light:focus, .btn-outline-light.focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 245, 245, 0.5); }
  .btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f5f5f5;
    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: #f5f5f5;
    border-color: #f5f5f5; }
    .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(245, 245, 245, 0.5); }

.btn-outline-dark {
  color: #000;
  background-color: transparent;
  background-image: none;
  border-color: #000; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #000;
    border-color: #000; }
  .btn-outline-dark:focus, .btn-outline-dark.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.5); }
  .btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #000;
    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: #000;
    border-color: #000; }
    .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(0, 0, 0, 0.5); }

.btn-link {
  font-weight: "wght" 400;
  color: #000;
  background-color: transparent; }
  .btn-link:hover {
    color: black;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent; }
  .btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none; }

.btn-lg, .btn-group-lg > .btn, .axadblock .btn-group-lg > .axadblock-link {
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0; }

.btn-sm, .btn-group-sm > .btn, .axadblock .btn-group-sm > .axadblock-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.76562rem;
  line-height: 1.5;
  border-radius: 0; }

.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: 0.875rem;
  color: #666666;
  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; }

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

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: "wght" 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: #f5f5f5; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #000; }
  .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.76562rem;
  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: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn, .axadblock .btn-group > .axadblock-link,
  .btn-group-vertical > .btn,
  .axadblock .btn-group-vertical > .axadblock-link {
    position: relative;
    -ms-flex: 0 1 auto;
        flex: 0 1 auto; }
    .btn-group > .btn:hover, .axadblock .btn-group > .axadblock-link:hover,
    .btn-group-vertical > .btn:hover,
    .axadblock .btn-group-vertical > .axadblock-link:hover {
      z-index: 1; }
    .btn-group > .btn:focus, .axadblock .btn-group > .axadblock-link:focus, .btn-group > .btn:active, .axadblock .btn-group > .axadblock-link:active, .btn-group > .btn.active, .axadblock .btn-group > .active.axadblock-link,
    .btn-group-vertical > .btn:focus,
    .axadblock .btn-group-vertical > .axadblock-link:focus,
    .btn-group-vertical > .btn:active,
    .axadblock .btn-group-vertical > .axadblock-link:active,
    .btn-group-vertical > .btn.active,
    .axadblock .btn-group-vertical > .active.axadblock-link {
      z-index: 1; }
  .btn-group .btn + .btn, .btn-group .axadblock .axadblock-link + .btn, .axadblock .btn-group .axadblock-link + .btn, .btn-group .axadblock .btn + .axadblock-link, .axadblock .btn-group .btn + .axadblock-link, .btn-group .axadblock .axadblock-link + .axadblock-link, .axadblock .btn-group .axadblock-link + .axadblock-link,
  .btn-group .btn + .btn-group,
  .btn-group .axadblock .axadblock-link + .btn-group,
  .axadblock .btn-group .axadblock-link + .btn-group,
  .btn-group .btn-group + .btn,
  .btn-group .axadblock .btn-group + .axadblock-link,
  .axadblock .btn-group .btn-group + .axadblock-link,
  .btn-group .btn-group + .btn-group,
  .btn-group-vertical .btn + .btn,
  .btn-group-vertical .axadblock .axadblock-link + .btn,
  .axadblock .btn-group-vertical .axadblock-link + .btn,
  .btn-group-vertical .axadblock .btn + .axadblock-link,
  .axadblock .btn-group-vertical .btn + .axadblock-link,
  .btn-group-vertical .axadblock .axadblock-link + .axadblock-link,
  .axadblock .btn-group-vertical .axadblock-link + .axadblock-link,
  .btn-group-vertical .btn + .btn-group,
  .btn-group-vertical .axadblock .axadblock-link + .btn-group,
  .axadblock .btn-group-vertical .axadblock-link + .btn-group,
  .btn-group-vertical .btn-group + .btn,
  .btn-group-vertical .axadblock .btn-group + .axadblock-link,
  .axadblock .btn-group-vertical .btn-group + .axadblock-link,
  .btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px; }

.btn-toolbar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: start;
      justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:first-child, .axadblock .btn-group > .axadblock-link:first-child {
  margin-left: 0; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .axadblock .btn-group > .axadblock-link:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.axadblock .btn-group > .btn-group:not(:last-child) > .axadblock-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:not(:first-child), .axadblock .btn-group > .axadblock-link:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.axadblock .btn-group > .btn-group:not(:first-child) > .axadblock-link {
  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, .axadblock .btn-group-sm > .axadblock-link + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .axadblock .btn-group-lg > .axadblock-link + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }

.btn-group-vertical {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: center;
      justify-content: center; }
  .btn-group-vertical .btn, .btn-group-vertical .axadblock .axadblock-link, .axadblock .btn-group-vertical .axadblock-link,
  .btn-group-vertical .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn + .btn, .axadblock .btn-group-vertical > .axadblock-link + .btn, .axadblock .btn-group-vertical > .btn + .axadblock-link, .axadblock .btn-group-vertical > .axadblock-link + .axadblock-link,
  .btn-group-vertical > .btn + .btn-group,
  .axadblock .btn-group-vertical > .axadblock-link + .btn-group,
  .btn-group-vertical > .btn-group + .btn,
  .axadblock .btn-group-vertical > .btn-group + .axadblock-link,
  .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0; }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .axadblock .btn-group-vertical > .axadblock-link:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn,
  .axadblock .btn-group-vertical > .btn-group:not(:last-child) > .axadblock-link {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .btn-group-vertical > .btn:not(:first-child), .axadblock .btn-group-vertical > .axadblock-link:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) > .btn,
  .axadblock .btn-group-vertical > .btn-group:not(:first-child) > .axadblock-link {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.btn-group-toggle > .btn, .axadblock .btn-group-toggle > .axadblock-link,
.btn-group-toggle > .btn-group > .btn,
.axadblock .btn-group-toggle > .btn-group > .axadblock-link {
  margin-bottom: 0; }
  .btn-group-toggle > .btn input[type="radio"], .axadblock .btn-group-toggle > .axadblock-link input[type="radio"],
  .btn-group-toggle > .btn input[type="checkbox"],
  .axadblock .btn-group-toggle > .axadblock-link input[type="checkbox"],
  .btn-group-toggle > .btn-group > .btn input[type="radio"],
  .axadblock .btn-group-toggle > .btn-group > .axadblock-link input[type="radio"],
  .btn-group-toggle > .btn-group > .btn input[type="checkbox"],
  .axadblock .btn-group-toggle > .btn-group > .axadblock-link input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }

.input-group {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
  width: 100%; }
  .input-group > .form-control,
  .input-group > .custom-select,
  .input-group > .custom-file {
    position: relative;
    -ms-flex: 1 1 auto;
        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: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        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: -ms-flexbox;
  display: flex; }
  .input-group-prepend .btn, .input-group-prepend .axadblock .axadblock-link, .axadblock .input-group-prepend .axadblock-link,
  .input-group-append .btn,
  .input-group-append .axadblock .axadblock-link,
  .axadblock .input-group-append .axadblock-link {
    position: relative;
    z-index: 2; }
  .input-group-prepend .btn + .btn, .input-group-prepend .axadblock .axadblock-link + .btn, .axadblock .input-group-prepend .axadblock-link + .btn, .input-group-prepend .axadblock .btn + .axadblock-link, .axadblock .input-group-prepend .btn + .axadblock-link, .input-group-prepend .axadblock .axadblock-link + .axadblock-link, .axadblock .input-group-prepend .axadblock-link + .axadblock-link,
  .input-group-prepend .btn + .input-group-text,
  .input-group-prepend .axadblock .axadblock-link + .input-group-text,
  .axadblock .input-group-prepend .axadblock-link + .input-group-text,
  .input-group-prepend .input-group-text + .input-group-text,
  .input-group-prepend .input-group-text + .btn,
  .input-group-prepend .axadblock .input-group-text + .axadblock-link,
  .axadblock .input-group-prepend .input-group-text + .axadblock-link,
  .input-group-append .btn + .btn,
  .input-group-append .axadblock .axadblock-link + .btn,
  .axadblock .input-group-append .axadblock-link + .btn,
  .input-group-append .axadblock .btn + .axadblock-link,
  .axadblock .input-group-append .btn + .axadblock-link,
  .input-group-append .axadblock .axadblock-link + .axadblock-link,
  .axadblock .input-group-append .axadblock-link + .axadblock-link,
  .input-group-append .btn + .input-group-text,
  .input-group-append .axadblock .axadblock-link + .input-group-text,
  .axadblock .input-group-append .axadblock-link + .input-group-text,
  .input-group-append .input-group-text + .input-group-text,
  .input-group-append .input-group-text + .btn,
  .input-group-append .axadblock .input-group-text + .axadblock-link,
  .axadblock .input-group-append .input-group-text + .axadblock-link {
    margin-left: -1px; }

.input-group-prepend {
  margin-right: -1px; }

.input-group-append {
  margin-left: -1px; }

.input-group-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: "wght" 400;
  line-height: 1.5;
  color: #666666;
  text-align: center;
  white-space: nowrap;
  background-color: #dddddd;
  border: 1px solid #ced4da;
  border-radius: 0; }
  .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,
.axadblock .input-group-lg > .input-group-prepend > .axadblock-link,
.input-group-lg > .input-group-append > .btn,
.axadblock .input-group-lg > .input-group-append > .axadblock-link {
  height: calc(2.64062rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.09375rem;
  line-height: 1.5;
  border-radius: 0; }

.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,
.axadblock .input-group-sm > .input-group-prepend > .axadblock-link,
.input-group-sm > .input-group-append > .btn,
.axadblock .input-group-sm > .input-group-append > .axadblock-link {
  height: calc(1.64844rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.76562rem;
  line-height: 1.5;
  border-radius: 0; }

.input-group > .input-group-prepend > .btn, .axadblock .input-group > .input-group-prepend > .axadblock-link,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.axadblock .input-group > .input-group-append:not(:last-child) > .axadblock-link,
.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),
.axadblock .input-group > .input-group-append:last-child > .axadblock-link: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, .axadblock .input-group > .input-group-append > .axadblock-link,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.axadblock .input-group > .input-group-prepend:not(:first-child) > .axadblock-link,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.axadblock .input-group > .input-group-prepend:first-child > .axadblock-link: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.3125rem;
  padding-left: 1.5rem; }

.custom-control-inline {
  display: -ms-inline-flexbox;
  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: #000; }
  .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
  .custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #595959; }
  .custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d; }
    .custom-control-input:disabled ~ .custom-control-label::before {
      background-color: #dddddd; }

.custom-control-label {
  position: relative;
  margin-bottom: 0; }
  .custom-control-label::before {
    position: absolute;
    top: 0.15625rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background-color: #dee2e6; }
  .custom-control-label::after {
    position: absolute;
    top: 0.15625rem;
    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; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #000; }

.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: #000; }

.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, 0, 0, 0.5); }

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 0, 0, 0.5); }

.custom-radio .custom-control-label::before {
  border-radius: 50%; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #000; }

.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, 0, 0, 0.5); }

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(2.0625rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.5;
  color: #666666;
  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='%23444444' 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;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  .custom-select:focus {
    border-color: #404040;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(64, 64, 64, 0.5); }
    .custom-select:focus::-ms-value {
      color: #666666;
      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: #dddddd; }
  .custom-select::-ms-expand {
    opacity: 0; }

.custom-select-sm {
  height: calc(1.64844rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 75%; }

.custom-select-lg {
  height: calc(2.64062rem + 2px);
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 125%; }

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(2.0625rem + 2px);
  margin-bottom: 0; }

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(2.0625rem + 2px);
  margin: 0;
  opacity: 0; }
  .custom-file-input:focus ~ .custom-file-label {
    border-color: #404040;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
    .custom-file-input:focus ~ .custom-file-label::after {
      border-color: #404040; }
  .custom-file-input:disabled ~ .custom-file-label {
    background-color: #dddddd; }
  .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.0625rem + 2px);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #666666;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0; }
  .custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 2.0625rem;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    color: #666666;
    content: "Browse";
    background-color: #dddddd;
    border-left: 1px solid #ced4da;
    border-radius: 0 0 0 0; }

.custom-range {
  width: 100%;
  padding-left: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          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, 0, 0, 0.25); }
    .custom-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
    .custom-range:focus::-ms-thumb {
      box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
  .custom-range::-moz-focus-outer {
    border: 0; }
  .custom-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #000;
    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;
    -webkit-appearance: none;
            appearance: none; }
    @media screen and (prefers-reduced-motion: reduce) {
      .custom-range::-webkit-slider-thumb {
        transition: none; } }
    .custom-range::-webkit-slider-thumb:active {
      background-color: #595959; }
  .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: #000;
    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;
    -moz-appearance: none;
         appearance: none; }
    @media screen and (prefers-reduced-motion: reduce) {
      .custom-range::-moz-range-thumb {
        transition: none; } }
    .custom-range::-moz-range-thumb:active {
      background-color: #595959; }
  .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: #000;
    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: #595959; }
  .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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem; }
  .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;
    border-top-right-radius: 0; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      border-color: #dddddd #dddddd #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: #666666;
    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; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #000; }

.nav-fill .nav-item {
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  text-align: center; }

.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -ms-flex-positive: 1;
      flex-grow: 1;
  text-align: center; }

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

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

.navbar {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 0.5rem 1rem; }
  .navbar > .container,
  .navbar > .container-fluid {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between; }

.navbar-brand {
  display: inline-block;
  padding-top: 0.33594rem;
  padding-bottom: 0.33594rem;
  margin-right: 1rem;
  font-size: 1.09375rem;
  line-height: inherit;
  white-space: nowrap; }
  .navbar-brand:hover, .navbar-brand:focus {
    text-decoration: none; }

.navbar-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      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 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -ms-flex-align: center;
      align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.09375rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0; }
  .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 (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 576px) {
  .navbar-expand-sm {
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      -ms-flex-direction: row;
          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 > .container,
    .navbar-expand-sm > .container-fluid {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .navbar-expand-sm .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; } }

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      -ms-flex-direction: row;
          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 > .container,
    .navbar-expand-md > .container-fluid {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .navbar-expand-md .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; } }

@media (max-width: 991.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      -ms-flex-direction: row;
          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 > .container,
    .navbar-expand-lg > .container-fluid {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .navbar-expand-lg .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; } }

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0; } }

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      -ms-flex-direction: row;
          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 > .container,
    .navbar-expand-xl > .container-fluid {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
    .navbar-expand-xl .navbar-collapse {
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-preferred-size: auto;
          flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; } }

.navbar-expand {
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  -ms-flex-pack: start;
      justify-content: flex-start; }
  .navbar-expand > .container,
  .navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0; }
  .navbar-expand .navbar-nav {
    -ms-flex-direction: row;
        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 > .container,
  .navbar-expand > .container-fluid {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .navbar-expand .navbar-collapse {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      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; }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }
  .card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.card-body {
  -ms-flex: 1 1 auto;
      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 - 1px) calc(0 - 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 - 1px) calc(0 - 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 - 1px); }

.card-img-top {
  width: 100%;
  border-top-left-radius: calc(0 - 1px);
  border-top-right-radius: calc(0 - 1px); }

.card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(0 - 1px);
  border-bottom-left-radius: calc(0 - 1px); }

.card-deck {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  .card-deck .card {
    margin-bottom: 20px; }
  @media (min-width: 576px) {
    .card-deck {
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
      margin-right: -20px;
      margin-left: -20px; }
      .card-deck .card {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
        -ms-flex-direction: column;
            flex-direction: column;
        margin-right: 20px;
        margin-bottom: 0;
        margin-left: 20px; } }

.card-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  .card-group > .card {
    margin-bottom: 20px; }
  @media (min-width: 576px) {
    .card-group {
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
      .card-group > .card {
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
        margin-bottom: 0; }
        .card-group > .card + .card {
          margin-left: 0;
          border-left: 0; }
        .card-group > .card: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; }
          .card-group > .card:only-child .card-img-top,
          .card-group > .card:only-child .card-header {
            border-top-left-radius: 0;
            border-top-right-radius: 0; }
          .card-group > .card:only-child .card-img-bottom,
          .card-group > .card:only-child .card-footer {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0; }
        .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: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #dddddd;
  border-radius: 0; }

.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: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0; }

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #000;
  background-color: #fff;
  border: 1px solid #dee2e6; }
  .page-link:hover {
    z-index: 2;
    color: black;
    text-decoration: none;
    background-color: #dddddd;
    border-color: #dee2e6; }
  .page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); }
  .page-link:not(:disabled):not(.disabled) {
    cursor: pointer; }

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #000;
  border-color: #000; }

.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.09375rem;
  line-height: 1.5; }

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.76562rem;
  line-height: 1.5; }

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: "wght" 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0; }
  .badge:empty {
    display: none; }

.btn .badge, .axadblock .axadblock-link .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: #000; }
  .badge-primary[href]:hover, .badge-primary[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: black; }

.badge-secondary {
  color: #212529;
  background-color: #fff; }
  .badge-secondary[href]:hover, .badge-secondary[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: #e6e6e6; }

.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: #ff0019; }
  .badge-danger[href]:hover, .badge-danger[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: #cc0014; }

.badge-light {
  color: #212529;
  background-color: #f5f5f5; }
  .badge-light[href]:hover, .badge-light[href]:focus {
    color: #212529;
    text-decoration: none;
    background-color: gainsboro; }

.badge-dark {
  color: #fff;
  background-color: #000; }
  .badge-dark[href]:hover, .badge-dark[href]:focus {
    color: #fff;
    text-decoration: none;
    background-color: black; }

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: "wght" 700; }

.alert-dismissible {
  padding-right: 3.8125rem; }
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit; }

.alert-primary {
  color: black;
  background-color: #cccccc;
  border-color: #b8b8b8; }
  .alert-primary hr {
    border-top-color: #ababab; }
  .alert-primary .alert-link {
    color: black; }

.alert-secondary {
  color: #858585;
  background-color: white;
  border-color: white; }
  .alert-secondary hr {
    border-top-color: #f2f2f2; }
  .alert-secondary .alert-link {
    color: #6c6c6c; }

.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: #85000d;
  background-color: #ffccd1;
  border-color: #ffb8bf; }
  .alert-danger hr {
    border-top-color: #ff9fa8; }
  .alert-danger .alert-link {
    color: #520008; }

.alert-light {
  color: #7f7f7f;
  background-color: #fdfdfd;
  border-color: #fcfcfc; }
  .alert-light hr {
    border-top-color: #efefef; }
  .alert-light .alert-link {
    color: #666666; }

.alert-dark {
  color: black;
  background-color: #cccccc;
  border-color: #b8b8b8; }
  .alert-dark hr {
    border-top-color: #ababab; }
  .alert-dark .alert-link {
    color: black; }

.media {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start; }

.media-body {
  -ms-flex: 1;
      flex: 1; }

.list-group {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  padding-left: 0;
  margin-bottom: 0; }

.list-group-item-action {
  width: 100%;
  color: #666666;
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    color: #666666;
    text-decoration: none;
    background-color: #f5f5f5; }
  .list-group-item-action:active {
    color: #666666;
    background-color: #dddddd; }

.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;
    border-top-right-radius: 0; }
  .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .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: #000;
    border-color: #000; }

.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: black;
  background-color: #b8b8b8; }
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: black;
    background-color: #ababab; }
  .list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: black;
    border-color: black; }

.list-group-item-secondary {
  color: #858585;
  background-color: white; }
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #858585;
    background-color: #f2f2f2; }
  .list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #858585;
    border-color: #858585; }

.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: #85000d;
  background-color: #ffb8bf; }
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #85000d;
    background-color: #ff9fa8; }
  .list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #85000d;
    border-color: #85000d; }

.list-group-item-light {
  color: #7f7f7f;
  background-color: #fcfcfc; }
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #7f7f7f;
    background-color: #efefef; }
  .list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #7f7f7f;
    border-color: #7f7f7f; }

.list-group-item-dark {
  color: black;
  background-color: #b8b8b8; }
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: black;
    background-color: #ababab; }
  .list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: black;
    border-color: black; }

.close {
  float: right;
  font-size: 1.3125rem;
  font-weight: "wght" 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .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: .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: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      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: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  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: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #dddddd;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }
  .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.5; }

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dddddd; }
  .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal-footer > :not(:last-child) {
    margin-right: .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; } }

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px; } }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: "wght" 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.76562rem;
  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; }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: "wght" 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.76562rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0; }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0; }
    .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 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 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: 0.875rem;
  color: #2866e8;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0 - 1px);
  border-top-right-radius: calc(0 - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #666666; }

.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: #000 !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: black !important; }

.bg-secondary {
  background-color: #fff !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #e6e6e6 !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: #ff0019 !important; }

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #cc0014 !important; }

.bg-light {
  background-color: #f5f5f5 !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: gainsboro !important; }

.bg-dark {
  background-color: #000 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: black !important; }

.bg-white {
  background-color: #fff !important; }

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

.border {
  border: 1px solid #dddddd !important; }

.border-top {
  border-top: 1px solid #dddddd !important; }

.border-right {
  border-right: 1px solid #dddddd !important; }

.border-bottom {
  border-bottom: 1px solid #dddddd !important; }

.border-left {
  border-left: 1px solid #dddddd !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: #000 !important; }

.border-secondary {
  border-color: #fff !important; }

.border-success {
  border-color: #28a745 !important; }

.border-info {
  border-color: #17a2b8 !important; }

.border-warning {
  border-color: #ffc107 !important; }

.border-danger {
  border-color: #ff0019 !important; }

.border-light {
  border-color: #f5f5f5 !important; }

.border-dark {
  border-color: #000 !important; }

.border-white {
  border-color: #fff !important; }

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

.rounded-top {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important; }

.rounded-right {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important; }

.rounded-bottom {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important; }

.rounded-left {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !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: -ms-flexbox !important;
  display: flex !important; }

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  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: -ms-flexbox !important;
    display: flex !important; }
  .d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important; }
  .d-md-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important; }
  .d-lg-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important; }
  .d-xl-inline-flex {
    display: -ms-inline-flexbox !important;
    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: -ms-flexbox !important;
    display: flex !important; }
  .d-print-inline-flex {
    display: -ms-inline-flexbox !important;
    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: 42.85714%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  -ms-flex-direction: row !important;
      flex-direction: row !important; }

.flex-column {
  -ms-flex-direction: column !important;
      flex-direction: column !important; }

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
      flex-direction: row-reverse !important; }

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
      flex-direction: column-reverse !important; }

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important; }

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important; }

.flex-fill {
  -ms-flex: 1 1 auto !important;
      flex: 1 1 auto !important; }

.flex-grow-0 {
  -ms-flex-positive: 0 !important;
      flex-grow: 0 !important; }

.flex-grow-1 {
  -ms-flex-positive: 1 !important;
      flex-grow: 1 !important; }

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important; }

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important; }

.justify-content-start {
  -ms-flex-pack: start !important;
      justify-content: flex-start !important; }

.justify-content-end {
  -ms-flex-pack: end !important;
      justify-content: flex-end !important; }

.justify-content-center {
  -ms-flex-pack: center !important;
      justify-content: center !important; }

.justify-content-between {
  -ms-flex-pack: justify !important;
      justify-content: space-between !important; }

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important; }

.align-items-start {
  -ms-flex-align: start !important;
      align-items: flex-start !important; }

.align-items-end {
  -ms-flex-align: end !important;
      align-items: flex-end !important; }

.align-items-center {
  -ms-flex-align: center !important;
      align-items: center !important; }

.align-items-baseline {
  -ms-flex-align: baseline !important;
      align-items: baseline !important; }

.align-items-stretch {
  -ms-flex-align: stretch !important;
      align-items: stretch !important; }

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important; }

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important; }

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important; }

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important; }

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important; }

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important; }

.align-self-auto {
  -ms-flex-item-align: auto !important;
      -ms-grid-row-align: auto !important;
      align-self: auto !important; }

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important; }

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important; }

.align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important; }

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important; }

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important; }
  .flex-sm-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important; }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    -ms-flex-positive: 0 !important;
        flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    -ms-flex-positive: 1 !important;
        flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important; }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important; }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important; }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
        justify-content: center !important; }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-sm-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important; }
  .align-items-sm-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important; }
  .align-items-sm-center {
    -ms-flex-align: center !important;
        align-items: center !important; }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important; }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important; }
  .flex-md-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important; }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    -ms-flex-positive: 0 !important;
        flex-grow: 0 !important; }
  .flex-md-grow-1 {
    -ms-flex-positive: 1 !important;
        flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important; }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important; }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important; }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
        justify-content: center !important; }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-md-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important; }
  .align-items-md-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important; }
  .align-items-md-center {
    -ms-flex-align: center !important;
        align-items: center !important; }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important; }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important; }
  .flex-lg-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important; }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    -ms-flex-positive: 0 !important;
        flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    -ms-flex-positive: 1 !important;
        flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important; }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important; }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important; }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
        justify-content: center !important; }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-lg-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important; }
  .align-items-lg-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important; }
  .align-items-lg-center {
    -ms-flex-align: center !important;
        align-items: center !important; }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important; }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
        flex-direction: row !important; }
  .flex-xl-column {
    -ms-flex-direction: column !important;
        flex-direction: column !important; }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    -ms-flex-positive: 0 !important;
        flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    -ms-flex-positive: 1 !important;
        flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important; }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
        justify-content: flex-start !important; }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
        justify-content: flex-end !important; }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
        justify-content: center !important; }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
        justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important; }
  .align-items-xl-start {
    -ms-flex-align: start !important;
        align-items: flex-start !important; }
  .align-items-xl-end {
    -ms-flex-align: end !important;
        align-items: flex-end !important; }
  .align-items-xl-center {
    -ms-flex-align: center !important;
        align-items: center !important; }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
        align-items: baseline !important; }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
        align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        -ms-grid-row-align: auto !important;
        align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        -ms-grid-row-align: center !important;
        align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        -ms-grid-row-align: stretch !important;
        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: -webkit-sticky !important;
  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: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    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: "wght" 300 !important; }

.font-weight-normal {
  font-weight: "wght" 400 !important; }

.font-weight-bold {
  font-weight: "wght" 700 !important; }

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

.text-white {
  color: #fff !important; }

.text-primary {
  color: #000 !important; }

a.text-primary:hover, a.text-primary:focus {
  color: black !important; }

.text-secondary {
  color: #fff !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #e6e6e6 !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: #ff0019 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #cc0014 !important; }

.text-light {
  color: #f5f5f5 !important; }

a.text-light:hover, a.text-light:focus {
  color: gainsboro !important; }

.text-dark {
  color: #000 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: black !important; }

.text-body {
  color: #666666 !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 #999999;
    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; } }

.address-item .card {
  padding: 40px 50px; }
  .address-item .card .radio-block {
    position: relative;
    margin-bottom: 2rem;
    font-variation-settings: 'wght' normal; }
    .address-item .card .radio-block input {
      position: absolute;
      left: -25px;
      top: 8px; }
    .address-item .card .radio-block .h4 {
      display: block;
      margin-bottom: 0; }
      @media (max-width: 767.98px) {
        .address-item .card .radio-block .h4 {
          font-size: 1.25rem; } }

.alert {
  font-variation-settings: "wght" 700; }
  .alert ul, .alert ol {
    padding-left: 1rem;
    margin-left: 3rem; }
    .alert ul li, .alert ol li {
      list-style-type: decimal;
      font-variation-settings: "wght" 400; }

.alert-warning {
  background-color: #000;
  color: #fff;
  font-variation-settings: "wght" 600;
  padding: 2rem;
  width: 500px;
  margin: 4rem auto 4rem auto;
  text-align: center; }
  .alert-warning ul, .alert-warning ol {
    padding: 0;
    margin: 0; }
    .alert-warning ul li, .alert-warning ol li {
      list-style-type: none;
      font-variation-settings: "wght" 600; }

.btn [class*='axsvgicon'], .axadblock .axadblock-link [class*='axsvgicon'] {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle; }

.btn.btn-primary [stroke], #pagenotfound .page-not-found .notfound-img .btn [stroke], #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link [stroke], .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link [stroke], .axadblock .btn-primary.axadblock-link [stroke], .btn.btn-success [stroke], .axadblock .btn-success.axadblock-link [stroke], .btn.btn-info [stroke], .axadblock .btn-info.axadblock-link [stroke], .btn.btn-dark [stroke], .axadblock .btn-dark.axadblock-link [stroke] {
  stroke: #fff; }

.btn.btn-primary [fill]:not([fill="none"]), #pagenotfound .page-not-found .notfound-img .btn [fill]:not([fill="none"]), #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link [fill]:not([fill="none"]), .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link [fill]:not([fill="none"]), .axadblock .btn-primary.axadblock-link [fill]:not([fill="none"]), .btn.btn-success [fill]:not([fill="none"]), .axadblock .btn-success.axadblock-link [fill]:not([fill="none"]), .btn.btn-info [fill]:not([fill="none"]), .axadblock .btn-info.axadblock-link [fill]:not([fill="none"]), .btn.btn-dark [fill]:not([fill="none"]), .axadblock .btn-dark.axadblock-link [fill]:not([fill="none"]) {
  fill: #fff; }

.btn.btn-secondary [stroke], .axadblock .axadblock-link [stroke] {
  stroke: #444444; }

.btn.btn-secondary [fill]:not([fill="none"]), .axadblock .axadblock-link [fill]:not([fill="none"]) {
  fill: #444444; }

.btn.btn-outline-secondary:hover [stroke], .axadblock .btn-outline-secondary.axadblock-link:hover [stroke], .btn.btn-outline-secondary:active [stroke], .axadblock .btn-outline-secondary.axadblock-link:active [stroke], .btn.btn-outline-secondary:focus [stroke], .axadblock .btn-outline-secondary.axadblock-link:focus [stroke], .btn.btn-outline-primary:hover [stroke], .axadblock .btn-outline-primary.axadblock-link:hover [stroke], .btn.btn-outline-primary:active [stroke], .axadblock .btn-outline-primary.axadblock-link:active [stroke], .btn.btn-outline-primary:focus [stroke], .axadblock .btn-outline-primary.axadblock-link:focus [stroke], .btn.btn-outline-secondary:hover [stroke], .axadblock .btn-outline-secondary.axadblock-link:hover [stroke], .btn.btn-outline-secondary:active [stroke], .axadblock .btn-outline-secondary.axadblock-link:active [stroke], .btn.btn-outline-secondary:focus [stroke], .axadblock .btn-outline-secondary.axadblock-link:focus [stroke], .btn.btn-outline-success:hover [stroke], .axadblock .btn-outline-success.axadblock-link:hover [stroke], .btn.btn-outline-success:active [stroke], .axadblock .btn-outline-success.axadblock-link:active [stroke], .btn.btn-outline-success:focus [stroke], .axadblock .btn-outline-success.axadblock-link:focus [stroke], .btn.btn-outline-info:hover [stroke], .axadblock .btn-outline-info.axadblock-link:hover [stroke], .btn.btn-outline-info:active [stroke], .axadblock .btn-outline-info.axadblock-link:active [stroke], .btn.btn-outline-info:focus [stroke], .axadblock .btn-outline-info.axadblock-link:focus [stroke], .btn.btn-outline-dark:hover [stroke], .axadblock .btn-outline-dark.axadblock-link:hover [stroke], .btn.btn-outline-dark:active [stroke], .axadblock .btn-outline-dark.axadblock-link:active [stroke], .btn.btn-outline-dark:focus [stroke], .axadblock .btn-outline-dark.axadblock-link:focus [stroke] {
  stroke: #fff; }

.btn.btn-outline-secondary:hover [fill]:not([fill="none"]), .axadblock .btn-outline-secondary.axadblock-link:hover [fill]:not([fill="none"]), .btn.btn-outline-secondary:active [fill]:not([fill="none"]), .axadblock .btn-outline-secondary.axadblock-link:active [fill]:not([fill="none"]), .btn.btn-outline-secondary:focus [fill]:not([fill="none"]), .axadblock .btn-outline-secondary.axadblock-link:focus [fill]:not([fill="none"]), .btn.btn-outline-primary:hover [fill]:not([fill="none"]), .axadblock .btn-outline-primary.axadblock-link:hover [fill]:not([fill="none"]), .btn.btn-outline-primary:active [fill]:not([fill="none"]), .axadblock .btn-outline-primary.axadblock-link:active [fill]:not([fill="none"]), .btn.btn-outline-primary:focus [fill]:not([fill="none"]), .axadblock .btn-outline-primary.axadblock-link:focus [fill]:not([fill="none"]), .btn.btn-outline-secondary:hover [fill]:not([fill="none"]), .axadblock .btn-outline-secondary.axadblock-link:hover [fill]:not([fill="none"]), .btn.btn-outline-secondary:active [fill]:not([fill="none"]), .axadblock .btn-outline-secondary.axadblock-link:active [fill]:not([fill="none"]), .btn.btn-outline-secondary:focus [fill]:not([fill="none"]), .axadblock .btn-outline-secondary.axadblock-link:focus [fill]:not([fill="none"]), .btn.btn-outline-success:hover [fill]:not([fill="none"]), .axadblock .btn-outline-success.axadblock-link:hover [fill]:not([fill="none"]), .btn.btn-outline-success:active [fill]:not([fill="none"]), .axadblock .btn-outline-success.axadblock-link:active [fill]:not([fill="none"]), .btn.btn-outline-success:focus [fill]:not([fill="none"]), .axadblock .btn-outline-success.axadblock-link:focus [fill]:not([fill="none"]), .btn.btn-outline-info:hover [fill]:not([fill="none"]), .axadblock .btn-outline-info.axadblock-link:hover [fill]:not([fill="none"]), .btn.btn-outline-info:active [fill]:not([fill="none"]), .axadblock .btn-outline-info.axadblock-link:active [fill]:not([fill="none"]), .btn.btn-outline-info:focus [fill]:not([fill="none"]), .axadblock .btn-outline-info.axadblock-link:focus [fill]:not([fill="none"]), .btn.btn-outline-dark:hover [fill]:not([fill="none"]), .axadblock .btn-outline-dark.axadblock-link:hover [fill]:not([fill="none"]), .btn.btn-outline-dark:active [fill]:not([fill="none"]), .axadblock .btn-outline-dark.axadblock-link:active [fill]:not([fill="none"]), .btn.btn-outline-dark:focus [fill]:not([fill="none"]), .axadblock .btn-outline-dark.axadblock-link:focus [fill]:not([fill="none"]) {
  fill: #fff; }

.btn, .axadblock .axadblock-link {
  border-radius: 0;
  border: 1px solid #000;
  font-variation-settings: "wght" 600;
  color: #fff;
  min-height: 40px;
  line-height: 40px;
  font-size: 0.875rem;
  letter-spacing: .04em;
  padding: 0 1rem;
  background: none; }
  .btn:hover, .axadblock .axadblock-link:hover, .btn:focus, .axadblock .axadblock-link:focus, .btn:active, .axadblock .axadblock-link:active {
    outline: none;
    box-shadow: none !important;
    background-color: #fff;
    border-color: #000;
    color: #000; }
  .btn.btn-primary, #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link, .axadblock .btn-primary.axadblock-link, .btn.btn-secondary, .axadblock .axadblock-link {
    text-transform: uppercase; }
  .btn.btn-primary, #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link, .axadblock .btn-primary.axadblock-link {
    background-color: #000;
    border-color: #000;
    color: #fff; }
    .btn.btn-primary:hover, #pagenotfound .page-not-found .notfound-img .btn:hover, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:hover, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:hover, .axadblock .btn-primary.axadblock-link:hover, .btn.btn-primary:focus, #pagenotfound .page-not-found .notfound-img .btn:focus, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:focus, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:focus, .axadblock .btn-primary.axadblock-link:focus, .btn.btn-primary:active, #pagenotfound .page-not-found .notfound-img .btn:active, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link:active, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link:active, .axadblock .btn-primary.axadblock-link:active {
      border-color: #000;
      background: #fff;
      color: #000; }
    .btn.btn-primary.reverse, #pagenotfound .page-not-found .notfound-img .btn.reverse, #pagenotfound .page-not-found .notfound-img .axadblock .reverse.axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .reverse.axadblock-link, .axadblock .btn-primary.reverse.axadblock-link {
      background: none;
      color: #000; }
      .btn.btn-primary.reverse:hover, #pagenotfound .page-not-found .notfound-img .btn.reverse:hover, #pagenotfound .page-not-found .notfound-img .axadblock .reverse.axadblock-link:hover, .axadblock #pagenotfound .page-not-found .notfound-img .reverse.axadblock-link:hover, .axadblock .btn-primary.reverse.axadblock-link:hover, .btn.btn-primary.reverse:focus, #pagenotfound .page-not-found .notfound-img .btn.reverse:focus, #pagenotfound .page-not-found .notfound-img .axadblock .reverse.axadblock-link:focus, .axadblock #pagenotfound .page-not-found .notfound-img .reverse.axadblock-link:focus, .axadblock .btn-primary.reverse.axadblock-link:focus, .btn.btn-primary.reverse:active, #pagenotfound .page-not-found .notfound-img .btn.reverse:active, #pagenotfound .page-not-found .notfound-img .axadblock .reverse.axadblock-link:active, .axadblock #pagenotfound .page-not-found .notfound-img .reverse.axadblock-link:active, .axadblock .btn-primary.reverse.axadblock-link:active {
        background: #000;
        color: #fff; }
  .btn.btn-secondary, .axadblock .axadblock-link {
    background: #fff;
    color: #000;
    border-color: #fff; }
    .btn.btn-secondary:hover, .axadblock .axadblock-link:hover, .btn.btn-secondary:focus, .axadblock .axadblock-link:focus, .btn.btn-secondary:active, .axadblock .axadblock-link:active {
      color: #fff;
      background-color: #000;
      border-color: #fff; }
  .btn.btn-tertiary, .axadblock .btn-tertiary.axadblock-link {
    background-color: #2866e8;
    border-color: #2866e8;
    color: #fff; }
    .btn.btn-tertiary:hover, .axadblock .btn-tertiary.axadblock-link:hover, .btn.btn-tertiary:focus, .axadblock .btn-tertiary.axadblock-link:focus, .btn.btn-tertiary:active, .axadblock .btn-tertiary.axadblock-link:active {
      border-color: #2866e8;
      background: #fff;
      color: #2866e8; }
    .btn.btn-tertiary.reverse, .axadblock .btn-tertiary.reverse.axadblock-link {
      background: none;
      color: #2866e8; }
      .btn.btn-tertiary.reverse:hover, .axadblock .btn-tertiary.reverse.axadblock-link:hover, .btn.btn-tertiary.reverse:focus, .axadblock .btn-tertiary.reverse.axadblock-link:focus, .btn.btn-tertiary.reverse:active, .axadblock .btn-tertiary.reverse.axadblock-link:active {
        background: #2866e8;
        color: #fff; }
  .btn[disabled], .axadblock .axadblock-link[disabled], .btn[disabled]:hover, .axadblock .axadblock-link[disabled]:hover, .btn[disabled]:focus, .axadblock .axadblock-link[disabled]:focus, .btn[disabled]:active, .axadblock .axadblock-link[disabled]:active {
    background-color: #999999;
    border-color: #999999;
    color: #dddddd;
    cursor: not-allowed;
    opacity: 1; }
  .btn.btn-outline-primary, .axadblock .btn-outline-primary.axadblock-link {
    color: #000;
    background-color: transparent;
    background-image: none;
    border-color: #000; }

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up,
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0.65625rem 0.75rem; }

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  background-image: url(../img/svg/nav-arrow-up.svg);
  border-bottom-width: 0; }

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  background-image: url(../img/svg/nav-arrow-down.svg); }

.back-shop,
.btn-back,
.back-shop-right {
  padding: 0;
  text-transform: uppercase;
  font-variation-settings: "wght" 700;
  color: #000;
  border: 0;
  position: relative;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: inherit;
  min-height: auto; }
  .back-shop:hover, .back-shop.active,
  .btn-back:hover,
  .btn-back.active,
  .back-shop-right:hover,
  .back-shop-right.active {
    text-decoration: none;
    background-size: 100% 1px; }
  .back-shop.reversed,
  .btn-back.reversed,
  .back-shop-right.reversed {
    background-size: 100% 1px; }
    .back-shop.reversed:hover, .back-shop.reversed.active,
    .btn-back.reversed:hover,
    .btn-back.reversed.active,
    .back-shop-right.reversed:hover,
    .back-shop-right.reversed.active {
      background-size: 0 1px; }
  .back-shop:hover, .back-shop:focus, .back-shop:active,
  .btn-back:hover,
  .btn-back:focus,
  .btn-back:active,
  .back-shop-right:hover,
  .back-shop-right:focus,
  .back-shop-right:active {
    color: #000;
    text-decoration: none; }
  .back-shop:before,
  .btn-back:before,
  .back-shop-right:before {
    content: '';
    background-image: url(../../assets/img/svg/nav-arrow-left-w.svg);
    background-color: #000;
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 50%;
    vertical-align: -3px;
    margin-right: 5px; }

.form-control,
.ts-wrapper.single .ts-control {
  border: 1px solid #dddddd;
  height: 44px;
  line-height: 44px;
  padding: 0 1.1rem;
  box-shadow: none !important;
  color: #666666;
  border-radius: 0;
  background: #fff;
  font-variation-settings: 'wght' 400; }

.form-password .input-group {
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap; }

.lpspasswordsecurity .form-control {
  width: 100%;
  position: relative; }

.lpspasswordsecurity input {
  width: 100% !important;
  float: none !important; }

.lpspasswordsecurity .input-group-append {
  -ms-flex-pack: end;
      justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 0;
  border: none; }

textarea {
  padding-top: 10px;
  padding-bottom: 10px; }

.select2-hidden-accessible {
  display: none; }

.select2-container--default {
  display: block;
  position: relative;
  width: auto; }
  .select2-container--default .select2-selection--multiple,
  .select2-container--default .select2-selection--single {
    width: 100%;
    height: 40px;
    padding: 5px;
    background: #fff;
    border: 1px solid #dddddd;
    border-radius: 0;
    outline: none; }
    .select2-container--default .select2-selection--multiple .select2-selection__arrow,
    .select2-container--default .select2-selection--single .select2-selection__arrow {
      background-image: url(../img/svg/nav-arrow-down.svg);
      background-repeat: no-repeat;
      background-position: center;
      width: 32px !important;
      height: 26px !important;
      top: 6px; }
      .select2-container--default .select2-selection--multiple .select2-selection__arrow b,
      .select2-container--default .select2-selection--single .select2-selection__arrow b {
        display: none; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background: #f5f5f5; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: #fff; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-color: #dddddd; }

.select2-container--open .select2-dropdown--below {
  border-radius: 0 0 0 0;
  border-color: #dddddd; }
  .select2-container--open .select2-dropdown--below li {
    padding: 5px 15px; }
    .select2-container--open .select2-dropdown--below li:last-child {
      border-radius: 0 0 0 0; }

input[type="file"] {
  border: 1px solid #dddddd;
  max-width: 100%; }

.radio-field {
  margin-bottom: 1rem; }
  .radio-field > span {
    display: block;
    margin-bottom: 3px; }
  .radio-field label {
    font-variation-settings: 'wght' normal;
    margin-right: 5px; }

.checkbox-field {
  margin-bottom: 0.7rem;
  font-variation-settings: 'wght' 400; }
  .checkbox-field em {
    font-size: 0.75rem;
    line-height: 1.2; }

.form-group label {
  margin-bottom: 3px; }

.select-field,
.form-group {
  margin-bottom: 1rem;
  width: 100%; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }

input[type=number] {
  -moz-appearance: textfield; }

[class*=form-address] [name*=address].invalid {
  border: 1px solid #ff0019; }

.address-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem; }
  @media (max-width: 991.98px) {
    .address-grid {
      -ms-grid-columns: 1fr;
          grid-template-columns: 1fr; } }

@media (min-width: 992px) {
  #checkout .address-grid .form-address1 {
    grid-column: 1 / 3; } }

@media (max-width: 767.98px) {
  .form-control,
  input,
  select {
    font-size: 16px !important; } }

.custom-control {
  padding-left: 26px; }
  @media (max-width: 767.98px) {
    .custom-control {
      padding: 0; } }

@media (max-width: 767.98px) {
  #authentication .custom-control,
  #identity .custom-control {
    padding-left: 26px; } }

.custom-control-label:before {
  background: none;
  border: 1px solid #999999;
  box-shadow: none !important;
  outline: none !important; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background: none; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background: #000;
  width: 8px;
  height: 8px;
  margin-top: 4px;
  margin-left: 4px;
  border-radius: 4px; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: none; }

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url(../img/svg/nav-select.svg);
  background-size: 100%; }

/* checkbox-rect */
.checkbox-rect input[type="checkbox"] {
  display: none; }

.checkbox-rect input[type="checkbox"] + label {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font: 14px/20px "Open Sans", Arial, sans-serif;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none; }

.checkbox-rect input[type="checkbox"]:hover + label:hover {
  color: #1756e4; }

.checkbox-rect input[type="checkbox"]:hover + label:before {
  background: #2866e8;
  box-shadow: inset 0 0 0 2px #f7f2f2; }

.checkbox-rect input[type="checkbox"] + label:last-child {
  margin-bottom: 0; }

.checkbox-rect input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: all 0.2s, background 0.2s ease-in-out;
  background: #fff; }

.checkbox-rect input[type="checkbox"]:checked + label:before {
  border: 4px solid #fff;
  transform: translateX(-50%) rotate(90deg);
  background: #2866e8;
  box-shadow: 0 0 0 1px #000; }

.ts-dropdown {
  margin: 0; }
  .ts-dropdown [data-selectable].option {
    color: #000;
    font-variation-settings: 'wght' 400;
    padding: 0 1rem;
    line-height: 2; }
  .ts-dropdown .active[data-selectable] {
    color: #fff;
    background: #000; }

.form-control-comment {
  display: block;
  margin: 5px 0 10px; }

.form-indicator {
  margin-top: -5px;
  font-style: italic;
  font-size: 0.75rem;
  text-align: right; }

.menu > ul {
  padding: 0; }
  .menu > ul > li {
    display: inline-block;
    position: relative; }
    .menu > ul > li > a {
      display: inline-block;
      padding: 1rem 1.3rem;
      color: #fff;
      text-transform: uppercase;
      font-size: 1rem;
      text-decoration: none; }
    .menu > ul > li:hover > a, .menu > ul > li.current > a {
      background: #fff; }
    .menu > ul > li:hover > div {
      display: block; }
    .menu > ul > li > div {
      display: none;
      z-index: 50;
      position: absolute;
      min-width: 100%;
      background: #fff;
      box-shadow: 5px 10px 35px rgba(0, 0, 0, 0.3);
      top: 100%;
      left: 0; }
      .menu > ul > li > div:before {
        content: "";
        display: block;
        position: absolute;
        left: -25px;
        top: 0;
        right: -25px;
        bottom: -35px;
        z-index: 5; }
      .menu > ul > li > div > ul {
        list-style: none;
        white-space: nowrap;
        position: relative;
        z-index: 10; }
        .menu > ul > li > div > ul li > a {
          display: block;
          text-transform: uppercase;
          font-size: 0.875rem;
          text-decoration: none;
          padding: 0.68rem 1.3rem; }
        .menu > ul > li > div > ul li:hover > a, .menu > ul > li > div > ul li.current > a {
          background: #fff;
          color: #FFF; }
        .menu > ul > li > div > ul li > div {
          display: none !important; }

.pagination, .blog-paggination .links {
  -ms-flex-pack: center;
      justify-content: center; }
  .pagination .page-item a, .pagination .page-item span, .blog-paggination .links .page-item a, .blog-paggination .links .page-item span {
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    outline: none;
    box-shadow: none;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    color: #000; }
    .pagination .page-item a[rel="prev"], .pagination .page-item a[rel="next"], .pagination .page-item span[rel="prev"], .pagination .page-item span[rel="next"], .blog-paggination .links .page-item a[rel="prev"], .blog-paggination .links .page-item a[rel="next"], .blog-paggination .links .page-item span[rel="prev"], .blog-paggination .links .page-item span[rel="next"] {
      padding-top: 3px; }
      .pagination .page-item a[rel="prev"] svg, .pagination .page-item a[rel="next"] svg, .pagination .page-item span[rel="prev"] svg, .pagination .page-item span[rel="next"] svg, .blog-paggination .links .page-item a[rel="prev"] svg, .blog-paggination .links .page-item a[rel="next"] svg, .blog-paggination .links .page-item span[rel="prev"] svg, .blog-paggination .links .page-item span[rel="next"] svg {
        width: 20px;
        height: 20px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); }
        .pagination .page-item a[rel="prev"] svg polyline, .pagination .page-item a[rel="next"] svg polyline, .pagination .page-item span[rel="prev"] svg polyline, .pagination .page-item span[rel="next"] svg polyline, .blog-paggination .links .page-item a[rel="prev"] svg polyline, .blog-paggination .links .page-item a[rel="next"] svg polyline, .blog-paggination .links .page-item span[rel="prev"] svg polyline, .blog-paggination .links .page-item span[rel="next"] svg polyline {
          stroke: #000; }
    .pagination .page-item a[rel="next"] svg, .pagination .page-item span[rel="next"] svg, .blog-paggination .links .page-item a[rel="next"] svg, .blog-paggination .links .page-item span[rel="next"] svg {
      left: auto;
      right: 0;
      margin-left: 0; }
    .pagination .page-item a.disabled, .pagination .page-item span.disabled, .blog-paggination .links .page-item a.disabled, .blog-paggination .links .page-item span.disabled {
      color: #000; }
      .pagination .page-item a.disabled svg path,
      .pagination .page-item a.disabled svg polyline, .pagination .page-item span.disabled svg path,
      .pagination .page-item span.disabled svg polyline, .blog-paggination .links .page-item a.disabled svg path,
      .blog-paggination .links .page-item a.disabled svg polyline, .blog-paggination .links .page-item span.disabled svg path,
      .blog-paggination .links .page-item span.disabled svg polyline {
        stroke: #999999; }
  .pagination .page-item.active a,
  .pagination .page-item.active span, .pagination .page-item.active, .pagination .page-item b a,
  .pagination .page-item b span, .pagination .page-item b, .blog-paggination .links .page-item.active a,
  .blog-paggination .links .page-item.active span, .blog-paggination .links .page-item.active, .blog-paggination .links .page-item b a,
  .blog-paggination .links .page-item b span, .blog-paggination .links .page-item b {
    background: #000;
    color: #FFF; }
    .pagination .page-item.active a svg path,
    .pagination .page-item.active a svg polyline,
    .pagination .page-item.active span svg path,
    .pagination .page-item.active span svg polyline, .pagination .page-item.active svg path,
    .pagination .page-item.active svg polyline, .pagination .page-item b a svg path,
    .pagination .page-item b a svg polyline,
    .pagination .page-item b span svg path,
    .pagination .page-item b span svg polyline, .pagination .page-item b svg path,
    .pagination .page-item b svg polyline, .blog-paggination .links .page-item.active a svg path,
    .blog-paggination .links .page-item.active a svg polyline,
    .blog-paggination .links .page-item.active span svg path,
    .blog-paggination .links .page-item.active span svg polyline, .blog-paggination .links .page-item.active svg path,
    .blog-paggination .links .page-item.active svg polyline, .blog-paggination .links .page-item b a svg path,
    .blog-paggination .links .page-item b a svg polyline,
    .blog-paggination .links .page-item b span svg path,
    .blog-paggination .links .page-item b span svg polyline, .blog-paggination .links .page-item b svg path,
    .blog-paggination .links .page-item b svg polyline {
      stroke: #fff; }
  .pagination .page-item:hover a:not(.disabled), .pagination .page-item:focus a:not(.disabled), .blog-paggination .links .page-item:hover a:not(.disabled), .blog-paggination .links .page-item:focus a:not(.disabled) {
    background: #000;
    color: #fff; }
    .pagination .page-item:hover a:not(.disabled) svg path,
    .pagination .page-item:hover a:not(.disabled) svg polyline, .pagination .page-item:focus a:not(.disabled) svg path,
    .pagination .page-item:focus a:not(.disabled) svg polyline, .blog-paggination .links .page-item:hover a:not(.disabled) svg path,
    .blog-paggination .links .page-item:hover a:not(.disabled) svg polyline, .blog-paggination .links .page-item:focus a:not(.disabled) svg path,
    .blog-paggination .links .page-item:focus a:not(.disabled) svg polyline {
      stroke: #fff; }

.pagination-content .showall {
  margin-top: 1rem;
  display: none; }
  @media (max-width: 991.98px) {
    .pagination-content .showall {
      text-align: center; } }

div.blog-paggination .links .last, div.blog-paggination .links .frist {
  display: none; }

div.blog-paggination .links b {
  background: #000;
  border: 0; }

div.blog-paggination .links a {
  border: 0; }
  div.blog-paggination .links a:hover {
    background: #000;
    color: #fff; }

.product-miniature {
  margin-bottom: 2.5rem; }
  .product-miniature a {
    text-decoration: none;
    color: #666666;
    display: block;
    box-shadow: none;
    transition: all .3s ease; }
    .product-miniature a.stretched-link:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%; }
  .product-miniature .product-wrapper {
    position: relative; }
  .product-miniature .product-thumbnail {
    padding-bottom: 100%;
    height: 0;
    position: relative;
    display: block; }
    .product-miniature .product-thumbnail img {
      width: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity .3s ease;
      will-change: opacity; }
  .product-miniature img.product-thumbnail-1 {
    opacity: 1; }
    .product-miniature img.product-thumbnail-1:not(.loaded) {
      opacity: 0; }
  .product-miniature .avgrating {
    margin: 0 5px 0 0; }
    .product-miniature .avgrating img {
      height: 22px; }
  .product-miniature .nbreviews {
    font-size: 0.75rem;
    color: #000;
    font-weight: "wght" 400; }
  .product-miniature:hover .product-thumbnail-2 {
    opacity: 1; }
  .product-miniature:hover .product-thumbnail-1 {
    opacity: 0; }
  .product-miniature .listing-bottom {
    padding: 15px 0 10px; }
    @media (max-width: 991.98px) {
      .product-miniature .listing-bottom {
        padding: 15px 0 10px; } }
    .product-miniature .listing-bottom .trustbeautyreviews-products-listreviews > a > [itemprop="review"] {
      display: none; }
    .product-miniature .listing-bottom .product-manu {
      min-height: 36px;
      /* Autoprefixer: off*/
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      /* Autoprefixer: on*/ }
    .product-miniature .listing-bottom .product-manu, .product-miniature .listing-bottom .product-description {
      font-size: 0.75rem;
      color: #777777;
      text-transform: uppercase;
      margin-bottom: 5px;
      font-variation-settings: "wght" 400; }
    .product-miniature .listing-bottom .product-description {
      text-transform: none;
      max-height: calc(0.75rem * 1.52 * 2);
      min-height: calc(0.75rem * 1.52 * 2);
      overflow: hidden;
      line-height: 1.52; }
      @media (max-width: 991.98px) {
        .product-miniature .listing-bottom .product-description {
          max-height: calc(0.75rem * 1.52 * 3);
          min-height: calc(0.75rem * 1.52 * 3); } }
    .product-miniature .listing-bottom .product-name {
      font-size: 1rem;
      color: #000;
      margin-bottom: 10px;
      font-variation-settings: "wght" 600;
      line-height: 1.3;
      height: 40px;
      overflow: hidden;
      font-family: "Source Code Pro", sans-serif; }
    .product-miniature .listing-bottom .product-price-and-shipping {
      color: #000;
      font-size: 0.875rem; }
      .product-miniature .listing-bottom .product-price-and-shipping .price {
        font-variation-settings: "wght" 600;
        color: #000; }
        .product-miniature .listing-bottom .product-price-and-shipping .price.ax-reduc {
          font-variation-settings: "wght" 600;
          color: #000; }
      .product-miniature .listing-bottom .product-price-and-shipping .discount-product {
        display: none; }
      .product-miniature .listing-bottom .product-price-and-shipping .regular-price {
        text-decoration: line-through;
        margin-right: 10px;
        color: #2866e8; }
  .product-miniature .product-list-actions .btn, .product-miniature .product-list-actions .axadblock .axadblock-link, .axadblock .product-miniature .product-list-actions .axadblock-link {
    padding: 0;
    letter-spacing: 0;
    color: #2866e8;
    border-color: #2866e8;
    font-size: 0.875rem;
    font-weight: "wght" 400;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-decoration: none !important;
    text-transform: uppercase; }
    .product-miniature .product-list-actions .btn span, .product-miniature .product-list-actions .axadblock .axadblock-link span, .axadblock .product-miniature .product-list-actions .axadblock-link span {
      display: none;
      margin-left: 4px; }
      @media (min-width: 768px) {
        .product-miniature .product-list-actions .btn span, .product-miniature .product-list-actions .axadblock .axadblock-link span, .axadblock .product-miniature .product-list-actions .axadblock-link span {
          display: inline-block; } }
    .product-miniature .product-list-actions .btn svg, .product-miniature .product-list-actions .axadblock .axadblock-link svg, .axadblock .product-miniature .product-list-actions .axadblock-link svg, .product-miniature .product-list-actions .btn img, .product-miniature .product-list-actions .axadblock .axadblock-link img, .axadblock .product-miniature .product-list-actions .axadblock-link img {
      margin: 0;
      width: 20px;
      height: 20px;
      -ms-flex-order: 2;
          order: 2; }
    .product-miniature .product-list-actions .btn:not([disabled]):hover, .product-miniature .product-list-actions .axadblock .axadblock-link:not([disabled]):hover, .axadblock .product-miniature .product-list-actions .axadblock-link:not([disabled]):hover {
      background: #2866e8;
      color: #fff; }
      .product-miniature .product-list-actions .btn:not([disabled]):hover img, .product-miniature .product-list-actions .axadblock .axadblock-link:not([disabled]):hover img, .axadblock .product-miniature .product-list-actions .axadblock-link:not([disabled]):hover img {
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1); }
      .product-miniature .product-list-actions .btn:not([disabled]):hover svg [stroke], .product-miniature .product-list-actions .axadblock .axadblock-link:not([disabled]):hover svg [stroke], .axadblock .product-miniature .product-list-actions .axadblock-link:not([disabled]):hover svg [stroke] {
        stroke: #fff; }

.product-miniature {
  position: relative; }
  .product-miniature .wishlist {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99; }
    .product-miniature .wishlist svg {
      width: 25px;
      height: 25px; }
      .product-miniature .wishlist svg [fill] {
        fill: none;
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
    .product-miniature .wishlist .wl-checked svg [fill], .product-miniature .wishlist:hover svg [fill] {
      fill: #2866e8;
      stroke: #2866e8; }
    .product-miniature .wishlist .allert_note {
      margin-left: 0;
      left: inherit;
      transform: none;
      right: 0; }

.product-accessories {
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #999999;
  --swiper-navigation-size: 20px; }
  .product-accessories .product-accessory .listing-bottom .product-name {
    font-family: "Montserrat", sans-serif; }
  .product-accessories .product-list.swiper:not(.swiper-initialized) .swiper-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: start;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    gap: 10px; }
  .product-accessories .swiper {
    padding-bottom: 20px; }
    .product-accessories .swiper .h6 {
      margin-bottom: 10px;
      font-variation-settings: "wght" 700;
      letter-spacing: normal;
      font-weight: 600;
      font-family: "Montserrat", sans-serif; }
    .product-accessories .swiper .swiper-button-prev,
    .product-accessories .swiper .swiper-button-next {
      top: 10px;
      right: 0;
      left: auto; }
      .product-accessories .swiper .swiper-button-prev.swiper-button-lock,
      .product-accessories .swiper .swiper-button-next.swiper-button-lock {
        display: none; }
    .product-accessories .swiper .swiper-button-prev {
      right: 40px; }
    .product-accessories .swiper .swiper-pagination {
      bottom: 0; }
    .product-accessories .swiper .swiper-pagination-bullet {
      border-radius: 100%;
      border: 0; }
      .product-accessories .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
        height: var(--swiper-pagination-bullet-height); }
  .product-accessories .product-miniature .product-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  .product-accessories .product-miniature .product-thumbnail {
    padding-bottom: inherit;
    height: 66px;
    min-width: 66px; }

.product-accessory {
  width: calc(50% - 10px);
  border: 1px solid #f5f5f5; }
  .product-accessory .product-miniature {
    padding: 20px 10px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: start;
        justify-content: start;
    position: relative;
    margin-bottom: 0; }
    .product-accessory .product-miniature > a {
      min-width: 66px; }
      .product-accessory .product-miniature > a:before {
        content: '';
        position: absolute;
        inset: 0; }
    .product-accessory .product-miniature .listing-bottom {
      padding: 0 0 0 10px; }
    .product-accessory .product-miniature .product-name {
      height: auto;
      margin-bottom: 0;
      font-size: 0.75rem;
      height: 32px; }
    .product-accessory .product-miniature .product-description {
      font-size: 0.625rem;
      font-variation-settings: "wght" 500;
      max-height: calc(0.625rem * 1.52 * 2);
      min-height: calc(0.625rem * 1.52 * 2); }
    .product-accessory .product-miniature .product-price-and-shipping {
      font-size: 0.75rem;
      margin-bottom: 8px; }
    .product-accessory .product-miniature .link {
      font-size: 0.75rem;
      text-decoration: underline;
      color: #000; }

@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 3.15rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  h1, .h1 {
    font-size: 3.6rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  h1, .h1 {
    font-size: 4.05rem; } }

@media (min-width: 992px) {
  h1, .h1 {
    font-size: 4.5rem; } }

@media (max-width: 575.98px) {
  h2, .h2 {
    font-size: 2.0125rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  h2, .h2 {
    font-size: 2.3rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  h2, .h2 {
    font-size: 2.5875rem; } }

@media (min-width: 992px) {
  h2, .h2 {
    font-size: 2.875rem; } }

@media (max-width: 575.98px) {
  h3, .h3 {
    font-size: 1.4rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  h3, .h3 {
    font-size: 1.6rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  h3, .h3 {
    font-size: 1.8rem; } }

@media (min-width: 992px) {
  h3, .h3 {
    font-size: 2rem; } }

@media (max-width: 575.98px) {
  h4, .h4 {
    font-size: 1.05rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  h4, .h4 {
    font-size: 1.2rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  h4, .h4 {
    font-size: 1.35rem; } }

@media (min-width: 992px) {
  h4, .h4 {
    font-size: 1.5rem; } }

@media (max-width: 575.98px) {
  h5, .h5 {
    font-size: 0.875rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  h5, .h5 {
    font-size: 1rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  h5, .h5 {
    font-size: 1.125rem; } }

@media (min-width: 992px) {
  h5, .h5 {
    font-size: 1.25rem; } }

@media (max-width: 575.98px) {
  h6, .h6 {
    font-size: 0.7875rem; } }

@media (min-width: 576px) and (max-width: 767.98px) {
  h6, .h6 {
    font-size: 0.9rem; } }

@media (min-width: 768px) and (max-width: 991.98px) {
  h6, .h6 {
    font-size: 1.0125rem; } }

@media (min-width: 992px) {
  h6, .h6 {
    font-size: 1.125rem; } }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

p {
  margin-bottom: 0.5625rem; }

h1, h2, h3, h4, h5, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.page-heading {
  letter-spacing: 0.04em;
  font-variation-settings: "wght" 600;
  text-align: center;
  color: #2866e8;
  font-family: "Anton", sans-serif; }
  h1 h1, h2 h1, h3 h1, h4 h1, h5 h1, h5 h1, h6 h1,
  .h1 h1, .h2 h1, .h3 h1, .h4 h1, .h5 h1, .h6 h1,
  .page-heading h1 {
    font-family: "Source Code Pro", sans-serif; }
  h1 span, h1 h2, h2 span, h2 h2, h3 span, h3 h2, h4 span, h4 h2, h5 span, h5 h2, h5 span, h5 h2, h6 span, h6 h2,
  .h1 span,
  .h1 h2, .h2 span, .h2 h2, .h3 span, .h3 h2, .h4 span, .h4 h2, .h5 span, .h5 h2, .h6 span, .h6 h2,
  .page-heading span,
  .page-heading h2 {
    color: #2866e8;
    font-family: "Anton", sans-serif;
    font-weight: 400;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: inherit;
    -webkit-text-fill-color: transparent;
    letter-spacing: .03em;
    font-size: 4rem; }

#index #home-new .home-selection__heading, .home-science__title,
.home-reviews__title, .home-edito__title, .home-selection-cols__heading, .product-push__title, #axslider-slider .axslider-title {
  font-family: "Anton", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.675rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1; }

.page-heading {
  font-size: 2rem; }
  @media (max-width: 767.98px) {
    .page-heading {
      font-size: 2rem; }
      .page-heading span, .page-heading h2 {
        font-size: 2rem; } }

.card {
  border: none;
  border-radius: 0;
  background: #f5f5f5;
  padding: 20px 20px;
  margin-bottom: 40px; }
  @media (max-width: 1199.98px) {
    .card {
      padding: 20px; } }
  .card .card-header {
    font-size: 2rem;
    font-variation-settings: "wght" "wght" 600;
    background: none;
    border: none;
    padding: 0 0 10px;
    color: #000; }
  .card .card-body,
  .card .card-block {
    padding: 0; }
  .card .card-link {
    font-variation-settings: "wght" 500;
    text-transform: uppercase;
    margin-top: 0.5rem;
    display: inline-block; }
    .card .card-link + .card-link {
      float: right; }

.sort-by {
  text-align: right; }

.products-sort-order {
  display: -ms-flexbox;
  display: flex; }
  .products-sort-order.active span.dropdown-toggle {
    display: block; }
  .products-sort-order span.dropdown-toggle {
    display: none;
    padding: 10px 1.5rem;
    border: 1px solid #dddddd;
    color: #000;
    border-radius: 0;
    width: 186px;
    cursor: pointer;
    position: relative;
    text-align: left;
    animation: appearFromLeft .3s ease-in-out; }
    .products-sort-order span.dropdown-toggle:after {
      position: absolute;
      right: 0;
      margin-right: 10px;
      top: 50%;
      transform: translateY(-50%);
      background-image: url(../img/svg/nav-arrow-down.svg);
      border: none;
      width: 18px;
      height: 18px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
    .products-sort-order span.dropdown-toggle[aria-expanded="true"] {
      border-bottom-color: transparent; }
      .products-sort-order span.dropdown-toggle[aria-expanded="true"]:after {
        transform: rotate(180deg);
        margin-top: -8px; }
  .products-sort-order .dropdown-menu {
    margin: -1px 0 0;
    width: 186px;
    border-top: 0;
    border-radius: 0;
    padding: 0; }
  .products-sort-order .dropdown-item a {
    text-decoration: none;
    padding: 5px 0 0;
    margin-bottom: 5px;
    position: relative;
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .products-sort-order .dropdown-item a:hover, .products-sort-order .dropdown-item a.active {
      text-decoration: none;
      background-size: 100% 1px; }
    .products-sort-order .dropdown-item a.reversed {
      background-size: 100% 1px; }
      .products-sort-order .dropdown-item a.reversed:hover, .products-sort-order .dropdown-item a.reversed.active {
        background-size: 0 1px; }

@media (max-width: 991.98px) {
  #category #js-product-list-top.products-selection {
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-align: center;
        align-items: center;
    margin-left: 0;
    width: 100%; }
    #category #js-product-list-top.products-selection > div {
      margin-inline: auto; } }

.toggle_filters, .products-sort-order label {
  cursor: pointer;
  text-transform: uppercase;
  margin-right: 10px;
  font-variation-settings: "wght" 400;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  line-height: 1;
  color: #000; }
  .toggle_filters svg, .products-sort-order label svg {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 15px; }
    .toggle_filters svg g, .products-sort-order label svg g {
      transform: rotate(-90deg);
      transform-origin: center;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
  .toggle_filters.active svg g, .toggle_filters:hover svg g, .products-sort-order label.active svg g, .products-sort-order label:hover svg g {
    transform: rotate(0deg); }

.toggle_filters svg g {
  transform: rotate(0deg); }

.toggle_filters:hover svg g {
  transform: rotate(-90deg); }

@keyframes appearFromRight {
  from {
    width: 0; }
  to {
    width: 100%; } }

:root {
  --swiper-theme-color: var(--primary) !important;
  --swiper-pagination-bullet-width: 5px;
  --swiper-pagination-bullet-height: 18px;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-horizontal-gap: calc(5px/2);
  --swiper-pagination-bullet-inactive-opacity: 1; }

.swiper-pagination .swiper-pagination-bullet {
  border-radius: 0;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--swiper-theme-color); }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 24px; }

#ax-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 100000000; }
  #ax-loader img {
    opacity: 0;
    transition: opacity .2s ease-in-out;
    max-width: 100px; }

#breadcrumb {
  display: none;
  padding-top: 0.7em;
  padding-bottom: 0.7em; }
  @media (max-width: 767.98px) {
    #breadcrumb {
      display: none; } }
  #breadcrumb ol {
    list-style: none;
    padding-left: 0; }
    #breadcrumb ol li {
      float: left;
      font-size: 0.75rem;
      color: #999999;
      position: relative;
      padding-right: 11px; }
      #breadcrumb ol li:after {
        content: '/';
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 4px;
        display: inline-block; }
      #breadcrumb ol li.active {
        color: #fff; }
        #breadcrumb ol li.active:after {
          display: none; }
      #breadcrumb ol li a {
        color: #999999;
        text-decoration: none;
        position: relative;
        background-image: linear-gradient(#666666, #666666);
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: 0% 1px;
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        text-decoration: none;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone; }
        #breadcrumb ol li a:hover, #breadcrumb ol li a.active {
          text-decoration: none;
          background-size: 100% 1px; }
        #breadcrumb ol li a.reversed {
          background-size: 100% 1px; }
          #breadcrumb ol li a.reversed:hover, #breadcrumb ol li a.reversed.active {
            background-size: 0% 1px; }
        #breadcrumb ol li a:hover::before {
          width: 0; }
  #breadcrumb + #notifications {
    display: none; }

#product #notifications + #content-wrapper {
  padding-top: 40px; }

#content.page-not-found {
  text-align: center; }
  #content.page-not-found .notfound-img img {
    max-width: 50%;
    display: block;
    margin: 40px auto; }

#product #breadcrumb,
#category #breadcrumb,
#module-pm_advancedsearch4-searchresults #breadcrumb,
body.advancedsearch-seo #breadcrumb,
#module-prestablog-blog #breadcrumb,
#ybc_blog_page #breadcrumb,
body#cms #breadcrumb,
#module-axstorelocator-details #breadcrumb,
#module-axstorelocator-listing #breadcrumb {
  display: block; }

#header {
  position: relative;
  z-index: 999;
  font-weight: 500;
  font-variation-settings: 'wght' 500; }

#header-nav {
  background: linear-gradient(270deg, #ff0019 0%, #2866e8 100%);
  color: #fff;
  text-align: center;
  height: 30px; }
  #header-nav .header-nav-wrapper {
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    text-align: center;
    height: 30px; }
  #header-nav .header-info {
    line-height: 30px; }
    #header-nav .header-info p {
      margin: 0;
      font-variation-settings: 'wght' 400; }
    #header-nav .header-info a {
      color: #fff;
      text-decoration: none;
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 0% 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      #header-nav .header-info a:hover, #header-nav .header-info a.active {
        text-decoration: none;
        background-size: 100% 1px; }
      #header-nav .header-info a.reversed {
        background-size: 100% 1px; }
        #header-nav .header-info a.reversed:hover, #header-nav .header-info a.reversed.active {
          background-size: 0% 1px; }
  #header-nav .header-first-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    #header-nav .header-first-info p {
      margin: 0; }
    #header-nav .header-first-info a {
      color: #fff;
      text-decoration: underline; }
    #header-nav .header-first-info img {
      width: 20px;
      height: auto;
      margin-right: 10px; }
  #header-nav .header-last-info {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; }
    #header-nav .header-last-info p {
      margin: 0; }
    #header-nav .header-last-info a {
      color: #fff;
      text-decoration: underline; }
    #header-nav .header-last-info ul {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      gap: 16px; }
      #header-nav .header-last-info ul li:not(:last-child) {
        position: relative; }
        #header-nav .header-last-info ul li:not(:last-child)::after {
          content: '';
          position: absolute;
          right: -8px;
          top: 50%;
          transform: translateY(-50%);
          width: 1px;
          height: 12px;
          background: #fff; }
  #header-nav #adtm_menu,
  #header-nav .header-right {
    height: 1.75rem; }

#header-top {
  padding: 1.7rem 0; }
  #header-top .menu-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between; }
  #header-top .header-left {
    -ms-flex: 1;
        flex: 1;
    min-width: 0; }
  #header-top .header-right {
    -ms-flex: 0 0 auto;
        flex: 0 0 auto; }
  #header-top .row {
    -ms-flex-align: center;
        align-items: center; }
  #header-top .header-logo {
    width: 108px;
    text-align: center;
    display: none; }
    @media (max-width: 1199.98px) {
      #header-top .header-logo.mobile-only {
        display: block;
        width: 60px; } }
    #header-top .header-logo svg {
      width: 108px;
      height: 54px;
      display: inline-block; }
  #header-top .header-tagline {
    text-align: center;
    font-style: italic;
    font-size: 1rem;
    color: #999999; }
    #header-top .header-tagline p {
      margin: 0; }
  #header-top .header-right {
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center;
    gap: 12px;
    padding-left: 20px; }
    #header-top .header-right > div {
      display: block;
      text-align: center; }
      #header-top .header-right > div a,
      #header-top .header-right > div span {
        display: inline-block;
        text-transform: uppercase; }
        #header-top .header-right > div a svg,
        #header-top .header-right > div span svg {
          width: 28px;
          height: 28px; }
        #header-top .header-right > div a span,
        #header-top .header-right > div span span {
          display: none; }
    #header-top .header-right #search_query_top {
      cursor: pointer; }
    #header-top .header-right .header-right-links {
      -ms-flex-positive: 1;
          flex-grow: 1; }
      #header-top .header-right .header-right-links ul {
        white-space: nowrap; }
      #header-top .header-right .header-right-links li {
        display: inline-block;
        margin-right: 10px; }
        #header-top .header-right .header-right-links li a {
          position: relative;
          background-image: linear-gradient(#000, #000);
          background-repeat: no-repeat;
          background-position: bottom left;
          background-size: 0 1px;
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          text-decoration: none;
          -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
          font-size: 0.875rem;
          font-variation-settings: "wght" 600;
          font-weight: 600;
          text-transform: none; }
          #header-top .header-right .header-right-links li a:hover, #header-top .header-right .header-right-links li a.active {
            text-decoration: none;
            background-size: 100% 1px; }
          #header-top .header-right .header-right-links li a.reversed {
            background-size: 100% 1px; }
            #header-top .header-right .header-right-links li a.reversed:hover, #header-top .header-right .header-right-links li a.reversed.active {
              background-size: 0 1px; }
          @media (max-width: 1199.98px) {
            #header-top .header-right .header-right-links li a {
              font-size: 0.75rem; } }
          #header-top .header-right .header-right-links li a:hover {
            transform: none; }
    #header-top .header-right .nav-wisp [role="presentation"] {
      display: block; }

#header-menu .menu-wrap #search-menu {
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -17px;
  cursor: pointer; }
  #header-menu .menu-wrap #search-menu svg {
    width: 34px;
    height: 34px; }
    #header-menu .menu-wrap #search-menu svg circle,
    #header-menu .menu-wrap #search-menu svg line {
      stroke: #FFF; }

.menu {
  display: block; }

#header-sticky {
  position: relative;
  z-index: 1; }

#header-sticky-wrap {
  background: #fff;
  will-change: transform; }
  #header-sticky-wrap .menu > ul > li > a,
  #header-sticky-wrap #header-top {
    transition: padding ease 0.3s; }
  #header-sticky-wrap .menu {
    transition: background ease 0.3s; }
  #header-sticky-wrap #header-menu {
    z-index: 999; }
  #header-sticky-wrap #header-top .header-right > div a span {
    transition: opacity ease 0.3s, font-size 0.3s; }

@-moz-document url-prefix() {
  #header-sticky-wrap #header-top .header-right > div a span {
    transition: none; } }
  #header-sticky-wrap #header-top .header-logo svg {
    transition: height ease 0.3s; }

@-moz-document url-prefix() {
  #header-sticky-wrap #header-top .header-logo svg {
    transition: none; } }
  #header-sticky-wrap #header-top .li-niveau1.logo svg {
    transition: height ease 0.3s; }

@-moz-document url-prefix() {
  #header-sticky-wrap #header-top .li-niveau1.logo svg {
    transition: none; } }
  #header-sticky-wrap.fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 17;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15); }
    #header-sticky-wrap.fixed #header-top {
      padding: 0.25rem 0; }
      #header-sticky-wrap.fixed #header-top .header-logo svg {
        width: auto;
        margin: auto;
        height: 40px;
        display: block; }
      #header-sticky-wrap.fixed #header-top .header-right > div a span:not(.badge) {
        opacity: 0;
        font-size: 0; }
    #header-sticky-wrap.fixed #header-menu:before {
      left: 0;
      right: 0; }
    #header-sticky-wrap.fixed .menu > ul > li > a {
      padding: 0.75rem 1.3rem 0.75rem; }

#footer {
  padding: 3rem 0 1rem;
  background: #2866e8;
  color: #000; }
  @media (max-width: 767.98px) {
    #footer {
      padding: 3rem 0 4rem; } }
  #footer .newsletter_block {
    margin-bottom: 2.25rem;
    border-bottom: 1px solid #dddddd;
    padding-bottom: 1.25rem; }
    @media (min-width: 576px) {
      #footer .newsletter_block {
        margin-bottom: 5rem; } }
  #footer .footer-info {
    color: #fff;
    margin-bottom: 2rem; }
    @media (max-width: 767.98px) {
      #footer .footer-info {
        text-align: center; } }
    #footer .footer-info a {
      color: #fff;
      font-variation-settings: "wght" 500;
      text-decoration: none;
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 100% 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      #footer .footer-info a:hover, #footer .footer-info a.active {
        text-decoration: none;
        background-size: 0% 1px; }
      #footer .footer-info a.reversed {
        background-size: 0% 1px; }
        #footer .footer-info a.reversed:hover, #footer .footer-info a.reversed.active {
          background-size: 100% 1px; }
    #footer .footer-info img {
      width: 100px;
      height: auto;
      margin-bottom: 0.75rem; }
      @media (min-width: 576px) {
        #footer .footer-info img {
          margin-bottom: 1.25rem; } }
  #footer .title {
    font-variation-settings: "wght" 700;
    font-size: 1.5rem;
    margin-bottom: 1px;
    color: #fff;
    font-family: "Anton", sans-serif;
    text-transform: uppercase; }
  @media (max-width: 767.98px) {
    #footer .footer-links .title {
      border-top: 1px solid #fff;
      margin: 0;
      padding: 11px 15px;
      position: relative;
      font-size: 1.125rem;
      color: #fff; }
      #footer .footer-links .title:after {
        content: '';
        background: url(../img/svg/nav-arrow-down-w.svg);
        width: 20px;
        height: 20px;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 50%;
        margin-right: 25px;
        transform: translateY(-50%); }
      #footer .footer-links .title.active:after {
        transform: translateY(-50%) rotate(180deg); }
    #footer .footer-links ul {
      display: none;
      padding: 0 15px; }
    #footer .footer-links > p:has(img) {
      text-align: center; }
    #footer .footer-links > p:last-child:not(:first-child) {
      border-top: 1px solid #fff;
      padding-top: 40px; } }
  #footer .footer-links li {
    padding: 5px 0; }
    #footer .footer-links li a {
      color: #fff;
      font-variation-settings: "wght" 500;
      text-decoration: none;
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 0% 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      #footer .footer-links li a:hover, #footer .footer-links li a.active {
        text-decoration: none;
        background-size: 100% 1px; }
      #footer .footer-links li a.reversed {
        background-size: 100% 1px; }
        #footer .footer-links li a.reversed:hover, #footer .footer-links li a.reversed.active {
          background-size: 0% 1px; }

#reassurance {
  margin-top: 1rem;
  position: relative; }
  #reassurance:before {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: linear-gradient(270deg, var(--Rouge, #FF0019) 0%, var(--Bleu-cosmto, #2866E8) 100%);
    position: absolute;
    top: 0;
    left: 0; }
  #product #reassurance {
    margin-top: 0; }
  #category #reassurance {
    margin-top: 50px; }
    @media (max-width: 767.98px) {
      #category #reassurance {
        margin-top: 1rem; } }
  #reassurance .reassurance-wrap {
    padding: 2rem 0 4em;
    margin: 2rem 0; }
    @media (max-width: 767.98px) {
      #reassurance .reassurance-wrap {
        padding: 0; } }
    #reassurance .reassurance-wrap .reassurance {
      text-align: center;
      padding-top: 63px;
      font-size: 1rem; }
      @media (max-width: 767.98px) {
        #reassurance .reassurance-wrap .reassurance {
          margin: 10px 0; } }
      #reassurance .reassurance-wrap .reassurance:hover svg {
        top: -5px;
        transition: 250ms ease-in-out; }
      #reassurance .reassurance-wrap .reassurance svg {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        transition: 250ms ease-in-out; }
      #reassurance .reassurance-wrap .reassurance p, #reassurance .reassurance-wrap .reassurance a {
        margin: 0;
        color: #000;
        text-transform: uppercase;
        line-height: 1.2;
        font-family: "Source Code Pro", sans-serif; }
      #reassurance .reassurance-wrap .reassurance p:has(svg) {
        line-height: 0; }

#pagenotfound #main {
  margin-top: 4rem; }

#pagenotfound .page-not-found {
  text-align: center; }
  #pagenotfound .page-not-found .notfound-img img {
    padding: 10rem 15rem; }
  #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.875rem; }
    @media (max-width: 767.98px) {
      #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link {
        font-size: 0.75rem;
        bottom: 30px; } }

#authentication.page-authentication .page-header,
#my-account.page-authentication .page-header,
#order-return.page-authentication .page-header,
.page-customer-account.page-authentication .page-header,
.page-addresses.page-authentication .page-header,
#order-detail.page-authentication .page-header,
#module-advansedwishlist-mywishlist.page-authentication .page-header,
#module-allinone_rewards-rewards.page-authentication .page-header,
#module-allinone_rewards-sponsorship.page-authentication .page-header,
#module-ps_emailalerts-account.page-authentication .page-header,
#module-gsnippetsreviews-accountProductReviews.page-authentication .page-header {
  display: none; }

#authentication #breadcrumb,
#my-account #breadcrumb,
#order-return #breadcrumb,
.page-customer-account #breadcrumb,
.page-addresses #breadcrumb,
#order-detail #breadcrumb,
#module-advansedwishlist-mywishlist #breadcrumb,
#module-allinone_rewards-rewards #breadcrumb,
#module-allinone_rewards-sponsorship #breadcrumb,
#module-ps_emailalerts-account #breadcrumb,
#module-gsnippetsreviews-accountProductReviews #breadcrumb {
  position: relative;
  display: block;
  z-index: 10; }
  #authentication #breadcrumb, #authentication #breadcrumb *,
  #my-account #breadcrumb,
  #my-account #breadcrumb *,
  #order-return #breadcrumb,
  #order-return #breadcrumb *,
  .page-customer-account #breadcrumb,
  .page-customer-account #breadcrumb *,
  .page-addresses #breadcrumb,
  .page-addresses #breadcrumb *,
  #order-detail #breadcrumb,
  #order-detail #breadcrumb *,
  #module-advansedwishlist-mywishlist #breadcrumb,
  #module-advansedwishlist-mywishlist #breadcrumb *,
  #module-allinone_rewards-rewards #breadcrumb,
  #module-allinone_rewards-rewards #breadcrumb *,
  #module-allinone_rewards-sponsorship #breadcrumb,
  #module-allinone_rewards-sponsorship #breadcrumb *,
  #module-ps_emailalerts-account #breadcrumb,
  #module-ps_emailalerts-account #breadcrumb *,
  #module-gsnippetsreviews-accountProductReviews #breadcrumb,
  #module-gsnippetsreviews-accountProductReviews #breadcrumb * {
    color: #000; }
  #authentication #breadcrumb a,
  #my-account #breadcrumb a,
  #order-return #breadcrumb a,
  .page-customer-account #breadcrumb a,
  .page-addresses #breadcrumb a,
  #order-detail #breadcrumb a,
  #module-advansedwishlist-mywishlist #breadcrumb a,
  #module-allinone_rewards-rewards #breadcrumb a,
  #module-allinone_rewards-sponsorship #breadcrumb a,
  #module-ps_emailalerts-account #breadcrumb a,
  #module-gsnippetsreviews-accountProductReviews #breadcrumb a {
    background-image: linear-gradient(#000, #000); }

#authentication #notifications,
#my-account #notifications,
#order-return #notifications,
.page-customer-account #notifications,
.page-addresses #notifications,
#order-detail #notifications,
#module-advansedwishlist-mywishlist #notifications,
#module-allinone_rewards-rewards #notifications,
#module-allinone_rewards-sponsorship #notifications,
#module-ps_emailalerts-account #notifications,
#module-gsnippetsreviews-accountProductReviews #notifications {
  padding: 0; }

#authentication .page-my-account > .text-center,
#my-account .page-my-account > .text-center,
#order-return .page-my-account > .text-center,
.page-customer-account .page-my-account > .text-center,
.page-addresses .page-my-account > .text-center,
#order-detail .page-my-account > .text-center,
#module-advansedwishlist-mywishlist .page-my-account > .text-center,
#module-allinone_rewards-rewards .page-my-account > .text-center,
#module-allinone_rewards-sponsorship .page-my-account > .text-center,
#module-ps_emailalerts-account .page-my-account > .text-center,
#module-gsnippetsreviews-accountProductReviews .page-my-account > .text-center {
  margin-bottom: 3rem; }

#authentication .page-my-account ul,
#my-account .page-my-account ul,
#order-return .page-my-account ul,
.page-customer-account .page-my-account ul,
.page-addresses .page-my-account ul,
#order-detail .page-my-account ul,
#module-advansedwishlist-mywishlist .page-my-account ul,
#module-allinone_rewards-rewards .page-my-account ul,
#module-allinone_rewards-sponsorship .page-my-account ul,
#module-ps_emailalerts-account .page-my-account ul,
#module-gsnippetsreviews-accountProductReviews .page-my-account ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 40px; }
  @media (max-width: 991.98px) {
    #authentication .page-my-account ul,
    #my-account .page-my-account ul,
    #order-return .page-my-account ul,
    .page-customer-account .page-my-account ul,
    .page-addresses .page-my-account ul,
    #order-detail .page-my-account ul,
    #module-advansedwishlist-mywishlist .page-my-account ul,
    #module-allinone_rewards-rewards .page-my-account ul,
    #module-allinone_rewards-sponsorship .page-my-account ul,
    #module-ps_emailalerts-account .page-my-account ul,
    #module-gsnippetsreviews-accountProductReviews .page-my-account ul {
      gap: 0; } }

#authentication .page-my-account li,
#my-account .page-my-account li,
#order-return .page-my-account li,
.page-customer-account .page-my-account li,
.page-addresses .page-my-account li,
#order-detail .page-my-account li,
#module-advansedwishlist-mywishlist .page-my-account li,
#module-allinone_rewards-rewards .page-my-account li,
#module-allinone_rewards-sponsorship .page-my-account li,
#module-ps_emailalerts-account .page-my-account li,
#module-gsnippetsreviews-accountProductReviews .page-my-account li {
  width: calc(100% / 4 - 30px);
  text-align: center; }
  @media (max-width: 991.98px) {
    #authentication .page-my-account li,
    #my-account .page-my-account li,
    #order-return .page-my-account li,
    .page-customer-account .page-my-account li,
    .page-addresses .page-my-account li,
    #order-detail .page-my-account li,
    #module-advansedwishlist-mywishlist .page-my-account li,
    #module-allinone_rewards-rewards .page-my-account li,
    #module-allinone_rewards-sponsorship .page-my-account li,
    #module-ps_emailalerts-account .page-my-account li,
    #module-gsnippetsreviews-accountProductReviews .page-my-account li {
      width: 100%;
      padding: 0 0 10px; } }

#authentication .page-my-account a,
#my-account .page-my-account a,
#order-return .page-my-account a,
.page-customer-account .page-my-account a,
.page-addresses .page-my-account a,
#order-detail .page-my-account a,
#module-advansedwishlist-mywishlist .page-my-account a,
#module-allinone_rewards-rewards .page-my-account a,
#module-allinone_rewards-sponsorship .page-my-account a,
#module-ps_emailalerts-account .page-my-account a,
#module-gsnippetsreviews-accountProductReviews .page-my-account a {
  background: #fff;
  font-variation-settings: "wght" 500;
  text-transform: uppercase;
  border: 1px solid #2866e8;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #2866e8;
  text-decoration: none;
  padding: 0 10px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  min-height: 160px; }
  #authentication .page-my-account a.btn-pink,
  #my-account .page-my-account a.btn-pink,
  #order-return .page-my-account a.btn-pink,
  .page-customer-account .page-my-account a.btn-pink,
  .page-addresses .page-my-account a.btn-pink,
  #order-detail .page-my-account a.btn-pink,
  #module-advansedwishlist-mywishlist .page-my-account a.btn-pink,
  #module-allinone_rewards-rewards .page-my-account a.btn-pink,
  #module-allinone_rewards-sponsorship .page-my-account a.btn-pink,
  #module-ps_emailalerts-account .page-my-account a.btn-pink,
  #module-gsnippetsreviews-accountProductReviews .page-my-account a.btn-pink {
    -ms-flex-flow: row;
        flex-flow: row;
    min-height: unset;
    padding: 0;
    background: unset; }
  @media (max-width: 991.98px) {
    #authentication .page-my-account a,
    #my-account .page-my-account a,
    #order-return .page-my-account a,
    .page-customer-account .page-my-account a,
    .page-addresses .page-my-account a,
    #order-detail .page-my-account a,
    #module-advansedwishlist-mywishlist .page-my-account a,
    #module-allinone_rewards-rewards .page-my-account a,
    #module-allinone_rewards-sponsorship .page-my-account a,
    #module-ps_emailalerts-account .page-my-account a,
    #module-gsnippetsreviews-accountProductReviews .page-my-account a {
      width: 100%;
      min-height: auto;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
      -ms-flex-pack: start;
          justify-content: flex-start;
      padding: 5px;
      text-align: left; } }
  #authentication .page-my-account a:hover,
  #my-account .page-my-account a:hover,
  #order-return .page-my-account a:hover,
  .page-customer-account .page-my-account a:hover,
  .page-addresses .page-my-account a:hover,
  #order-detail .page-my-account a:hover,
  #module-advansedwishlist-mywishlist .page-my-account a:hover,
  #module-allinone_rewards-rewards .page-my-account a:hover,
  #module-allinone_rewards-sponsorship .page-my-account a:hover,
  #module-ps_emailalerts-account .page-my-account a:hover,
  #module-gsnippetsreviews-accountProductReviews .page-my-account a:hover {
    background: #2866e8;
    color: #fff; }
    #authentication .page-my-account a:hover [stroke],
    #my-account .page-my-account a:hover [stroke],
    #order-return .page-my-account a:hover [stroke],
    .page-customer-account .page-my-account a:hover [stroke],
    .page-addresses .page-my-account a:hover [stroke],
    #order-detail .page-my-account a:hover [stroke],
    #module-advansedwishlist-mywishlist .page-my-account a:hover [stroke],
    #module-allinone_rewards-rewards .page-my-account a:hover [stroke],
    #module-allinone_rewards-sponsorship .page-my-account a:hover [stroke],
    #module-ps_emailalerts-account .page-my-account a:hover [stroke],
    #module-gsnippetsreviews-accountProductReviews .page-my-account a:hover [stroke] {
      stroke: #fff; }

#authentication .page-my-account svg,
#my-account .page-my-account svg,
#order-return .page-my-account svg,
.page-customer-account .page-my-account svg,
.page-addresses .page-my-account svg,
#order-detail .page-my-account svg,
#module-advansedwishlist-mywishlist .page-my-account svg,
#module-allinone_rewards-rewards .page-my-account svg,
#module-allinone_rewards-sponsorship .page-my-account svg,
#module-ps_emailalerts-account .page-my-account svg,
#module-gsnippetsreviews-accountProductReviews .page-my-account svg {
  width: 40px;
  height: 40px;
  min-width: 40px; }

#authentication .page-footer,
#my-account .page-footer,
#order-return .page-footer,
.page-customer-account .page-footer,
.page-addresses .page-footer,
#order-detail .page-footer,
#module-advansedwishlist-mywishlist .page-footer,
#module-allinone_rewards-rewards .page-footer,
#module-allinone_rewards-sponsorship .page-footer,
#module-ps_emailalerts-account .page-footer,
#module-gsnippetsreviews-accountProductReviews .page-footer {
  margin: 2.5em 0 0;
  width: 100%; }
  #authentication .page-footer ul,
  #my-account .page-footer ul,
  #order-return .page-footer ul,
  .page-customer-account .page-footer ul,
  .page-addresses .page-footer ul,
  #order-detail .page-footer ul,
  #module-advansedwishlist-mywishlist .page-footer ul,
  #module-allinone_rewards-rewards .page-footer ul,
  #module-allinone_rewards-sponsorship .page-footer ul,
  #module-ps_emailalerts-account .page-footer ul,
  #module-gsnippetsreviews-accountProductReviews .page-footer ul {
    width: 100%; }
  #authentication .page-footer li,
  #my-account .page-footer li,
  #order-return .page-footer li,
  .page-customer-account .page-footer li,
  .page-addresses .page-footer li,
  #order-detail .page-footer li,
  #module-advansedwishlist-mywishlist .page-footer li,
  #module-allinone_rewards-rewards .page-footer li,
  #module-allinone_rewards-sponsorship .page-footer li,
  #module-ps_emailalerts-account .page-footer li,
  #module-gsnippetsreviews-accountProductReviews .page-footer li {
    display: inline-block; }
    #authentication .page-footer li:nth-child(2),
    #my-account .page-footer li:nth-child(2),
    #order-return .page-footer li:nth-child(2),
    .page-customer-account .page-footer li:nth-child(2),
    .page-addresses .page-footer li:nth-child(2),
    #order-detail .page-footer li:nth-child(2),
    #module-advansedwishlist-mywishlist .page-footer li:nth-child(2),
    #module-allinone_rewards-rewards .page-footer li:nth-child(2),
    #module-allinone_rewards-sponsorship .page-footer li:nth-child(2),
    #module-ps_emailalerts-account .page-footer li:nth-child(2),
    #module-gsnippetsreviews-accountProductReviews .page-footer li:nth-child(2) {
      float: right; }
      #authentication .page-footer li:nth-child(2) .btn-back:before,
      #my-account .page-footer li:nth-child(2) .btn-back:before,
      #order-return .page-footer li:nth-child(2) .btn-back:before,
      .page-customer-account .page-footer li:nth-child(2) .btn-back:before,
      .page-addresses .page-footer li:nth-child(2) .btn-back:before,
      #order-detail .page-footer li:nth-child(2) .btn-back:before,
      #module-advansedwishlist-mywishlist .page-footer li:nth-child(2) .btn-back:before,
      #module-allinone_rewards-rewards .page-footer li:nth-child(2) .btn-back:before,
      #module-allinone_rewards-sponsorship .page-footer li:nth-child(2) .btn-back:before,
      #module-ps_emailalerts-account .page-footer li:nth-child(2) .btn-back:before,
      #module-gsnippetsreviews-accountProductReviews .page-footer li:nth-child(2) .btn-back:before {
        display: none; }
      #authentication .page-footer li:nth-child(2) .btn-back:after,
      #my-account .page-footer li:nth-child(2) .btn-back:after,
      #order-return .page-footer li:nth-child(2) .btn-back:after,
      .page-customer-account .page-footer li:nth-child(2) .btn-back:after,
      .page-addresses .page-footer li:nth-child(2) .btn-back:after,
      #order-detail .page-footer li:nth-child(2) .btn-back:after,
      #module-advansedwishlist-mywishlist .page-footer li:nth-child(2) .btn-back:after,
      #module-allinone_rewards-rewards .page-footer li:nth-child(2) .btn-back:after,
      #module-allinone_rewards-sponsorship .page-footer li:nth-child(2) .btn-back:after,
      #module-ps_emailalerts-account .page-footer li:nth-child(2) .btn-back:after,
      #module-gsnippetsreviews-accountProductReviews .page-footer li:nth-child(2) .btn-back:after {
        content: '';
        background: url(../../assets/img/svg/nav-cross-w.svg);
        background-color: #000;
        width: 16px;
        height: 16px;
        display: inline-block;
        border-radius: 50%;
        vertical-align: -3px;
        margin-left: 5px; }
  #authentication .page-footer a,
  #my-account .page-footer a,
  #order-return .page-footer a,
  .page-customer-account .page-footer a,
  .page-addresses .page-footer a,
  #order-detail .page-footer a,
  #module-advansedwishlist-mywishlist .page-footer a,
  #module-allinone_rewards-rewards .page-footer a,
  #module-allinone_rewards-sponsorship .page-footer a,
  #module-ps_emailalerts-account .page-footer a,
  #module-gsnippetsreviews-accountProductReviews .page-footer a {
    position: relative; }
  #authentication .page-footer svg,
  #my-account .page-footer svg,
  #order-return .page-footer svg,
  .page-customer-account .page-footer svg,
  .page-addresses .page-footer svg,
  #order-detail .page-footer svg,
  #module-advansedwishlist-mywishlist .page-footer svg,
  #module-allinone_rewards-rewards .page-footer svg,
  #module-allinone_rewards-sponsorship .page-footer svg,
  #module-ps_emailalerts-account .page-footer svg,
  #module-gsnippetsreviews-accountProductReviews .page-footer svg {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%); }

#authentication .ax_tunnelcontact,
#my-account .ax_tunnelcontact,
#order-return .ax_tunnelcontact,
.page-customer-account .ax_tunnelcontact,
.page-addresses .ax_tunnelcontact,
#order-detail .ax_tunnelcontact,
#module-advansedwishlist-mywishlist .ax_tunnelcontact,
#module-allinone_rewards-rewards .ax_tunnelcontact,
#module-allinone_rewards-sponsorship .ax_tunnelcontact,
#module-ps_emailalerts-account .ax_tunnelcontact,
#module-gsnippetsreviews-accountProductReviews .ax_tunnelcontact {
  margin-top: 135px; }
  @media (max-width: 991.98px) {
    #authentication .ax_tunnelcontact,
    #my-account .ax_tunnelcontact,
    #order-return .ax_tunnelcontact,
    .page-customer-account .ax_tunnelcontact,
    .page-addresses .ax_tunnelcontact,
    #order-detail .ax_tunnelcontact,
    #module-advansedwishlist-mywishlist .ax_tunnelcontact,
    #module-allinone_rewards-rewards .ax_tunnelcontact,
    #module-allinone_rewards-sponsorship .ax_tunnelcontact,
    #module-ps_emailalerts-account .ax_tunnelcontact,
    #module-gsnippetsreviews-accountProductReviews .ax_tunnelcontact {
      margin-top: 40px; } }

#authentication .page-header,
#my-account .page-header,
#order-return .page-header,
.page-customer-account .page-header,
.page-addresses .page-header,
#order-detail .page-header,
#module-advansedwishlist-mywishlist .page-header,
#module-allinone_rewards-rewards .page-header,
#module-allinone_rewards-sponsorship .page-header,
#module-ps_emailalerts-account .page-header,
#module-gsnippetsreviews-accountProductReviews .page-header {
  text-align: left;
  position: relative;
  min-height: 250px;
  transform: translateY(-37px);
  padding-top: 45px; }
  #authentication .page-header .page-heading,
  #my-account .page-header .page-heading,
  #order-return .page-header .page-heading,
  .page-customer-account .page-header .page-heading,
  .page-addresses .page-header .page-heading,
  #order-detail .page-header .page-heading,
  #module-advansedwishlist-mywishlist .page-header .page-heading,
  #module-allinone_rewards-rewards .page-header .page-heading,
  #module-allinone_rewards-sponsorship .page-header .page-heading,
  #module-ps_emailalerts-account .page-header .page-heading,
  #module-gsnippetsreviews-accountProductReviews .page-header .page-heading {
    text-align: left;
    font-size: clamp(2.5rem, 3vw, 4.5rem); }
  #authentication .page-header .account_description,
  #my-account .page-header .account_description,
  #order-return .page-header .account_description,
  .page-customer-account .page-header .account_description,
  .page-addresses .page-header .account_description,
  #order-detail .page-header .account_description,
  #module-advansedwishlist-mywishlist .page-header .account_description,
  #module-allinone_rewards-rewards .page-header .account_description,
  #module-allinone_rewards-sponsorship .page-header .account_description,
  #module-ps_emailalerts-account .page-header .account_description,
  #module-gsnippetsreviews-accountProductReviews .page-header .account_description {
    color: #000; }
    #authentication .page-header .account_description strong,
    #my-account .page-header .account_description strong,
    #order-return .page-header .account_description strong,
    .page-customer-account .page-header .account_description strong,
    .page-addresses .page-header .account_description strong,
    #order-detail .page-header .account_description strong,
    #module-advansedwishlist-mywishlist .page-header .account_description strong,
    #module-allinone_rewards-rewards .page-header .account_description strong,
    #module-allinone_rewards-sponsorship .page-header .account_description strong,
    #module-ps_emailalerts-account .page-header .account_description strong,
    #module-gsnippetsreviews-accountProductReviews .page-header .account_description strong {
      font-variation-settings: "wght" 700; }
  #authentication .page-header .account_cover,
  #my-account .page-header .account_cover,
  #order-return .page-header .account_cover,
  .page-customer-account .page-header .account_cover,
  .page-addresses .page-header .account_cover,
  #order-detail .page-header .account_cover,
  #module-advansedwishlist-mywishlist .page-header .account_cover,
  #module-allinone_rewards-rewards .page-header .account_cover,
  #module-allinone_rewards-sponsorship .page-header .account_cover,
  #module-ps_emailalerts-account .page-header .account_cover,
  #module-gsnippetsreviews-accountProductReviews .page-header .account_cover {
    width: 100vw;
    height: 100%;
    top: 0;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: -1; }
    #authentication .page-header .account_cover img,
    #my-account .page-header .account_cover img,
    #order-return .page-header .account_cover img,
    .page-customer-account .page-header .account_cover img,
    .page-addresses .page-header .account_cover img,
    #order-detail .page-header .account_cover img,
    #module-advansedwishlist-mywishlist .page-header .account_cover img,
    #module-allinone_rewards-rewards .page-header .account_cover img,
    #module-allinone_rewards-sponsorship .page-header .account_cover img,
    #module-ps_emailalerts-account .page-header .account_cover img,
    #module-gsnippetsreviews-accountProductReviews .page-header .account_cover img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }

#address #content,
#identity #content {
  padding: 1.5rem 4rem 3rem; }
  @media (max-width: 767.98px) {
    #address #content,
    #identity #content {
      padding: 1.5rem 2rem 3rem; } }

.account-tab {
  margin-top: 2rem; }
  .account-tab .row > div {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 1px;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -ms-flex-positive: 1;
        flex-grow: 1;
    text-align: center;
    line-height: 1; }
    .account-tab .row > div:first-child {
      text-align: left; }
    .account-tab .row > div:last-child {
      text-align: right; }
      .account-tab .row > div:last-child.tab-total {
        font-variation-settings: "wght" 700; }
      .account-tab .row > div:last-child svg {
        width: 26px;
        height: 26px; }
  .account-tab .row.ax-tab-header {
    background: #f5f5f5;
    font-size: 0.75rem;
    margin: 0; }
    @media (max-width: 767.98px) {
      .account-tab .row.ax-tab-header {
        display: none; } }
    .account-tab .row.ax-tab-header > div {
      padding: 15px 15px 13px; }
  .account-tab .row.ax-tab-list {
    padding: 10px 0;
    margin: 0; }
    .account-tab .row.ax-tab-list:nth-child(2n+1) {
      background: #f5f5f5; }
    @media (max-width: 767.98px) {
      .account-tab .row.ax-tab-list {
        -ms-flex-direction: column;
            flex-direction: column;
        padding: 30px 0; }
        .account-tab .row.ax-tab-list:nth-child(2n+1) {
          background: #FFF; }
        .account-tab .row.ax-tab-list:nth-child(2n+2) {
          background: #f5f5f5; } }
    .account-tab .row.ax-tab-list > div {
      padding: 0 15px; }
      @media (max-width: 767.98px) {
        .account-tab .row.ax-tab-list > div {
          text-align: center;
          padding: 5px 10px;
          -ms-flex: 1;
              flex: 1; } }
      .account-tab .row.ax-tab-list > div .order-status-label {
        display: inline-block;
        line-height: 1.1;
        margin-bottom: 2px; }
      .account-tab .row.ax-tab-list > div:first-child {
        font-variation-settings: "wght" 400; }

.account_infos {
  display: -ms-flexbox;
  display: flex;
  color: #000; }
  @media (max-width: 991.98px) {
    .account_infos {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-top: 1.5em; } }
  .account_infos #transform {
    width: 100%;
    background-color: #f5f5f5;
    padding: 40px;
    font-size: 1.5rem; }
    @media (min-width: 768px) {
      .account_infos #transform {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        height: 100%; } }
    @media (max-width: 991.98px) {
      .account_infos #transform {
        margin: 1.5em 0;
        padding: 20px; } }
    .account_infos #transform .box {
      text-align: center; }
    .account_infos #transform .points {
      font-variation-settings: "wght" 700; }
    .account_infos #transform .reward-infos {
      margin-top: 1.25rem; }
      .account_infos #transform .reward-infos span {
        font-size: 0.875rem;
        font-variation-settings: "wght" 700; }
      .account_infos #transform .reward-infos .reward_tuto {
        position: relative;
        margin-top: 0.5rem; }
        .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos {
          display: -ms-flexbox;
          display: flex;
          text-transform: uppercase;
          border: #2866e8 solid 1px;
          padding: .2rem; }
          .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos img {
            width: 40px; }
          .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos .reward_tuto_text {
            display: -ms-flexbox;
            display: flex;
            margin-left: 0.5rem;
            -ms-flex-direction: column;
                flex-direction: column;
            -ms-flex-pack: center;
                justify-content: center;
            color: #2866e8; }
            .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos .reward_tuto_text span {
              font-size: 0.625rem; }
              .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos .reward_tuto_text span:nth-of-type(2) {
                font-variation-settings: "wght" 300; }
          .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos a {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-direction: row;
                flex-direction: row;
            min-height: -webkit-fit-content;
            min-height: -moz-fit-content;
            min-height: fit-content;
            border: none;
            background-color: transparent;
            padding: 0; }
            .account_infos #transform .reward-infos .reward_tuto .reward_tuto_infos a:hover {
              color: #000; }
        .account_infos #transform .reward-infos .reward_tuto a.reward_tuto_infos:hover .reward_tuto_text {
          color: #fff; }

#history,
#module-allinone_rewards-rewards .rewards,
#module-allinone_rewards-rewards .rewards .idTabs a,
#module-allinone_rewards-sponsorship .rewards,
#module-allinone_rewards-sponsorship .rewards .idTabs a {
  color: #000; }

#module-allinone_rewards-rewards .rewards .idTabs a:not(.selected),
#module-allinone_rewards-sponsorship .rewards .idTabs a:not(.selected) {
  background-color: #000;
  color: #fff; }

.lost-password-card {
  color: white; }
  .lost-password-card a {
    color: white;
    font-weight: 700; }

#authentication #notifications,
#checkout-personal-information-step #notifications,
#password #notifications {
  display: block; }

#authentication #main,
#checkout-personal-information-step #main,
#password #main {
  margin: 2rem 0 0; }
  @media (max-width: 767.98px) {
    #authentication #main,
    #checkout-personal-information-step #main,
    #password #main {
      margin: 0; } }

#authentication #content,
#authentication .register-content,
#checkout-personal-information-step #content,
#checkout-personal-information-step .register-content,
#password #content,
#password .register-content {
  padding: 0 4rem; }
  @media (max-width: 767.98px) {
    #authentication #content,
    #authentication .register-content,
    #checkout-personal-information-step #content,
    #checkout-personal-information-step .register-content,
    #password #content,
    #password .register-content {
      padding: 1.5rem 1rem 3rem; } }

#authentication .h3,
#checkout-personal-information-step .h3,
#password .h3 {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem; }
  #authentication .h3 a,
  #checkout-personal-information-step .h3 a,
  #password .h3 a {
    color: #fff; }

#authentication .login-form,
#checkout-personal-information-step .login-form,
#password .login-form {
  padding-top: .75rem; }

#authentication .create-form,
#checkout-personal-information-step .create-form,
#password .create-form {
  padding-bottom: .75rem; }

#authentication .form-footer,
#checkout-personal-information-step .form-footer,
#password .form-footer {
  margin-top: 1rem; }

#authentication .lost_password a,
#checkout-personal-information-step .lost_password a,
#password .lost_password a {
  color: #000; }

#authentication .password-form,
#checkout-personal-information-step .password-form,
#password .password-form {
  margin: 5rem 0; }

.password-visiblity {
  display: none; }
  .password-visiblity [class*='axsvgicon'] {
    height: 30px;
    width: 30px; }
    .password-visiblity [class*='axsvgicon'] [stroke]  {
      stroke: #444444; }

#customer-form .password-visiblity,
#login-form .password-visiblity {
  display: block;
  cursor: pointer;
  border-color: #dddddd;
  height: 44px;
  line-height: 44px;
  padding: 0 10px; }
  #customer-form .password-visiblity .hide-password,
  #login-form .password-visiblity .hide-password {
    display: none; }

body.page-cart .page-heading {
  color: #2866e8;
  text-transform: uppercase;
  font-weight: 400; }

@media (max-width: 767.98px) {
  body.page-cart #content-wrapper .alert-warning {
    width: auto; } }

body.page-cart #content-wrapper .col-lg-8 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: start;
      justify-content: flex-start; }

body.page-cart #content-wrapper .cart-overview {
  -ms-flex-order: 1;
      order: 1; }

body.page-cart #content-wrapper #reward_loyalty, body.page-cart #content-wrapper #reward_use {
  -ms-flex-order: 2;
      order: 2; }
  body.page-cart #content-wrapper #reward_loyalty.reward_alert_message, body.page-cart #content-wrapper #reward_use.reward_alert_message {
    border: none;
    background-color: #f5f5f5;
    color: #000;
    font-size: 1rem; }
  body.page-cart #content-wrapper #reward_loyalty a, body.page-cart #content-wrapper #reward_use a {
    font-weight: 700;
    text-decoration: underline; }

body.page-cart #content-wrapper #js-axechantillon-form {
  -ms-flex-order: 2;
      order: 2; }

body.page-cart #content-wrapper .btn.back-shop, body.page-cart #content-wrapper .axadblock .back-shop.axadblock-link, .axadblock body.page-cart #content-wrapper .back-shop.axadblock-link {
  -ms-flex-order: 3;
      order: 3;
  text-align: left;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content; }

body.page-cart #content-wrapper .grelated_products {
  margin-top: 5vh;
  -ms-flex-order: 4;
      order: 4; }
  @media (max-width: 767.98px) {
    body.page-cart #content-wrapper .grelated_products .page-heading {
      margin: 0 auto 2rem;
      max-width: 320px; } }

body.page-cart .cart_info {
  padding: 1.25rem 0 1.2rem 40px;
  border-top: 1px solid #dddddd;
  position: relative; }
  body.page-cart .cart_info svg {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px; }
  body.page-cart .cart_info p {
    display: inline-block;
    margin: 0; }

.cart-overview {
  border-top: 1px solid #dddddd; }
  .cart-overview .cart-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #dddddd; }
  .cart-overview .product-image {
    width: 125px;
    padding: 1rem; }
  .cart-overview .product-info {
    width: 40%; }
    .cart-overview .product-info.carte-cadeau .product-category {
      display: none; }
    .cart-overview .product-info.carte-cadeau .product-line-info {
      display: none; }
    .cart-overview .product-info .product-name {
      font-variation-settings: "wght" 600;
      font-size: 1rem;
      display: block;
      line-height: 1.2;
      margin-bottom: 4px;
      font-weight: 500;
      font-family: "Source Code Pro", sans-serif; }
      .cart-overview .product-info .product-name:first-letter {
        text-transform: uppercase; }
    .cart-overview .product-info .product-category {
      text-transform: uppercase;
      font-variation-settings: "wght" 300; }
    .cart-overview .product-info ul {
      line-height: 1; }
      .cart-overview .product-info ul li {
        display: inline-block;
        font-size: 0.75rem; }
        .cart-overview .product-info ul li:after {
          content: '/'; }
        .cart-overview .product-info ul li:last-child:after {
          display: none; }
    .cart-overview .product-info .prod-price {
      display: block;
      font-size: 0.875rem;
      color: #000;
      font-variation-settings: "wght" 600; }
      .cart-overview .product-info .prod-price > div {
        display: inline-block; }
      .cart-overview .product-info .prod-price .product-discount {
        font-size: 0.75rem;
        color: #2866e8;
        text-decoration: line-through;
        padding-right: 5px; }
      .cart-overview .product-info .prod-price .ax-reduc {
        color: #000; }
      .cart-overview .product-info .prod-price .current-price {
        font-variation-settings: "wght" 600;
        font-weight: 600; }
    .cart-overview .product-info #product-availability .badge {
      font-variation-settings: 'wght' normal;
      padding: 2px 5px;
      font-size: 0.75rem; }
  .cart-overview .product-qty {
    width: 20%;
    text-align: center; }
    .cart-overview .product-qty .input-group {
      display: block; }
      .cart-overview .product-qty .input-group .input-group-btn {
        line-height: 44px; }
        .cart-overview .product-qty .input-group .input-group-btn button {
          border: none;
          padding: 0;
          width: 20px;
          height: 20px;
          content: '';
          background-color: transparent;
          background-repeat: no-repeat;
          background-position: center;
          background-image: url(../img/svg/nav-arrow-left.svg);
          font-size: 0; }
          .cart-overview .product-qty .input-group .input-group-btn button.js-increase-product-quantity {
            background-image: url(../img/svg/nav-arrow-right.svg); }
      .cart-overview .product-qty .input-group input {
        width: 50px;
        padding: 0 5px;
        text-align: center;
        display: inline-block !important;
        background-color: #f5f5f5;
        border: none;
        font-variation-settings: "wght" 500; }
  .cart-overview .product-price {
    width: 20%;
    padding-right: 50px;
    text-align: right;
    font-size: 1.25rem;
    color: #000;
    font-variation-settings: "wght" 600;
    font-weight: 600; }
  .cart-overview .product-remove {
    width: 30px; }
    .cart-overview .product-remove svg {
      width: 15px;
      height: 15px; }

body.page-order #js-checkout-summary,
body.page-order #cart_summary,
body.page-cart #js-checkout-summary,
body.page-cart #cart_summary {
  margin-bottom: 2rem;
  background: #000;
  padding: 2.25rem;
  color: #fff; }
  body.page-order #js-checkout-summary .cart-summary-totals .cart-summary-totals,
  body.page-order #js-checkout-summary #cart-summary > div,
  body.page-order #js-checkout-summary .cart-summary-line,
  body.page-order #js-checkout-summary .cart-summary-totals-bottom,
  body.page-order #cart_summary .cart-summary-totals .cart-summary-totals,
  body.page-order #cart_summary #cart-summary > div,
  body.page-order #cart_summary .cart-summary-line,
  body.page-order #cart_summary .cart-summary-totals-bottom,
  body.page-cart #js-checkout-summary .cart-summary-totals .cart-summary-totals,
  body.page-cart #js-checkout-summary #cart-summary > div,
  body.page-cart #js-checkout-summary .cart-summary-line,
  body.page-cart #js-checkout-summary .cart-summary-totals-bottom,
  body.page-cart #cart_summary .cart-summary-totals .cart-summary-totals,
  body.page-cart #cart_summary #cart-summary > div,
  body.page-cart #cart_summary .cart-summary-line,
  body.page-cart #cart_summary .cart-summary-totals-bottom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
  body.page-order #js-checkout-summary .cart-summary-line span,
  body.page-order #js-checkout-summary .cart-summary-totals span,
  body.page-order #js-checkout-summary .cart-summary-totals-bottom span,
  body.page-order #cart_summary .cart-summary-line span,
  body.page-order #cart_summary .cart-summary-totals span,
  body.page-order #cart_summary .cart-summary-totals-bottom span,
  body.page-cart #js-checkout-summary .cart-summary-line span,
  body.page-cart #js-checkout-summary .cart-summary-totals span,
  body.page-cart #js-checkout-summary .cart-summary-totals-bottom span,
  body.page-cart #cart_summary .cart-summary-line span,
  body.page-cart #cart_summary .cart-summary-totals span,
  body.page-cart #cart_summary .cart-summary-totals-bottom span {
    display: inline-block;
    padding: 0;
    width: 50%; }
    body.page-order #js-checkout-summary .cart-summary-line span.value,
    body.page-order #js-checkout-summary .cart-summary-totals span.value,
    body.page-order #js-checkout-summary .cart-summary-totals-bottom span.value,
    body.page-order #cart_summary .cart-summary-line span.value,
    body.page-order #cart_summary .cart-summary-totals span.value,
    body.page-order #cart_summary .cart-summary-totals-bottom span.value,
    body.page-cart #js-checkout-summary .cart-summary-line span.value,
    body.page-cart #js-checkout-summary .cart-summary-totals span.value,
    body.page-cart #js-checkout-summary .cart-summary-totals-bottom span.value,
    body.page-cart #cart_summary .cart-summary-line span.value,
    body.page-cart #cart_summary .cart-summary-totals span.value,
    body.page-cart #cart_summary .cart-summary-totals-bottom span.value {
      text-align: right;
      font-size: 1rem; }
  body.page-order #js-checkout-summary .cart-summary-line.cart-total,
  body.page-order #js-checkout-summary .cart-summary-totals-bottom,
  body.page-order #cart_summary .cart-summary-line.cart-total,
  body.page-order #cart_summary .cart-summary-totals-bottom,
  body.page-cart #js-checkout-summary .cart-summary-line.cart-total,
  body.page-cart #js-checkout-summary .cart-summary-totals-bottom,
  body.page-cart #cart_summary .cart-summary-line.cart-total,
  body.page-cart #cart_summary .cart-summary-totals-bottom {
    font-size: 1.125rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(221, 221, 221, 0.2); }
    body.page-order #js-checkout-summary .cart-summary-line.cart-total span.value,
    body.page-order #js-checkout-summary .cart-summary-totals-bottom span.value,
    body.page-order #cart_summary .cart-summary-line.cart-total span.value,
    body.page-order #cart_summary .cart-summary-totals-bottom span.value,
    body.page-cart #js-checkout-summary .cart-summary-line.cart-total span.value,
    body.page-cart #js-checkout-summary .cart-summary-totals-bottom span.value,
    body.page-cart #cart_summary .cart-summary-line.cart-total span.value,
    body.page-cart #cart_summary .cart-summary-totals-bottom span.value {
      text-align: right;
      font-size: 1.375rem; }
  body.page-order #js-checkout-summary .cart-voucher,
  body.page-order #cart_summary .cart-voucher,
  body.page-cart #js-checkout-summary .cart-voucher,
  body.page-cart #cart_summary .cart-voucher {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem; }
    body.page-order #js-checkout-summary .cart-voucher label,
    body.page-order #cart_summary .cart-voucher label,
    body.page-cart #js-checkout-summary .cart-voucher label,
    body.page-cart #cart_summary .cart-voucher label {
      margin-bottom: 4px;
      font-variation-settings: "wght" 500;
      color: #fff; }
    body.page-order #js-checkout-summary .cart-voucher .validate-info,
    body.page-order #cart_summary .cart-voucher .validate-info,
    body.page-cart #js-checkout-summary .cart-voucher .validate-info,
    body.page-cart #cart_summary .cart-voucher .validate-info {
      display: block; }
    body.page-order #js-checkout-summary .cart-voucher .btn-ok,
    body.page-order #cart_summary .cart-voucher .btn-ok,
    body.page-cart #js-checkout-summary .cart-voucher .btn-ok,
    body.page-cart #cart_summary .cart-voucher .btn-ok {
      background: #fff;
      border: none;
      color: #000;
      margin-right: 10px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
      body.page-order #js-checkout-summary .cart-voucher .btn-ok:hover, body.page-order #js-checkout-summary .cart-voucher .btn-ok:active,
      body.page-order #cart_summary .cart-voucher .btn-ok:hover,
      body.page-order #cart_summary .cart-voucher .btn-ok:active,
      body.page-cart #js-checkout-summary .cart-voucher .btn-ok:hover,
      body.page-cart #js-checkout-summary .cart-voucher .btn-ok:active,
      body.page-cart #cart_summary .cart-voucher .btn-ok:hover,
      body.page-cart #cart_summary .cart-voucher .btn-ok:active {
        background: #f5f5f5; }
    body.page-order #js-checkout-summary .cart-voucher .form-control,
    body.page-order #cart_summary .cart-voucher .form-control,
    body.page-cart #js-checkout-summary .cart-voucher .form-control,
    body.page-cart #cart_summary .cart-voucher .form-control {
      background: none;
      color: #fff; }
    body.page-order #js-checkout-summary .cart-voucher .input-group-append,
    body.page-order #cart_summary .cart-voucher .input-group-append,
    body.page-cart #js-checkout-summary .cart-voucher .input-group-append,
    body.page-cart #cart_summary .cart-voucher .input-group-append {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      z-index: 9; }
      body.page-order #js-checkout-summary .cart-voucher .input-group-append .btn, body.page-order #js-checkout-summary .cart-voucher .input-group-append .axadblock .axadblock-link, .axadblock body.page-order #js-checkout-summary .cart-voucher .input-group-append .axadblock-link,
      body.page-order #cart_summary .cart-voucher .input-group-append .btn,
      body.page-order #cart_summary .cart-voucher .input-group-append .axadblock .axadblock-link,
      .axadblock body.page-order #cart_summary .cart-voucher .input-group-append .axadblock-link,
      body.page-cart #js-checkout-summary .cart-voucher .input-group-append .btn,
      body.page-cart #js-checkout-summary .cart-voucher .input-group-append .axadblock .axadblock-link,
      .axadblock body.page-cart #js-checkout-summary .cart-voucher .input-group-append .axadblock-link,
      body.page-cart #cart_summary .cart-voucher .input-group-append .btn,
      body.page-cart #cart_summary .cart-voucher .input-group-append .axadblock .axadblock-link,
      .axadblock body.page-cart #cart_summary .cart-voucher .input-group-append .axadblock-link {
        border-color: transparent;
        color: #FFF;
        font-size: 0;
        background: transparent url(../img/svg/account-voucher-w.svg) center no-repeat;
        background-size: 30px;
        padding-left: 20px;
        padding-right: 20px; }
      body.page-order #js-checkout-summary .cart-voucher .input-group-append svg,
      body.page-order #cart_summary .cart-voucher .input-group-append svg,
      body.page-cart #js-checkout-summary .cart-voucher .input-group-append svg,
      body.page-cart #cart_summary .cart-voucher .input-group-append svg {
        width: 30px;
        height: 30px; }
        body.page-order #js-checkout-summary .cart-voucher .input-group-append svg path,
        body.page-order #js-checkout-summary .cart-voucher .input-group-append svg circle,
        body.page-order #cart_summary .cart-voucher .input-group-append svg path,
        body.page-order #cart_summary .cart-voucher .input-group-append svg circle,
        body.page-cart #js-checkout-summary .cart-voucher .input-group-append svg path,
        body.page-cart #js-checkout-summary .cart-voucher .input-group-append svg circle,
        body.page-cart #cart_summary .cart-voucher .input-group-append svg path,
        body.page-cart #cart_summary .cart-voucher .input-group-append svg circle {
          stroke: #999999; }
        body.page-order #js-checkout-summary .cart-voucher .input-group-append svg circle,
        body.page-order #cart_summary .cart-voucher .input-group-append svg circle,
        body.page-cart #js-checkout-summary .cart-voucher .input-group-append svg circle,
        body.page-cart #cart_summary .cart-voucher .input-group-append svg circle {
          fill: #999999; }
    body.page-order #js-checkout-summary .cart-voucher #voucher-suggest,
    body.page-order #cart_summary .cart-voucher #voucher-suggest,
    body.page-cart #js-checkout-summary .cart-voucher #voucher-suggest,
    body.page-cart #cart_summary .cart-voucher #voucher-suggest {
      background: #000;
      margin: .5rem -2.25rem 0;
      padding: .5rem 2.25rem;
      color: #fff; }
      @media (max-width: 991.98px) {
        body.page-order #js-checkout-summary .cart-voucher #voucher-suggest,
        body.page-order #cart_summary .cart-voucher #voucher-suggest,
        body.page-cart #js-checkout-summary .cart-voucher #voucher-suggest,
        body.page-cart #cart_summary .cart-voucher #voucher-suggest {
          margin: 0.5rem -1.25rem 0;
          padding: .5rem 1.25rem; } }
    body.page-order #js-checkout-summary .cart-voucher ul li,
    body.page-order #cart_summary .cart-voucher ul li,
    body.page-cart #js-checkout-summary .cart-voucher ul li,
    body.page-cart #cart_summary .cart-voucher ul li {
      margin-top: 5px;
      position: relative; }
      body.page-order #js-checkout-summary .cart-voucher ul li svg,
      body.page-order #cart_summary .cart-voucher ul li svg,
      body.page-cart #js-checkout-summary .cart-voucher ul li svg,
      body.page-cart #cart_summary .cart-voucher ul li svg {
        width: 20px;
        height: 20px; }
        body.page-order #js-checkout-summary .cart-voucher ul li svg g line,
        body.page-order #cart_summary .cart-voucher ul li svg g line,
        body.page-cart #js-checkout-summary .cart-voucher ul li svg g line,
        body.page-cart #cart_summary .cart-voucher ul li svg g line {
          stroke: #fff; }
      body.page-order #js-checkout-summary .cart-voucher ul li .voucher-value,
      body.page-order #cart_summary .cart-voucher ul li .voucher-value,
      body.page-cart #js-checkout-summary .cart-voucher ul li .voucher-value,
      body.page-cart #cart_summary .cart-voucher ul li .voucher-value {
        padding-right: 1.5rem;
        width: 35%;
        vertical-align: middle;
        display: inline-block; }
      body.page-order #js-checkout-summary .cart-voucher ul li .voucher-name,
      body.page-order #cart_summary .cart-voucher ul li .voucher-name,
      body.page-cart #js-checkout-summary .cart-voucher ul li .voucher-name,
      body.page-cart #cart_summary .cart-voucher ul li .voucher-name {
        width: 65%;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        vertical-align: middle;
        display: inline-block; }
      body.page-order #js-checkout-summary .cart-voucher ul li [data-link-action="remove-voucher"],
      body.page-order #cart_summary .cart-voucher ul li [data-link-action="remove-voucher"],
      body.page-cart #js-checkout-summary .cart-voucher ul li [data-link-action="remove-voucher"],
      body.page-cart #cart_summary .cart-voucher ul li [data-link-action="remove-voucher"] {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%); }
    body.page-order #js-checkout-summary .cart-voucher .label,
    body.page-order #cart_summary .cart-voucher .label,
    body.page-cart #js-checkout-summary .cart-voucher .label,
    body.page-cart #cart_summary .cart-voucher .label {
      width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: center;
          align-items: center; }
      body.page-order #js-checkout-summary .cart-voucher .label span,
      body.page-order #cart_summary .cart-voucher .label span,
      body.page-cart #js-checkout-summary .cart-voucher .label span,
      body.page-cart #cart_summary .cart-voucher .label span {
        width: auto; }
      body.page-order #js-checkout-summary .cart-voucher .label .code,
      body.page-order #cart_summary .cart-voucher .label .code,
      body.page-cart #js-checkout-summary .cart-voucher .label .code,
      body.page-cart #cart_summary .cart-voucher .label .code {
        padding: 5px;
        background: #fff;
        color: #000;
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
        cursor: pointer;
        color: #000;
        width: 40%;
        font-variation-settings: "wght" 700; }
        body.page-order #js-checkout-summary .cart-voucher .label .code::before,
        body.page-order #cart_summary .cart-voucher .label .code::before,
        body.page-cart #js-checkout-summary .cart-voucher .label .code::before,
        body.page-cart #cart_summary .cart-voucher .label .code::before {
          content: '+';
          color: #000;
          display: inline-block;
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          text-align: center;
          vertical-align: middle;
          margin-top: -3px;
          font-size: 1rem;
          width: 1.25rem;
          height: 1.25rem;
          transform: rotate(0); }
        body.page-order #js-checkout-summary .cart-voucher .label .code:hover,
        body.page-order #cart_summary .cart-voucher .label .code:hover,
        body.page-cart #js-checkout-summary .cart-voucher .label .code:hover,
        body.page-cart #cart_summary .cart-voucher .label .code:hover {
          background: #f5f5f5;
          text-decoration: underline; }
          body.page-order #js-checkout-summary .cart-voucher .label .code:hover::before,
          body.page-order #cart_summary .cart-voucher .label .code:hover::before,
          body.page-cart #js-checkout-summary .cart-voucher .label .code:hover::before,
          body.page-cart #cart_summary .cart-voucher .label .code:hover::before {
            transform: rotate(90deg); }
    body.page-order #js-checkout-summary .cart-voucher .js-error,
    body.page-order #cart_summary .cart-voucher .js-error,
    body.page-cart #js-checkout-summary .cart-voucher .js-error,
    body.page-cart #cart_summary .cart-voucher .js-error {
      margin-top: 5px; }
  body.page-order #js-checkout-summary .js-error-text,
  body.page-order #cart_summary .js-error-text,
  body.page-cart #js-checkout-summary .js-error-text,
  body.page-cart #cart_summary .js-error-text {
    display: block !important; }

@media (max-width: 991.98px) {
  body.page-order #js-checkout-summary,
  body.page-cart #js-checkout-summary {
    padding: 1.5rem 1.5rem 1rem;
    margin-top: 0.8rem; }
    body.page-order #js-checkout-summary .cart-detailed-totals > div:not(.cart-voucher),
    body.page-cart #js-checkout-summary .cart-detailed-totals > div:not(.cart-voucher) {
      display: none; } }

body.page-order #js-checkout-summary .cart-summary-totals,
body.page-cart #js-checkout-summary .cart-summary-totals {
  padding-top: 10px; }

body.page-order #js-checkout-summary #cart-summary-product-list li,
body.page-cart #js-checkout-summary #cart-summary-product-list li {
  border-bottom: 1px solid #ced4da;
  width: 100%;
  padding: 10px 0 5px;
  display: -ms-flexbox;
  display: flex; }
  body.page-order #js-checkout-summary #cart-summary-product-list li .summary-left,
  body.page-cart #js-checkout-summary #cart-summary-product-list li .summary-left {
    width: 17%;
    padding-right: 1%;
    float: left; }
  body.page-order #js-checkout-summary #cart-summary-product-list li .summary-center,
  body.page-cart #js-checkout-summary #cart-summary-product-list li .summary-center {
    width: 63%;
    padding-left: 7px;
    float: left; }
    body.page-order #js-checkout-summary #cart-summary-product-list li .summary-center .product-name,
    body.page-cart #js-checkout-summary #cart-summary-product-list li .summary-center .product-name {
      display: block; }
    body.page-order #js-checkout-summary #cart-summary-product-list li .summary-center .product-quantity:before,
    body.page-cart #js-checkout-summary #cart-summary-product-list li .summary-center .product-quantity:before {
      content: 'X'; }
  body.page-order #js-checkout-summary #cart-summary-product-list li .summary-right,
  body.page-cart #js-checkout-summary #cart-summary-product-list li .summary-right {
    width: 20%;
    float: left;
    text-align: right;
    -ms-flex-item-align: end;
        align-self: flex-end; }

body.page-order #js-checkout-summary .cart-summary-show-prod,
body.page-cart #js-checkout-summary .cart-summary-show-prod {
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  display: block;
  border-bottom: 1px solid #ced4da;
  font-variation-settings: "wght" 700;
  color: #fff; }

@media (max-width: 991.98px) {
  body.page-order #cart_summary,
  body.page-cart #cart_summary {
    padding: 30px 20px;
    margin-top: 10px; } }

@media (max-width: 767.98px) {
  body.page-order #cart_summary .btn-checkout,
  body.page-cart #cart_summary .btn-checkout {
    position: fixed;
    bottom: 0;
    left: 21px;
    width: calc(100% - 42px);
    border: 2px solid #000;
    margin: 1.2rem 0;
    z-index: 99999; } }

body.page-order #cart_summary .cart-detailed-totals,
body.page-cart #cart_summary .cart-detailed-totals {
  margin-bottom: 1rem; }

body.page-order #cart_summary .cart-total span.value,
body.page-cart #cart_summary .cart-total span.value {
  font-size: 2rem;
  font-variation-settings: "wght" 500; }

body.page-order #cart_summary .payplugApplePay_wrapper > .col-xs-12,
body.page-cart #cart_summary .payplugApplePay_wrapper > .col-xs-12 {
  width: 100%;
  text-align: center; }
  body.page-order #cart_summary .payplugApplePay_wrapper > .col-xs-12 #apple-pay-button,
  body.page-cart #cart_summary .payplugApplePay_wrapper > .col-xs-12 #apple-pay-button {
    width: auto;
    border: 1px solid #fff; }

body.page-order .back-shop,
body.page-cart .back-shop {
  margin-top: 2rem; }
  @media (max-width: 991.98px) {
    body.page-order .back-shop,
    body.page-cart .back-shop {
      display: none; } }

@media (min-width: 992px) {
  body.page-order .back-shop-right,
  body.page-cart .back-shop-right {
    display: none; } }

@media (max-width: 991.98px) {
  body.page-order .btn-tunnel,
  body.page-cart .btn-tunnel {
    margin-top: 2rem; } }
  @media (max-width: 991.98px) and (max-width: 767.98px) {
    body.page-order .btn-tunnel,
    body.page-cart .btn-tunnel {
      margin-top: 0; } }

@media (max-width: 991.98px) {
    body.page-order .btn-tunnel .btn-checkout,
    body.page-order .btn-tunnel .btn-cta-js,
    body.page-cart .btn-tunnel .btn-checkout,
    body.page-cart .btn-tunnel .btn-cta-js {
      float: right;
      width: auto; } }
  @media (max-width: 991.98px) and (max-width: 767.98px) {
    body.page-order .btn-tunnel .btn, body.page-order .btn-tunnel .axadblock .axadblock-link, .axadblock body.page-order .btn-tunnel .axadblock-link,
    body.page-cart .btn-tunnel .btn,
    body.page-cart .btn-tunnel .axadblock .axadblock-link,
    .axadblock body.page-cart .btn-tunnel .axadblock-link {
      width: 100%; } }

#axechantillon-shoppingcartfooter {
  --swiper-navigation-size: 25px;
  margin-top: 1.875rem; }
  @media (min-width: 576px) {
    #axechantillon-shoppingcartfooter {
      margin-top: 2.5rem; } }
  #axechantillon-shoppingcartfooter .swiper:not(.swiper-initialized) .axe_product_wrapper {
    max-width: 170px;
    margin-right: 30px; }
  @media (min-width: 576px) {
    #axechantillon-shoppingcartfooter .swiper-wrapper {
      padding-bottom: 60px; } }
  #axechantillon-shoppingcartfooter .swiper-button-next, #axechantillon-shoppingcartfooter .swiper-button-prev {
    top: auto;
    bottom: 0; }
  #axechantillon-shoppingcartfooter .axechantillon-title {
    font-size: 1rem;
    line-height: 1.375;
    color: #000;
    margin-bottom: 1.25rem; }
    #axechantillon-shoppingcartfooter .axechantillon-title span {
      color: #2866e8;
      display: block;
      text-align: left;
      font-size: 100%;
      font-variation-settings: "wght" 400;
      font-weight: 400;
      font-family: "Anton", sans-serif;
      text-transform: uppercase; }
  #axechantillon-shoppingcartfooter #js-axechantillon-tabs {
    border: none; }
    @media (min-width: 576px) {
      #axechantillon-shoppingcartfooter #js-axechantillon-tabs {
        padding-bottom: 48px;
        border-bottom: 1px solid #2866e8; } }
    @media (max-width: 767.98px) {
      #axechantillon-shoppingcartfooter #js-axechantillon-tabs .product-list .axe_product_wrapper {
        margin-bottom: 2.5rem; } }
    #axechantillon-shoppingcartfooter #js-axechantillon-tabs .product-list .axe_product_wrapper > label {
      text-align: center;
      margin-bottom: 10px; }
      @media (min-width: 576px) {
        #axechantillon-shoppingcartfooter #js-axechantillon-tabs .product-list .axe_product_wrapper > label {
          margin-bottom: 20px; } }
      #axechantillon-shoppingcartfooter #js-axechantillon-tabs .product-list .axe_product_wrapper > label .product-name {
        margin-top: 0.8rem;
        height: 42px;
        /* Autoprefixer: off*/
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        /* Autoprefixer: on*/
        font-family: "Source Code Pro", sans-serif;
        font-variation-settings: "wght" 500; }
    #axechantillon-shoppingcartfooter #js-axechantillon-tabs .product-list .checkbox-container {
      text-align: center; }

#category .category-top-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 1rem; }
  #category .category-top-header #js-product-list-header {
    position: relative;
    isolation: isolate;
    min-height: 340px;
    width: 100%; }
    @media (max-width: 991.98px) {
      #category .category-top-header #js-product-list-header {
        min-height: auto;
        width: auto; } }
  #category .category-top-header .dark_theme_header h1 {
    color: #000; }
  #category .category-top-header .dark_theme_header p, #category .category-top-header .dark_theme_header span {
    color: #000 !important; }
  #category .category-top-header .dark_theme_header #breadcrumb * {
    color: #000; }
  #category .category-top-header .dark_theme_header #breadcrumb a {
    position: relative;
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    #category .category-top-header .dark_theme_header #breadcrumb a:hover, #category .category-top-header .dark_theme_header #breadcrumb a.active {
      text-decoration: none;
      background-size: 100% 1px; }
    #category .category-top-header .dark_theme_header #breadcrumb a.reversed {
      background-size: 100% 1px; }
      #category .category-top-header .dark_theme_header #breadcrumb a.reversed:hover, #category .category-top-header .dark_theme_header #breadcrumb a.reversed.active {
        background-size: 0 1px; }
  @media (min-width: 768px) {
    #category .category-top-header .light_theme_header h1 {
      color: #fff; }
    #category .category-top-header .light_theme_header p, #category .category-top-header .light_theme_header span {
      color: #fff !important; }
    #category .category-top-header .light_theme_header #breadcrumb * {
      color: #fff; }
    #category .category-top-header .light_theme_header #breadcrumb a {
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 0 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      #category .category-top-header .light_theme_header #breadcrumb a:hover, #category .category-top-header .light_theme_header #breadcrumb a.active {
        text-decoration: none;
        background-size: 100% 1px; }
      #category .category-top-header .light_theme_header #breadcrumb a.reversed {
        background-size: 100% 1px; }
        #category .category-top-header .light_theme_header #breadcrumb a.reversed:hover, #category .category-top-header .light_theme_header #breadcrumb a.reversed.active {
          background-size: 0 1px; } }
  #category .category-top-header .category-tree, #category .category-top-header #js-product-list-top {
    display: inline-block; }
  #category .category-top-header #js-product-list-top {
    margin-left: auto; }

.category-cover {
  width: 100vw;
  height: 100%;
  top: 0;
  position: absolute;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  z-index: -1; }
  .category-cover img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 175px; }
  @media (max-width: 991.98px) {
    .category-cover {
      position: relative;
      -ms-flex-order: -1;
          order: -1;
      height: auto; } }

#category {
  overflow-x: clip; }
  #category .category-header {
    padding-top: 4rem; }
    @media (max-width: 991.98px) {
      #category .category-header {
        padding: 0;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap; } }
  #category .category-text, #category h1 {
    text-align: left;
    margin-bottom: 1rem;
    color: #fff;
    z-index: 1; }
    @media (max-width: 991.98px) {
      #category .category-text, #category h1 {
        color: #000; } }
  #category [data-anchor] {
    cursor: pointer;
    color: currentColor;
    position: relative;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    #category [data-anchor]:hover, #category [data-anchor].active {
      text-decoration: none;
      background-size: 0 1px; }
    #category [data-anchor].reversed {
      background-size: 0 1px; }
      #category [data-anchor].reversed:hover, #category [data-anchor].reversed.active {
        background-size: 100% 1px; }
  #category .category-text a {
    color: #fff;
    font-variation-settings: "wght" 700; }
    @media (max-width: 991.98px) {
      #category .category-text a {
        color: #000; } }
  #category .category-text strong {
    font-variation-settings: "wght" 600; }
  #category h1 {
    position: relative;
    left: -5px;
    font-size: 2.875rem;
    font-family: "Source Code Pro", sans-serif;
    font-variation-settings: "wght" 500; }
  #category #breadcrumb {
    position: absolute;
    z-index: 1;
    max-width: 1200px; }
    #category #breadcrumb * {
      color: #fff; }
    @media (max-width: 991.98px) {
      #category #breadcrumb {
        display: none; } }

.products-selection {
  margin-bottom: 1rem; }
  @media (max-width: 767.98px) {
    .products-selection {
      margin-bottom: 1.5rem;
      padding: 0; } }

#extra-cat {
  border-top: 1px solid #dddddd;
  margin-top: 2rem;
  padding-top: 4.2rem; }
  @media (max-width: 767.98px) {
    #extra-cat {
      padding-top: 2rem;
      border: none; } }

#ax-product-list-top {
  border-top: 1px solid #dddddd;
  padding-top: 1.3rem; }

#category .product_push {
  margin-block: 2rem; }
  @media (max-width: 991.98px) {
    #category .product_push .axtile-heading {
      margin-bottom: 1rem; }
    #category .product_push .axtile-body {
      display: none; } }

.no-js .category-seo .rte div {
  display: block; }
  .no-js .category-seo .rte div::after {
    display: none !important; }
  .no-js .category-seo .rte div * {
    display: revert; }

.no-js .read-more, .no-js .read-less {
  display: none !important; }

.category-seo {
  margin-block: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  .category-seo strong {
    font-variation-settings: "wght" 600; }
  @media (max-width: 991.98px) {
    .category-seo {
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; }
      .category-seo .category-seo-img {
        -ms-flex-order: -1;
            order: -1;
        margin-bottom: 1rem; } }
  .category-seo h2 {
    text-align: left;
    font-variation-settings: "wght" 400;
    font-size: 1.875rem !important;
    margin-bottom: 1rem;
    color: #2866e8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 400; }
  .category-seo > div {
    font-weight: "wght" 300;
    color: #000;
    font-size: 0.875rem; }
  .category-seo .rte div {
    /* Autoprefixer: off*/
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* Autoprefixer: on*/ }
    .category-seo .rte div::after {
      content: '...';
      display: inline-block; }
    .category-seo .rte div > p:first-of-type {
      display: block; }
      .category-seo .rte div > p:first-of-type * {
        display: revert; }
    .category-seo .rte div > p:nth-of-type(2) {
      display: inline; }
      .category-seo .rte div > p:nth-of-type(2) * {
        display: revert; }
    .category-seo .rte div a {
      text-decoration: underline; }
      .category-seo .rte div a:hover {
        text-decoration: none; }
    .category-seo .rte div p, .category-seo .rte div h2, .category-seo .rte div h3, .category-seo .rte div h4, .category-seo .rte div h5, .category-seo .rte div b, .category-seo .rte div strong, .category-seo .rte div ul {
      display: none; }
    .category-seo .rte div ul {
      list-style: disc;
      padding-left: 20px; }
  .category-seo .rte.isActive div {
    display: block; }
    .category-seo .rte.isActive div::after {
      content: '';
      display: none; }
    .category-seo .rte.isActive div p, .category-seo .rte.isActive div h2, .category-seo .rte.isActive div h3, .category-seo .rte.isActive div h4, .category-seo .rte.isActive div h5, .category-seo .rte.isActive div b, .category-seo .rte.isActive div strong, .category-seo .rte.isActive div ul {
      display: block; }
    .category-seo .rte.isActive div b, .category-seo .rte.isActive div strong {
      display: inline; }
  .category-seo .rte.isActive .read-more {
    display: none; }
  .category-seo .rte.isActive .read-less {
    display: inline-block; }
  .category-seo .read-more, .category-seo .read-less {
    cursor: pointer;
    position: relative;
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .category-seo .read-more:hover, .category-seo .read-more.active, .category-seo .read-less:hover, .category-seo .read-less.active {
      text-decoration: none;
      background-size: 0% 1px; }
    .category-seo .read-more.reversed, .category-seo .read-less.reversed {
      background-size: 0% 1px; }
      .category-seo .read-more.reversed:hover, .category-seo .read-more.reversed.active, .category-seo .read-less.reversed:hover, .category-seo .read-less.reversed.active {
        background-size: 100% 1px; }
    .category-seo .read-more::after, .category-seo .read-less::after {
      content: attr(data-label); }
  .category-seo .read-less {
    display: none; }

.category-links {
  padding: 3vw 0;
  background: #000;
  box-shadow: 0 0 0 100vmax #000;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax); }
  .category-links .page-heading,
  .category-links .page-heading span {
    margin-bottom: 2rem;
    font-size: 2.875rem;
    color: #fff; }
  .category-links a {
    color: #f5f5f5;
    font-size: 1rem;
    font-variation-settings: "wght" 400;
    position: relative;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-decoration: none; }
    .category-links a:hover, .category-links a.active {
      text-decoration: none;
      background-size: 0 1px; }
    .category-links a.reversed {
      background-size: 0 1px; }
      .category-links a.reversed:hover, .category-links a.reversed.active {
        background-size: 100% 1px; }
  .category-links .links-wrapper > ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -ms-flex-pack: start;
        justify-content: flex-start; }
  .category-links .links-wrapper li {
    -ms-flex: 1 0 16%;
        flex: 1 0 16%;
    margin: 1rem 0;
    text-align: center; }
    @media (max-width: 991.98px) {
      .category-links .links-wrapper li {
        -ms-flex: 1 0 50%;
            flex: 1 0 50%; } }

#contact input[type="file"] {
  width: 100%; }

#contact .file input[disabled="true"] {
  background: #f5f5f5; }

#contact .file .file-input {
  visibility: hidden !important;
  position: absolute; }

#contact .file .btn, #contact .file .axadblock .axadblock-link, .axadblock #contact .file .axadblock-link {
  border-radius: 0 0 0 0;
  padding: 0 24px;
  display: block;
  height: 100%; }
  #contact .file .btn svg, #contact .file .axadblock .axadblock-link svg, .axadblock #contact .file .axadblock-link svg {
    stroke: #fff;
    width: 1.5rem;
    height: 1.5rem; }
  #contact .file .btn:hover svg, #contact .file .axadblock .axadblock-link:hover svg, .axadblock #contact .file .axadblock-link:hover svg, #contact .file .btn:active svg, #contact .file .axadblock .axadblock-link:active svg, .axadblock #contact .file .axadblock-link:active svg, #contact .file .btn:focus svg, #contact .file .axadblock .axadblock-link:focus svg, .axadblock #contact .file .axadblock-link:focus svg {
    stroke: #000; }

#contact #g-recaptcha {
  transform: scale(0.86);
  transform-origin: 0 0; }
  @media (max-width: 1199.98px) {
    #contact #g-recaptcha {
      transform: scale(0.7); } }
  @media (max-width: 991.98px) {
    #contact #g-recaptcha {
      transform: scale(0.91); } }
  @media (max-width: 767.98px) {
    #contact #g-recaptcha {
      transform: scale(1); } }

#contact .ts-wrapper {
  padding: 0; }

@media (min-width: 768px) {
  #prod-top {
    margin-top: 5rem; } }

#prod-top .product_cover_thumbnails_wrapper {
  margin-bottom: 2rem; }
  @media (min-width: 992px) {
    #prod-top .product_cover_thumbnails_wrapper {
      position: -webkit-sticky;
      position: sticky;
      top: 100px;
      height: 100%; } }

#prod-top .product-cover {
  margin-bottom: 0.625rem; }
  @media (min-width: 992px) {
    #prod-top .product-cover {
      margin-bottom: 4.375rem; } }
  #prod-top .product-cover img, #prod-top .product-cover video {
    width: 100%;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
    @media (min-width: 992px) {
      #prod-top .product-cover img, #prod-top .product-cover video {
        max-width: 586px; } }

#prod-top .images-container {
  overflow: hidden;
  width: 100%;
  position: relative; }
  #prod-top .images-container #product-images {
    padding: 0 20px;
    width: 100%; }
    #prod-top .images-container #product-images:not(.swiper-initialized) .swiper-slide img {
      aspect-ratio: 1/1;
      width: 71px; }
    #prod-top .images-container #product-images .swiper-button-prev,
    #prod-top .images-container #product-images .swiper-button-next {
      --swiper-navigation-size: 24px; }
  #prod-top .images-container li {
    padding: 0 0 2px;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1/1; }
    #prod-top .images-container li::before, #prod-top .images-container li::after {
      content: '';
      display: block;
      position: absolute;
      background: transparent;
      border-top: 2px solid transparent;
      border-left: 2px solid transparent;
      top: 0;
      left: 0;
      width: 0;
      height: 0;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      pointer-events: none;
      z-index: 1; }
    #prod-top .images-container li::after {
      border-top: 0;
      border-left: 0;
      border-right: 2px solid transparent;
      border-bottom: 2px solid transparent;
      top: auto;
      left: auto;
      bottom: 0;
      right: 0; }
    #prod-top .images-container li:hover::before, #prod-top .images-container li:hover::after, #prod-top .images-container li.active::before, #prod-top .images-container li.active::after {
      width: 100%;
      height: 100%;
      border-color: #000; }
    @media (max-width: 991.98px) {
      #prod-top .images-container li.active::before, #prod-top .images-container li.active::after {
        display: none; } }
    #prod-top .images-container li img, #prod-top .images-container li video {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
      @media (max-width: 991.98px) {
        #prod-top .images-container li img, #prod-top .images-container li video {
          width: 100%;
          height: auto;
          max-width: 100%;
          max-height: 100%;
          aspect-ratio: 1/1; } }
    #prod-top .images-container li a {
      display: inline-block;
      height: 100%;
      width: 100%; }
      @media (max-width: 991.98px) {
        #prod-top .images-container li a {
          width: 100%; } }

#prod-top .page_header {
  position: relative; }

#prod-top .product_wishlist_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10; }
  #prod-top .product_wishlist_wrapper .wrap_allert .allert_note {
    right: 0;
    left: auto;
    transform: none; }

#prod-top .wishlist {
  padding: 0;
  margin: 0 !important; }
  #prod-top .wishlist .wl-checked svg *, #prod-top .wishlist:hover svg * {
    fill: #2866e8; }
  #prod-top .wishlist svg {
    width: 30px;
    height: 30px; }
    #prod-top .wishlist svg * {
      stroke-width: initial; }

#prod-top h1 {
  text-align: left;
  font-variation-settings: "wght" 500;
  color: #000;
  font-size: 2rem;
  line-height: 1.2;
  width: 80%;
  font-weight: 500;
  font-family: "Source Code Pro", sans-serif; }

#prod-top .product-review-right .trustbeautyreviews-product-extrablock {
  padding: 0; }

#prod-top .product-review-right #spr_list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }

#prod-top .product-review-right .rating-star-display {
  display: inline-block;
  margin-right: 1rem;
  font-size: 16px !important; }
  #prod-top .product-review-right .rating-star-display a {
    height: 20px; }
  #prod-top .product-review-right .rating-star-display svg {
    width: 22px;
    height: 22px;
    margin: 0 -3px;
    fill: #000; }
    #prod-top .product-review-right .rating-star-display svg polygon {
      stroke: #000; }

#prod-top .product-review-right .go-review {
  margin-left: 5px;
  display: inline-block;
  vertical-align: bottom;
  font-size: 0.75rem;
  color: #000;
  text-decoration: underline; }

#prod-top #product-description-short p, #prod-top #readmore {
  display: inline;
  font-variation-settings: "wght" 400;
  color: #6c757d;
  font-size: 0.875rem;
  margin: 0; }

.product_features {
  margin-top: 20px; }
  .product_features ul li {
    padding: 10px 0;
    border-bottom: 1px solid #dddddd; }
    .product_features ul li:first-child {
      border-top: 1px solid #dddddd; }
    .product_features ul li strong,
    .product_features ul li a {
      color: #000;
      font-variation-settings: "wght" 700;
      font-family: "Montserrat Classic", sans-serif;
      font-size: 0.875rem; }
    .product_features ul li a {
      text-decoration: none;
      position: relative;
      background-image: linear-gradient(#000, #000);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 100% 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      .product_features ul li a:hover, .product_features ul li a.active {
        text-decoration: none;
        background-size: 0% 1px; }
      .product_features ul li a.reversed {
        background-size: 0% 1px; }
        .product_features ul li a.reversed:hover, .product_features ul li a.reversed.active {
          background-size: 100% 1px; }
    .product_features ul li span, .product_features ul li span.btn, .product_features ul li .axadblock span.axadblock-link, .axadblock .product_features ul li span.axadblock-link {
      margin-left: 0.5rem;
      background: #000;
      line-height: 1;
      min-height: auto;
      border: #000;
      color: #fff;
      font-variation-settings: "wght" 500;
      font-size: 0.75rem;
      padding: 0.5rem;
      cursor: auto;
      white-space: nowrap;
      display: inline-block; }
      @media (max-width: 991.98px) {
        .product_features ul li span, .product_features ul li span.btn, .product_features ul li .axadblock span.axadblock-link, .axadblock .product_features ul li span.axadblock-link {
          margin-top: 0.5rem; } }

.product_feature.hiddenProgram {
  display: none; }

.product_feature.type_de_produit {
  font-size: 0.875rem;
  color: #000;
  line-height: 1.2;
  font-variation-settings: "wght" 500;
  text-transform: uppercase;
  border: 0 !important;
  padding: 0; }
  @media (max-width: 991.98px) {
    .product_feature.type_de_produit {
      font-size: 0.75rem; } }

.product_feature.programme {
  padding: 10px 0; }
  @media (min-width: 768px) {
    .product_feature.programme strong:last-of-type {
      float: right; } }

.product_feature.conditionnement {
  border: 0;
  padding: 10px 0; }
  .product_feature.conditionnement span {
    text-transform: uppercase;
    font-variation-settings: "wght" 600;
    color: #000; }
  .product_feature.conditionnement strong {
    color: #666666; }

.product-prices p {
  margin-bottom: 0; }

.product-prices .product-price {
  display: inline-block;
  margin-bottom: 0; }
  .product-prices .product-price:before {
    content: "|";
    margin: 0 5px;
    font-variation-settings: "wght" 400; }
  .product-prices .product-price .discount-amount,
  .product-prices .product-price .discount-percentage {
    font-size: 0.875rem; }
  .product-prices .product-price .price {
    font-size: 0.875rem; }
    .product-prices .product-price .price.has-discount {
      margin-right: 5px;
      font-variation-settings: "wght" 700; }

.product-prices .product-discount {
  display: inline-block;
  text-decoration: line-through;
  font-size: 0.875rem;
  margin-right: 5px;
  margin-bottom: 0; }

.product-add-to-cart {
  margin-top: 1rem;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .product-add-to-cart .product-quantity {
    display: none;
    height: 50px;
    width: 150px;
    margin-right: 10px;
    z-index: 1;
    position: relative;
    border: 1px solid #000; }
    .product-add-to-cart .product-quantity.disabled {
      border-color: #dddddd; }
      .product-add-to-cart .product-quantity.disabled * {
        cursor: not-allowed; }
    .product-add-to-cart .product-quantity input {
      text-align: center;
      border: 0;
      color: #000;
      height: 100%; }
    .product-add-to-cart .product-quantity .input-group-btn-vertical {
      display: none; }
    .product-add-to-cart .product-quantity .button-quantity {
      border: none;
      background: none;
      cursor: pointer;
      padding: 0;
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
      .product-add-to-cart .product-quantity .button-quantity.btn-more {
        right: 15px; }
      .product-add-to-cart .product-quantity .button-quantity.btn-less {
        left: 15px; }
      .product-add-to-cart .product-quantity .button-quantity:focus, .product-add-to-cart .product-quantity .button-quantity:active, .product-add-to-cart .product-quantity .button-quantity:hover {
        outline: none; }
      .product-add-to-cart .product-quantity .button-quantity svg {
        width: 16px;
        height: 16px; }
        .product-add-to-cart .product-quantity .button-quantity svg polyline {
          stroke: #000; }
  .product-add-to-cart #add-to-cart {
    width: 100%; }
  .product-add-to-cart .add-to-cart {
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-transform: uppercase;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding-inline: 10px; }

#product div#loyalty {
  margin-top: 1rem;
  border: solid 1px #f5f5f5;
  color: #000;
  padding: 8px;
  background-color: #f5f5f5; }
  #product div#loyalty a {
    display: inline-block;
    position: relative;
    background-image: linear-gradient(#666666, #666666);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    #product div#loyalty a:hover, #product div#loyalty a.active {
      text-decoration: none;
      background-size: 100% 1px; }
    #product div#loyalty a.reversed {
      background-size: 100% 1px; }
      #product div#loyalty a.reversed:hover, #product div#loyalty a.reversed.active {
        background-size: 0% 1px; }

.btn.diagnostic_link, .axadblock .diagnostic_link.axadblock-link {
  margin-top: 1rem;
  text-transform: none;
  font-variation-settings: "wght" 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }
  .btn.diagnostic_link:before, .axadblock .diagnostic_link.axadblock-link:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    background-color: #2866e8;
    margin-right: 5px; }
  .btn.diagnostic_link:hover:before, .axadblock .diagnostic_link.axadblock-link:hover:before {
    background-color: #fff; }

#sticky-add-to-cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s ease-in-out; }
  #sticky-add-to-cart.sticky {
    transform: translateY(0); }
  @media (max-width: 991.98px) {
    #sticky-add-to-cart {
      display: none; } }
  #sticky-add-to-cart .product {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: 10px; }
  #sticky-add-to-cart .product-name {
    font-variation-settings: "wght" 400;
    margin-bottom: 0;
    font-family: "Source Code Pro", sans-serif; }
  #sticky-add-to-cart .add-to-cart {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    min-height: 50px; }

@keyframes appear {
  from {
    transform: translateY(100%); } }

#product-reassurance {
  border: 1px solid #ced4da;
  margin-top: 1rem; }
  #product-reassurance svg {
    display: none; }
  #product-reassurance .swiper-wrapper {
    -ms-flex-align: center;
        align-items: center; }
  #product-reassurance .swiper-slide > div {
    max-width: calc(100% - 100px); }
  #product-reassurance div > div {
    color: #000;
    padding: 0.5rem;
    display: -ms-flexbox;
    display: flex;
    text-align: left; }
    #product-reassurance div > div strong {
      color: #000;
      margin-right: 0.25rem; }
    #product-reassurance div > div br {
      display: none; }
    #product-reassurance div > div p {
      display: inline-block;
      line-height: 1;
      margin: 0;
      font-variation-settings: "wght" 300; }
  #product-reassurance .swiper-pagination {
    right: 0;
    left: auto;
    bottom: 0;
    padding-right: 0.5rem;
    padding-bottom: 0.25rem;
    text-align: right;
    width: 100px;
    background: white;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: end;
        justify-content: end; }

.snackeet > div {
  margin-top: 20px; }

.section_toggle_wrapper {
  margin-top: 1rem; }

.section-toggle {
  color: #000; }
  .section-toggle#description {
    scroll-margin-top: 60px; }
    .section-toggle#description ul {
      list-style: disc;
      padding: 1rem; }
  .section-toggle .title {
    position: relative;
    color: #000;
    cursor: pointer;
    display: block;
    padding: 0.6rem 0 0.7rem;
    font-variation-settings: "wght" 700;
    font-size: 1rem;
    line-height: 24px;
    text-align: left;
    margin-bottom: 0;
    letter-spacing: normal;
    font-family: "Montserrat", sans-serif; }
    .section-toggle .title svg,
    .section-toggle .title img {
      display: block;
      width: 20px;
      height: 20px;
      position: absolute;
      right: 0;
      top: 50%;
      transform-origin: center;
      transform: translateY(-50%);
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
    .section-toggle .title.active svg,
    .section-toggle .title.active img {
      transform: translateY(-50%) rotate(180deg); }
  .section-toggle .content {
    margin: 0.5rem 0 1rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: 0fr;
        grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
    transition: grid-template-rows 0.3s ease-out, -ms-grid-rows 0.3s ease-out; }
    .section-toggle .content > * {
      overflow: hidden; }
    .section-toggle .content.active {
      -ms-grid-rows: 1fr;
          grid-template-rows: 1fr; }

.featured-products h2 {
  color: #2866e8; }

.featured-products .swiper:not(.swiper-initialized) .swiper-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }

.featured-products .swiper:not(.swiper-initialized) .swiper-slide {
  -ms-flex: 0 0 calc(100% / 4 - 20px);
      flex: 0 0 calc(100% / 4 - 20px); }
  @media (max-width: 1199.98px) {
    .featured-products .swiper:not(.swiper-initialized) .swiper-slide {
      -ms-flex: 0 0 calc(100% / 1.5 - 20px);
          flex: 0 0 calc(100% / 1.5 - 20px); } }

#product {
  overflow: initial; }
  #product #breadcrumb {
    position: absolute;
    left: 0;
    top: auto;
    z-index: 10;
    width: 100%;
    color: #666666; }
    #product #breadcrumb * {
      color: #666666; }
    #product #breadcrumb ol {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px; }
    @media (max-width: 991.98px) {
      #product #breadcrumb {
        display: none; } }
  #product #product-availability-date,
  #product .product-out-of-stock,
  #product #product-quantities {
    display: none; }
  @media (max-width: 767.98px) {
    #product #footer {
      padding-bottom: 70px; } }

.js-mailalert .btn, .js-mailalert .axadblock .axadblock-link, .axadblock .js-mailalert .axadblock-link {
  height: auto;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  line-height: 1.5;
  white-space: normal; }

/*
.product-customization {
	margin-bottom: 3rem;

	form {
		width: 50%;

		label {
			vertical-align: middle;
		}

		small {
			display: block;
		}

		textarea {
			width: 100%;
			vertical-align: middle;
			padding: 5px 10px;
			margin: 5px 0;
		}

		> button {
			margin-top: 1rem;
		}
	}
}
*/
#prod-center > .row > [class*="col"] > *:not(:empty) {
  margin-bottom: 4rem; }
  @media (max-width: 991.98px) {
    #prod-center > .row > [class*="col"] > *:not(:empty) {
      margin-bottom: 0; } }

#prod-center .page-heading {
  font-size: 2.875rem;
  font-variation-settings: "wght" 400;
  color: #2866e8;
  text-transform: uppercase;
  font-weight: 400; }
  @media (max-width: 767.98px) {
    #prod-center .page-heading {
      font-size: 1.875rem; } }

#prod-center .product-list, #prod-center .swiper {
  margin-top: 2rem; }
  @media (max-width: 991.98px) {
    #prod-center .product-list .product, #prod-center .swiper .product {
      max-width: none;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; } }

#prod-center .product-faq-wrapper > p {
  font-family: "Source Code Pro", sans-serif;
  font-size: 1rem;
  font-variation-settings: "wght" 500;
  margin-bottom: 20px; }

@media (max-width: 767.98px) {
  #prod-center .product_push .axtile-title {
    font-size: 1.5rem;
    max-width: 210px;
    margin: 0 auto 10px; } }

.product-additional-info #spr {
  display: none !important; }

#index #home-new {
  padding: 6.25rem 0 3.75rem; }
  @media (max-width: 767.98px) {
    #index #home-new {
      padding: 2.5rem 0; } }
  #index #home-new .home-selection__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 2.5rem; }
    @media (max-width: 767.98px) {
      #index #home-new .home-selection__header {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 1.5rem; } }
  #index #home-new .home-selection__heading {
    color: #2866e8; }
  #index #home-new .home-selection__list:not(.swiper-initialized) .swiper-wrapper {
    gap: 1.25rem; }
  @media (max-width: 991.98px) {
    #index #home-new .home-selection__list:not(.swiper-initialized) .swiper-slide {
      -ms-flex: 1;
          flex: 1; } }
  @media (max-width: 767.98px) {
    #index #home-new .home-selection__list.swiper-initialized {
      margin-right: -1.25rem; } }
  #index #home-new .home-selection__list .product-miniature .product-thumbnail {
    aspect-ratio: 0.74;
    height: auto;
    padding-bottom: 0; }
    #index #home-new .home-selection__list .product-miniature .product-thumbnail img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  #index #home-new .home-selection__list .product-miniature .product-list-actions .btn span, #index #home-new .home-selection__list .product-miniature .product-list-actions .axadblock .axadblock-link span, .axadblock #index #home-new .home-selection__list .product-miniature .product-list-actions .axadblock-link span {
    display: -ms-flexbox;
    display: flex;
    font-size: 0.75rem; }

#index #home-new .page-heading {
  margin-bottom: 2rem; }
  #index #home-new .page-heading h1 {
    margin-bottom: 0.375rem;
    color: #000; }

#index .axtile:not(.swiper-slide):not(.home-edito) {
  transform: translateY(3.125rem);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
  #index .axtile:not(.swiper-slide):not(.home-edito).active {
    transform: translateY(0); }
    #index .axtile:not(.swiper-slide):not(.home-edito).active.product_push {
      margin-bottom: 0; }
      @media (max-width: 991.98px) {
        #index .axtile:not(.swiper-slide):not(.home-edito).active.product_push {
          transform: none;
          margin: 0 -1.25rem 3.125rem; } }

.home-science,
.home-reviews {
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
  -ms-flex-align: center;
      align-items: center;
  max-width: 100%;
  padding: 7.5rem 0; }
  @media (max-width: 991.98px) {
    .home-science,
    .home-reviews {
      -ms-flex-direction: column;
          flex-direction: column;
      gap: 2.5rem; } }
  @media (max-width: 767.98px) {
    .home-science,
    .home-reviews {
      padding: 2.5rem 0; } }
  .home-science__visual, .home-science__content,
  .home-reviews__visual,
  .home-reviews__content {
    -ms-flex: 1;
        flex: 1; }
  .home-science__visual,
  .home-reviews__visual {
    position: relative; }
    .home-science__visual::after,
    .home-reviews__visual::after {
      content: '';
      display: block;
      width: 11.25rem;
      height: 11.25rem;
      background: url("../img/svg/tampon.svg") center/contain no-repeat;
      position: absolute;
      top: 0;
      right: 0;
      transform: translate(50%, -20%); }
      @media (max-width: 991.98px) {
        .home-science__visual::after,
        .home-reviews__visual::after {
          width: 5rem;
          height: 5rem;
          right: -0.625rem;
          top: auto;
          bottom: -2.5rem;
          transform: none; } }
  .home-science__img,
  .home-reviews__img {
    display: block;
    width: 100%; }
    .home-science__img img,
    .home-reviews__img img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      display: block; }
      @media (max-width: 767.98px) {
        .home-science__img img,
        .home-reviews__img img {
          margin-left: 1.25rem;
          padding-left: 1.875rem; } }
  .home-science__stripe,
  .home-reviews__stripe {
    display: block;
    position: absolute;
    width: 25rem;
    height: 6.5625rem;
    background: #2866e8; }
    @media (max-width: 767.98px) {
      .home-science__stripe,
      .home-reviews__stripe {
        height: 3.125rem; } }
    .home-science__stripe--1,
    .home-reviews__stripe--1 {
      left: -7.5rem;
      top: 8%;
      z-index: -1; }
    .home-science__stripe--2,
    .home-reviews__stripe--2 {
      left: -4.0625rem;
      top: 50%;
      transform: translateY(-50%);
      z-index: -2; }
      @media (max-width: 767.98px) {
        .home-science__stripe--2,
        .home-reviews__stripe--2 {
          left: 2.1875rem; } }
    .home-science__stripe--3,
    .home-reviews__stripe--3 {
      left: -7.5rem;
      bottom: 8%; }
      @media (max-width: 767.98px) {
        .home-science__stripe--3,
        .home-reviews__stripe--3 {
          left: -50%; } }
  .home-science__content,
  .home-reviews__content {
    padding: 2rem 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.25rem; }
    @media (min-width: 768px) {
      .home-science__content,
      .home-reviews__content {
        padding-left: 6.25rem; } }
  .home-science__title,
  .home-reviews__title {
    color: #2866e8;
    text-wrap: balance; }
  .home-science__subtitle,
  .home-reviews__subtitle {
    font-family: "Source Code Pro", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.65;
    color: #000; }
  .home-science__body,
  .home-reviews__body {
    color: #000; }
    .home-science__body p,
    .home-reviews__body p {
      margin-bottom: 0;
      font-size: 1rem;
      line-height: 1.3;
      font-weight: 300; }
      .home-science__body p:last-child,
      .home-reviews__body p:last-child {
        margin-bottom: 0; }
    .home-science__body strong,
    .home-science__body b,
    .home-reviews__body strong,
    .home-reviews__body b {
      font-variation-settings: "wght" 700;
      font-size: 1.25rem;
      margin-top: 1.25rem;
      display: block; }

.home-reviews {
  padding: 0; }
  @media (max-width: 767.98px) {
    .home-reviews {
      display: block; } }
  .home-reviews__visual {
    padding: 6.25rem;
    background: var(--img-reviews) no-repeat center/cover; }
    @media (max-width: 991.98px) {
      .home-reviews__visual {
        padding: 1.5rem; } }
    @media (max-width: 767.98px) {
      .home-reviews__visual {
        margin: 0 -1.25rem; } }
    .home-reviews__visual::after {
      content: none; }
    @media (max-width: 767.98px) {
      .home-reviews__visual img {
        margin-left: 0;
        padding-left: 0; } }
  .home-reviews__body {
    margin-bottom: 3.75rem; }
  .home-reviews__cta {
    text-align: right;
    font-size: 1.875rem;
    color: #2866e8;
    font-family: "Anton", sans-serif;
    text-transform: uppercase; }
    @media (max-width: 767.98px) {
      .home-reviews__cta {
        font-size: 1.125rem; } }
  .home-reviews__trustt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    .home-reviews__trustt img:first-child {
      height: 1rem; }
    .home-reviews__trustt img:last-child {
      height: 1.25rem; }

.home-edito {
  background: #2866e8;
  box-shadow: 0 0 0 100vmax #2866e8;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  padding: 6.25rem 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2.5rem; }
  @media (max-width: 991.98px) {
    .home-edito {
      padding: 5rem 0; } }
  @media (max-width: 991.98px) {
    .home-edito {
      -ms-flex-direction: column;
          flex-direction: column; } }
  .home-edito__headline {
    -ms-flex: 1;
        flex: 1; }
  .home-edito__aside {
    -ms-flex: 1;
        flex: 1; }
  .home-edito__title {
    color: #fff;
    margin: 0;
    text-align: left;
    text-wrap: balance; }
  .home-edito__body {
    font-size: 0.875rem;
    color: #fff;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-family: "Source Code Pro", sans-serif;
    font-weight: 500; }
    @media (min-width: 992px) {
      .home-edito__body {
        padding-left: 1.25rem;
        font-size: 1.125rem; } }
    .home-edito__body p {
      margin-bottom: 0.5rem; }
      .home-edito__body p:last-child {
        margin-bottom: 0; }
    .home-edito__body strong,
    .home-edito__body b {
      font-variation-settings: "wght" 700; }
  .home-edito__tagline {
    font-family: "Anton", sans-serif;
    font-size: 1.875rem;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
    text-align: right; }
    @media (max-width: 991.98px) {
      .home-edito__tagline {
        font-size: 1.125rem; } }
  .home-edito__cta {
    margin-top: 1.5rem; }

.home-selection-cols {
  background: #2866e8;
  box-shadow: 0 0 0 100vmax #2866e8;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  padding: 6.25rem 0; }
  @media (max-width: 991.98px) {
    .home-selection-cols {
      padding: 3.75rem 0; } }
  .home-selection-cols__inner {
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
    -ms-flex-align: start;
        align-items: flex-start; }
    @media (max-width: 991.98px) {
      .home-selection-cols__inner {
        -ms-flex-direction: column;
            flex-direction: column;
        gap: 2rem; } }
  .home-selection-cols__aside {
    -ms-flex: 1;
        flex: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 1.25rem;
    position: -webkit-sticky;
    position: sticky;
    top: 5rem;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    @media (max-width: 991.98px) {
      .home-selection-cols__aside {
        position: static; } }
  .home-selection-cols__heading {
    color: #fff; }
  .home-selection-cols__subtitle {
    font-family: "Source Code Pro", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #fff; }
  .home-selection-cols__list {
    -ms-flex: 1;
        flex: 1;
    align-self: flex-start;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    overflow-x: auto;
    -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; }
    .home-selection-cols__list::-webkit-scrollbar {
      display: none; }
    @media (max-width: 991.98px) {
      .home-selection-cols__list {
        -ms-grid-columns: (80vw)[2];
            grid-template-columns: repeat(2, 80vw);
        padding-bottom: 1rem; } }
    .home-selection-cols__list .product-miniature {
      scroll-snap-align: start;
      color: #fff; }
      .home-selection-cols__list .product-miniature .product-thumbnail {
        aspect-ratio: 0.74;
        height: auto;
        padding-bottom: 0; }
        .home-selection-cols__list .product-miniature .product-thumbnail img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; }
      .home-selection-cols__list .product-miniature .avgrating img {
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1); }
      .home-selection-cols__list .product-miniature .product-manu,
      .home-selection-cols__list .product-miniature .product-name,
      .home-selection-cols__list .product-miniature .product-description,
      .home-selection-cols__list .product-miniature .nbreviews,
      .home-selection-cols__list .product-miniature .product-price-and-shipping .price {
        color: #fff; }
      .home-selection-cols__list .product-miniature .add-to-cart {
        color: #fff;
        border-color: #fff; }
        .home-selection-cols__list .product-miniature .add-to-cart img {
          -webkit-filter: brightness(0) invert(1);
                  filter: brightness(0) invert(1); }
        .home-selection-cols__list .product-miniature .add-to-cart:hover {
          background-color: #fff !important;
          color: #2866e8 !important; }
          .home-selection-cols__list .product-miniature .add-to-cart:hover img {
            -webkit-filter: none !important;
                    filter: none !important; }
        @media (max-width: 991.98px) {
          .home-selection-cols__list .product-miniature .add-to-cart span {
            font-size: 0.75rem;
            display: -ms-flexbox;
            display: flex; } }
  @media (max-width: 767.98px) {
    .home-selection-cols .swiper {
      display: block;
      width: calc(100% + 1.25rem); } }

#reassurance {
  margin-top: 0; }
  #reassurance .reassurance-wrap {
    margin-top: 0; }

.ui-front {
  z-index: 9998 !important; }

section.checkout-step {
  border-top: 1px solid #dddddd;
  padding: 1.2rem 0; }
  section.checkout-step:last-child {
    border-bottom: 1px solid #dddddd; }
  section.checkout-step div[data-axseo-oldtag="h1"] {
    font-variation-settings: "wght" 700;
    text-decoration: none;
    color: #ced4da;
    position: relative;
    cursor: pointer; }
    @media (max-width: 575.98px) {
      section.checkout-step div[data-axseo-oldtag="h1"] {
        font-size: 2.0125rem; } }
    @media (min-width: 576px) and (max-width: 767.98px) {
      section.checkout-step div[data-axseo-oldtag="h1"] {
        font-size: 2.3rem; } }
    @media (min-width: 768px) and (max-width: 991.98px) {
      section.checkout-step div[data-axseo-oldtag="h1"] {
        font-size: 2.5875rem; } }
    @media (min-width: 992px) {
      section.checkout-step div[data-axseo-oldtag="h1"] {
        font-size: 2.875rem; } }
    section.checkout-step div[data-axseo-oldtag="h1"] .step-number {
      margin-right: 10px;
      border-radius: 50%;
      font-size: 1.5rem;
      position: relative;
      width: 43px;
      height: 43px;
      line-height: 43px;
      text-align: center;
      display: inline-block;
      vertical-align: 2px;
      background: #ced4da;
      color: #FFF; }
  section.checkout-step .content {
    padding-top: 2rem;
    margin-left: 55px;
    margin-top: -13px; }
    @media (max-width: 991.98px) {
      section.checkout-step .content {
        margin-left: 0; } }
  section.checkout-step .content,
  section.checkout-step .done,
  section.checkout-step .step-edit {
    display: none; }
  section.checkout-step.-complete:not(.-current) div[data-axseo-oldtag="h1"] .step-number {
    background: #ced4da;
    color: #FFF; }
    section.checkout-step.-complete:not(.-current) div[data-axseo-oldtag="h1"] .step-number:before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 43px;
      height: 43px;
      display: inline-block;
      border-radius: 50%;
      background-color: #ced4da;
      background-image: url(../img/svg/nav-select.svg); }
  section.checkout-step.-current .content {
    display: block; }
  section.checkout-step.-current div[data-axseo-oldtag="h1"] {
    color: #000; }
    section.checkout-step.-current div[data-axseo-oldtag="h1"] .step-number {
      background: #000; }
  section.checkout-step.-current.-reachable.-complete .done,
  section.checkout-step.-current.-reachable.-complete .step-edit {
    display: none; }
  section.checkout-step.-current.-reachable.-complete .step-number {
    display: inline-block; }
  section.checkout-step.-current.-reachable.-complete .content {
    display: block; }
  section.checkout-step.-reachable.-complete div[data-axseo-oldtag="h1"] .step-edit {
    cursor: pointer;
    display: block;
    float: right;
    margin-right: 0.125rem; }
  section.checkout-step.-reachable.-complete .content {
    display: none; }

body.page-order #header-top {
  text-align: center;
  border: none;
  margin: 1.5rem 0 1rem; }
  body.page-order #header-top .header-logo {
    text-align: left; }

body.page-order .tunnel-info {
  font-variation-settings: "wght" 700;
  font-size: 1rem;
  color: #444444;
  line-height: 1.2;
  margin: 1.2rem 0; }

body.page-order #checkout-personal-information-step .form-footer [type='submit']:not(.btn) {
  display: block; }

body.page-order #checkout-personal-information-step #nav-create {
  margin: 0.3rem 0 2rem;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap; }
  body.page-order #checkout-personal-information-step #nav-create li {
    padding: 0; }
    body.page-order #checkout-personal-information-step #nav-create li .nav-link {
      padding: 0 20px;
      text-transform: uppercase;
      font-variation-settings: "wght" "wght" 600;
      color: #000;
      font-size: 0.75rem;
      transition: background-color .2s ease, color .2s ease; }
      body.page-order #checkout-personal-information-step #nav-create li .nav-link.active {
        background-color: #000;
        color: #fff; }
    body.page-order #checkout-personal-information-step #nav-create li:hover .nav-link {
      background-color: #000;
      color: #fff; }
    body.page-order #checkout-personal-information-step #nav-create li:last-child {
      margin-left: 1rem; }
      body.page-order #checkout-personal-information-step #nav-create li:last-child .nav-link {
        padding-left: 1rem; }
  @media (max-width: 767.98px) {
    body.page-order #checkout-personal-information-step #nav-create {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      body.page-order #checkout-personal-information-step #nav-create li {
        width: 100%; }
      body.page-order #checkout-personal-information-step #nav-create li:last-child {
        margin-left: 0;
        margin-top: 1rem; }
        body.page-order #checkout-personal-information-step #nav-create li:last-child .nav-link {
          padding-left: 0; } }
  @media (max-width: 575.98px) {
    body.page-order #checkout-personal-information-step #nav-create li .nav-link {
      padding: 0 10px; } }

body.page-order #checkout-personal-information-step .tab-content .choose-password {
  color: #000; }

body.page-order #checkout-personal-information-step .tab-content .radio-field {
  width: 100%; }
  body.page-order #checkout-personal-information-step .tab-content .radio-field span {
    width: 21%;
    float: left;
    padding-top: 10px; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-personal-information-step .tab-content .radio-field span {
        width: 100%; } }
  body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group {
    padding-left: 24px; }
    body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group label {
      width: auto;
      float: left;
      padding-top: 10px; }
      body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group label.custom-control-label:before, body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group label.custom-control-label:after {
        top: 10px; }
    body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group input,
    body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group .input-group, body.page-order #checkout-personal-information-step .tab-content .radio-field .form-group .ts-wrapper {
      width: auto;
      float: left; }

body.page-order #checkout-personal-information-step .tab-content .custom-checkbox {
  margin-left: 21%; }
  @media (max-width: 767.98px) {
    body.page-order #checkout-personal-information-step .tab-content .custom-checkbox {
      width: 100%; } }

body.page-order #checkout-personal-information-step .tab-content .form-inline {
  float: left; }

body.page-order #checkout-personal-information-step .tab-content .form-group {
  display: inline-block;
  width: 100%; }
  body.page-order #checkout-personal-information-step .tab-content .form-group label {
    width: 21%;
    float: left;
    padding-top: 10px; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-personal-information-step .tab-content .form-group label {
        width: 100%; } }
  body.page-order #checkout-personal-information-step .tab-content .form-group input,
  body.page-order #checkout-personal-information-step .tab-content .form-group .input-group, body.page-order #checkout-personal-information-step .tab-content .form-group .ts-wrapper {
    width: 51%;
    float: left; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-personal-information-step .tab-content .form-group input,
      body.page-order #checkout-personal-information-step .tab-content .form-group .input-group, body.page-order #checkout-personal-information-step .tab-content .form-group .ts-wrapper {
        width: 100%; } }

body.page-order #checkout-addresses-step .form-group {
  display: inline-block;
  width: 100%; }
  body.page-order #checkout-addresses-step .form-group label {
    width: 40%;
    float: left;
    padding-top: 10px; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-addresses-step .form-group label {
        width: 100%; } }
  body.page-order #checkout-addresses-step .form-group input,
  body.page-order #checkout-addresses-step .form-group .input-group, body.page-order #checkout-addresses-step .form-group .ts-wrapper {
    width: 51%;
    float: left; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-addresses-step .form-group input,
      body.page-order #checkout-addresses-step .form-group .input-group, body.page-order #checkout-addresses-step .form-group .ts-wrapper {
        width: 100%; } }
  @media (min-width: 992px) {
    body.page-order #checkout-addresses-step .form-group.form-address1 label {
      width: 19.5%; }
    body.page-order #checkout-addresses-step .form-group.form-address1 input {
      width: 76%; } }

body.page-order #checkout-addresses-step .select-field {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  @media (max-width: 767.98px) {
    body.page-order #checkout-addresses-step .select-field {
      display: inline-block;
      width: 100%; } }
  body.page-order #checkout-addresses-step .select-field > span {
    width: 40%;
    float: left;
    display: inline-block; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-addresses-step .select-field > span {
        width: 100%; } }
  body.page-order #checkout-addresses-step .select-field .select2, body.page-order #checkout-addresses-step .select-field .ts-wrapper {
    width: 51% !important;
    float: left;
    font-variation-settings: 'wght' normal; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-addresses-step .select-field .select2, body.page-order #checkout-addresses-step .select-field .ts-wrapper {
        width: 100% !important; } }

body.page-order #checkout-addresses-step .address-add {
  display: block;
  text-transform: uppercase;
  color: #666666;
  font-size: 1rem;
  font-variation-settings: "wght" 700;
  margin-bottom: 1rem; }

body.page-order #checkout-addresses-step .add-address-invoice {
  margin-bottom: 2rem;
  display: block; }

body.page-order #checkout-addresses-step .js-address-form .form-footer {
  margin-top: 2rem; }
  body.page-order #checkout-addresses-step .js-address-form .form-footer a.btn, body.page-order #checkout-addresses-step .js-address-form .form-footer .axadblock a.axadblock-link, .axadblock body.page-order #checkout-addresses-step .js-address-form .form-footer a.axadblock-link {
    margin-top: 2px; }

body.page-order #checkout-addresses-step .js-address-form .h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem; }

body.page-order #checkout-addresses-step #content {
  width: 100%; }
  @media (min-width: 992px) and (max-width: 1199.98px) {
    body.page-order #checkout-addresses-step #content {
      margin-right: 0; } }
  @media (max-width: 767.98px) {
    body.page-order #checkout-addresses-step #content {
      margin-right: 0; } }

@media (max-width: 991.98px) {
  body.page-order #checkout-addresses-step .back-shop {
    display: block; } }

@media (max-width: 767.98px) {
  body.page-order #checkout-addresses-step .back-shop.back-shop-hide {
    display: none; } }

body.page-order #checkout-delivery-step .delivery-option {
  background: #f5f5f5;
  cursor: pointer;
  margin: 0 0 1px 0; }
  body.page-order #checkout-delivery-step .delivery-option:hover {
    background: #dddddd; }
    body.page-order #checkout-delivery-step .delivery-option:hover label img {
      background: #f5f5f5; }
  body.page-order #checkout-delivery-step .delivery-option label {
    -ms-flex-align: center;
        align-items: center;
    padding: 30px 20px 30px 5px;
    transition: background-color 0.15s ease;
    margin-right: 0;
    margin-left: 0;
    font-variation-settings: 'wght' normal;
    width: 100%;
    cursor: pointer; }
    body.page-order #checkout-delivery-step .delivery-option label img {
      background: #dddddd; }
    body.page-order #checkout-delivery-step .delivery-option label > div {
      padding-left: 0; }
      body.page-order #checkout-delivery-step .delivery-option label > div.col-3 {
        padding-right: 10px; }
        @media (max-width: 767.98px) {
          body.page-order #checkout-delivery-step .delivery-option label > div.col-3 {
            padding: 0; } }
      body.page-order #checkout-delivery-step .delivery-option label > div.col-6 {
        padding-left: 10px; }
      body.page-order #checkout-delivery-step .delivery-option label > div:last-child {
        padding-right: 0; }
    body.page-order #checkout-delivery-step .delivery-option label:before, body.page-order #checkout-delivery-step .delivery-option label:after {
      top: 50%;
      left: 1.5rem; }
      @media (max-width: 767.98px) {
        body.page-order #checkout-delivery-step .delivery-option label:before, body.page-order #checkout-delivery-step .delivery-option label:after {
          left: 0.6rem; } }
    body.page-order #checkout-delivery-step .delivery-option label .carrier-name {
      display: block;
      font-size: 1rem;
      font-variation-settings: "wght" 500;
      color: #000; }
      @media (max-width: 767.98px) {
        body.page-order #checkout-delivery-step .delivery-option label .carrier-name {
          font-size: 0.875rem; } }
    @media (max-width: 767.98px) {
      body.page-order #checkout-delivery-step .delivery-option label > div {
        padding: 0 5px; }
      body.page-order #checkout-delivery-step .delivery-option label .carrier-delay {
        display: none; } }

body.page-order #checkout-delivery-step .carrier-extra-content {
  background: #f5f5f5;
  margin: 0 0 1px 0; }
  body.page-order #checkout-delivery-step .carrier-extra-content .colissimo-address-fields {
    display: none; }

body.page-order #checkout-delivery-step .colissimo-pickup-point-address {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin-bottom: 1px;
  -ms-flex-flow: column;
      flex-flow: column; }
  body.page-order #checkout-delivery-step .colissimo-pickup-point-address input[type=tel] {
    padding-right: 36px; }
  body.page-order #checkout-delivery-step .colissimo-pickup-point-address img {
    position: relative;
    top: -22px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-delivery-step .colissimo-pickup-point-address img {
        -ms-flex-item-align: end;
            align-self: flex-end; } }
  @media (max-width: 991.98px) {
    body.page-order #checkout-delivery-step .colissimo-pickup-point-address button {
      padding: 0;
      width: 100%; } }

body.page-order #checkout-delivery-step .order-options {
  padding-left: 20px; }
  body.page-order #checkout-delivery-step .order-options .custom-checkbox {
    position: relative;
    display: inline-block;
    margin-top: 1rem; }
    body.page-order #checkout-delivery-step .order-options .custom-checkbox input {
      position: absolute;
      left: 0;
      top: 3px; }

body.page-order #checkout-payment-step .payment-bg {
  background: #f5f5f5;
  margin-bottom: 1px;
  padding: 20px 20px 20px 45px;
  cursor: pointer; }
  body.page-order #checkout-payment-step .payment-bg:hover {
    background: #dddddd; }
  body.page-order #checkout-payment-step .payment-bg .payment-option {
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    -ms-flex-align: center;
        align-items: center;
    background-image: url(../img/payment/virement-bancaire-black.png);
    background-repeat: no-repeat;
    background-size: 166px 83px;
    background-position: 15px center; }
    @media (max-width: 767.98px) {
      body.page-order #checkout-payment-step .payment-bg .payment-option {
        background-size: 76px 38px;
        background-position: 15px center;
        padding: 15px 0; } }
    body.page-order #checkout-payment-step .payment-bg .payment-option label {
      font-size: 1rem;
      padding-left: 205px;
      cursor: pointer; }
      @media (max-width: 767.98px) {
        body.page-order #checkout-payment-step .payment-bg .payment-option label {
          padding-left: 100px;
          font-size: 0.875rem; } }
    body.page-order #checkout-payment-step .payment-bg .payment-option.ps_wirepayment {
      background-image: url(../img/payment/virement-bancaire-black.png); }
    body.page-order #checkout-payment-step .payment-bg .payment-option.ps_checkpayment {
      background-image: url(../img/payment/paiement-cheque-black.png); }
    body.page-order #checkout-payment-step .payment-bg .payment-option.paypal {
      background-image: url(../img/payment/paypal-black.png); }
    body.page-order #checkout-payment-step .payment-bg .payment-option.payplug-payment-option, body.page-order #checkout-payment-step .payment-bg .payment-option.cmcicpaiement {
      background-image: url(../img/payment/cb-black.png); }
    body.page-order #checkout-payment-step .payment-bg .payment-option.payplug {
      background-image: url(../img/payment/cb-visa-mastercard.png); }
  body.page-order #checkout-payment-step .payment-bg:first-of-type .payment-option.systempay {
    background-image: url(../img/payment/cb-visa-mastercard.png); }
  body.page-order #checkout-payment-step .payment-bg:nth-of-type(2) .payment-option.systempay {
    background-image: url(../img/payment/paypal.png); }
  body.page-order #checkout-payment-step .payment-bg .js-additional-information,
  body.page-order #checkout-payment-step .payment-bg .js-payment-option-form {
    padding: 15px 15px 0; }
  body.page-order #checkout-payment-step .payment-bg:has(.payplugApplePay_wrapper) .payment-option.payplug {
    background-image: url(../img/payment/apple-pay.png); }
  body.page-order #checkout-payment-step .payment-bg .payplugIntegratedPayment {
    background: #fff;
    padding: 20px; }

body.page-order #checkout-payment-step #conditions-to-approve {
  margin-top: 1rem; }

body.page-order #checkout-payment-step .axtunnelreadterms p {
  color: #000;
  font-variation-settings: "wght" 500; }

body.page-order #checkout-payment-step .axtunnelreadterms a {
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0% 1px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone; }
  body.page-order #checkout-payment-step .axtunnelreadterms a:hover, body.page-order #checkout-payment-step .axtunnelreadterms a.active {
    text-decoration: none;
    background-size: 100% 1px; }
  body.page-order #checkout-payment-step .axtunnelreadterms a.reversed {
    background-size: 100% 1px; }
    body.page-order #checkout-payment-step .axtunnelreadterms a.reversed:hover, body.page-order #checkout-payment-step .axtunnelreadterms a.reversed.active {
      background-size: 0% 1px; }

body.page-order .btn.continue, body.page-order .axadblock .continue.axadblock-link, .axadblock body.page-order .continue.axadblock-link {
  padding: 0 80px;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem; }
  @media (max-width: 767.98px) {
    body.page-order .btn.continue, body.page-order .axadblock .continue.axadblock-link, .axadblock body.page-order .continue.axadblock-link {
      width: calc(100% - 42px);
      position: fixed;
      bottom: 0;
      left: 21px;
      border: 2px solid #fff;
      z-index: 99999; } }

body.page-order #payment-confirmation {
  margin-top: 1.2rem; }
  @media (max-width: 767.98px) {
    body.page-order #payment-confirmation .btn, body.page-order #payment-confirmation .axadblock .axadblock-link, .axadblock body.page-order #payment-confirmation .axadblock-link {
      width: calc(100% - 42px);
      position: fixed;
      bottom: 10px;
      left: 21px;
      border: 2px solid #fff;
      z-index: 99999; } }

body.page-order .form-footer a {
  margin-right: 1rem; }

#order-confirmation {
  color: #000; }
  #order-confirmation .page-heading {
    text-align: left;
    padding-left: 60px;
    position: relative;
    margin-bottom: 0.5rem; }
    #order-confirmation .page-heading:before {
      content: '';
      position: absolute;
      display: inline-block;
      background: #fff;
      width: 45px;
      height: 45px;
      top: 0;
      left: 0;
      border-radius: 23px; }
    #order-confirmation .page-heading svg {
      width: 60px;
      height: 60px;
      position: absolute;
      left: -7px;
      top: -7px; }
      #order-confirmation .page-heading svg polyline {
        stroke: #000; }
  #order-confirmation .page-footer {
    margin-top: 40px; }
  #order-confirmation .card {
    height: 100%;
    margin-bottom: 1.5rem; }
    @media (max-width: 767.98px) {
      #order-confirmation .card .card-title {
        font-size: 2rem; }
      #order-confirmation .card#order-details {
        margin-bottom: 40px;
        height: auto; } }
  #order-confirmation .conf-mail {
    margin-bottom: 2rem;
    padding-left: 60px; }
  #order-confirmation #conf-recap {
    margin-bottom: 2rem; }
    #order-confirmation #conf-recap .ax-tab-list {
      font-size: 1rem; }
    #order-confirmation #conf-recap .conf-iname {
      -ms-flex: 3;
          flex: 3;
      font-size: 1rem; }
      @media (max-width: 767.98px) {
        #order-confirmation #conf-recap .conf-iname {
          -ms-flex: 5;
              flex: 5; } }
      #order-confirmation #conf-recap .conf-iname span {
        margin-right: 1rem; }
    #order-confirmation #conf-recap .ax-tab-total {
      font-size: 1rem; }
    @media (max-width: 767.98px) {
      #order-confirmation #conf-recap .row.ax-tab-list {
        -ms-flex-direction: row;
            flex-direction: row; } }
    #order-confirmation #conf-recap ul.giftcard {
      font-size: 0.875rem;
      margin-top: 10px;
      display: -ms-grid;
      display: grid;
      gap: 5px; }
      #order-confirmation #conf-recap ul.giftcard > li:first-child, #order-confirmation #conf-recap ul.giftcard > li:last-child {
        display: none; }

#tunnel-reassurance > div {
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.875rem; }

#tunnel-reassurance p {
  margin: 0;
  font-size: 0.75rem;
  color: #000; }
  #tunnel-reassurance p strong {
    text-transform: uppercase;
    display: block;
    font-size: 0.875rem;
    font-variation-settings: "wght" 600;
    font-family: "Source Code Pro", sans-serif; }

#tunnel-reassurance svg {
  width: 40px;
  height: 40px; }

.colissimo-front-widget .widget_colissimo_grab td p, .colissimo-front-widget .widget_colissimo_detailsPDR td p {
  color: #000; }

.colissimo-front-widget .widget_colissimo_icone_coche {
  top: 0; }

.colissimo-front-widget .widget_colissimo_grise {
  opacity: 1; }

.colissimo-front-widget .widget_colissimo_bouton_validation {
  background: #000;
  text-transform: uppercase;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  border: 1px solid #000;
  padding: 0 !important;
  border-radius: 0; }
  .colissimo-front-widget .widget_colissimo_bouton_validation p {
    color: white !important;
    font-size: 0.75rem; }
  .colissimo-front-widget .widget_colissimo_bouton_validation:hover {
    background: white; }
    .colissimo-front-widget .widget_colissimo_bouton_validation:hover p {
      color: #000 !important; }

/*
body[data-ax-step="checkout-personal-information-step"] {
	#content {
		> .row {
			> div {
				&.col-lg-8 {
					flex: 0 0 100%;
					max-width: 100%;
				}

				&.col-lg-4 {
					display: none;
				}
			}
		}
	}
}
*/
.form-group.form-city {
  position: relative; }

p.special-char {
  color: #791314;
  font-variation-settings: "wght" 600;
  font-size: 0.75rem;
  position: absolute;
  bottom: 0;
  margin: 0;
  transform: translateY(100%); }

#stores article .store-block {
  text-align: center;
  background: #f5f5f5;
  padding: 2rem 1rem;
  margin-bottom: 2rem; }
  #stores article .store-block .store-name {
    color: #000;
    font-size: 1.125rem;
    font-variation-settings: "wght" 700;
    margin-bottom: 7px; }

body .page-stores #search_geolocation {
  margin-bottom: 1rem; }
  @media (max-width: 575.98px) {
    body .page-stores #search_geolocation {
      margin-bottom: 0;
      margin-top: 1rem; } }

body .page-stores .stores-search {
  margin: 0 0 20px;
  padding-top: 0;
  position: relative;
  border: 1px solid #dddddd; }
  @media (max-width: 767.98px) {
    body .page-stores .stores-search {
      margin-top: 20px; } }
  body .page-stores .stores-search .col-auto {
    width: auto !important;
    margin: 0 !important; }
    body .page-stores .stores-search .col-auto:last-of-type {
      position: absolute;
      bottom: 0;
      right: 0; }
  body .page-stores .stores-search #search_locations {
    margin: 0;
    padding: 0 20px 0 10px;
    background: none;
    min-height: 44px;
    border: 0; }
    body .page-stores .stores-search #search_locations svg {
      width: 30px;
      height: 30px; }
    body .page-stores .stores-search #search_locations [stroke] {
      stroke: #000; }
  body .page-stores .stores-search #address_input {
    border: 0; }

body .page-stores .store-filters {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem; }
  @media (min-width: 768px) {
    body .page-stores .store-filters {
      margin-bottom: 2.5rem;
      margin-top: 2.5rem; } }
  body .page-stores .store-filters .btn-filters {
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-align: center;
        align-items: center;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 576px) {
      body .page-stores .store-filters .btn-filters {
        gap: 30px;
        -ms-flex-pack: center;
            justify-content: center; } }
  body .page-stores .store-filters .custom-control {
    padding: 0;
    margin: 0; }
    body .page-stores .store-filters .custom-control .custom-control-label:before, body .page-stores .store-filters .custom-control .custom-control-label:after {
      display: none; }
    body .page-stores .store-filters .custom-control .custom-control-label {
      border: 1px solid #000;
      padding: 11px 30px; }
      body .page-stores .store-filters .custom-control .custom-control-label.active {
        background: #000;
        color: #fff; }

body .page-stores .stores-list {
  overflow-y: auto;
  border: 0;
  height: 520px; }
  @media (max-width: 991.98px) {
    body .page-stores .stores-list {
      height: auto; } }
  body .page-stores .stores-list .list-group-item {
    color: #000;
    background-color: transparent !important;
    border-color: #dddddd;
    border-top: 0;
    width: 95%; }
    body .page-stores .stores-list .list-group-item:hover {
      color: #000 !important; }
    body .page-stores .stores-list .list-group-item > div {
      padding: 0; }
  body .page-stores .stores-list .store-name {
    text-transform: uppercase; }
  body .page-stores .stores-list .store-link svg {
    background: #fff !important; }
  body .page-stores .stores-list::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5; }
  body .page-stores .stores-list::-webkit-scrollbar-thumb {
    background-color: #000000; }

#module-axstorelocator-listing #breadcrumb {
  z-index: 2; }
  @media (max-width: 767.98px) {
    #module-axstorelocator-listing #breadcrumb {
      display: none; } }

#module-axstorelocator-listing .header-store {
  position: relative;
  min-height: 275px; }
  @media (min-width: 576px) {
    #module-axstorelocator-listing .header-store {
      transform: translateY(-37px);
      margin-bottom: 2rem; } }
  @media (max-width: 575.98px) {
    #module-axstorelocator-listing .header-store {
      min-height: 250px;
      margin-bottom: 2rem; } }
  #module-axstorelocator-listing .header-store .black_cover {
    background-color: #000;
    width: 100vw;
    height: 100%;
    top: 0;
    position: absolute;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: -1;
    padding-top: 20px; }
    @media (min-width: 576px) {
      #module-axstorelocator-listing .header-store .black_cover {
        padding-top: 92px; } }
    @media (max-width: 575.98px) {
      #module-axstorelocator-listing .header-store .black_cover {
        display: -ms-grid;
        display: grid;
        place-items: center; } }
  #module-axstorelocator-listing .header-store .page-heading {
    color: #fff;
    line-height: 1; }
    @media (max-width: 767.98px) {
      #module-axstorelocator-listing .header-store .page-heading {
        text-align: left; } }
    @media (min-width: 576px) {
      #module-axstorelocator-listing .header-store .page-heading {
        margin-bottom: 1rem;
        font-size: 3.125rem; } }
  #module-axstorelocator-listing .header-store p {
    color: #fff;
    font-variation-settings: "wght" 300;
    font-size: 1rem;
    line-height: 1.25; }
    @media (min-width: 576px) {
      #module-axstorelocator-listing .header-store p {
        text-align: center; } }
    #module-axstorelocator-listing .header-store p:last-child {
      font-size: 0.75rem; }

#cms.elementor-page #content ul, #cms.elementor-page .ybc-blog-wrapper-detail ul, #ybc_blog_page.elementor-page #content ul, #ybc_blog_page.elementor-page .ybc-blog-wrapper-detail ul {
  list-style: disc;
  padding-left: 20px; }

#cms.elementor-page #content a:not(.elementor-button-link), #cms.elementor-page .ybc-blog-wrapper-detail a:not(.elementor-button-link), #ybc_blog_page.elementor-page #content a:not(.elementor-button-link), #ybc_blog_page.elementor-page .ybc-blog-wrapper-detail a:not(.elementor-button-link) {
  text-decoration: underline; }

#cms.elementor-page #content b, #cms.elementor-page #content strong,
#cms.elementor-page .ybc-blog-wrapper-detail b, #cms.elementor-page .ybc-blog-wrapper-detail strong, #ybc_blog_page.elementor-page #content b, #ybc_blog_page.elementor-page #content strong,
#ybc_blog_page.elementor-page .ybc-blog-wrapper-detail b, #ybc_blog_page.elementor-page .ybc-blog-wrapper-detail strong {
  font-variation-settings: "wght" 600; }

#cms.elementor-page .ybc-blog-wrapper-detail .ybc-blog-tags-social ul,
#cms.elementor-page .ybc-blog-wrapper-detail .ybc-blog-related-posts ul,
#cms.elementor-page .ybc-blog-wrapper-detail #ybc-blog-related-products ul, #ybc_blog_page.elementor-page .ybc-blog-wrapper-detail .ybc-blog-tags-social ul,
#ybc_blog_page.elementor-page .ybc-blog-wrapper-detail .ybc-blog-related-posts ul,
#ybc_blog_page.elementor-page .ybc-blog-wrapper-detail #ybc-blog-related-products ul {
  list-style: none;
  padding-left: 0; }

#cms.elementor-page .ybc-blog-wrapper-detail .ybc-blog-tags-social a,
#cms.elementor-page .ybc-blog-wrapper-detail .ybc-blog-related-posts a,
#cms.elementor-page .ybc-blog-wrapper-detail #ybc-blog-related-products a, #ybc_blog_page.elementor-page .ybc-blog-wrapper-detail .ybc-blog-tags-social a,
#ybc_blog_page.elementor-page .ybc-blog-wrapper-detail .ybc-blog-related-posts a,
#ybc_blog_page.elementor-page .ybc-blog-wrapper-detail #ybc-blog-related-products a {
  text-decoration: none; }

#cms .ax-ce-slider .product-list-actions, #ybc_blog_page .ax-ce-slider .product-list-actions {
  opacity: 1;
  transform: translateY(0); }

#cms .ax-ce-slider .product-list-actions a.btn, #cms .ax-ce-slider .product-list-actions .axadblock a.axadblock-link, .axadblock #cms .ax-ce-slider .product-list-actions a.axadblock-link, #ybc_blog_page .ax-ce-slider .product-list-actions a.btn, #ybc_blog_page .ax-ce-slider .product-list-actions .axadblock a.axadblock-link, .axadblock #ybc_blog_page .ax-ce-slider .product-list-actions a.axadblock-link {
  display: -ms-flexbox;
  display: flex; }

#cms.elementor-page #content .trustbeautyreviews-products-listreviews a, #ybc_blog_page.elementor-page #content .trustbeautyreviews-products-listreviews a {
  text-decoration: none; }

@media screen and (max-width: 540px) {
  #cms .tingle-modal, #ybc_blog_page .tingle-modal {
    top: 100px; }
  #cms .tingle-modal-box__footer, #ybc_blog_page .tingle-modal-box__footer {
    display: -ms-flexbox;
    display: flex;
    padding: 1rem;
    -ms-flex-pack: distribute;
        justify-content: space-around; }
    #cms .tingle-modal-box__footer .btn.btn-primary, #cms .tingle-modal-box__footer #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img #cms .tingle-modal-box__footer .btn, #cms .tingle-modal-box__footer #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, #pagenotfound .page-not-found .notfound-img .axadblock #cms .tingle-modal-box__footer .axadblock-link, #cms .tingle-modal-box__footer .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img #cms .tingle-modal-box__footer .axadblock-link, #cms .tingle-modal-box__footer .axadblock .btn-primary.axadblock-link, .axadblock #cms .tingle-modal-box__footer .btn-primary.axadblock-link, #ybc_blog_page .tingle-modal-box__footer .btn.btn-primary, #ybc_blog_page .tingle-modal-box__footer #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img #ybc_blog_page .tingle-modal-box__footer .btn, #ybc_blog_page .tingle-modal-box__footer #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, #pagenotfound .page-not-found .notfound-img .axadblock #ybc_blog_page .tingle-modal-box__footer .axadblock-link, #ybc_blog_page .tingle-modal-box__footer .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img #ybc_blog_page .tingle-modal-box__footer .axadblock-link, #ybc_blog_page .tingle-modal-box__footer .axadblock .btn-primary.axadblock-link, .axadblock #ybc_blog_page .tingle-modal-box__footer .btn-primary.axadblock-link {
      padding: 0 30px; } }

@media screen and (min-width: 540px) {
  #cms .tingle-modal-box__footer, #ybc_blog_page .tingle-modal-box__footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center; } }

.ax-ce-slider .swiper-button {
  border: 0;
  background-image: none; }
  @media (max-width: 767.98px) {
    .ax-ce-slider .swiper-button::after {
      font-size: 24px; } }

#order-products .row.ax-tab-list > div:first-child {
  font-variation-settings: 'wght' normal; }
  #order-products .row.ax-tab-list > div:first-child span {
    font-size: 0.75rem;
    display: inline-block;
    margin-top: 3px; }

#history-list .row > div:last-child {
  max-width: 100px; }

#history-list .row.ax-tab-list {
  min-height: 85px; }

.ax-tab-total {
  -ms-flex-pack: end;
      justify-content: flex-end;
  height: 40px;
  margin: 0; }
  .ax-tab-total div {
    background: #f5f5f5;
    padding: 1rem; }
    @media (max-width: 767.98px) {
      .ax-tab-total div {
        padding: 1rem 10px; } }
  .ax-tab-total .tab-label {
    text-align: left !important;
    max-width: 200px !important; }
  .ax-tab-total .tab-total {
    font-size: 1rem;
    max-width: 200px !important; }
  .ax-tab-total.ax-tab-total-amount div {
    background: #dddddd; }
  .ax-tab-total.ax-tab-total-amount .tab-total {
    font-variation-settings: "wght" 700; }

#order-detail .h3,
#order-return .h3 {
  margin: 2rem 0 1rem; }

#order-detail #order-infos,
#order-detail #order-return-infos,
#order-return #order-infos,
#order-return #order-return-infos {
  background: #f5f5f5;
  padding: 2rem 1rem;
  margin: 1rem 0 2rem; }
  #order-detail #order-infos p,
  #order-detail #order-return-infos p,
  #order-return #order-infos p,
  #order-return #order-return-infos p {
    margin: 0; }
    #order-detail #order-infos p a,
    #order-detail #order-return-infos p a,
    #order-return #order-infos p a,
    #order-return #order-return-infos p a {
      color: #000; }
  #order-detail #order-infos .btn, #order-detail #order-infos .axadblock .axadblock-link, .axadblock #order-detail #order-infos .axadblock-link,
  #order-detail #order-return-infos .btn,
  #order-detail #order-return-infos .axadblock .axadblock-link,
  .axadblock #order-detail #order-return-infos .axadblock-link,
  #order-return #order-infos .btn,
  #order-return #order-infos .axadblock .axadblock-link,
  .axadblock #order-return #order-infos .axadblock-link,
  #order-return #order-return-infos .btn,
  #order-return #order-return-infos .axadblock .axadblock-link,
  .axadblock #order-return #order-return-infos .axadblock-link {
    font-size: 0.875rem; }
    @media (max-width: 767.98px) {
      #order-detail #order-infos .btn, #order-detail #order-infos .axadblock .axadblock-link, .axadblock #order-detail #order-infos .axadblock-link,
      #order-detail #order-return-infos .btn,
      #order-detail #order-return-infos .axadblock .axadblock-link,
      .axadblock #order-detail #order-return-infos .axadblock-link,
      #order-return #order-infos .btn,
      #order-return #order-infos .axadblock .axadblock-link,
      .axadblock #order-return #order-infos .axadblock-link,
      #order-return #order-return-infos .btn,
      #order-return #order-return-infos .axadblock .axadblock-link,
      .axadblock #order-return #order-return-infos .axadblock-link {
        margin-top: 1rem; } }

#order-detail #order-history,
#order-return #order-history {
  margin-bottom: 2rem; }
  #order-detail #order-history .step-list,
  #order-return #order-history .step-list {
    text-align: center; }

#sitemap .lvl_2 > li {
  margin-bottom: 1rem; }

#sitemap .lvl_2 h2 {
  margin-bottom: 1rem; }

#sitemap .lvl_3 > li {
  border-left: 1px solid #dddddd;
  margin-bottom: 1.5rem; }
  @media (max-width: 767.98px) {
    #sitemap .lvl_3 > li {
      margin-bottom: 0.5rem; } }
  #sitemap .lvl_3 > li:nth-child(4n+1) {
    border: none; }
  #sitemap .lvl_3 > li > a {
    font-variation-settings: "wght" 500; }

#sitemap .lvl_4, #sitemap lvl_5, #sitemap lvl_6 {
  padding-left: 15px; }

#category .PM_ASBlockOutput,
#module-pm_advancedsearch4-searchresults .PM_ASBlockOutput,
#module-pm_advancedsearch-searchresults .PM_ASBlockOutput,
body.advancedsearch-seo .PM_ASBlockOutput {
  padding-bottom: 30px; }
  #category .PM_ASBlockOutput .card,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .card,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .card,
  body.advancedsearch-seo .PM_ASBlockOutput .card {
    padding: 0;
    margin: 0;
    background: none; }
  #category .PM_ASBlockOutput .card-header,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .card-header,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .card-header,
  body.advancedsearch-seo .PM_ASBlockOutput .card-header {
    padding: 0;
    margin: 0;
    font-size: inherit; }
  #category .PM_ASBlockOutput .PM_ASearchTitle,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASearchTitle,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASearchTitle,
  body.advancedsearch-seo .PM_ASBlockOutput .PM_ASearchTitle {
    display: none; }
  #category .PM_ASBlockOutput .PM_ASBlockTitle,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASBlockTitle,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASBlockTitle,
  body.advancedsearch-seo .PM_ASBlockOutput .PM_ASBlockTitle {
    font-size: 1.5rem;
    font-variation-settings: "wght" 700;
    font-weight: 700; }
  #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup,
  body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup {
    padding-top: 5px;
    padding-bottom: 5px;
    margin: 0; }
    #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:first-child,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:first-child,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:first-child,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:first-child {
      margin: 0.8rem 0 0;
      border-top: 1px solid #dddddd; }
    #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle {
      position: relative;
      cursor: pointer;
      font-size: 1rem;
      margin: 0;
      padding: 1rem 0;
      text-align: left;
      color: #000;
      font-family: "Montserrat", sans-serif;
      font-variation-settings: "wght" 600; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle span,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle span,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle span,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle span {
        all: unset;
        letter-spacing: 0; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -12px;
        margin-right: -2px;
        background: url("../img/svg/nav-arrow-down.svg");
        width: 18px;
        height: 18px;
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected {
        border-bottom: none; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after {
          transform: rotate(180deg); }
        @media (max-width: 767.98px) {
          #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected .PM_ASCriterionsGroupName,
          #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected .PM_ASCriterionsGroupName,
          #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected .PM_ASCriterionsGroupName,
          body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected .PM_ASCriterionsGroupName {
            color: #fff; } }
    #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName {
      all: unset;
      letter-spacing: 0;
      font-size: 1rem;
      margin: 0;
      padding: 1rem 0;
      text-align: left;
      color: #000;
      font-family: "Montserrat", sans-serif;
      font-variation-settings: "wght" 600;
      font-weight: 600; }
      @media (max-width: 767.98px) {
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupName {
          font-variation-settings: "wght" 500;
          font-size: 0.875rem; } }
    #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsOutput,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsOutput,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsOutput,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsOutput {
      position: relative; }
    #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter {
      display: none;
      left: 0;
      top: 100%;
      width: 100%;
      padding: 0;
      z-index: 9;
      text-align: left;
      max-height: 230px;
      overflow-y: auto; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio input,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio input,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio input,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio input {
        display: none; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover label, #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover a,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover label,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover a,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover label,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover a,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover label,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio:hover a {
        font-variation-settings: "wght" 700; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        margin-bottom: 10px;
        font-size: 0.875rem;
        position: relative;
        cursor: pointer;
        font-variation-settings: "wght" 400; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::before,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::before,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::before,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::before {
          content: '';
          display: block;
          width: 16px;
          min-width: 16px;
          height: 16px;
          border: 1px solid #dddddd;
          margin-right: 10px; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after {
          content: '';
          position: absolute;
          left: 2px;
          top: 2px;
          background-image: url(../img/svg/nav-select.svg);
          background-size: cover;
          background-position: center center;
          height: 18px;
          width: 12px;
          display: none; }
          @media (max-width: 991.98px) {
            #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after,
            #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after,
            #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after,
            body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label::after {
              margin-left: 10px; } }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label.PM_ASLabelCheckboxSelected::after,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label.PM_ASLabelCheckboxSelected::after,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label.PM_ASLabelCheckboxSelected::after,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label.PM_ASLabelCheckboxSelected::after {
          display: block; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label a,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label a,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label a,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .radio label a {
          text-decoration: none;
          padding: 0;
          color: #000;
          font-variation-settings: "wght" 400; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .PM_ASCriterionNoChoice,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .PM_ASCriterionNoChoice,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .PM_ASCriterionNoChoice,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter .PM_ASCriterionNoChoice {
        padding: 0 20px; }
  #category .PM_ASBlockOutput .PM_ASSelections,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASSelections,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASSelections,
  body.advancedsearch-seo .PM_ASBlockOutput .PM_ASSelections {
    border: none;
    background: none; }
    #category .PM_ASBlockOutput .PM_ASSelections .active-filter-title,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASSelections .active-filter-title,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASSelections .active-filter-title,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASSelections .active-filter-title {
      display: none; }
    #category .PM_ASBlockOutput .PM_ASSelections > ul,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASSelections > ul,
    #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASSelections > ul,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASSelections > ul {
      padding: 0;
      margin-top: 2px; }
      #category .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink,
      #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink {
        margin-right: 15px;
        padding: 2px 5px 2px 24px;
        background: #dddddd;
        font-size: 0.75rem;
        border-radius: 2px;
        position: relative; }
        #category .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink:before,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink:before,
        #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink:before,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASSelections > ul .PM_ASSelectionsRemoveLink:before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          margin-top: -11px;
          background: url("../img/svg/nav-cross.svg");
          width: 22px;
          height: 22px; }
  #category .PM_ASBlockOutput .PM_ASResetSearch,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASResetSearch,
  #module-pm_advancedsearch-searchresults .PM_ASBlockOutput .PM_ASResetSearch,
  body.advancedsearch-seo .PM_ASBlockOutput .PM_ASResetSearch {
    display: none !important; }

@media (max-width: 991.98px) {
  #left-column {
    transform: translateX(-100vw);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    position: fixed; }
  #category.nav_active,
  #module-pm_advancedsearch4-searchresults.nav_active,
  body.advancedsearch-seo.nav_active {
    height: 100%;
    overflow: hidden; }
    #category.nav_active #ax-mobileui-top, #category.nav_active #header, #category.nav_active .filter-count,
    #module-pm_advancedsearch4-searchresults.nav_active #ax-mobileui-top,
    #module-pm_advancedsearch4-searchresults.nav_active #header,
    #module-pm_advancedsearch4-searchresults.nav_active .filter-count,
    body.advancedsearch-seo.nav_active #ax-mobileui-top,
    body.advancedsearch-seo.nav_active #header,
    body.advancedsearch-seo.nav_active .filter-count {
      display: none !important; }
    #category.nav_active #left-column,
    #module-pm_advancedsearch4-searchresults.nav_active #left-column,
    body.advancedsearch-seo.nav_active #left-column {
      transform: translateX(0);
      z-index: 99;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      overflow: hidden;
      display: block !important;
      margin: 0;
      padding: 0;
      overflow-y: auto;
      border: none; }
      #category.nav_active #left-column .card,
      #module-pm_advancedsearch4-searchresults.nav_active #left-column .card,
      body.advancedsearch-seo.nav_active #left-column .card {
        overflow-y: inherit; }
        #category.nav_active #left-column .card .card-header,
        #module-pm_advancedsearch4-searchresults.nav_active #left-column .card .card-header,
        body.advancedsearch-seo.nav_active #left-column .card .card-header {
          display: block; }
    #category.nav_active .PM_ASBlockOutput,
    #module-pm_advancedsearch4-searchresults.nav_active .PM_ASBlockOutput,
    body.advancedsearch-seo.nav_active .PM_ASBlockOutput {
      height: 100%;
      display: block; }
    #category.nav_active .apply_filters, #category.nav_active .PM_ASResetSearch,
    #module-pm_advancedsearch4-searchresults.nav_active .apply_filters,
    #module-pm_advancedsearch4-searchresults.nav_active .PM_ASResetSearch,
    body.advancedsearch-seo.nav_active .apply_filters,
    body.advancedsearch-seo.nav_active .PM_ASResetSearch {
      display: block !important; }
  #category .as4-loader,
  #module-pm_advancedsearch4-searchresults .as4-loader,
  body.advancedsearch-seo .as4-loader {
    display: none !important; }
  #category .PM_ASBlockOutput,
  #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput,
  body.advancedsearch-seo .PM_ASBlockOutput {
    display: none; }
    #category .PM_ASBlockOutput .PM_ASSelectionsBlock,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASSelectionsBlock,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASSelectionsBlock {
      display: none !important; }
    #category .PM_ASBlockOutput .PM_ASearchTitle,
    #category .PM_ASBlockOutput .PM_ASBlockTitle,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASearchTitle,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASBlockTitle,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASearchTitle,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASBlockTitle {
      padding: 15px 10px;
      font-size: 1rem;
      border: none;
      position: relative;
      display: block;
      text-align: center; }
      #category .PM_ASBlockOutput .PM_ASearchTitle:after,
      #category .PM_ASBlockOutput .PM_ASBlockTitle:after,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASearchTitle:after,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASBlockTitle:after,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASearchTitle:after,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASBlockTitle:after {
        content: '';
        position: absolute;
        left: 0;
        margin-left: 17px;
        top: 50%;
        margin-top: -15px;
        background: url("../img/svg/nav-arrow-left-w.svg");
        width: 30px;
        height: 30px;
        display: inline-block; }
    #category .PM_ASBlockOutput .PM_ASCriterionsGroupList,
    #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList,
    body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList {
      margin: 0; }
      #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup,
      #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup,
      body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup {
        padding: 0; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle {
          border-bottom: 0 !important; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:last-child .PM_ASCriterionsGroupTitle,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:last-child .PM_ASCriterionsGroupTitle,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup:last-child .PM_ASCriterionsGroupTitle {
          border-bottom: 1px solid #dddddd; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle {
          padding: 15px 20px;
          position: relative;
          border: none;
          border-top: 1px solid #dddddd;
          font-variation-settings: "wght" 500;
          color: #000;
          font-size: 0.875rem; }
          #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after,
          #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after,
          body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle:after {
            content: '';
            position: absolute;
            right: 0;
            margin-right: 15px;
            top: 50%;
            background: url("../img/svg/nav-arrow-down.svg");
            width: 18px;
            height: 18px;
            margin-top: -9px;
            display: inline-block;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
          #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected,
          #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected,
          body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected {
            background: #000;
            color: #fff; }
            #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after,
            #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after,
            body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupTitle.selected:after {
              transform: rotate(180deg); }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASResetGroup,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASResetGroup,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASResetGroup {
          padding: 0 20px; }
        #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter,
        #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter,
        body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter {
          position: relative;
          display: none;
          left: auto;
          top: auto;
          width: auto;
          padding: 5px 20px;
          overflow-y: scroll;
          margin-bottom: 0;
          border: none;
          background: none; }
          #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li,
          #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li,
          body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li {
            position: relative; }
            #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li .PM_ASLabelCheckbox,
            #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li .PM_ASLabelCheckbox,
            body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li .PM_ASLabelCheckbox {
              font-size: 0.875rem !important;
              padding: 2px 0 2px 10px;
              text-transform: none; }
            #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li input,
            #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li input,
            body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li input {
              display: inline-block;
              position: absolute;
              left: 0;
              top: 50%;
              transform: translateY(-50%); }
            #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li a,
            #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li a,
            body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li a {
              padding: 9px 10px;
              font-variation-settings: "wght" 500 !important;
              background: none !important; }
            #category .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li label.PM_ASLabelCheckboxSelected a,
            #module-pm_advancedsearch4-searchresults .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li label.PM_ASLabelCheckboxSelected a,
            body.advancedsearch-seo .PM_ASBlockOutput .PM_ASCriterionsGroupList .PM_ASCriterionsGroup .PM_ASCriterionsGroupOuter li label.PM_ASLabelCheckboxSelected a {
              color: #000; }
  #category .as4-loader-blur,
  #module-pm_advancedsearch4-searchresults .as4-loader-blur,
  body.advancedsearch-seo .as4-loader-blur {
    -webkit-filter: none !important;
            filter: none !important; }
    #category .as4-loader-blur:before,
    #module-pm_advancedsearch4-searchresults .as4-loader-blur:before,
    body.advancedsearch-seo .as4-loader-blur:before {
      content: "";
      position: fixed;
      z-index: 15;
      top: calc(50% - 15px);
      left: calc(50% - 15px);
      border: 4px solid #dddddd;
      border-left-color: #fff;
      margin: 10px auto;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      animation: spinLoader 1s infinite linear; }
  @keyframes spinLoader {
    to {
      transform: rotate(360deg); } }
  #category .PM_ASResetSearch, #category .apply_filters,
  #module-pm_advancedsearch4-searchresults .PM_ASResetSearch,
  #module-pm_advancedsearch4-searchresults .apply_filters,
  body.advancedsearch-seo .PM_ASResetSearch,
  body.advancedsearch-seo .apply_filters {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    margin: 0;
    z-index: 99;
    width: 50%;
    height: 50px;
    line-height: 50px;
    border-radius: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 10px;
    font-variation-settings: "wght" 700;
    color: #000;
    border: none;
    background: #FFF;
    box-shadow: 5px 10px 35px rgba(0, 0, 0, 0.3); }
    #category .PM_ASResetSearch:before, #category .apply_filters:before,
    #module-pm_advancedsearch4-searchresults .PM_ASResetSearch:before,
    #module-pm_advancedsearch4-searchresults .apply_filters:before,
    body.advancedsearch-seo .PM_ASResetSearch:before,
    body.advancedsearch-seo .apply_filters:before {
      display: none; }
    #category .PM_ASResetSearch:hover, #category .apply_filters:hover,
    #module-pm_advancedsearch4-searchresults .PM_ASResetSearch:hover,
    #module-pm_advancedsearch4-searchresults .apply_filters:hover,
    body.advancedsearch-seo .PM_ASResetSearch:hover,
    body.advancedsearch-seo .apply_filters:hover {
      background: #000;
      color: #fff; }
  #category .apply_filters,
  #module-pm_advancedsearch4-searchresults .apply_filters,
  body.advancedsearch-seo .apply_filters {
    right: 0;
    left: auto;
    z-index: 100;
    cursor: pointer; } }

.apply_filters {
  display: none; }

#module-pm_advancedsearch-searchresults .toggle_filters, #module-pm_advancedsearch-searchresults .apply_filters {
  display: none !important; }

.axtile {
  position: relative; }
  .axtile strong,
  .axtile b {
    font-variation-settings: "wght" 700; }

.product-push {
  position: relative; }
  .product-push__bg {
    width: 100%; }
    .product-push__bg img {
      width: 100%; }
  .product-push__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff; }
  .product-push__title {
    margin-bottom: 20px; }

.programmes-wrapper {
  background: #2866e8;
  box-shadow: 0 0 0 100vmax #2866e8;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  padding: 3rem 0; }
  .programmes-wrapper .page-heading {
    position: relative;
    font-size: clamp(32px, 7vw, 64px); }
    @media (min-width: 768px) {
      .programmes-wrapper .page-heading {
        height: 1em; } }
    .programmes-wrapper .page-heading h2 {
      font-size: clamp(32px, 7vw, 64px);
      color: #fff; }
      @media (min-width: 768px) {
        .programmes-wrapper .page-heading h2 {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          white-space: nowrap; } }
      @media (max-width: 767.98px) {
        .programmes-wrapper .page-heading h2 {
          max-width: 270px;
          margin: 0 auto; } }
  .programmes-wrapper .programmes-content {
    --swiper-navigation-size: 1.5rem;
    --swiper-navigation-color: #fff;
    display: -ms-flexbox;
    display: flex;
    color: #fff;
    padding: 2rem 0;
    position: relative; }
    .programmes-wrapper .programmes-content .axtile-body a {
      color: #fff;
      font-size: 1rem; }
      .programmes-wrapper .programmes-content .axtile-body a:not(:first-child) {
        text-decoration: underline; }
      .programmes-wrapper .programmes-content .axtile-body a p {
        color: #fff;
        font-size: 1.125rem;
        text-decoration: none; }
    .programmes-wrapper .programmes-content > * {
      padding: 1rem 0; }
    @media (max-width: 991.98px) {
      .programmes-wrapper .programmes-content {
        display: block; } }
  .programmes-wrapper .swiper-button-prev {
    transform: translateX(-100%);
    left: -30px; }
    @media (max-width: 991.98px) {
      .programmes-wrapper .swiper-button-prev {
        display: none; } }
  .programmes-wrapper .swiper-button-next {
    transform: translateX(100%);
    right: -30px; }
    @media (max-width: 991.98px) {
      .programmes-wrapper .swiper-button-next {
        display: none; } }
  @media (max-width: 991.98px) {
    .programmes-wrapper .swiper {
      padding-bottom: 4rem; } }
  .programmes-wrapper .swiper-pagination {
    display: none; }
    @media (max-width: 991.98px) {
      .programmes-wrapper .swiper-pagination {
        display: block;
        text-align: left;
        bottom: 0;
        --swiper-theme-color: #fff
		; } }

.programmes-eno-intro {
  color: #fff;
  margin-right: 30px; }
  @media (max-width: 991.98px) {
    .programmes-eno-intro {
      margin-right: 0;
      text-align: center;
      margin-bottom: 1rem; } }
  .programmes-eno-intro a:hover {
    text-decoration: none; }
  .programmes-eno-intro .axtile-title {
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    color: #fff;
    font-size: 2rem;
    font-variation-settings: "wght" 600;
    line-height: 2rem;
    letter-spacing: 1.2px;
    font-family: "Anton", sans-serif; }
    @media (max-width: 991.98px) {
      .programmes-eno-intro .axtile-title {
        margin: 0 auto; } }
  .programmes-eno-intro .axtile-body {
    font-size: 1.125rem;
    color: #fff;
    margin: 1rem 0; }
  .programmes-eno-intro .btn, .programmes-eno-intro .axadblock .axadblock-link, .axadblock .programmes-eno-intro .axadblock-link {
    font-size: 0.875rem;
    color: #fff;
    padding: 0;
    line-height: 1;
    min-height: auto;
    height: auto;
    position: relative;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .programmes-eno-intro .btn:hover, .programmes-eno-intro .axadblock .axadblock-link:hover, .axadblock .programmes-eno-intro .axadblock-link:hover, .programmes-eno-intro .btn.active, .programmes-eno-intro .axadblock .active.axadblock-link, .axadblock .programmes-eno-intro .active.axadblock-link {
      text-decoration: none;
      background-size: 0% 1px; }
    .programmes-eno-intro .btn.reversed, .programmes-eno-intro .axadblock .reversed.axadblock-link, .axadblock .programmes-eno-intro .reversed.axadblock-link {
      background-size: 0% 1px; }
      .programmes-eno-intro .btn.reversed:hover, .programmes-eno-intro .axadblock .reversed.axadblock-link:hover, .axadblock .programmes-eno-intro .reversed.axadblock-link:hover, .programmes-eno-intro .btn.reversed.active, .programmes-eno-intro .axadblock .reversed.active.axadblock-link, .axadblock .programmes-eno-intro .reversed.active.axadblock-link {
        background-size: 100% 1px; }
    .programmes-eno-intro .btn:hover, .programmes-eno-intro .axadblock .axadblock-link:hover, .axadblock .programmes-eno-intro .axadblock-link:hover {
      background: none;
      text-decoration: none; }

[class*="programme_eno_"] {
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  height: auto; }
  [class*="programme_eno_"]::before, [class*="programme_eno_"]::after {
    content: '';
    display: block;
    position: absolute;
    background: transparent;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    z-index: 1; }
  [class*="programme_eno_"]::after {
    border-top: 0;
    border-left: 0;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    top: auto;
    left: auto;
    bottom: 0;
    right: 0; }
  [class*="programme_eno_"]:hover::before, [class*="programme_eno_"]:hover::after, [class*="programme_eno_"].active::before, [class*="programme_eno_"].active::after {
    width: 100%;
    height: 100%;
    border-color: #fff; }
  [class*="programme_eno_"]:hover .axtile-title {
    transform: translateY(-5px); }
  [class*="programme_eno_"]:hover img {
    transform: scale(1.05); }
  [class*="programme_eno_"] > a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    height: 100%; }
    [class*="programme_eno_"] > a:hover {
      text-decoration: none; }
  [class*="programme_eno_"] picture {
    overflow: hidden;
    height: 100%; }
  [class*="programme_eno_"] img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: scale(1);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important; }
  [class*="programme_eno_"] .axtile-heading {
    background: #fff; }
  [class*="programme_eno_"] .axtile-title {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-transform: uppercase;
    color: #2866e8;
    font-variation-settings: "wght" 600;
    font-size: 1.25rem;
    line-height: 1.5rem;
    letter-spacing: 1.3px;
    padding: 1rem;
    text-align: center;
    font-weight: 600; }

@media (min-width: 768px) {
  .programmes-eno-intro {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding-bottom: 28px !important; } }

.push_seo {
  margin: 4rem 0; }
  @media (max-width: 991.98px) {
    .push_seo {
      margin: 1rem 0; } }
  @media (max-width: 991.98px) {
    .push_seo .push_seo_img {
      -ms-flex-order: -1;
          order: -1; } }
  .push_seo a, .push_seo {
    -ms-flex-pack: justify;
        justify-content: space-between;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap; }
  .push_seo .page-heading {
    margin-block: 2rem 1rem;
    font-size: 2.875rem;
    text-transform: uppercase;
    font-variation-settings: "wght" 600;
    color: #2866e8;
    text-align: left;
    line-height: 1.1; }
    .push_seo .page-heading span {
      display: block;
      font-size: 2.875rem; }
      @media (max-width: 767.98px) {
        .push_seo .page-heading span {
          font-size: 2rem; } }
    @media (max-width: 991.98px) {
      .push_seo .page-heading {
        font-size: 2rem; } }
  .push_seo .axtile-body h3 {
    font-variation-settings: "wght" 500;
    font-size: 1rem;
    text-align: left;
    letter-spacing: -1px;
    font-family: "Source Code Pro", sans-serif;
    color: #000; }
    @media (max-width: 767.98px) {
      .push_seo .axtile-body h3 {
        font-size: 0.875rem;
        line-height: 1.5; } }
  .push_seo .btn, .push_seo .axadblock .axadblock-link, .axadblock .push_seo .axadblock-link {
    margin-top: 2rem; }

#home-selection-pills .page-heading {
  font-size: clamp(2.5rem, 4.3vw, 2.875rem);
  margin-bottom: 1.625rem; }

.selection-pills-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 3rem; }
  @media (max-width: 767.98px) {
    .selection-pills-list {
      max-width: 250px;
      margin: 0 auto; } }
  .selection-pills-list li {
    text-transform: uppercase;
    font-variation-settings: "wght" 600;
    font-size: 1rem;
    letter-spacing: 0.96px;
    font-family: "Source Code Pro", sans-serif;
    color: #000;
    cursor: pointer;
    position: relative;
    background-image: linear-gradient(#2866e8, #2866e8);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 0 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    margin: 1rem 1rem 0; }
    .selection-pills-list li:hover, .selection-pills-list li.active {
      text-decoration: none;
      background-size: 100% 1px; }
    .selection-pills-list li.reversed {
      background-size: 100% 1px; }
      .selection-pills-list li.reversed:hover, .selection-pills-list li.reversed.active {
        background-size: 0 1px; }
    @media (min-width: 768px) {
      .selection-pills-list li {
        margin: 0; } }
    .selection-pills-list li.active {
      color: #2866e8; }
    .selection-pills-list li.isActive {
      position: relative;
      background-image: linear-gradient(#000, #000);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 100% 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      .selection-pills-list li.isActive:hover, .selection-pills-list li.isActive.active {
        text-decoration: none;
        background-size: 0 1px; }
      .selection-pills-list li.isActive.reversed {
        background-size: 0 1px; }
        .selection-pills-list li.isActive.reversed:hover, .selection-pills-list li.isActive.reversed.active {
          background-size: 100% 1px; }

.selection-pills-wrapper {
  display: -ms-flexbox;
  display: flex;
  height: 0;
  opacity: 0;
  visibility: hidden;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: opacity 0.3s ease-in-out; }
  @media (max-width: 991.98px) {
    .selection-pills-wrapper {
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; } }
  .selection-pills-wrapper > div {
    padding: 20px; }
    @media (max-width: 991.98px) {
      .selection-pills-wrapper > div {
        padding: 20px 0; } }
  .selection-pills-wrapper .product-list .product-miniature {
    margin-bottom: 0; }
    .selection-pills-wrapper .product-list .product-miniature #spr_list {
      display: none; }
  .selection-pills-wrapper .home_push_selection, .selection-pills-wrapper .product {
    transform: translateY(50px);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
    transition: all .75s ease-in-out; }
    .selection-pills-wrapper .home_push_selection:nth-child(1), .selection-pills-wrapper .product:nth-child(1) {
      transition-delay: calc(1s * 0.2); }
    .selection-pills-wrapper .home_push_selection:nth-child(2), .selection-pills-wrapper .product:nth-child(2) {
      transition-delay: calc(2s * 0.2); }
    .selection-pills-wrapper .home_push_selection:nth-child(3), .selection-pills-wrapper .product:nth-child(3) {
      transition-delay: calc(3s * 0.2); }
    .selection-pills-wrapper .home_push_selection:nth-child(4), .selection-pills-wrapper .product:nth-child(4) {
      transition-delay: calc(4s * 0.2); }
  .selection-pills-wrapper.isActive {
    display: -ms-flexbox;
    display: flex;
    opacity: 1;
    height: auto;
    visibility: visible; }
    .selection-pills-wrapper.isActive .home_push_selection, .selection-pills-wrapper.isActive .product {
      -webkit-filter: blur(0);
              filter: blur(0);
      opacity: 1;
      transform: translateY(0); }
  .selection-pills-wrapper .swiper-wrapper {
    -ms-flex-flow: row wrap;
        flex-flow: row wrap; }
    @media (max-width: 991.98px) {
      .selection-pills-wrapper .swiper-wrapper {
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap; } }
    .selection-pills-wrapper .swiper-wrapper .product {
      padding: 20px; }
      @media (max-width: 991.98px) {
        .selection-pills-wrapper .swiper-wrapper .product {
          padding: 20px 0; } }

.home_push_selection {
  width: 100%;
  position: relative; }
  .home_push_selection img {
    width: 100%;
    display: block; }
  .home_push_selection .axtile-content {
    position: absolute;
    top: 0;
    padding: 2.3rem 2.5rem; }
  .home_push_selection .axtile-title {
    text-align: left;
    color: #fff;
    font-family: "Source Code Pro", sans-serif; }
    @media (max-width: 767.98px) {
      .home_push_selection .axtile-title {
        letter-spacing: 5px; } }
  .home_push_selection .axtile-body {
    color: #fff;
    font-size: 1.125rem;
    font-variation-settings: "wght" 500;
    max-width: 20ch; }

.listing-bottom #spr_list {
  margin-left: -2px;
  margin-bottom: 10px; }
  .listing-bottom #spr_list .average_text {
    background: none;
    font-size: 0.75rem !important;
    display: none; }
    .listing-bottom #spr_list .average_text .rating {
      display: none; }

#spr_list .rating-star-display {
  margin-right: 4px;
  display: -ms-flexbox;
  display: flex; }
  #spr_list .rating-star-display input {
    display: none; }
    #spr_list .rating-star-display input + label.product-block-half {
      margin: 0 !important; }
    #spr_list .rating-star-display input + label.half {
      display: none !important;
      margin: 0 !important; }
    #spr_list .rating-star-display input + label.product-block, #spr_list .rating-star-display input + label.product-block-half {
      width: 25px !important;
      height: 25px;
      background-image: url(../img/svg/nav-star-blank-yellow.svg);
      background-size: cover;
      display: block;
      cursor: pointer; }
      #spr_list .rating-star-display input + label.product-block:before, #spr_list .rating-star-display input + label.product-block-half:before {
        content: ""; }
      .listing-bottom #spr_list .rating-star-display input + label.product-block, .listing-bottom #spr_list .rating-star-display input + label.product-block-half {
        width: 20px !important;
        height: 20px; }
      #spr_list .rating-star-display input + label.product-block:hover, #spr_list .rating-star-display input + label.product-block.checked, #spr_list .rating-star-display input + label.product-block-half:hover, #spr_list .rating-star-display input + label.product-block-half.checked {
        background-image: url(../img/svg/nav-star-checked-yellow.svg);
        color: #000 !important; }

#spr_list .average_text {
  position: relative;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 1px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  text-decoration: none;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-decoration: none; }
  #spr_list .average_text:hover, #spr_list .average_text.active {
    text-decoration: none;
    background-size: 0% 1px; }
  #spr_list .average_text.reversed {
    background-size: 0% 1px; }
    #spr_list .average_text.reversed:hover, #spr_list .average_text.reversed.active {
      background-size: 100% 1px; }
  #spr_list .average_text:hover {
    text-decoration: none; }
  #spr_list .average_text .rating {
    display: none; }

.img_review_wrapper img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover; }

@media (max-width: 767.98px) {
  .img_review_wrapper {
    display: none; } }

#spr_reviews_list_footer {
  border: 0;
  scroll-margin-top: 60px; }
  #spr_reviews_list_footer .title {
    display: block; }
    @media (min-width: 992px) {
      #spr_reviews_list_footer .title {
        display: none; } }
  #spr_reviews_list_footer .content {
    display: block; }
    @media (min-width: 768px) {
      #spr_reviews_list_footer .content {
        display: -ms-flexbox;
        display: flex; } }
  #spr_reviews_list_footer .reviews-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center; }
    @media (max-width: 991.98px) {
      #spr_reviews_list_footer .reviews-wrapper {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }
    #spr_reviews_list_footer .reviews-wrapper .form-control {
      width: 100% !important; }
    #spr_reviews_list_footer .reviews-wrapper .ts-control:after {
      right: 5px !important; }
    #spr_reviews_list_footer .reviews-wrapper .btn.btn-sm, #spr_reviews_list_footer .reviews-wrapper .btn-group-sm > .btn, #spr_reviews_list_footer .reviews-wrapper .axadblock .btn-group-sm > .axadblock-link, .axadblock #spr_reviews_list_footer .reviews-wrapper .btn-group-sm > .axadblock-link, #spr_reviews_list_footer .reviews-wrapper .axadblock .btn-sm.axadblock-link, .axadblock #spr_reviews_list_footer .reviews-wrapper .btn-sm.axadblock-link {
      line-height: 42px; }
  #spr_reviews_list_footer .rating-star-display {
    display: inline-block; }
  #spr_reviews_list_footer .review_container {
    padding-left: 0 !important; }
  #spr_reviews_list_footer .average_text {
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
    position: relative;
    background-image: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    text-decoration: none; }
    #spr_reviews_list_footer .average_text:hover, #spr_reviews_list_footer .average_text.active {
      text-decoration: none;
      background-size: 0% 1px; }
    #spr_reviews_list_footer .average_text.reversed {
      background-size: 0% 1px; }
      #spr_reviews_list_footer .average_text.reversed:hover, #spr_reviews_list_footer .average_text.reversed.active {
        background-size: 100% 1px; }
    #spr_reviews_list_footer .average_text:hover {
      text-decoration: none; }
    #spr_reviews_list_footer .average_text .rating {
      display: none; }

#spr_review_details > .btn-primary, #pagenotfound .page-not-found .notfound-img #spr_review_details > .btn, #pagenotfound .page-not-found .notfound-img .axadblock #spr_review_details > .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img #spr_review_details > .axadblock-link {
  margin: 1rem 0 0 auto;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  #spr_review_details > .btn-primary img, #pagenotfound .page-not-found .notfound-img #spr_review_details > .btn img, #pagenotfound .page-not-found .notfound-img .axadblock #spr_review_details > .axadblock-link img, .axadblock #pagenotfound .page-not-found .notfound-img #spr_review_details > .axadblock-link img {
    width: 20px; }

#spr_review_details #result_product_page .filter_reviews {
  display: none; }

#spr_review_details #spr_list {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  margin-bottom: 2rem; }
  @media (max-width: 767.98px) {
    #spr_review_details #spr_list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: column;
          flex-flow: column; } }
  #spr_review_details #spr_list .average_text {
    -ms-flex-order: -1;
        order: -1;
    background: none; }
  #spr_review_details #spr_list .rating {
    all: unset;
    display: inline-block;
    font-size: 2rem; }
  #spr_review_details #spr_list .total-rating {
    display: inline-block;
    all: unset;
    font-variation-settings: "wght" 300; }

#spr_review_details .filter_reviews {
  margin-block: 1rem; }
  #spr_review_details .filter_reviews .form-control {
    padding: 0;
    width: 70%;
    margin: 0 auto;
    border-color: #000; }
  #spr_review_details .filter_reviews .ts-control {
    height: 100%;
    -ms-flex-line-pack: center;
        align-content: center;
    background: #fff;
    border: 0;
    color: #000;
    line-height: 1;
    cursor: pointer; }
    #spr_review_details .filter_reviews .ts-control input {
      display: none !important; }
  #spr_review_details .filter_reviews .ts-dropdown {
    margin-top: 0;
    width: calc(100% + 2px);
    left: -1px;
    border-color: #000; }
    #spr_review_details .filter_reviews .ts-dropdown option {
      line-height: 20px; }
    #spr_review_details .filter_reviews .ts-dropdown .active {
      background: #000;
      color: #fff; }

#spr_review_details .no-reviews {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column; }
  #spr_review_details .no-reviews .btn-primary, #spr_review_details .no-reviews #pagenotfound .page-not-found .notfound-img .btn, #pagenotfound .page-not-found .notfound-img #spr_review_details .no-reviews .btn, #spr_review_details .no-reviews #pagenotfound .page-not-found .notfound-img .axadblock .axadblock-link, #pagenotfound .page-not-found .notfound-img .axadblock #spr_review_details .no-reviews .axadblock-link, #spr_review_details .no-reviews .axadblock #pagenotfound .page-not-found .notfound-img .axadblock-link, .axadblock #pagenotfound .page-not-found .notfound-img #spr_review_details .no-reviews .axadblock-link {
    display: inline-block;
    margin: 1rem auto;
    padding: 10px 40px; }

#spr div.review_container {
  min-height: auto; }

#spr div .review_text {
  border: 0;
  padding: 0;
  margin: 10px 0;
  color: #000;
  min-height: auto;
  font-size: 0.875rem; }

#spr span.review_customer {
  color: #000; }

#result_product_page {
  margin-bottom: 1rem; }
  #result_product_page #bt_see_more_product {
    margin-top: 1rem; }
  #result_product_page .review_container img {
    width: 20px; }
  #result_product_page .review_container .review_title {
    margin-left: 4px;
    vertical-align: middle;
    font-size: 0.875rem;
    font-variation-settings: "wght" 700;
    color: #000; }

#spr .rating-star-display > label.product-block-half {
  margin-left: -5px !important; }

#spr .tab-content .review-details {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap; }

#spr .tab-content .review-detail {
  margin: 1rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 0 calc(50% - 2rem);
      flex: 0 0 calc(50% - 2rem); }
  @media (max-width: 991.98px) {
    #spr .tab-content .review-detail {
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; } }
  #spr .tab-content .review-detail .review-info img {
    width: 20px; }

#spr .tab-content .review-product {
  margin-right: 20px;
  max-width: 125px;
  min-width: 125px; }
  #spr .tab-content .review-product img {
    display: block; }
  #spr .tab-content .review-product a {
    font-variation-settings: "wght" 700; }

#spr div.review_title {
  font-variation-settings: "wght" 700;
  color: #000; }

#spr .pagination ul {
  display: -ms-flexbox;
  display: flex; }
  #spr .pagination ul .disabled img {
    opacity: 0.4;
    cursor: not-allowed; }
  #spr .pagination ul img {
    width: 20px; }
  #spr .pagination ul li {
    margin: 0 10px; }
    #spr .pagination ul li a {
      font-size: 1rem;
      width: 30px;
      height: 30px;
      line-height: 30px;
      color: #000;
      display: block; }
    #spr .pagination ul li.current a {
      color: #fff;
      background: #000; }

.review-img img {
  display: block;
  margin: auto; }

body#module-allinone_rewards-rewards #content,
body#module-allinone_rewards-sponsorship #content {
  background: none;
  box-shadow: none;
  color: #666666;
  font-size: 0.875rem; }
  @media (max-width: 767.98px) {
    body#module-allinone_rewards-rewards #content,
    body#module-allinone_rewards-sponsorship #content {
      padding: 0; } }

@media (max-width: 767.98px) {
  body#module-allinone_rewards-rewards #rewards_sponsorship ul li:last-child,
  body#module-allinone_rewards-sponsorship #rewards_sponsorship ul li:last-child {
    display: none; } }

body#module-allinone_rewards-rewards #fancyconfirm_cancel,
body#module-allinone_rewards-sponsorship #fancyconfirm_cancel {
  color: #000; }

#rewards_sponsorship #sponsorship_text {
  color: #000;
  padding: 0; }
  #rewards_sponsorship #sponsorship_text div {
    margin-top: 1rem; }

#rewards_sponsorship #sponsorship_form {
  color: #000; }

#axblockcms {
  background: none;
  padding: 20px 0; }
  #axblockcms .card-header {
    padding-left: 20px;
    padding-right: 20px;
    text-transform: none; }
  #axblockcms .card-body > ul > li > a {
    color: #000;
    text-transform: uppercase;
    display: block;
    padding: 12px 20px 10px;
    border-bottom: 1px solid #dddddd;
    text-decoration: none; }
  #axblockcms .card-body > ul > li.active > a, #axblockcms .card-body > ul > li:hover > a {
    color: #FFF;
    background: #fff;
    border-color: transparent; }
  #axblockcms .card-body > ul > li > ul > li > a {
    color: #000;
    text-transform: uppercase;
    display: block;
    padding: 12px 20px 10px 40px;
    border-bottom: 1px solid #dddddd; }
  #axblockcms .card-body > ul > li > ul > li.active > a {
    font-variation-settings: 'wght' bold; }

#ax-mobileui-cart img {
  width: 30px; }

#ax-mobileui-cart a span {
  display: none; }

.axadblock {
  margin-bottom: 2.5rem; }
  .axadblock a {
    display: block;
    position: relative; }
  .axadblock a > div {
    inset: 0;
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: end;
        justify-content: end;
    padding: 2rem; }
    @media (max-width: 767.98px) {
      .axadblock a > div {
        display: none; } }
  .axadblock .axadblock-title {
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
    font-size: 1.5rem;
    color: #fff;
    font-variation-settings: "wght" 700; }
    @media (max-width: 767.98px) {
      .axadblock .axadblock-title {
        font-size: 1.125rem; } }
  @media (max-width: 767.98px) {
    .axadblock .axadblock-link {
      font-size: 0.75rem;
      padding: 0 10px;
      white-space: normal;
      line-height: 1.2;
      min-width: 120px;
      display: -ms-grid;
      display: grid;
      place-items: center; } }
  .axadblock:hover .axadblock-link {
    background: #000;
    color: #fff;
    border-color: #000; }

.product-cover {
  position: relative; }

.ribbons_block {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-align: start;
      align-items: start; }
  @media (max-width: 991.98px) {
    .ribbons_block {
      top: 10px;
      left: 10px; } }
  .ribbons_block .ribbon {
    background: #000;
    color: #fff;
    margin-bottom: 15px;
    padding: 1px 8px;
    display: inline-block;
    font-size: 1.125rem; }
    .ribbons_block .ribbon[style*="#fffff"] {
      border: 1px solid #000;
      color: #000; }

.product-miniature .ribbons_block {
  position: absolute;
  top: 0;
  left: 0;
  -ms-flex-align: start;
      align-items: start;
  text-align: left; }
  .product-miniature .ribbons_block .ribbon {
    margin-bottom: 1px;
    font-size: 0.875rem; }
    @media (max-width: 991.98px) {
      .product-miniature .ribbons_block .ribbon {
        font-size: 0.75rem; } }
    .product-miniature .ribbons_block .ribbon img {
      opacity: 1;
      position: static;
      height: 20px;
      width: auto; }

#home-top {
  position: relative; }
  @media (min-width: 768px) {
    #home-top::after {
      content: '';
      padding-bottom: 36%;
      display: block; } }

#axslider-slider .left .slide-txt {
  margin: 0 auto 0 0; }

#axslider-slider .middle .slide-txt {
  margin: 0 auto; }
  #axslider-slider .middle .slide-txt * {
    text-align: center; }

#axslider-slider .right .slide-txt {
  margin: 0 0 0 auto; }
  #axslider-slider .right .slide-txt * {
    text-align: right; }

@media (max-width: 767.98px) {
  #axslider-slider {
    --swiper-theme-color: #fff; } }

@media (min-width: 768px) {
  #axslider-slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; } }

#axslider-slider .swiper-slide {
  position: relative;
  aspect-ratio: 1 / 2; }
  @media (min-width: 768px) {
    #axslider-slider .swiper-slide {
      min-height: 0; } }
  #axslider-slider .swiper-slide a {
    display: block;
    height: 100%; }
    #axslider-slider .swiper-slide a:hover {
      text-decoration: none; }
  #axslider-slider .swiper-slide picture {
    display: block;
    position: absolute;
    inset: 0; }
  #axslider-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    -o-object-position: top;
       object-position: top; }
  @media (min-width: 768px) {
    #axslider-slider .swiper-slide .row {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-line-pack: center;
          align-content: center; } }

#axslider-slider .container {
  position: absolute;
  inset: 0;
  margin: auto;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  z-index: 1; }
  @media (max-width: 991.98px) {
    #axslider-slider .container {
      -ms-flex-pack: start;
          justify-content: flex-start; } }

#axslider-slider .slide-txt {
  line-height: 1;
  padding: 20px 0;
  margin: 0 auto 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 1.25rem; }
  @media (min-width: 768px) {
    #axslider-slider .slide-txt {
      max-width: 50%;
      left: 0;
      position: relative; } }
  #axslider-slider .slide-txt.txt-white .ribbon-slide {
    border-color: #fff;
    color: #fff;
    background: none; }
  #axslider-slider .slide-txt.txt-white .axslider-title {
    color: #fff; }
    #axslider-slider .slide-txt.txt-white .axslider-title span {
      color: #fff; }
  #axslider-slider .slide-txt.txt-white .axslider-description {
    color: #fff; }

#axslider-slider .ribbon-slide {
  padding: 0.25rem 0.875rem;
  line-height: 1;
  color: var(--slide-color, #2866e8);
  background: transparent;
  border: 1px solid var(--slide-color, #2866e8);
  border-radius: 12.5rem;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 500; }

#axslider-slider .axslider-title {
  text-align: left;
  color: var(--slide-color, #2866e8); }
  #axslider-slider .axslider-title span {
    color: var(--slide-color, #2866e8); }
  #axslider-slider .axslider-title.color-white {
    color: #fff; }
  @media (max-width: 767.98px) {
    #axslider-slider .axslider-title {
      font-size: 2.5rem; } }

#axslider-slider .axslider-description {
  position: relative;
  padding: 0;
  color: var(--slide-color, #2866e8); }
  #axslider-slider .axslider-description.color-white {
    color: #fff; }
  #axslider-slider .axslider-description p {
    width: 100%;
    font-family: "Source Code Pro", sans-serif;
    font-variation-settings: 500;
    font-size: 1.125rem;
    line-height: 1.65;
    margin-bottom: 0; }
    @media (max-width: 767.98px) {
      #axslider-slider .axslider-description p {
        font-size: 0.875rem; } }

#axslider-slider .swiper-pagination {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2vh; }
  @media (min-width: 576px) {
    #axslider-slider .swiper-pagination {
      max-width: 540px; } }
  @media (min-width: 768px) {
    #axslider-slider .swiper-pagination {
      max-width: 760px; } }
  @media (min-width: 992px) {
    #axslider-slider .swiper-pagination {
      max-width: 1000px; } }
  @media (min-width: 1200px) {
    #axslider-slider .swiper-pagination {
      max-width: 1280px; } }
  @media (min-width: 768px) {
    #axslider-slider .swiper-pagination {
      padding-bottom: 0;
      text-align: left; } }
  @media (min-width: 768px) and (max-width: 991.98px) {
    #axslider-slider .swiper-pagination {
      text-align: right; } }
  @media (max-width: 767.98px) {
    #axslider-slider .swiper-pagination {
      top: calc(69.333vw - 20px);
      bottom: auto;
      transform: translate(-50%, -50%);
      text-align: left; } }
  #axslider-slider .swiper-pagination .swiper-pagination-bullet {
    border-color: #000; }
    #axslider-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: #000; }

#axslider-slider .axslider-title {
  font-variation-settings: "wght" 300;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), font-variation-settings 0.6s ease-out 1.2s; }

#axslider-slider .axslider-description,
#axslider-slider .axslider-btn,
#axslider-slider .axslider-title {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

#axslider-slider .axslider-description {
  transition-delay: 0.2s; }

#axslider-slider .axslider-btn {
  transition-delay: 0.4s; }
  #axslider-slider .axslider-btn .btn:hover, #axslider-slider .axslider-btn .axadblock .axadblock-link:hover, .axadblock #axslider-slider .axslider-btn .axadblock-link:hover {
    background-color: transparent; }

#axslider-slider.active .axslider-title {
  font-variation-settings: "wght" 700; }

#axslider-slider.active .axslider-description,
#axslider-slider.active .axslider-btn,
#axslider-slider.active .axslider-title {
  transform: translateY(0);
  opacity: 1; }

#product .product-cover .active .axvideo-video {
  opacity: 1; }

#product .product-cover .active ~ img {
  opacity: 0;
  pointer-events: none; }

#product .product-cover .axvideo-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover; }

#product #product-images .axvideo {
  height: 100%;
  position: relative; }
  #product #product-images .axvideo video {
    display: block;
    aspect-ratio: 1/1; }
  #product #product-images .axvideo::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/svg/btn-play.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center; }
    @media (max-width: 991.98px) {
      #product #product-images .axvideo::before {
        display: none; } }

#tagsicons .tagsicon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center; }
  #tagsicons .tagsicon picture {
    display: block;
    background: #f5f5f5;
    padding: 0.5rem;
    border-radius: 50rem;
    margin-bottom: 0.625rem;
    min-width: 55px;
    min-height: 55px; }
  #tagsicons .tagsicon-img {
    min-width: 35px;
    min-height: 35px;
    display: block;
    margin: auto; }
  #tagsicons .tagsicon-description {
    font-size: 0.625rem;
    line-height: 1; }

.language-selector span {
  display: inline-block;
  padding: 18px 0;
  cursor: pointer; }

.language-selector .dropdown-menu {
  min-width: 0;
  padding: 0; }

.wrap_allert {
  display: inline-block;
  position: relative; }
  .wrap_allert .allert_note {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    width: 260px;
    font-size: 0.875rem; }
    .wrap_allert .allert_note a {
      font-size: 0.875rem;
      color: #fff; }

#wishlist_button_block {
  display: inline-block;
  margin: 5px 0 !important;
  padding-bottom: 0 !important;
  position: relative; }

.addToWishlist,
#ax-show-wishlist {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
  font-size: 0;
  line-height: 0;
  vertical-align: top;
  cursor: pointer; }
  .addToWishlist.checked:after,
  #ax-show-wishlist.checked:after {
    background: url(../img/svg/nav-wishlist-checked.svg); }
  .addToWishlist:after,
  #ax-show-wishlist:after {
    content: '';
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    background: url(../img/svg/nav-wishlist.svg); }

#ax-listing-list {
  z-index: 999;
  position: absolute;
  bottom: 100%;
  left: 0;
  background: #FFF;
  padding: 10px;
  box-shadow: 5px 10px 35px rgba(0, 0, 0, 0.3); }
  #ax-listing-list #idWishlist {
    width: 100%; }
  #ax-listing-list .btn, #ax-listing-list .axadblock .axadblock-link, .axadblock #ax-listing-list .axadblock-link {
    margin-top: 10px; }

#module-advansedwishlist-mywishlist #mywishlist td.wishlist_delete a {
  display: block;
  background: none; }

#module-advansedwishlist-mywishlist #mywishlist td.wishlist_delete svg {
  width: 30px;
  height: 30px; }

#module-advansedwishlist-mywishlist #form_wishlist .form-group {
  display: inline-block;
  width: auto; }

#module-advansedwishlist-mywishlist #form_wishlist input.inputTxt {
  margin-right: 10px; }

#module-advansedwishlist-mywishlist #form_wishlist #submitWishlist {
  vertical-align: baseline; }

#module-advansedwishlist-mywishlist #form_wishlist .submit {
  display: inline-block; }

#module-advansedwishlist-mywishlist #block-order-detail {
  margin-top: 15px; }
  #module-advansedwishlist-mywishlist #block-order-detail .warning {
    margin-top: 15px; }
  #module-advansedwishlist-mywishlist #block-order-detail #hideWishlist {
    margin-top: 5px; }
    #module-advansedwishlist-mywishlist #block-order-detail #hideWishlist svg {
      width: 30px;
      height: 30px; }
  #module-advansedwishlist-mywishlist #block-order-detail #hideSendWishlist {
    background: none;
    border: none; }
    #module-advansedwishlist-mywishlist #block-order-detail #hideSendWishlist svg {
      width: 40px;
      height: 40px; }
  #module-advansedwishlist-mywishlist #block-order-detail .wl_send label {
    min-width: 100px; }
  #module-advansedwishlist-mywishlist #block-order-detail .wl_send input[type="text"] {
    background: none;
    height: 30px;
    border: 1px solid #dddddd; }
  #module-advansedwishlist-mywishlist #block-order-detail .wishlist-product-actions {
    text-align: center; }
    #module-advansedwishlist-mywishlist #block-order-detail .wishlist-product-actions .ajax_add_to_cart_button {
      font-size: 0.875rem;
      padding-left: 15px;
      padding-right: 15px; }
    #module-advansedwishlist-mywishlist #block-order-detail .wishlist-product-actions .lnkdel {
      margin-top: 15px; }
  #module-advansedwishlist-mywishlist #block-order-detail .wlp_bought .ax-select {
    width: 250px; }

#module-advansedwishlist-mywishlist #wishlist-detail .wishlist-product-actions .btn_action {
  gap: 0.5rem; }
  #module-advansedwishlist-mywishlist #wishlist-detail .wishlist-product-actions .btn_action > a,
  #module-advansedwishlist-mywishlist #wishlist-detail .wishlist-product-actions .btn_action > span {
    width: 100%;
    padding: 0 0.5rem;
    text-transform: lowercase; }
    #module-advansedwishlist-mywishlist #wishlist-detail .wishlist-product-actions .btn_action > a:first-letter,
    #module-advansedwishlist-mywishlist #wishlist-detail .wishlist-product-actions .btn_action > span:first-letter {
      text-transform: uppercase; }

#module-advansedwishlist-mywishlist .btn, #module-advansedwishlist-mywishlist .axadblock .axadblock-link, .axadblock #module-advansedwishlist-mywishlist .axadblock-link {
  background-color: #000;
  border-color: #000;
  color: #fff; }
  @media (max-width: 767.98px) {
    #module-advansedwishlist-mywishlist .btn, #module-advansedwishlist-mywishlist .axadblock .axadblock-link, .axadblock #module-advansedwishlist-mywishlist .axadblock-link {
      display: block; } }
  #module-advansedwishlist-mywishlist .btn.remove_from_wishlist, #module-advansedwishlist-mywishlist .axadblock .remove_from_wishlist.axadblock-link, .axadblock #module-advansedwishlist-mywishlist .remove_from_wishlist.axadblock-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }

#module-advansedwishlist-mywishlist .footer_links {
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1rem; }

#wishlist-detail .wl-products__footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  -ms-flex-align: center;
      align-items: center; }
  #wishlist-detail .wl-products__footer .wishlist-product-total {
    justify-self: end; }
  #wishlist-detail .wl-products__footer .wishlist_add_all_to_cart {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    justify-self: center; }

.wishlist__send .send__form p {
  display: -ms-flexbox;
  display: flex;
  gap: 15px; }
  .wishlist__send .send__form p:not(:first-child) {
    gap: 20px; }
  .wishlist__send .send__form p:last-child {
    gap: 0; }
    .wishlist__send .send__form p:last-child sup {
      position: unset;
      top: 0;
      font-size: unset;
      line-height: normal; }

.wishlist__send .send__form #send-wl-btn {
  padding: 5px 20px;
  margin: 20px 0;
  border: none;
  cursor: pointer; }

.menu-container {
  position: relative; }

.adtm_menu_container {
  padding-left: 0; }
  .adtm_menu_container #adtm_menu {
    border: none; }
    .adtm_menu_container #adtm_menu #adtm_menu_inner {
      background: none;
      border: none; }
    .adtm_menu_container #adtm_menu #menu {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      gap: 14px; }
      .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 {
        border: none;
        float: none;
        position: relative;
        text-decoration: none; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span {
          position: relative;
          background-image: linear-gradient(currentColor, currentColor);
          background-repeat: no-repeat;
          background-position: bottom left;
          background-size: 0 1px;
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          text-decoration: none;
          -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
          font-size: 0.875rem;
          font-variation-settings: "wght" 600;
          white-space: nowrap;
          font-weight: 600;
          padding: 0.25rem 0.5rem; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span:hover, .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span.active {
            text-decoration: none;
            background-size: 100% 1px; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span.reversed {
            background-size: 100% 1px; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span.reversed:hover, .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span.reversed.active {
              background-size: 0 1px; }
          @media (max-width: 1199.98px) {
            .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1 .advtm_menu_span {
              font-size: 0.75rem; } }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1:hover {
          text-decoration: none; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 a.a-niveau1:hover::after {
            content: '';
            display: block;
            position: absolute;
            left: -50vw;
            top: auto;
            width: 100vw;
            height: 30vh; }
      .adtm_menu_container #adtm_menu #menu .li-niveau1.logo {
        margin: 0 auto;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        min-width: 108px; }
        @media (max-width: 1199.98px) {
          .adtm_menu_container #adtm_menu #menu .li-niveau1.logo {
            display: none; } }
        .adtm_menu_container #adtm_menu #menu .li-niveau1.logo a {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          text-decoration: none; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1.logo a:hover {
            background: none; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1.logo a:hover::after {
              display: none; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1.logo a svg {
            width: 108px;
            height: 54px;
            display: block; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1.logo a img {
            max-width: 108px;
            width: 108px;
            height: 54px; }
      .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub {
        top: 81px;
        border: none;
        padding: 1rem 0;
        background: #fff;
        box-shadow: 0 0 0 100vmax #fff;
        -webkit-clip-path: inset(0 -100vmax);
                clip-path: inset(0 -100vmax);
        color: #000;
        width: 100%;
        transition: transform .5s ease, opacity .5s ease;
        opacity: 0;
        transform: translateY(-10px);
        display: block;
        pointer-events: none;
        left: 0; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub::before, .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub::after {
          content: '';
          display: block;
          position: relative;
          width: 100vw;
          top: -1rem;
          left: 50%;
          transform: translateX(-50%);
          height: 1px;
          background: #2866e8; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub::after {
          top: 1rem; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub a {
          color: #000; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap {
          padding: 0;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: justify;
              justify-content: space-between; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap .adtm_column_wrap_sizer {
            display: none; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .columnWrapTable tr {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-pack: justify;
              justify-content: space-between; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td {
          border: none;
          max-width: calc(100% / 5 - 20px);
          -ms-flex: 0 0 calc(100% / 5 - 20px);
              flex: 0 0 calc(100% / 5 - 20px);
          margin: 0 10px;
          position: relative; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .adtm_column_wrap:has(.page-heading) {
            display: block; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .adtm_column_wrap .adtm_column {
            margin-right: auto;
            padding: 0; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .adtm_column_wrap img.adtm_menu_icon {
            margin: 0 auto;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
            min-height: 200px; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .adtm_column_wrap .page-heading {
            font-size: 1.5rem; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .adtm_column_wrap .page-heading .subtitle {
              margin-top: 5px;
              font-size: 11px;
              text-transform: none;
              font-variation-settings: "wght" 400;
              letter-spacing: 0; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .page-heading {
            color: #2866e8;
            position: relative;
            left: 0;
            padding: 10px;
            margin-top: 0;
            width: 100%;
            text-transform: uppercase;
            text-align: left;
            line-height: 1;
            height: auto;
            pointer-events: none;
            font-size: 1.875rem; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .page-heading span {
              font-size: 1.875rem; }
              .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .page-heading span:not(.inline) {
                display: block; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .page-heading p {
              margin: 0;
              font-size: 1.875rem; }
              .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td .page-heading p.subtitle {
                font-family: "Source Code Pro", sans-serif;
                font-size: 0.6875rem;
                font-variation-settings: "wght" 700 !important; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td:hover .page-heading {
            background: #2866e8;
            color: #fff; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1 div.adtm_sub .adtm_column_wrap_td:hover .page-heading span {
              color: #fff; }
      .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .column_wrap_title {
        line-height: 26px;
        margin: 0; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .column_wrap_title a {
          text-transform: uppercase;
          font-variation-settings: "wght" 400;
          font-size: 0.875rem;
          color: #2866e8;
          margin-bottom: 20px;
          font-family: "Anton", sans-serif; }
      .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements {
        margin-top: 5px; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements li {
          margin-bottom: 8px; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements a {
          font-size: 0.75rem;
          color: #000;
          position: relative;
          background-image: linear-gradient(currentColor, currentColor);
          background-repeat: no-repeat;
          background-position: bottom left;
          background-size: 0 1px;
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
          text-decoration: none;
          -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
          display: inline;
          text-decoration: none;
          margin-bottom: 10px; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements a:hover, .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements a.active {
            text-decoration: none;
            background-size: 100% 1px; }
          .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements a.reversed {
            background-size: 100% 1px; }
            .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements a.reversed:hover, .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements a.reversed.active {
              background-size: 0 1px; }
        .adtm_menu_container #adtm_menu #menu .li-niveau1 .adtm_column .adtm_elements strong {
          font-variation-settings: "wght" 800; }
      .adtm_menu_container #adtm_menu #menu .li-niveau1:hover .adtm_sub {
        opacity: 1;
        transform: translateY(0);
        pointer-events: initial; }
      .adtm_menu_container #adtm_menu #menu .advtm_menu_1 .advtm_column_wrap_td_1 {
        max-width: none !important;
        -ms-flex: 1 !important;
            flex: 1 !important; }
        .adtm_menu_container #adtm_menu #menu .advtm_menu_1 .advtm_column_wrap_td_1::before {
          display: none !important; }

#header-sticky-wrap.fixed .adtm_sub {
  top: 44px !important; }

#header-sticky-wrap.fixed .li-niveau1.logo svg {
  height: 40px;
  width: auto; }

.adtm_menu_container #adtm_menu #menu .li-niveau1.advtm_menu_13 .columnWrapTable tr {
  -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 2rem;
  white-space: nowrap; }

.adtm_menu_container #adtm_menu #menu .li-niveau1.advtm_menu_13 div.adtm_sub .adtm_column_wrap_td {
  -ms-flex: auto;
      flex: auto; }

#search_widget {
  position: relative; }
  #search_widget::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #000;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
  #search_widget .input-group-append {
    position: absolute;
    right: 10px;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 9; }
    #search_widget .input-group-append button {
      background: none;
      border: none;
      outline: none;
      padding: 0;
      cursor: pointer;
      color: #fff; }
    #search_widget .input-group-append svg {
      width: 26px;
      height: 26px; }
  #search_widget .reset {
    display: none; }
  #search_widget:focus-within::after {
    width: 100%; }

@media (min-width: 992px) {
  #search_widget {
    overflow: visible !important;
    max-width: 300px;
    width: 100%; }
    #search_widget #search_query_top {
      height: 20px;
      line-height: 20px;
      background-color: transparent;
      color: #000;
      font-style: italic;
      padding: 0 30px 0 0; }
      #search_widget #search_query_top::-webkit-input-placeholder {
        color: #999999; }
      #search_widget #search_query_top:-ms-input-placeholder {
        color: #999999; }
      #search_widget #search_query_top::placeholder {
        color: #999999; }
    #search_widget .input-group-append {
      right: 0;
      left: auto; }
      #search_widget .input-group-append button svg {
        height: 30px;
        width: 30px; }
        #search_widget .input-group-append button svg [stroke] {
          stroke: #666666; }
    #search_widget .reset {
      display: block;
      position: absolute;
      z-index: 20;
      right: 0;
      top: 10px;
      background: none;
      border: 0;
      height: 40px;
      width: 40px;
      opacity: 0.5;
      cursor: pointer; }
      #search_widget .reset:hover {
        opacity: 1; }
      #search_widget .reset svg  {
        display: block;
        width: 40px;
        height: 40px; }
  #search_overlay {
    display: none;
    position: fixed;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; } }

@media (max-width: 991.98px) {
  #page > #search_widget {
    display: none; } }

.category-tree, .category_tree {
  background: none;
  padding: 0;
  margin: 1rem 0; }
  .category-tree .card-body > ul, .category-tree .card-body, .category-tree > ul, .category-tree, .category_tree .card-body > ul, .category_tree .card-body, .category_tree > ul, .category_tree {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap; }
    .category-tree .card-body > ul > li a, .category-tree .card-body > li a, .category-tree > ul > li a, .category-tree > li a, .category_tree .card-body > ul > li a, .category_tree .card-body > li a, .category_tree > ul > li a, .category_tree > li a {
      text-decoration: none; }
    .category-tree .card-body > ul > li > a, .category-tree .card-body > li > a, .category-tree > ul > li > a, .category-tree > li > a, .category_tree .card-body > ul > li > a, .category_tree .card-body > li > a, .category_tree > ul > li > a, .category_tree > li > a {
      color: #2866e8;
      display: block;
      padding: 12px 12px 10px;
      margin: 0 10px 10px 0;
      border: 1px solid #2866e8;
      font-family: "Source Code Pro", sans-serif;
      font-variation-settings: "wght" 500;
      position: relative;
      isolation: isolate; }
      @media (max-width: 991.98px) {
        .category-tree .card-body > ul > li > a, .category-tree .card-body > li > a, .category-tree > ul > li > a, .category-tree > li > a, .category_tree .card-body > ul > li > a, .category_tree .card-body > li > a, .category_tree > ul > li > a, .category_tree > li > a {
          padding: 12px 5px 10px; } }
      .category-tree .card-body > ul > li > a::before, .category-tree .card-body > li > a::before, .category-tree > ul > li > a::before, .category-tree > li > a::before, .category_tree .card-body > ul > li > a::before, .category_tree .card-body > li > a::before, .category_tree > ul > li > a::before, .category_tree > li > a::before {
        content: '';
        background: #2866e8;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        position: absolute;
        z-index: -1;
        transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
    .category-tree .card-body > ul > li:hover, .category-tree .card-body > li:hover, .category-tree > ul > li:hover, .category-tree > li:hover, .category_tree .card-body > ul > li:hover, .category_tree .card-body > li:hover, .category_tree > ul > li:hover, .category_tree > li:hover {
      display: block; }
      .category-tree .card-body > ul > li:hover > a, .category-tree .card-body > li:hover > a, .category-tree > ul > li:hover > a, .category-tree > li:hover > a, .category_tree .card-body > ul > li:hover > a, .category_tree .card-body > li:hover > a, .category_tree > ul > li:hover > a, .category_tree > li:hover > a {
        color: #fff;
        border-color: #2866e8; }
        .category-tree .card-body > ul > li:hover > a::before, .category-tree .card-body > li:hover > a::before, .category-tree > ul > li:hover > a::before, .category-tree > li:hover > a::before, .category_tree .card-body > ul > li:hover > a::before, .category_tree .card-body > li:hover > a::before, .category_tree > ul > li:hover > a::before, .category_tree > li:hover > a::before {
          width: 100%; }
    .category-tree .card-body > ul > li.active > a, .category-tree .card-body > li.active > a, .category-tree > ul > li.active > a, .category-tree > li.active > a, .category_tree .card-body > ul > li.active > a, .category_tree .card-body > li.active > a, .category_tree > ul > li.active > a, .category_tree > li.active > a {
      color: #fff;
      border-color: #2866e8; }
      .category-tree .card-body > ul > li.active > a::before, .category-tree .card-body > li.active > a::before, .category-tree > ul > li.active > a::before, .category-tree > li.active > a::before, .category_tree .card-body > ul > li.active > a::before, .category_tree .card-body > li.active > a::before, .category_tree > ul > li.active > a::before, .category_tree > li.active > a::before {
        width: 100%; }
      .category-tree .card-body > ul > li.active > a:hover, .category-tree .card-body > li.active > a:hover, .category-tree > ul > li.active > a:hover, .category-tree > li.active > a:hover, .category_tree .card-body > ul > li.active > a:hover, .category_tree .card-body > li.active > a:hover, .category_tree > ul > li.active > a:hover, .category_tree > li.active > a:hover {
        color: #2866e8; }
        .category-tree .card-body > ul > li.active > a:hover::before, .category-tree .card-body > li.active > a:hover::before, .category-tree > ul > li.active > a:hover::before, .category-tree > li.active > a:hover::before, .category_tree .card-body > ul > li.active > a:hover::before, .category_tree .card-body > li.active > a:hover::before, .category_tree > ul > li.active > a:hover::before, .category_tree > li.active > a:hover::before {
          width: 0; }
  .category-tree > .card-body, .category_tree > .card-body {
    overflow: auto; }
    @media (max-width: 991.98px) {
      .category-tree > .card-body, .category_tree > .card-body {
        margin-left: -20px;
        margin-right: -20px;
        padding: 0 20px; } }
    .category-tree > .card-body > ul, .category_tree > .card-body > ul {
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
      .category-tree > .card-body > ul li, .category_tree > .card-body > ul li {
        white-space: nowrap; }

#index .category-tree > ul > li > a {
  padding: 12px 20px 10px;
  margin: 0 10px 10px 0;
  border: 1px solid #000; }
  #index .category-tree > ul > li > a, #index .category-tree > ul > li > a h3 {
    text-transform: uppercase;
    display: block;
    font-variation-settings: "wght" 500;
    position: relative;
    isolation: isolate;
    color: #fff;
    font-size: 1.5rem; }
  @media (max-width: 991.98px) {
    #index .category-tree > ul > li > a {
      padding: 12px 5px 10px; } }
  #index .category-tree > ul > li > a::before {
    content: '';
    background: #000;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    position: absolute;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

div.df-classic {
  border-radius: 0;
  width: calc(100% - 2rem) !important;
  max-width: 80vw;
  left: 50% !important;
  transform: translateX(-50%);
  max-height: 600px !important; }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-card {
  width: 100% !important; }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-card-preset-product {
  padding: 0 !important;
  border: none !important;
  margin: 0 !important; }
  .dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-card-preset-product:hover {
    border: none !important;
    box-shadow: none !important; }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd .df-results {
  background: #f5f5f5;
  min-width: 200px !important;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fill] !important;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important; }
  .dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd .df-results::-webkit-scrollbar {
    width: 10px;
    background-color: #fff; }
  .dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd .df-results::-webkit-scrollbar-thumb {
    background-color: #000; }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-recommended-products {
  width: 100% !important; }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-carousel {
  margin-left: 0 !important;
  margin-right: 0 !important; }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-carousel-content {
  --gap: 1.25rem;
  --gap-mob: 0.625rem;
  gap: var(--gap-mob);
  display: -ms-grid !important;
  display: grid !important;
  width: 100%;
  -ms-grid-columns: (var(--dfd-results-grid-column-size, minmax(200px, 1fr)))[var];
      grid-template-columns: repeat(var(--dfd-results-grid-column-count, auto-fill), var(--dfd-results-grid-column-size, minmax(200px, 1fr))); }
  @media (min-width: 768px) {
    .dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-carousel-content {
      gap: var(--gap); } }

.dfd-root[data-dfd-screen="fullscreen-brand-categories"] .dfd-carousel-arrow {
  display: none !important; }

.dfd-card {
  border: none !important; }

.dfd-card-title {
  font-size: 1rem;
  color: #000;
  margin-bottom: 10px;
  font-variation-settings: "wght" 600;
  line-height: 1.3;
  height: 40px;
  overflow: hidden; }

.dfd-card-pricing {
  color: #000;
  font-size: 0.875rem; }
  .dfd-card-pricing .dfd-card-price:first-of-type {
    font-variation-settings: "wght" 600;
    color: #000; }

.dfd-fullscreen, .dfd-mobile {
  z-index: 10000 !important; }

.dfd-card-type, .dfd-card-effects {
  font-size: 0.75rem;
  font-variation-settings: "wght" 400;
  color: #777777;
  margin-bottom: 0.1875rem; }

.dfd-card-type {
  text-transform: uppercase; }

.dfd-card-title {
  font-size: 1rem !important;
  font-variation-settings: "wght" 600 !important;
  color: #000 !important;
  margin-bottom: 0.5rem !important; }

.dfd-card-effects {
  margin-bottom: 0.5rem !important; }

.dfd-card-pricing {
  -ms-flex-direction: row !important;
      flex-direction: row !important;
  -ms-flex-pack: start !important;
      justify-content: flex-start !important;
  -ms-flex-align: center !important;
      align-items: center !important;
  gap: 0.5rem !important;
  margin-bottom: 0.5rem !important;
  margin: 0 !important; }
  .dfd-card-pricing .dfd-card-price {
    font-size: 0.875rem !important;
    font-variation-settings: "wght" 600 !important;
    color: #000 !important;
    margin: 0 !important; }
  .dfd-card-pricing-flex {
    display: none !important; }

.dfd-cart-add-button {
  margin-left: 0 !important;
  width: 100%; }
  .dfd-cart-add-button button {
    width: 100% !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
    background-color: #fff !important;
    color: #000 !important;
    font-variation-settings: "wght" 600;
    font-size: 0.875rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    gap: 0.5rem; }
    .dfd-cart-add-button button::before {
      content: '';
      display: block;
      width: 1.5rem;
      height: 1.5rem;
      background-image: url(../img/svg/interface-shopping-cart.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }

.email_subscription {
  padding-block: 20px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
  .email_subscription .grecaptcha-badge {
    bottom: 0 !important;
    visibility: hidden;
    display: none; }
  .email_subscription .email-title {
    font-size: 1.5rem;
    font-variation-settings: "wght" 700;
    color: #fff;
    font-family: "Anton", sans-serif;
    margin-bottom: 0.5rem; }
    @media (max-width: 991.98px) {
      .email_subscription .email-title {
        text-align: center; } }
    .email_subscription .email-title span::after {
      content: '';
      margin: -4px 0 2px;
      height: 4px; }
  .email_subscription .form {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-align: center;
        align-items: center; }
    @media (max-width: 767.98px) {
      .email_subscription .form {
        -ms-flex-direction: column;
            flex-direction: column; } }
    .email_subscription .form > div {
      position: relative;
      -ms-flex: 1;
          flex: 1;
      width: 100%; }
    .email_subscription .form p {
      -ms-flex: 1;
          flex: 1;
      color: #fff;
      font-size: 0.875rem;
      font-variation-settings: "wght" 400;
      margin-top: 1rem; }
      @media (min-width: 576px) {
        .email_subscription .form p {
          margin: 0 0 0 1.25rem; } }
    .email_subscription .form .form-control {
      background: #fff;
      border-radius: 0;
      color: #000;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      line-height: 46px;
      min-height: 46px;
      border: none; }
      .email_subscription .form .form-control::-moz-placeholder {
        color: #666666;
        opacity: 1; }
      .email_subscription .form .form-control:-ms-input-placeholder {
        color: #666666; }
      .email_subscription .form .form-control::-webkit-input-placeholder {
        color: #666666; }
      .email_subscription .form .form-control:focus::-moz-placeholder {
        color: #000; }
      .email_subscription .form .form-control:focus:-ms-input-placeholder {
        color: #000; }
      .email_subscription .form .form-control:focus::-webkit-input-placeholder {
        color: #000; }
    .email_subscription .form .btn, .email_subscription .form .axadblock .axadblock-link, .axadblock .email_subscription .form .axadblock-link {
      position: absolute;
      right: 0;
      top: 0;
      padding: 0 12px;
      line-height: 46px;
      min-height: 46px;
      height: 46px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      background: #000;
      border: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center; }
      .email_subscription .form .btn:hover, .email_subscription .form .axadblock .axadblock-link:hover, .axadblock .email_subscription .form .axadblock-link:hover {
        color: #fff; }
        .email_subscription .form .btn:hover svg [stroke], .email_subscription .form .axadblock .axadblock-link:hover svg [stroke], .axadblock .email_subscription .form .axadblock-link:hover svg [stroke] {
          stroke: #2866e8; }
      .email_subscription .form .btn svg, .email_subscription .form .axadblock .axadblock-link svg, .axadblock .email_subscription .form .axadblock-link svg {
        width: 26px;
        height: 26px; }
        .email_subscription .form .btn svg [stroke], .email_subscription .form .axadblock .axadblock-link svg [stroke], .axadblock .email_subscription .form .axadblock-link svg [stroke] {
          stroke: #fff;
          transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }

#authentication .ax-fb-connect,
#checkout[data-ax-step="checkout-personal-information-step"] .ax-fb-connect,
#checkout #checkout-personal-information-step .ax-fb-connect {
  text-align: center;
  margin-top: 16px;
  display: inline-block;
  width: 100%;
  margin-bottom: 0; }

#authentication #fbpsc.login-account,
#checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account,
#checkout #checkout-personal-information-step #fbpsc.login-account {
  margin: 0 !important; }

#authentication #fbpsc.authentication,
#authentication #fbpsc.login-account,
#authentication #fbpsc.orderFunnel,
#checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication,
#checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account,
#checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel,
#checkout #checkout-personal-information-step #fbpsc.authentication,
#checkout #checkout-personal-information-step #fbpsc.login-account,
#checkout #checkout-personal-information-step #fbpsc.orderFunnel {
  padding: 0;
  margin: 16px 0 0;
  background: none;
  border: none;
  font-size: 0.875rem;
  color: #666666; }
  #authentication #fbpsc.authentication .clr_10,
  #authentication #fbpsc.login-account .clr_10,
  #authentication #fbpsc.orderFunnel .clr_10,
  #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .clr_10,
  #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .clr_10,
  #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .clr_10,
  #checkout #checkout-personal-information-step #fbpsc.authentication .clr_10,
  #checkout #checkout-personal-information-step #fbpsc.login-account .clr_10,
  #checkout #checkout-personal-information-step #fbpsc.orderFunnel .clr_10 {
    display: none; }
  #authentication #fbpsc.authentication .btn-connect,
  #authentication #fbpsc.login-account .btn-connect,
  #authentication #fbpsc.orderFunnel .btn-connect,
  #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect,
  #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect,
  #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect,
  #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect,
  #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect,
  #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect {
    margin: 0.6rem 0;
    padding: 0;
    border: none;
    background: #3d5c9a;
    width: 100%;
    border-radius: 0;
    height: 48px;
    line-height: 48px; }
    #authentication #fbpsc.authentication .btn-connect:last-child,
    #authentication #fbpsc.login-account .btn-connect:last-child,
    #authentication #fbpsc.orderFunnel .btn-connect:last-child,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect:last-child,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect:last-child,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect:last-child,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect:last-child,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect:last-child,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect:last-child {
      margin-bottom: 0; }
    #authentication #fbpsc.authentication .btn-connect .fa,
    #authentication #fbpsc.authentication .btn-connect .btn-google-default-icon,
    #authentication #fbpsc.login-account .btn-connect .fa,
    #authentication #fbpsc.login-account .btn-connect .btn-google-default-icon,
    #authentication #fbpsc.orderFunnel .btn-connect .fa,
    #authentication #fbpsc.orderFunnel .btn-connect .btn-google-default-icon,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect .fa,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect .btn-google-default-icon,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect .fa,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect .btn-google-default-icon,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect .fa,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect .btn-google-default-icon,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect .fa,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect .btn-google-default-icon,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect .fa,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect .btn-google-default-icon,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect .fa,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect .btn-google-default-icon {
      display: none; }
    #authentication #fbpsc.authentication .btn-connect .btn-title-connect,
    #authentication #fbpsc.login-account .btn-connect .btn-title-connect,
    #authentication #fbpsc.orderFunnel .btn-connect .btn-title-connect,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect .btn-title-connect,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect .btn-title-connect,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect .btn-title-connect,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect .btn-title-connect,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect .btn-title-connect,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect .btn-title-connect {
      position: relative;
      padding-left: 48px;
      text-transform: uppercase;
      font-size: 1rem;
      font-variation-settings: "wght" 700;
      color: #FFF;
      margin-left: -30px; }
      #authentication #fbpsc.authentication .btn-connect .btn-title-connect:before,
      #authentication #fbpsc.login-account .btn-connect .btn-title-connect:before,
      #authentication #fbpsc.orderFunnel .btn-connect .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect .btn-title-connect:before {
        content: '';
        background: url(../img/svg/network-facebook-w.svg);
        width: 36px;
        height: 36px;
        display: inline-block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%); }
    #authentication #fbpsc.authentication .btn-connect.btn-facebook,
    #authentication #fbpsc.login-account .btn-connect.btn-facebook,
    #authentication #fbpsc.orderFunnel .btn-connect.btn-facebook,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-facebook,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-facebook,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-facebook,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-facebook,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-facebook,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-facebook {
      background: #3d5c9a;
      margin-top: 0; }
      #authentication #fbpsc.authentication .btn-connect.btn-facebook .btn-title-connect,
      #authentication #fbpsc.login-account .btn-connect.btn-facebook .btn-title-connect,
      #authentication #fbpsc.orderFunnel .btn-connect.btn-facebook .btn-title-connect,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-facebook .btn-title-connect,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-facebook .btn-title-connect,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-facebook .btn-title-connect,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-facebook .btn-title-connect,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-facebook .btn-title-connect,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-facebook .btn-title-connect {
        margin-left: 0; }
        #authentication #fbpsc.authentication .btn-connect.btn-facebook .btn-title-connect:before,
        #authentication #fbpsc.login-account .btn-connect.btn-facebook .btn-title-connect:before,
        #authentication #fbpsc.orderFunnel .btn-connect.btn-facebook .btn-title-connect:before,
        #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-facebook .btn-title-connect:before,
        #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-facebook .btn-title-connect:before,
        #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-facebook .btn-title-connect:before,
        #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-facebook .btn-title-connect:before,
        #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-facebook .btn-title-connect:before,
        #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-facebook .btn-title-connect:before {
          background: url(../img/svg/network-facebook-w.svg); }
      #authentication #fbpsc.authentication .btn-connect.btn-facebook:hover,
      #authentication #fbpsc.login-account .btn-connect.btn-facebook:hover,
      #authentication #fbpsc.orderFunnel .btn-connect.btn-facebook:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-facebook:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-facebook:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-facebook:hover,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-facebook:hover,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-facebook:hover,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-facebook:hover {
        background: #2f4675; }
    #authentication #fbpsc.authentication .btn-connect.btn-google-default,
    #authentication #fbpsc.login-account .btn-connect.btn-google-default,
    #authentication #fbpsc.orderFunnel .btn-connect.btn-google-default,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-google-default,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-google-default,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-google-default,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-google-default,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-google-default,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-google-default {
      background: #CF4332; }
      #authentication #fbpsc.authentication .btn-connect.btn-google-default .btn-title-connect:before,
      #authentication #fbpsc.login-account .btn-connect.btn-google-default .btn-title-connect:before,
      #authentication #fbpsc.orderFunnel .btn-connect.btn-google-default .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-google-default .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-google-default .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-google-default .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-google-default .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-google-default .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-google-default .btn-title-connect:before {
        background: url(../img/svg/network-google-w.svg); }
      #authentication #fbpsc.authentication .btn-connect.btn-google-default:hover,
      #authentication #fbpsc.login-account .btn-connect.btn-google-default:hover,
      #authentication #fbpsc.orderFunnel .btn-connect.btn-google-default:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-google-default:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-google-default:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-google-default:hover,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-google-default:hover,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-google-default:hover,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-google-default:hover {
        background: #a73527; }
    #authentication #fbpsc.authentication .btn-connect.btn-amazon,
    #authentication #fbpsc.login-account .btn-connect.btn-amazon,
    #authentication #fbpsc.orderFunnel .btn-connect.btn-amazon,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-amazon,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-amazon,
    #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-amazon,
    #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-amazon,
    #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-amazon,
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-amazon {
      background: #ff9900; }
      #authentication #fbpsc.authentication .btn-connect.btn-amazon .btn-title-connect:before,
      #authentication #fbpsc.login-account .btn-connect.btn-amazon .btn-title-connect:before,
      #authentication #fbpsc.orderFunnel .btn-connect.btn-amazon .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-amazon .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-amazon .btn-title-connect:before,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-amazon .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-amazon .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-amazon .btn-title-connect:before,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-amazon .btn-title-connect:before {
        background: url(../img/svg/network-amazon-w.svg); }
      #authentication #fbpsc.authentication .btn-connect.btn-amazon:hover,
      #authentication #fbpsc.login-account .btn-connect.btn-amazon:hover,
      #authentication #fbpsc.orderFunnel .btn-connect.btn-amazon:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.authentication .btn-connect.btn-amazon:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.login-account .btn-connect.btn-amazon:hover,
      #checkout[data-ax-step="checkout-personal-information-step"] #fbpsc.orderFunnel .btn-connect.btn-amazon:hover,
      #checkout #checkout-personal-information-step #fbpsc.authentication .btn-connect.btn-amazon:hover,
      #checkout #checkout-personal-information-step #fbpsc.login-account .btn-connect.btn-amazon:hover,
      #checkout #checkout-personal-information-step #fbpsc.orderFunnel .btn-connect.btn-amazon:hover {
        background: #cc7a00; }

#checkout #checkout-personal-information-step #fbpsc.orderFunnel {
  text-align: center; }
  @media (min-width: 576px) {
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel {
      margin-left: 20px; } }
  @media (min-width: 576px) {
    #checkout #checkout-personal-information-step #fbpsc.orderFunnel p {
      max-width: 360px; } }

.extraField_2 .testedApproved p {
  font-variation-settings: "wght" 600;
  color: #000;
  font-size: 0.875rem; }

.extraField_2 p {
  font-size: 0.875rem; }

.field-percent-wrapper .percent-item {
  border-bottom: 1px solid #f5f5f5;
  padding: 10px 0; }
  .field-percent-wrapper .percent-item:last-child {
    border-bottom: none; }
  .field-percent-wrapper .percent-item .percent {
    font-size: 2rem;
    font-variation-settings: "wght" 400; }
  .field-percent-wrapper .percent-item .text {
    font-variation-settings: "wght" 300; }

.section-tab-wrapper {
  margin-bottom: 2rem; }
  .section-tab-wrapper .section-tab-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #000;
    box-shadow: 0 0 0 100vmax #000;
    -webkit-clip-path: inset(0 -100vmax);
            clip-path: inset(0 -100vmax); }
    @media (max-width: 991.98px) {
      .section-tab-wrapper .section-tab-header {
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
        padding: 0; }
        .section-tab-wrapper .section-tab-header li {
          padding: 10px 0;
          display: inline;
          width: -webkit-fit-content;
          width: -moz-fit-content;
          width: fit-content; } }
    .section-tab-wrapper .section-tab-header li {
      font-size: 1rem;
      font-variation-settings: "wght" 700;
      letter-spacing: 0.96px;
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 0 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      .section-tab-wrapper .section-tab-header li:hover, .section-tab-wrapper .section-tab-header li.active {
        text-decoration: none;
        background-size: 100% 1px; }
      .section-tab-wrapper .section-tab-header li.reversed {
        background-size: 100% 1px; }
        .section-tab-wrapper .section-tab-header li.reversed:hover, .section-tab-wrapper .section-tab-header li.reversed.active {
          background-size: 0 1px; }
      @media (max-width: 991.98px) {
        .section-tab-wrapper .section-tab-header li {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center;
          -ms-flex-pack: justify;
              justify-content: space-between;
          width: 100%;
          padding: 1.5rem 0;
          border-bottom: 1px solid #fff; } }
      .section-tab-wrapper .section-tab-header li.active span {
        transform: scaleY(-1); }
      .section-tab-wrapper .section-tab-header li span {
        display: none; }
        @media (max-width: 991.98px) {
          .section-tab-wrapper .section-tab-header li span {
            display: block;
            width: 20px;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); } }
      .section-tab-wrapper .section-tab-header li h2 {
        font-size: 1rem;
        font-variation-settings: "wght" 700;
        letter-spacing: 0.96px;
        text-transform: uppercase;
        color: #fff;
        text-align: left; }
    .section-tab-wrapper .section-tab-header li + div {
      display: none; }
      @media (max-width: 991.98px) {
        .section-tab-wrapper .section-tab-header li + div {
          background: #fff;
          box-shadow: 0 0 0 100vmax #fff;
          -webkit-clip-path: inset(0 -100vmax);
                  clip-path: inset(0 -100vmax);
          -webkit-clip-path: inset(-1px -100vmax);
                  clip-path: inset(-1px -100vmax);
          animation: appearfromLeft .4s ease-in-out reverse; }
          .section-tab-wrapper .section-tab-header li + div.isActive {
            animation: appearfromLeft .4s ease-in-out;
            display: block;
            color: #000;
            padding: 2rem 0; }
          .section-tab-wrapper .section-tab-header li + div h3 {
            letter-spacing: normal;
            font-variation-settings: inherit;
            text-align: left;
            font-weight: "wght" 700;
            font-size: 0.875rem; } }
  .section-tab-wrapper .section-tab-content {
    position: relative; }
    @media (max-width: 991.98px) {
      .section-tab-wrapper .section-tab-content {
        display: none; } }
    .section-tab-wrapper .section-tab-content > .content {
      display: none;
      animation: appearFromLeft .3s ease-in reverse;
      padding: 2rem; }
      @media (max-width: 991.98px) {
        .section-tab-wrapper .section-tab-content > .content {
          padding: 1rem; } }
      .section-tab-wrapper .section-tab-content > .content.isActive {
        display: block;
        animation: appearFromLeft .3s ease-in; }
      .section-tab-wrapper .section-tab-content > .content h3 {
        letter-spacing: normal;
        font-variation-settings: inherit;
        text-align: left;
        font-weight: "wght" 700;
        font-size: 0.875rem; }

.section-experts-wrapper {
  background: #000;
  box-shadow: 0 0 0 100vmax #000;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  padding: 2rem;
  margin-bottom: 4rem; }
  .section-experts-wrapper .page-heading {
    font-size: clamp(2.5rem, 4.5vw, 12rem);
    color: #fff; }
  .section-experts-wrapper .section-experts-content {
    padding: 2rem 0;
    display: -ms-flexbox;
    display: flex;
    color: #fff; }
    .section-experts-wrapper .section-experts-content > div {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: self-end;
          align-items: self-end;
      margin: 0 2rem; }
      .section-experts-wrapper .section-experts-content > div img {
        margin-bottom: 2rem;
        margin-right: 2rem; }

@keyframes appearFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px); }
  to {
    opacity: 1;
    transform: translateX(0); } }

body .psgdprgetdatabtn17 {
  float: none; }

#blockcart-wrapper {
  /*&.cart-expand {
		.blockcart {
			> a:after {
				display: none;
			}
			&.show {
				.scart-body {
					display: block;
				}
			}
			.scart-img {
				height: 90px;
				width: 90px;
				position: relative;
				display: block;
				overflow: hidden;

				img {
					width: auto;
					max-width: none;
					height: 100%;
					display: block;
					position: absolute;
					top: 0;
					left: 50%;
					transform: translateX(-50%);
				}
			}

			.scart-body {
				position: absolute;
				right: 0;
				top: 100%;
				display: none;
				width: 520px;
				text-transform: none;
				font-variation-settings: 'wght' normal;
				padding: 20px;
				color: $primary;
				text-align: left;
				line-height: 1.2;
				max-height: 80vh;
				overflow-y: auto;
				background: #FFF;
				z-index: 1000;
				box-shadow: 5px 10px 35px rgba(0, 0, 0, 0.3);

				@include media-breakpoint-down(lg) {
					right: 0;
				}

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

				.product-name,
				.product-quantity {
					font-size: $font-size-large;
					color: $primary !important;
					display: block;
					text-transform: none;
				}

				.product-total-price {
					color: $primary;
				}

				.remove-from-cart {
					position: absolute;
					top: 7px;
					right: -20px;

					svg {
						width: 20px;
						height: 20px;
					}
				}

				li {
					position: relative;
					padding: 10px 0;
				}

				> div {
					padding: 2px 0;
					position: relative;
					font-size: $font-size-large;


					&.cart-subtotals {
						border: none;
						padding: 8px 0 0;

						> div {
							padding: 2px 0;
						}
					}

					&.cart-button {
						text-align: right;
						border: none;
						background: none;
						margin-top: 10px;

						.btn {
							height: 40px;
							line-height: 40px;
							border-radius: 0;
							border: none;
						}
					}

					.value {
						float: right;
						color: $primary;
					}
				}
			}
		}
	}*/ }
  #blockcart-wrapper .blockcart > a {
    position: relative; }
    #blockcart-wrapper .blockcart > a .badge {
      position: absolute;
      top: 0;
      right: -5px;
      background: #2866e8;
      color: #fff;
      display: block;
      width: 16px;
      height: 16px;
      border-radius: 8px;
      padding: 0;
      line-height: 16px; }

#blockcart-modal .modal-title, #gc-success-modal .modal-title {
  font-size: 1.125rem;
  color: #000;
  text-transform: uppercase;
  font-variation-settings: "wght" 700; }
  @media (max-width: 767.98px) {
    #blockcart-modal .modal-title, #gc-success-modal .modal-title {
      font-size: 1.25rem; } }

#blockcart-modal .close, #gc-success-modal .close {
  padding: 10px; }
  #blockcart-modal .close svg, #gc-success-modal .close svg {
    width: 20px;
    height: 20px; }

#blockcart-modal .modal-body, #gc-success-modal .modal-body {
  padding: 40px 20px 0; }
  @media (max-width: 767.98px) {
    #blockcart-modal .modal-body, #gc-success-modal .modal-body {
      padding-top: 20px; }
      #blockcart-modal .modal-body .btn-back, #gc-success-modal .modal-body .btn-back {
        margin: 0.5rem 0 1.2rem; } }

#blockcart-modal .modal-left .product-name, #gc-success-modal .modal-left .product-name {
  font-size: 1rem;
  color: #000;
  font-variation-settings: "wght" 700;
  margin-bottom: 0.7rem; }
  @media (max-width: 767.98px) {
    #blockcart-modal .modal-left .product-name, #gc-success-modal .modal-left .product-name {
      margin-bottom: 0; } }

#blockcart-modal .modal-left p, #gc-success-modal .modal-left p {
  margin: 0; }

#blockcart-modal .modal-left .price, #gc-success-modal .modal-left .price {
  font-size: 1.125rem;
  font-variation-settings: "wght" 700;
  color: #000;
  margin-top: 0.7rem; }
  @media (max-width: 767.98px) {
    #blockcart-modal .modal-left .price, #gc-success-modal .modal-left .price {
      margin-top: 0.2rem;
      font-variation-settings: 'wght' normal;
      font-size: 1rem; } }

#blockcart-modal .modal-left .btn, #blockcart-modal .modal-left .axadblock .axadblock-link, .axadblock #blockcart-modal .modal-left .axadblock-link, #gc-success-modal .modal-left .btn, #gc-success-modal .modal-left .axadblock .axadblock-link, .axadblock #gc-success-modal .modal-left .axadblock-link {
  margin-top: 2rem;
  background: none; }
  #blockcart-modal .modal-left .btn:hover, #blockcart-modal .modal-left .axadblock .axadblock-link:hover, .axadblock #blockcart-modal .modal-left .axadblock-link:hover, #blockcart-modal .modal-left .btn:focus, #blockcart-modal .modal-left .axadblock .axadblock-link:focus, .axadblock #blockcart-modal .modal-left .axadblock-link:focus, #blockcart-modal .modal-left .btn:active, #blockcart-modal .modal-left .axadblock .axadblock-link:active, .axadblock #blockcart-modal .modal-left .axadblock-link:active, #gc-success-modal .modal-left .btn:hover, #gc-success-modal .modal-left .axadblock .axadblock-link:hover, .axadblock #gc-success-modal .modal-left .axadblock-link:hover, #gc-success-modal .modal-left .btn:focus, #gc-success-modal .modal-left .axadblock .axadblock-link:focus, .axadblock #gc-success-modal .modal-left .axadblock-link:focus, #gc-success-modal .modal-left .btn:active, #gc-success-modal .modal-left .axadblock .axadblock-link:active, .axadblock #gc-success-modal .modal-left .axadblock-link:active {
    background: #fff; }
  @media (max-width: 767.98px) {
    #blockcart-modal .modal-left .btn, #blockcart-modal .modal-left .axadblock .axadblock-link, .axadblock #blockcart-modal .modal-left .axadblock-link, #gc-success-modal .modal-left .btn, #gc-success-modal .modal-left .axadblock .axadblock-link, .axadblock #gc-success-modal .modal-left .axadblock-link {
      width: 100%;
      margin-top: 1.5rem; } }

@media (max-width: 767.98px) {
  #blockcart-modal .modal-left .col-md-7, #gc-success-modal .modal-left .col-md-7 {
    padding-left: 0; } }

#blockcart-modal .modal-right .card, #gc-success-modal .modal-right .card {
  padding: 40px; }
  @media (max-width: 767.98px) {
    #blockcart-modal .modal-right .card, #gc-success-modal .modal-right .card {
      padding: 20px;
      margin-bottom: 20px; } }

#blockcart-modal .modal-right .cart-content, #gc-success-modal .modal-right .cart-content {
  color: #000; }
  #blockcart-modal .modal-right .cart-content strong, #gc-success-modal .modal-right .cart-content strong {
    font-variation-settings: 'wght' normal; }
  #blockcart-modal .modal-right .cart-content .value, #gc-success-modal .modal-right .cart-content .value {
    float: right;
    font-size: 1rem;
    font-variation-settings: "wght" 500; }
    @media (max-width: 767.98px) {
      #blockcart-modal .modal-right .cart-content .value, #gc-success-modal .modal-right .cart-content .value {
        font-variation-settings: 'wght' normal; } }
  #blockcart-modal .modal-right .cart-content .btn, #blockcart-modal .modal-right .cart-content .axadblock .axadblock-link, .axadblock #blockcart-modal .modal-right .cart-content .axadblock-link, #gc-success-modal .modal-right .cart-content .btn, #gc-success-modal .modal-right .cart-content .axadblock .axadblock-link, .axadblock #gc-success-modal .modal-right .cart-content .axadblock-link {
    margin-top: 2rem; }
    @media (max-width: 767.98px) {
      #blockcart-modal .modal-right .cart-content .btn, #blockcart-modal .modal-right .cart-content .axadblock .axadblock-link, .axadblock #blockcart-modal .modal-right .cart-content .axadblock-link, #gc-success-modal .modal-right .cart-content .btn, #gc-success-modal .modal-right .cart-content .axadblock .axadblock-link, .axadblock #gc-success-modal .modal-right .cart-content .axadblock-link {
        margin-top: 1rem; } }

#soflexibiliteModal .modal-content {
  position: absolute; }

#soflexibiliteModal img {
  max-height: 100%; }

#soflexibiliteModal #sf-center-button,
#soflexibiliteModal #sf-pac-button,
#soflexibiliteModal #sf-close-button {
  padding: 0 15px; }

#soflexibiliteModal #sf-close-button {
  background: #fff;
  color: #FFF;
  border: none; }

@media (max-width: 767.98px) {
  .sf_table_times {
    display: none; } }

.ps-social-follow {
  display: block;
  text-align: right; }
  @media (max-width: 767.98px) {
    .ps-social-follow {
      text-align: center;
      -ms-flex-order: 1;
          order: 1; } }
  .ps-social-follow li {
    display: inline-block; }
    .ps-social-follow li.tiktok img {
      height: 32px; }
    .ps-social-follow li img {
      width: 46px;
      height: 46px; }

#mailalert {
  margin-top: 2rem; }
  #mailalert .btn, #mailalert .axadblock .axadblock-link, .axadblock #mailalert .axadblock-link {
    min-height: 44px;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    line-height: 1.5;
    white-space: normal;
    font-size: 0.875rem; }
  #mailalert .js-mailalert .text-center {
    font-variation-settings: "wght" 600;
    font-weight: bold;
    margin-bottom: 5px; }
  #mailalert .js-mailalert .form-control {
    -ms-flex: 2;
        flex: 2;
    border-radius: 0 0 0 0; }
  #mailalert .js-mailalert .input-group-append {
    -ms-flex: 1;
        flex: 1; }
    #mailalert .js-mailalert .input-group-append .btn, #mailalert .js-mailalert .input-group-append .axadblock .axadblock-link, .axadblock #mailalert .js-mailalert .input-group-append .axadblock-link {
      white-space: nowrap;
      padding: 0 5px; }
  #mailalert .js-mailalert > span {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    height: 47px; }

.js-remove-email-alert {
  padding: 0;
  width: 40px;
  height: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-left: auto;
  min-height: 0; }
  .js-remove-email-alert svg {
    display: block !important;
    margin: 0 !important;
    top: unset !important; }
  .js-remove-email-alert:hover {
    background: #000;
    color: #fff; }
    .js-remove-email-alert:hover [stroke] {
      stroke: #fff; }

#axfranco-jauge {
  font-size: 0.75rem;
  text-align: center;
  margin-top: -1rem;
  margin-bottom: 21px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
  #axfranco-jauge .axfranco-text span {
    font-variation-settings: "wght" 600; }
  #axfranco-jauge svg {
    width: 45px;
    margin: 0 auto .25rem;
    display: none; }
  #axfranco-jauge .ax-jauge {
    width: 100%;
    height: 8px;
    border: 1px solid #fff;
    position: relative;
    margin: 10px 0;
    overflow: hidden; }
    #axfranco-jauge .ax-jauge .jauge {
      position: absolute;
      left: 0;
      top: 0;
      display: block;
      width: 100%;
      height: 100%; }
      #axfranco-jauge .ax-jauge .jauge.fill-jauge {
        z-index: 2;
        background-color: #fff;
        transform: translateX(-100%);
        animation: jauge-fill 2s;
        animation-iteration-count: 1;
        animation-fill-mode: forwards;
        transition: 1s; }

@keyframes jauge-fill {
  0% {
    transform: translateX(-100%); }
  100% {
    transform: translateX(0%); } }
      #axfranco-jauge .ax-jauge .jauge.empty-jauge {
        z-index: 1;
        background-color: #000; }

.ybc_block_latest.page_home {
  background: #2866e8;
  box-shadow: 0 0 0 100vmax #2866e8;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  padding: 2rem; }
  @media (max-width: 991.98px) {
    .ybc_block_latest.page_home {
      padding: 2rem 0; } }
  .ybc_block_latest.page_home .page-heading,
  .ybc_block_latest.page_home .page-heading h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    color: #fff; }
  .ybc_block_latest.page_home .ybc_blog_post:nth-of-type(2) {
    margin-top: 2rem; }
  .ybc_block_latest.page_home .block_content {
    width: 100%; }
  .ybc_block_latest.page_home .category_tree {
    -ms-flex-pack: center;
        justify-content: center;
    column-gap: 50px; }
    .ybc_block_latest.page_home .category_tree li a {
      border: none;
      font-family: "Source Code Pro", sans-serif;
      font-size: 1rem;
      font-variation-settings: "wght" 600;
      text-transform: uppercase;
      color: #fff; }
      .ybc_block_latest.page_home .category_tree li a:before {
        content: none; }
      .ybc_block_latest.page_home .category_tree li a:hover {
        text-decoration: underline;
        text-underline-offset: 6px; }
  .ybc_block_latest.page_home .read_more {
    text-decoration: underline;
    text-underline-offset: 2px; }
  .ybc_block_latest.page_home a {
    text-decoration: none;
    color: #fff; }
    .ybc_block_latest.page_home a:hover {
      color: #fff; }
  .ybc_block_latest.page_home .ybc_item_img::after {
    content: none; }

div.page_home .blog_view_all_button {
  text-align: center;
  margin-top: 2rem; }

.ybc_blog_post {
  position: relative; }
  .ybc_block_featured .ybc_blog_post,
  .ybc_block_popular .ybc_blog_post {
    padding: 0; }
  .ybc_block_popular .ybc_blog_post {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: justify;
        justify-content: space-between; }
    .ybc_block_popular .ybc_blog_post > a {
      -ms-flex: 0 0 40%;
          flex: 0 0 40%; }
    .ybc_block_popular .ybc_blog_post > div {
      -ms-flex: 0 0 calc(60% - 1rem);
          flex: 0 0 calc(60% - 1rem);
      margin-left: 1rem; }
  .ybc_blog_post:hover .read_more {
    background-size: 0 1px; }
  .ybc_blog_post .ybc_item_img {
    width: 100% !important;
    display: block;
    position: initial; }
    .ybc_blog_post .ybc_item_img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: transparent;
      display: block; }
    .ybc_blog_post .ybc_item_img img {
      width: 100%;
      display: block; }
  .ybc_blog_post .ybc-blog-title a::after {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    display: block; }
  .ybc_blog_post .ybc-blog-wrapper-content {
    width: 100% !important;
    padding: 15px 0 !important; }
  .ybc_blog_post .ybc-blog-categories {
    float: none;
    clear: both;
    display: block;
    transform: translateY(calc(-100% - 20px));
    margin: 10px 10px -20px; }
    .ybc_block_popular .ybc_blog_post .ybc-blog-categories {
      display: block;
      transform: none;
      margin: 0 0 5px; }
      .ybc_block_popular .ybc_blog_post .ybc-blog-categories a {
        font-size: 0.75rem;
        font-variation-settings: "wght" 600; }
    .ybc_blog_post .ybc-blog-categories a {
      position: relative;
      z-index: 11;
      background: #fff;
      color: #2866e8;
      padding: 5px 10px;
      text-transform: uppercase;
      font-size: 1rem;
      letter-spacing: 0.0375rem;
      text-decoration: none;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
      .ybc_blog_post .ybc-blog-categories a:hover {
        background: #fff;
        color: #000; }
  .ybc_blog_post .ybc-blog-title {
    color: #fff;
    font-size: 1.125rem;
    font-variation-settings: "wght" 500;
    letter-spacing: 0.04rem;
    margin-bottom: 10px;
    text-align: left;
    font-family: "Source Code Pro", sans-serif; }
    .ybc_block_popular .ybc_blog_post .ybc-blog-title,
    .ybc-blog-list .ybc_blog_post .ybc-blog-title,
    .ybc-blog-related-posts .ybc_blog_post .ybc-blog-title {
      color: #000;
      margin-top: 10px; }
    .ybc_block_featured .ybc_blog_post .ybc-blog-title {
      color: #000;
      font-size: 1.5rem; }
  .ybc_blog_post .blog_description {
    color: #fff;
    margin-bottom: 20px;
    line-height: 20px;
    font-size: 0.875rem; }
    @media (max-width: 991.98px) {
      .ybc_blog_post .blog_description {
        display: none; } }
  .ybc_blog_post .read_more {
    position: relative;
    background-image: linear-gradient(#fff, #fff);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 1px;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    text-decoration: none;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    font-style: normal;
    color: #fff;
    border: 0;
    pointer-events: none; }
    .ybc_blog_post .read_more:hover, .ybc_blog_post .read_more.active {
      text-decoration: none;
      background-size: 0% 1px; }
    .ybc_blog_post .read_more.reversed {
      background-size: 0% 1px; }
      .ybc_blog_post .read_more.reversed:hover, .ybc_blog_post .read_more.reversed.active {
        background-size: 100% 1px; }
    .ybc-blog-list .ybc_blog_post .read_more,
    .ybc-blog-related-posts .ybc_blog_post .read_more {
      color: #000;
      background-image: linear-gradient(#000, #000); }
    .ybc_block_featured .ybc_blog_post .read_more {
      border: 1px solid #000;
      background: #000; }
      .ybc_block_featured .ybc_blog_post .read_more:hover {
        background: #fff; }
    .ybc_blog_post .read_more:after {
      content: attr(data-read-more);
      display: block; }

@media (max-width: 991.98px) {
  .ybc_block_popular {
    margin-top: 2rem; } }

.ybc_block_popular .title_blog {
  font-size: 1.5rem;
  color: #2866e8;
  font-family: "Anton", sans-serif;
  font-variation-settings: "wght" 600;
  text-transform: none;
  font-weight: 400; }

.ybc_block_popular .swiper-wrapper {
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap; }
  @media (max-width: 991.98px) {
    .ybc_block_popular .swiper-wrapper {
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; } }

.ybc_block_popular .ybc_blog_post {
  margin-bottom: 10px; }
  @media (max-width: 991.98px) {
    .ybc_block_popular .ybc_blog_post {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap; } }

.ybc_block_popular .blog_view_all_button .view_all_link {
  padding: 0 !important;
  border-radius: 0; }
  .ybc_block_popular .blog_view_all_button .view_all_link:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000 !important; }

.ybc-blog-list li.ybc_blog_post {
  padding: 0 20px; }

.ybc-blog-list img {
  width: 100%; }

.category_tree {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .category_tree > li > a {
    margin-bottom: 0; }
  .category_tree.isIndex {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin-block: 1rem 3rem; }
    .category_tree.isIndex .first a {
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 100% 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone; }
      .category_tree.isIndex .first a:hover, .category_tree.isIndex .first a.active {
        text-decoration: none;
        background-size: 0 1px; }
      .category_tree.isIndex .first a.reversed {
        background-size: 0 1px; }
        .category_tree.isIndex .first a.reversed:hover, .category_tree.isIndex .first a.reversed.active {
          background-size: 100% 1px; }
    .category_tree.isIndex a {
      position: relative;
      background-image: linear-gradient(#fff, #fff);
      background-repeat: no-repeat;
      background-position: bottom left;
      background-size: 0 1px;
      transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
      text-decoration: none;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.06rem;
      font-size: 1.5rem;
      font-variation-settings: "wght" 600; }
      .category_tree.isIndex a:hover, .category_tree.isIndex a.active {
        text-decoration: none;
        background-size: 100% 1px; }
      .category_tree.isIndex a.reversed {
        background-size: 100% 1px; }
        .category_tree.isIndex a.reversed:hover, .category_tree.isIndex a.reversed.active {
          background-size: 0 1px; }
      .category_tree.isIndex a:before {
        display: none !important; }
      .category_tree.isIndex a:hover {
        color: #fff; }
      @media (max-width: 991.98px) {
        .category_tree.isIndex a {
          font-size: 1rem;
          margin: 10px;
          display: block; } }
  @media (max-width: 991.98px) {
    .category_tree {
      -ms-flex-pack: start;
          justify-content: flex-start; }
      .category_tree > li > a {
        margin-bottom: 10px; } }

#ybc_blog_page .single_post a {
  text-decoration: underline; }

#ybc_blog_page #breadcrumb *, #ybc_blog_page #breadcrumb {
  color: #000; }

#ybc_blog_page #breadcrumb a {
  background-image: linear-gradient(#000, #000); }

#ybc_blog_page #content-wrapper .page-heading {
  font-size: clamp(2.5rem, 3vw, 4.5rem);
  color: #2866e8; }

#ybc_blog_page .blog_description {
  color: #000;
  max-width: 60ch; }
  #ybc_blog_page .blog_description p {
    color: #000; }

#ybc_blog_page .blog_grid {
  margin: 1rem 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: 0.3fr (1fr)[3];
      grid-template-rows: 0.3fr repeat(3, 1fr);
  grid-gap: 1rem 3rem; }
  @media (max-width: 991.98px) {
    #ybc_blog_page .blog_grid {
      display: block; } }
  #ybc_blog_page .blog_grid .category_tree {
    grid-area: 1 / 1 / 2 / 5; }
  #ybc_blog_page .blog_grid .ybc_block_search {
    grid-area: 1 / 5 / 2 / 7; }
  #ybc_blog_page .blog_grid .ybc_block_featured {
    grid-area: 2 / 1 / 5 / 4; }
  #ybc_blog_page .blog_grid .ybc_block_popular {
    grid-area: 2 / 4 / 5 / 7; }

#ybc_blog_page .ybc_block_search {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }
  #ybc_blog_page .ybc_block_search .title_blog {
    display: none; }
  #ybc_blog_page .ybc_block_search input {
    border: 0;
    font-style: italic;
    padding-right: 40px; }
    #ybc_blog_page .ybc_block_search input::-webkit-input-placeholder {
      color: #000;
      text-align: right; }
    #ybc_blog_page .ybc_block_search input:-ms-input-placeholder {
      color: #000;
      text-align: right; }
    #ybc_blog_page .ybc_block_search input::placeholder {
      color: #000;
      text-align: right; }
  #ybc_blog_page .ybc_block_search .icon_search {
    right: 0;
    top: 50%;
    width: 30px;
    transform: translateY(-50%); }
    #ybc_blog_page .ybc_block_search .icon_search::before {
      content: "";
      display: none !important; }

.blog_view_all,
.view_all_link {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  border-color: #000;
  font-variation-settings: "wght" 500; }
  .blog_view_all:hover,
  .view_all_link:hover {
    background: #fff;
    color: #000; }

#ybc_blog_page .slick-slide {
  padding: 0 20px; }
  #ybc_blog_page .slick-slide a {
    text-decoration: none; }
    #ybc_blog_page .slick-slide a:hover {
      text-decoration: none; }

#product .ybc-blog-related-posts {
  border-top: none;
  background-color: unset;
  box-shadow: unset;
  float: none; }
  #product .ybc-blog-related-posts .page-heading {
    margin-bottom: 2rem; }
    @media (max-width: 767.98px) {
      #product .ybc-blog-related-posts .page-heading {
        max-width: 240px;
        margin: 0 auto 2rem; } }
  #product .ybc-blog-related-posts .ybc-blog-related-posts-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 2rem 1rem;
    float: none;
    width: 100%;
    margin: 0; }
    @media (max-width: 767.98px) {
      #product .ybc-blog-related-posts .ybc-blog-related-posts-list {
        -ms-flex-direction: column;
            flex-direction: column; } }
  #product .ybc-blog-related-posts .ybc-blog-related-posts-list > li {
    padding: 0;
    margin: 0;
    float: none; }
  #product .ybc-blog-related-posts .ybc_item_img_ladyload {
    height: auto; }
  #product .ybc-blog-related-posts .ybc_item_img.ybc_item_img_ladyload img {
    position: relative; }

#module-axstorelocator-listing .store-types {
  display: -ms-flexbox;
  display: flex; }
  #module-axstorelocator-listing .store-types:empty {
    display: none; }
  #module-axstorelocator-listing .store-types:not(:empty) {
    margin-bottom: .5em; }
  #module-axstorelocator-listing .store-types .store-type {
    margin-right: 10px;
    padding: 0 5px;
    font-size: 0.875rem;
    font-variation-settings: "wght" 500;
    line-height: 1.5;
    text-transform: uppercase;
    background-color: #009B9C;
    color: #fff; }
    #module-axstorelocator-listing .store-types .store-type.enoliss {
      background-color: #C4305B; }
    #module-axstorelocator-listing .store-types .store-type.enobright {
      background-color: #E65400; }

#ybc_blog_page #breadcrumb {
  position: relative;
  z-index: 1; }

#ybc_blog_page .single_post .ybc-blog-wrapper-detail {
  padding: 0; }

#ybc_blog_page .elementor-container {
  max-width: none !important; }

#ybc_blog_page .ybc-blog-tags-social {
  display: -ms-flexbox;
  display: flex; }

#ybc_blog_page .post-details .blog_description {
  max-width: none;
  margin: 0 -10px; }
  #ybc_blog_page .post-details .blog_description .elementor h1, #ybc_blog_page .post-details .blog_description .elementor h2, #ybc_blog_page .post-details .blog_description .elementor h3, #ybc_blog_page .post-details .blog_description .elementor h4, #ybc_blog_page .post-details .blog_description .elementor h5, #ybc_blog_page .post-details .blog_description .elementor h6 {
    text-align: unset;
    color: #2866e8;
    font-weight: 400; }

.post-details .ps-social-follow {
  margin: auto;
  text-align: center;
  padding-bottom: 2rem; }

.blog-header {
  position: relative;
  min-height: 350px;
  padding-top: 40px;
  transform: translateY(-40px);
  margin-bottom: calc(-40px / 2); }
  .blog-header .ybc_blog_img_wrapper {
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: -1; }
    .blog-header .ybc_blog_img_wrapper img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
  .blog-header .title_cat {
    text-align: center;
    font-size: 4.5rem; }
    @media (max-width: 767.98px) {
      .blog-header .title_cat {
        font-size: 2.875rem; } }

.ybc-blog-latest-toolbar *, .ybc-blog-latest-toolbar > a, div.be-categories *, div.be-categories > a {
  color: #000; }

.ybc-blog-related-products-wrapper .ybc_item_img {
  background-color: unset; }

.ybc-blog-related-products-wrapper .swiper-slide .product-list-actions a {
  display: block; }

.hi-faq-main-page h1 {
  margin-bottom: 2rem; }

.hi-faq-main-page h1,
.hi-faq-main-page .h1 {
  font-size: 2rem; }

.hi-faq-block {
  max-width: 80rem;
  margin: 0 auto; }
  .hi-faq-block .hi-faq-block-title {
    margin-bottom: 2rem;
    font-size: 1.5rem; }
  .hi-faq-block .hi-faq-link {
    display: none; }
  .hi-faq-block .hi-faq-item .hi-faq-question > .hi-faq-question-link {
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    font-size: 0.75rem; }
    .hi-faq-block .hi-faq-item .hi-faq-question > .hi-faq-question-link::before {
      width: 16px; }
    .hi-faq-block .hi-faq-item .hi-faq-question > .hi-faq-question-link::after {
      height: 16px;
      right: 1.4375rem; }
  .hi-faq-block .hi-faq-item .hi-faq-answer {
    padding: 0 1.25rem 0.75rem; }
    .hi-faq-block .hi-faq-item .hi-faq-answer span,
    .hi-faq-block .hi-faq-item .hi-faq-answer p {
      font-size: 0.75rem; }

div.hi-faq-item {
  border: none;
  background-color: #f5f5f5; }
  div.hi-faq-item .hi-faq-question {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    transition: none;
    padding: 0; }
    div.hi-faq-item .hi-faq-question:hover {
      opacity: 1; }
    div.hi-faq-item .hi-faq-question > .hi-faq-question-link {
      position: relative;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: justify;
          justify-content: space-between;
      cursor: pointer;
      width: 100%;
      padding: 1rem 2.8rem 1rem 1.5rem;
      font-family: "Montserrat", sans-serif;
      font-size: 0.875rem;
      font-variation-settings: "wght" 700;
      color: #000;
      margin-bottom: 0; }
      div.hi-faq-item .hi-faq-question > .hi-faq-question-link::before, div.hi-faq-item .hi-faq-question > .hi-faq-question-link::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 1rem;
        transform: translateY(-50%);
        background-color: #000;
        transition: opacity 0.2s; }
      div.hi-faq-item .hi-faq-question > .hi-faq-question-link::before {
        width: 20px;
        height: 2px; }
      div.hi-faq-item .hi-faq-question > .hi-faq-question-link::after {
        width: 2px;
        height: 20px;
        right: 1.5rem; }
    div.hi-faq-item .hi-faq-question.open .hi-faq-question-link::after {
      opacity: 0; }
  div.hi-faq-item .hi-faq-answer {
    padding: 0 1.5rem 1rem; }
  div.hi-faq-item span,
  div.hi-faq-item p {
    font-family: "Montserrat", sans-serif;
    font-size: 0.875rem;
    font-variation-settings: "wght" 700; }
  div.hi-faq-item p {
    font-variation-settings: "wght" 400; }

.ax-giftcard input::-webkit-input-placeholder {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.39;
  letter-spacing: 0.2px;
  color: #7a7a7a; }

.ax-giftcard input:-ms-input-placeholder {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.39;
  letter-spacing: 0.2px;
  color: #7a7a7a; }

.ax-giftcard input::placeholder {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.39;
  letter-spacing: 0.2px;
  color: #7a7a7a; }

.ax-giftcard label {
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.39;
  letter-spacing: 0.2px;
  color: #1f1f1f; }

.ax-giftcard h1 {
  font-family: "Anton", sans-serif;
  font-size: 48px;
  font-weight: "wght" 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.06;
  color: #262626;
  padding: 1rem 0; }

.ax-giftcard .step-title.page-heading {
  font-family: "Anton", sans-serif;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #262626;
  width: 100%;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e6e6e6;
  font-variation-settings: "wght" 700; }
  @media (max-width: 767.98px) {
    .ax-giftcard .step-title.page-heading {
      font-size: 1.5rem; } }
  .ax-giftcard .step-title.page-heading .step-number {
    font-size: 22px; }

.ax-giftcard .giftcard-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  color: #000; }

.ax-giftcard-bottom, .ax-giftcard-top {
  margin: 0 auto; }

.ax-giftcard #gc-step-template {
  display: none; }
  .ax-giftcard #gc-step-template .gc-section-content {
    text-align: center; }

.ax-giftcard .ax-giftcardConfig-content #remaining_characters {
  color: #000;
  opacity: 0.3;
  margin-top: 0.5rem;
  font-size: 0.75rem; }

.ax-giftcard .ax-giftcardConfig-content .form-group label {
  font-size: 0.875rem; }

.ax-giftcard .ax-giftcardConfig-content .form-group .form-control {
  padding: 0;
  font-size: 0.75rem; }
  .ax-giftcard .ax-giftcardConfig-content .form-group .form-control::-webkit-input-placeholder {
    font-size: 0.75rem; }
  .ax-giftcard .ax-giftcardConfig-content .form-group .form-control:-ms-input-placeholder {
    font-size: 0.75rem; }
  .ax-giftcard .ax-giftcardConfig-content .form-group .form-control::placeholder {
    font-size: 0.75rem; }

.ax-giftcard .ax-giftcardConfig-content .form-group .ts-wrapper, .ax-giftcard .ax-giftcardConfig-content .form-group .ts-wrapper .ts-control {
  border: unset;
  border-bottom: 1px solid #e6e6e6; }

.ax-giftcard .ax-giftcardConfig-content .form-group .select2-selection {
  padding: 0.5rem 0; }
  .ax-giftcard .ax-giftcardConfig-content .form-group .select2-selection .select2-selection__rendered {
    font-size: 0.75rem;
    padding: 0; }

.ax-giftcard .ax-giftcardConfig-content .text textarea {
  font-size: 0.75rem; }
  .ax-giftcard .ax-giftcardConfig-content .text textarea::-webkit-input-placeholder {
    font-size: 0.75rem; }
  .ax-giftcard .ax-giftcardConfig-content .text textarea:-ms-input-placeholder {
    font-size: 0.75rem; }
  .ax-giftcard .ax-giftcardConfig-content .text textarea::placeholder {
    font-size: 0.75rem; }

.ax-giftcard .ax-giftcardConfig-option-label {
  font-weight: "wght" 700; }

.ax-giftcard .ax-giftcardConfig-email {
  margin-bottom: 4rem; }

.ax-giftcard .ax-giftcardConfig-btn {
  text-transform: uppercase;
  height: 40px;
  padding: 0 2rem;
  margin-top: 1rem;
  font-size: 0.75rem; }
  @media (max-width: 767.98px) {
    .ax-giftcard .ax-giftcardConfig-btn {
      margin-bottom: 2rem; } }

@media (max-width: 767.98px) {
  .ax-giftcard .ax-giftcardConfig-date .select2-container:last-of-type, .ax-giftcard .ax-giftcardConfig-date .select2-container:first-of-type {
    width: 25% !important; } }

.ax-giftcardConfig {
  margin-top: 2rem;
  color: #000; }
  .ax-giftcardConfig input {
    border: unset;
    border-bottom: 1px solid #e6e6e6; }
  .ax-giftcardConfig textarea {
    resize: none; }
  .ax-giftcardConfig .gc-receptmode-options {
    width: 50%; }
    @media (max-width: 991.98px) {
      .ax-giftcardConfig .gc-receptmode-options {
        width: 100%; } }
  .ax-giftcardConfig .send-mail {
    width: 50%; }
    @media (max-width: 991.98px) {
      .ax-giftcardConfig .send-mail {
        width: 100%; } }
  .ax-giftcardConfig p {
    padding-bottom: 20px; }
  .ax-giftcardConfig-wrapper {
    background-color: #262626;
    padding: 60px;
    margin-bottom: 65px;
    background-size: cover; }
  .ax-giftcardConfig-content {
    background-color: #FFF;
    padding: 140px; }
  .ax-giftcardConfig-textarea {
    border: 1px solid #e6e6e6;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.39;
    letter-spacing: 0.2px;
    color: #7a7a7a;
    padding: 13px 16px;
    height: 376px !important; }
  .ax-giftcardConfig-list {
    margin-top: 12px;
    margin-bottom: 30px; }
    .ax-giftcardConfig-list-title {
      display: block;
      margin-top: 25px;
      font-size: 14px;
      line-height: 1.39;
      letter-spacing: 0.2px;
      color: #1f1f1f; }
  .ax-giftcardConfig-item {
    width: 180px;
    border-radius: 2px;
    border: solid 1px #e6e6e6;
    display: inline-block;
    margin-right: 15px; }
    .ax-giftcardConfig-item.selected {
      border-radius: 2px;
      border: solid 2px #262626; }
  .ax-giftcardConfig-option {
    padding-left: 30px;
    margin-top: 33px;
    margin-bottom: 30px; }
    .ax-giftcardConfig-option-label {
      font-size: 16px;
      font-weight: normal;
      font-style: normal;
      font-stretch: normal;
      line-height: 1.22;
      letter-spacing: 0.2px;
      color: #262626;
      margin-bottom: 16px;
      display: block; }
    #module-giftcard-choicegiftcard .ax-giftcardConfig-option-descr {
      font-size: 15px;
      line-height: 1.6;
      color: #000;
      font-variation-settings: "wght" 400; }
  .ax-giftcardConfig-email {
    margin-top: 40px !important;
    max-width: 280px; }
  .ax-giftcardConfig-date {
    font-size: 0;
    display: -ms-flexbox;
    display: flex;
    gap: 20px; }
    .ax-giftcardConfig-date .ts-wrapper.single .ts-control {
      width: 110px;
      font-size: 14px;
      margin-right: 15px;
      border-top-color: transparent;
      border-right-color: transparent;
      border-left-color: transparent;
      border-bottom-color: #000; }
      @media screen and (max-width: 768px) {
        .ax-giftcardConfig-date .ts-wrapper.single .ts-control {
          width: auto;
          min-width: 85px;
          max-width: 110px;
          margin-right: 10px; } }
    .ax-giftcardConfig-date .select2, .ax-giftcardConfig-date select {
      min-width: 110px;
      font-size: 14px;
      margin-right: 15px; }
  .ax-giftcardConfig-sendTo {
    margin-top: 50px; }
  .ax-giftcardConfig-btn {
    height: 48px;
    line-height: 34px;
    border-radius: 2px;
    background-color: #262626;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: #FFF; }
    .ax-giftcardConfig-btn[disabled="disabled"] {
      cursor: not-allowed;
      color: graytext; }

#recepmode-mail-additional-information {
  margin-top: 20px; }

#gc-success-modal {
  max-width: 960px; }

#module-giftcard-choicegiftcard .fancybox-wrap {
  max-width: 960px;
  left: 50% !important;
  transform: translateX(-50%) !important; }

#module-giftcard-choicegiftcard .fancybox-inner {
  max-width: 960px; }

.ax-giftcardConfig-content {
  padding: 60px; }

@media (max-width: 991.98px) {
  .ax-giftcardConfig-wrapper {
    padding: 30px; }
  .ax-giftcardConfig-content {
    padding: 20px; } }

@media (max-width: 767.98px) {
  .ax-giftcardConfig-wrapper {
    padding: 24px 16px; }
  .ax-giftcardConfig-content {
    padding: 16px; }
  .ax-giftcardConfig-btn {
    width: 100%; } }

.ax-giftcardExplain {
  background-color: #f1efec;
  padding: 62px 0;
  margin-top: 62px;
  position: relative; }
  .ax-giftcardExplain:before {
    position: absolute;
    content: '';
    width: 200vw;
    top: 0;
    bottom: 0;
    left: -100vw;
    background-color: #f1efec;
    z-index: -1; }
  .ax-giftcardExplain-title {
    font-family: "Anton", sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: #262626; }
  .ax-giftcardExplain-subtitle {
    margin: 3px 0 70px 0;
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.6;
    letter-spacing: normal;
    color: #7a7a7a; }
  .ax-giftcardExplain-stepList {
    margin-right: -25px;
    margin-left: -25px;
    font-size: 0; }
  .ax-giftcardExplain-stepItem {
    display: inline-block;
    width: calc(20%);
    padding-left: 25px;
    padding-right: 25px;
    vertical-align: top; }
    .ax-giftcardExplain-stepItem:first-child {
      margin-left: 0; }
  .ax-giftcardExplain-stepImg {
    text-align: center;
    height: 172px;
    font-size: 0; }
    .ax-giftcardExplain-stepImg img {
      max-width: 100%;
      display: inline-block;
      vertical-align: middle; }
    .ax-giftcardExplain-stepImg:before {
      content: '';
      width: 0;
      height: 100%;
      display: inline-block;
      vertical-align: middle; }
  .ax-giftcardExplain-stepTxt {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: normal;
    text-align: center;
    color: #7a7a7a; }

#module-giftcard-choicegiftcard {
  overflow-x: hidden; }

@media (max-width: 991.98px) {
  .ax-giftcardExplain-stepImg {
    height: 140px; } }

@media (max-width: 767.98px) {
  .ax-giftcardExplain-stepImg {
    height: auto; }
  .ax-giftcardExplain-stepList {
    margin-left: 16px;
    margin-right: 16px; }
  .ax-giftcardExplain-stepItem {
    width: 100%;
    padding: 0;
    margin-bottom: 45px; }
    .ax-giftcardExplain-stepItem:last-child {
      margin-bottom: 0; } }

#module-giftcard-choicegiftcard .fancybox-inner {
  width: 960px !important;
  overflow: hidden;
  width: 95vw !important; }
  @media (max-width: 991.98px) {
    #module-giftcard-choicegiftcard .fancybox-inner {
      width: 90vw !important; } }

#module-giftcard-choicegiftcard .fancybox-close {
  top: 15px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url(../../assets/img/svg/nav-cross.svg); }

#gc-success-modal .gcsm-body {
  padding: 40px 20px 0; }
  #gc-success-modal .gcsm-body > .row .gcsmb-left {
    border-right: none; }
    #gc-success-modal .gcsm-body > .row .gcsmb-left button {
      margin-top: 50px;
      height: auto;
      line-height: 1;
      border: none;
      padding: 0; }
      #gc-success-modal .gcsm-body > .row .gcsmb-left button:hover {
        color: #000;
        text-decoration: underline; }
      #gc-success-modal .gcsm-body > .row .gcsmb-left button:before {
        content: '';
        width: 16px;
        height: 16px;
        display: inline-block;
        border-radius: 50%;
        vertical-align: -3px;
        margin-right: 5px; }
  #gc-success-modal .gcsm-body > .row > .col-md-5 .btn, #gc-success-modal .gcsm-body > .row > .col-md-5 .axadblock .axadblock-link, .axadblock #gc-success-modal .gcsm-body > .row > .col-md-5 .axadblock-link {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    height: auto;
    margin-top: 20px; }

@media (max-width: 991.98px) {
  #gc-success-modal .modal-title {
    max-width: 90%; }
  #gc-success-modal .btn-back {
    margin: 1.5rem 0 !important; } }

html {
  scroll-behavior: smooth; }
  html ::-moz-selection {
    background: #000;
    color: #fff;
    -webkit-text-fill-color: #fff; }
  html ::selection {
    background: #000;
    color: #fff;
    -webkit-text-fill-color: #fff; }
  html::-webkit-scrollbar {
    width: 10px;
    background-color: #fff; }
  html::-webkit-scrollbar-thumb {
    background-color: #000; }

.dropdown-item.active a {
  color: #fff; }

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

label {
  font-variation-settings: "wght" 700;
  color: #000;
  margin: 0; }
  label.required > span:not(.select2):after {
    content: "*"; }

.rte p {
  min-height: 1px; }

.rte h2 {
  font-size: 1.25rem;
  text-align: left; }

.rte h3 {
  font-size: 1.125rem;
  text-align: left; }

.rte h4, .rte h5, .rte h6 {
  font-size: 1rem;
  text-align: left; }

.radio-block {
  display: block;
  cursor: pointer; }

.modal-dialog {
  max-width: 960px; }

body {
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-variation-settings: "wght" 400;
  color: #000; }

strong,
b {
  font-variation-settings: "wght" 600; }

a:focus,
a.active,
a:hover {
  outline: none; }

.alert-info {
  color: #000;
  background: #fff;
  border-color: #fff; }

#module-psgdpr-gdpr #exportDataToCsv {
  float: none;
  margin: 0; }

.content_only {
  padding-bottom: 2rem; }
  .content_only #breadcrumb {
    display: none !important; }
  .content_only #cms .page-content {
    width: 100%; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background-image: url("../img/photoswipe/default-skin.png");
  background-repeat: no-repeat;
  background-size: 264px 88px;
  width: 32px;
  height: 32px; }

.pswp__counter {
  display: none; }

.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  width: 32px;
  height: 32px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url("../img/photoswipe/default-skin.svg"); } }

body form div label img {
  float: none;
  width: auto;
  padding: 0; }

.uppercase {
  text-transform: uppercase; }

img[data-src]:not(.loaded) {
  opacity: 0;
  display: block; }

img.loaded {
  transition: opacity 0.2s ease-in-out; }

#header-top .header-right > div a,
#header-top .header-right > div span, #header-top .header-right #search_query_top, #search_widget button[type="submit"], .ps-social-follow li {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(0); }
  #header-top .header-right > div a:hover,
  #header-top .header-right > div span:hover, #header-top .header-right #search_query_top:hover, #search_widget button:hover[type="submit"], .ps-social-follow li:hover {
    transform: translateY(-5px); }

@media (min-width: 768px) and (max-width: 991.98px) {
  .ax_tunnelcontact {
    margin-top: 2rem; } }

@media (max-width: 767.98px) {
  #left-column .category-tree.parent_lvl.card .card-body li {
    display: inline-block; }
  #left-column .category-tree.card .card-body li {
    display: none; }
    #left-column .category-tree.card .card-body li > ul {
      display: none; }
    #left-column .category-tree.card .card-body li.active {
      display: inline-block; }
      #left-column .category-tree.card .card-body li.active > a {
        display: none; }
    #left-column .category-tree.card .card-body li.deeper-active {
      display: inline-block;
      font-size: 0;
      padding: 0; }
      #left-column .category-tree.card .card-body li.deeper-active > a {
        background: #fff;
        color: #FFF; }
      #left-column .category-tree.card .card-body li.deeper-active.no-selected > a {
        background: none;
        color: #000; }
      #left-column .category-tree.card .card-body li.deeper-active a {
        display: inline-block;
        padding: 15px 20px 13px;
        font-size: 0.875rem;
        text-transform: uppercase; }
      #left-column .category-tree.card .card-body li.deeper-active > ul {
        display: inline-block; }
        #left-column .category-tree.card .card-body li.deeper-active > ul > li {
          display: inline-block;
          padding: 0;
          border: none; }
          #left-column .category-tree.card .card-body li.deeper-active > ul > li.active {
            background: #fff; }
            #left-column .category-tree.card .card-body li.deeper-active > ul > li.active a {
              color: #FFF; }
  #left-column .card,
  #left-column #axblog_menu_cat,
  #ax-blog .card,
  #ax-blog #axblog_menu_cat {
    white-space: nowrap;
    overflow-y: scroll;
    margin: 1rem -20px;
    padding: 0;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd; }
    #left-column .card .card-header,
    #left-column #axblog_menu_cat .card-header,
    #ax-blog .card .card-header,
    #ax-blog #axblog_menu_cat .card-header {
      display: none; }
    #left-column .card .card-body li,
    #left-column #axblog_menu_cat .card-body li,
    #ax-blog .card .card-body li,
    #ax-blog #axblog_menu_cat .card-body li {
      display: inline-block; }
      #left-column .card .card-body li a,
      #left-column #axblog_menu_cat .card-body li a,
      #ax-blog .card .card-body li a,
      #ax-blog #axblog_menu_cat .card-body li a {
        border: none;
        padding: 15px 20px 13px; }
  .ax_tunnelcontact {
    margin-top: 2rem; }
  body.page-cart .cart-overview {
    border-bottom: none; }
    body.page-cart .cart-overview .cart-item {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      body.page-cart .cart-overview .cart-item .product-image {
        width: 35%;
        padding: 0.5rem; }
      body.page-cart .cart-overview .cart-item .product-info {
        width: 65%;
        margin-bottom: 1rem; }
      body.page-cart .cart-overview .cart-item .product-qty {
        width: auto;
        margin-left: 40%; } }
      @media (max-width: 767.98px) and (max-width: 767.98px) {
        body.page-cart .cart-overview .cart-item .product-qty {
          margin-left: 35%; }
          body.page-cart .cart-overview .cart-item .product-qty .input-group-btn {
            display: none; } }

@media (max-width: 767.98px) {
        body.page-cart .cart-overview .cart-item .product-qty a {
          display: none; }
      body.page-cart .cart-overview .cart-item .product-price {
        width: auto;
        padding: 0; } }
      @media (max-width: 767.98px) and (max-width: 767.98px) {
        body.page-cart .cart-overview .cart-item .product-price {
          font-size: 1rem; } }

@media (max-width: 767.98px) {
      body.page-cart .cart-overview .cart-item .product-remove {
        width: 30px; }
  body.page-order #order-step {
    white-space: nowrap;
    overflow-y: scroll; }
    body.page-order #order-step .h3 {
      overflow: hidden;
      display: inline-block;
      padding-right: 0.7rem; }
  body.page-order #checkout-delivery-step .delivery-options-list {
    margin: 0; }
  body.page-order #checkout-delivery-step .delivery-option-bg .delivery-option {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
    body.page-order #checkout-delivery-step .delivery-option-bg .delivery-option > div {
      padding: 0 5px; }
  body.page-order #checkout-payment-step .payment-bg .js-additional-information,
  body.page-order #checkout-payment-step .payment-bg .js-payment-option-form {
    padding: 0 10px 0 30px; }
  body.page-order #checkout-payment-step #conditions-to-approve li {
    position: relative; }
    body.page-order #checkout-payment-step #conditions-to-approve li input {
      position: absolute;
      left: 0;
      top: 2px; }
    body.page-order #checkout-payment-step #conditions-to-approve li label {
      padding-left: 18px; }
  #page.button-cta-fixed #add-to-cart button {
    transition: none;
    z-index: 25;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    border: 1px solid #fff; }
    .iphoneX #page.button-cta-fixed #add-to-cart button {
      bottom: 30px; }
    #page.button-cta-fixed #add-to-cart button[style*="relative"] {
      left: auto;
      right: auto;
      width: 100%; }
      .iphoneX #page.button-cta-fixed #add-to-cart button[style*="relative"] {
        bottom: 0; }
  #page.button-cta-fixed .btn-tunnel {
    height: 87px; }
    #page.button-cta-fixed .btn-tunnel .btn-checkout {
      transition: none;
      z-index: 25;
      position: fixed;
      bottom: 10px;
      left: 20px;
      right: 20px;
      width: calc(100% - 40px);
      margin-bottom: 0;
      margin-top: 10px; }
      .iphoneX #page.button-cta-fixed .btn-tunnel .btn-checkout {
        bottom: 30px; }
      #page.button-cta-fixed .btn-tunnel .btn-checkout[style*="relative"] {
        left: 0;
        right: 0;
        width: 100%; }
        .iphoneX #page.button-cta-fixed .btn-tunnel .btn-checkout[style*="relative"] {
          bottom: 0; }
  .iphoneX #page.button-cta-fixed #mob-filtre-close, .iphoneX
  #page.button-cta-fixed .PM_ASResetSearch {
    bottom: 30px; } }

.iziToast-body a {
  text-decoration: underline; }

#CybotCookiebotDialog #CybotCookiebotDialogPoweredbyImage {
  max-height: 3.125em; }

#CybotCookiebotDialog #CybotCookiebotDialogPoweredbyCybot {
  width: 50px; }

