body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
}
.display-5 {
  font-family: 'Comfortaa', display;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.6rem;
    font-size: calc( 2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.225rem + (4.5 - 2.225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.8rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #a38dfd !important;
}
.bg-success {
  background-color: #b2ccd2 !important;
}
.bg-info {
  background-color: #1ba1e2 !important;
}
.bg-warning {
  background-color: #82786e !important;
}
.bg-danger {
  background-color: #879a9f !important;
}
.btn-primary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #6642fc;
  border-color: #6642fc;
  border-radius: 100px;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-primary:hover:before,
.btn-primary:focus:before,
.btn-primary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #6642fc !important;
  border-color: #6642fc !important;
}
.btn-secondary {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe0613;
  border-color: #fe0613;
  border-radius: 100px;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #fe525b !important;
  border-color: #fe525b !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-secondary:hover:before,
.btn-secondary:focus:before,
.btn-secondary.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #fe0613 !important;
  border-color: #fe0613 !important;
}
.btn-info {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #13709e;
  border-color: #13709e;
  border-radius: 100px;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-info:hover:before,
.btn-info:focus:before,
.btn-info.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #13709e !important;
  border-color: #13709e !important;
}
.btn-success {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82acb6;
  border-color: #82acb6;
  border-radius: 100px;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-success:hover:before,
.btn-success:focus:before,
.btn-success.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #82acb6 !important;
  border-color: #82acb6 !important;
}
.btn-warning {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #59524b;
  border-color: #59524b;
  border-radius: 100px;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-warning:hover:before,
.btn-warning:focus:before,
.btn-warning.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-danger {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #617479;
  border-color: #617479;
  border-radius: 100px;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger:hover:before,
.btn-danger:focus:before,
.btn-danger.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-black {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
  border-radius: 100px;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black:hover:before,
.btn-black:focus:before,
.btn-black.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-white {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  border-radius: 100px;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white:hover:before,
.btn-white:focus:before,
.btn-white.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #333333 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
}
.btn-primary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-primary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #a38dfd;
  border-color: #a38dfd;
  border-radius: 100px;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #5229fb;
  color: #5229fb !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a38dfd;
  border-color: #a38dfd;
}
.btn-primary-outline:hover:before,
.btn-primary-outline:focus:before,
.btn-primary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a38dfd !important;
  border-color: #a38dfd !important;
}
.btn-secondary-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-secondary-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #fe525b;
  border-color: #fe525b;
  border-radius: 100px;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #e9010d;
  color: #e9010d !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #fe525b;
  border-color: #fe525b;
}
.btn-secondary-outline:hover:before,
.btn-secondary-outline:focus:before,
.btn-secondary-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #fe525b !important;
  border-color: #fe525b !important;
}
.btn-info-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-info-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
  border-radius: 100px;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #106087;
  color: #106087 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #1ba1e2;
  border-color: #1ba1e2;
}
.btn-info-outline:hover:before,
.btn-info-outline:focus:before,
.btn-info-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #1ba1e2 !important;
  border-color: #1ba1e2 !important;
}
.btn-success-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-success-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
  border-radius: 100px;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #72a1ac;
  color: #72a1ac !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #b2ccd2;
  border-color: #b2ccd2;
}
.btn-success-outline:hover:before,
.btn-success-outline:focus:before,
.btn-success-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #b2ccd2 !important;
  border-color: #b2ccd2 !important;
}
.btn-warning-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-warning-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #82786e;
  border-color: #82786e;
  border-radius: 100px;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-warning-outline:hover:before,
.btn-warning-outline:focus:before,
.btn-warning-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-danger-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-danger-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #879a9f;
  border-color: #879a9f;
  border-radius: 100px;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-danger-outline:hover:before,
.btn-danger-outline:focus:before,
.btn-danger-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-black-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-black-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #333333;
  border-color: #333333;
  border-radius: 100px;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline:hover:before,
.btn-black-outline:focus:before,
.btn-black-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
}
.btn-white-outline:before {
  content: "";
  position: absolute;
  z-index: -1;
  height: 2rem;
  width: 2rem;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  -webkit-transform: scale(0);
  transform: scale(0);
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  background-color: #ffffff;
  border-color: #ffffff;
  border-radius: 100px;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333 !important;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-white-outline:hover:before,
.btn-white-outline:focus:before,
.btn-white-outline.focus:before {
  -webkit-transform: scale(10);
  transform: scale(10);
}
.text-primary {
  color: #a38dfd !important;
}
.text-secondary {
  color: #fe525b !important;
}
.text-success {
  color: #b2ccd2 !important;
}
.text-info {
  color: #1ba1e2 !important;
}
.text-warning {
  color: #82786e !important;
}
.text-danger {
  color: #879a9f !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #5229fb !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #e9010d !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #72a1ac !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #106087 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #4b453f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #55666b !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #b2ccd2;
}
.alert-info {
  background-color: #1ba1e2;
}
.alert-warning {
  background-color: #82786e;
}
.alert-danger {
  background-color: #879a9f;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .3s, .3s, .3s, .8s;
  transition-timing-function: ease-in-out;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #a38dfd;
  border-color: #a38dfd;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a38dfd;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d0ecf9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ced6d8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Comfortaa', display;
  font-size: 1.1rem;
}
blockquote {
  border-color: #a38dfd;
}
/* Forms */
.mbr-form .btn {
  margin: .3rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 2rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.special-form {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background: #efefef;
  color: #000000;
}
.jq-selectbox li {
  border-radius: 22px;
  background-color: #a38dfd;
  border: 1px solid #e8e8e8;
}
.jq-selectbox li:not(:nth-last-child(1)) {
  margin-bottom: 5px;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  border-radius: 22px;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a38dfd;
  border-bottom-color: #a38dfd;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #a38dfd !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #fe525b !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23a38dfd' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sOq62poT1c .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .nav-item:focus,
.cid-sOq62poT1c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sOq62poT1c .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sOq62poT1c .nav-item .nav-link {
    position: relative;
  }
  .cid-sOq62poT1c .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sOq62poT1c .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOq62poT1c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOq62poT1c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOq62poT1c .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sOq62poT1c .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-sOq62poT1c .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sOq62poT1c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sOq62poT1c .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sOq62poT1c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sOq62poT1c .navbar.collapsed .right-menu,
.cid-sOq62poT1c .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse.show,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .navbar-collapse.show .brand-container,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sOq62poT1c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sOq62poT1c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sOq62poT1c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOq62poT1c .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sOq62poT1c .navbar .right-menu,
  .cid-sOq62poT1c .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sOq62poT1c .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOq62poT1c .navbar.navbar-short .mbr-overlay {
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sOq62poT1c .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sOq62poT1c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOq62poT1c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOq62poT1c .dropdown-item.active,
.cid-sOq62poT1c .dropdown-item:active {
  background-color: transparent;
}
.cid-sOq62poT1c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOq62poT1c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOq62poT1c ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sOq62poT1c .navbar-buttons {
  margin-left: auto;
}
.cid-sOq62poT1c button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c .navbar-dropdown {
  position: fixed;
}
.cid-sOq62poT1c a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sOq62poT1c .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sOq62poT1c .right-menu,
.cid-sOq62poT1c .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sOq62poT1c .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sOq62poT1c .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sOq62poT1c .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sOq62poT1c .card-wrapper {
  z-index: 3;
}
.cid-sOq62poT1c .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOq6iqIRjq {
  background-image: url("../../../assets/images/img-819-423x369.jpg?v=1Unlta");
}
.cid-sOq6iqIRjq .mbr-section-title,
.cid-sOq6iqIRjq .mbr-section-subtitle {
  color: #879a9f;
}
.cid-sOq6iqIRjq .mbr-section-text {
  color: #767676;
}
.cid-sOq6iqIRjq .mbr-text,
.cid-sOq6iqIRjq .typed-text,
.cid-sOq6iqIRjq .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-sOq6iqIRjq .btn {
  margin-left: 4px !important;
}
.cid-sOq6iqIRjq .animated-element {
  color: #a38dfd;
}
.cid-sOq6iqIRjq .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #a38dfd;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-sOq6iqIRjq .mbr-section-subtitle,
.cid-sOq6iqIRjq .typed-text {
  color: #5ef125;
}
.cid-sOq6iqIRjq .mbr-section-title {
  color: #5ef125;
}
.cid-tRt2s9RdvE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #2d10a3;
}
.cid-tRt2s9RdvE .container-fluid {
  padding: 0 3rem;
}
.cid-tRt2s9RdvE .mbr-section-title {
  color: #096693;
  text-align: right;
}
.cid-tRt2s9RdvE .btn {
  margin-top: 0;
}
.cid-tRt2s9RdvE .media-container-column {
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .cid-tRt2s9RdvE .container-fluid {
    padding: 0 1rem;
  }
  .cid-tRt2s9RdvE .btn {
    margin-top: 0.4rem;
  }
  .cid-tRt2s9RdvE .mbr-section-btn {
    margin: 0;
  }
}
.cid-tRt2s9RdvE .mbr-section-subtitle {
  text-align: right;
  color: #ffffff;
}
.cid-tRuqwZSvPI {
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0;
  padding-right: 0;
  background-color: #232323;
}
.cid-tRuqwZSvPI ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cid-tRuqwZSvPI ul li {
  padding: 1rem 0;
}
.cid-tRuqwZSvPI ul li:hover {
  color: #a38dfd;
}
.cid-tRuqwZSvPI .socicon {
  color: #fff;
  font-size: 1.5rem;
}
.cid-tRuqwZSvPI .mbr-iconfont {
  margin-right: 1em;
  display: inline-block;
  vertical-align: bottom;
}
.cid-tRuqwZSvPI .google-map {
  -webkit-flex: 1;
  flex: 1;
  display: flex;
  position: relative;
}
.cid-tRuqwZSvPI .map {
  padding: 0;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-tRuqwZSvPI .map iframe {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .cid-tRuqwZSvPI .map {
    height: auto;
  }
}
.cid-tRuqwZSvPI .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.cid-tRuqwZSvPI .social-list .soc-item {
  padding: 0;
  margin: 2rem 2rem 0 0;
  display: inline-block;
}
.cid-tRuqwZSvPI .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tRuqwZSvPI .social-list a:hover {
  opacity: 1;
}
.cid-tRuqwZSvPI .row-element,
.cid-tRuqwZSvPI .image-element {
  padding: 0;
}
.cid-tRuqwZSvPI .underline {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
.cid-tRuqwZSvPI .underline .line {
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, #a38dfd, #fe525b);
  display: inline-block;
}
@media (min-width: 1500px) {
  .cid-tRuqwZSvPI .text-content {
    padding: 5rem;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .cid-tRuqwZSvPI .text-content {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tRuqwZSvPI .text-content {
    padding: 2rem 1rem;
  }
  .cid-tRuqwZSvPI .underline .line {
    height: 2px;
  }
  .cid-tRuqwZSvPI .mbr-title,
  .cid-tRuqwZSvPI .underline,
  .cid-tRuqwZSvPI .mbr-text,
  .cid-tRuqwZSvPI .mbr-section-btn {
    text-align: center !important;
  }
}
.cid-tRuqwZSvPI .mbr-title,
.cid-tRuqwZSvPI .underline {
  color: #ffffff;
}
.cid-tRuqwZSvPI .mbr-text,
.cid-tRuqwZSvPI .mbr-section-btn {
  color: #ffffff;
}
.cid-tRuqwZSvPI mbr-list LI {
  color: #ffffff;
}
.cid-tRuqwZSvPI mbr-list {
  text-align: center;
}
.cid-tRuqwZSvPI .mbr-list,
.cid-tRuqwZSvPI .social-list mbr-list {
  color: #ffffff;
}
.cid-sOq62poT1c .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .nav-item:focus,
.cid-sOq62poT1c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sOq62poT1c .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sOq62poT1c .nav-item .nav-link {
    position: relative;
  }
  .cid-sOq62poT1c .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sOq62poT1c .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOq62poT1c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOq62poT1c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOq62poT1c .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sOq62poT1c .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-sOq62poT1c .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sOq62poT1c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sOq62poT1c .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sOq62poT1c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sOq62poT1c .navbar.collapsed .right-menu,
.cid-sOq62poT1c .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse.show,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .navbar-collapse.show .brand-container,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sOq62poT1c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sOq62poT1c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sOq62poT1c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOq62poT1c .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sOq62poT1c .navbar .right-menu,
  .cid-sOq62poT1c .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sOq62poT1c .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOq62poT1c .navbar.navbar-short .mbr-overlay {
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sOq62poT1c .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sOq62poT1c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOq62poT1c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOq62poT1c .dropdown-item.active,
.cid-sOq62poT1c .dropdown-item:active {
  background-color: transparent;
}
.cid-sOq62poT1c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOq62poT1c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOq62poT1c ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sOq62poT1c .navbar-buttons {
  margin-left: auto;
}
.cid-sOq62poT1c button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c .navbar-dropdown {
  position: fixed;
}
.cid-sOq62poT1c a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sOq62poT1c .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sOq62poT1c .right-menu,
.cid-sOq62poT1c .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sOq62poT1c .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sOq62poT1c .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sOq62poT1c .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sOq62poT1c .card-wrapper {
  z-index: 3;
}
.cid-sOq62poT1c .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLYqEZmKYX {
  padding-top: 135px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uLYqEZmKYX .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uLYqEZmKYX .mbr-shop .row {
  margin: 0;
}
.cid-uLYqEZmKYX .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uLYqEZmKYX .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uLYqEZmKYX .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uLYqEZmKYX .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uLYqEZmKYX .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uLYqEZmKYX .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uLYqEZmKYX .mbr-shop .hide-modal {
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uLYqEZmKYX .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uLYqEZmKYX .mbr-shop .filter-by-pu,
.cid-uLYqEZmKYX .mbr-shop .filter-by-pd,
.cid-uLYqEZmKYX .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uLYqEZmKYX .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uLYqEZmKYX .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem h4,
.cid-uLYqEZmKYX .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem h5,
.cid-uLYqEZmKYX .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem p,
.cid-uLYqEZmKYX .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uLYqEZmKYX .mbr-shop .item-button {
  text-align: center;
}
.cid-uLYqEZmKYX .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uLYqEZmKYX .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uLYqEZmKYX .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-uLYqEZmKYX .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uLYqEZmKYX .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uLYqEZmKYX .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item__hided h4,
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item__hided h5,
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-uLYqEZmKYX .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uLYqEZmKYX .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uLYqEZmKYX .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uLYqEZmKYX .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-uLYqEZmKYX .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uLYqEZmKYX .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-uLYqEZmKYX .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uLYqEZmKYX .mbr-shop .range-controls {
  position: relative;
}
.cid-uLYqEZmKYX .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uLYqEZmKYX .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-uLYqEZmKYX .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-uLYqEZmKYX .mbr-shop .toggle:hover,
.cid-uLYqEZmKYX .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uLYqEZmKYX .mbr-shop .min-toggle {
  left: 0;
}
.cid-uLYqEZmKYX .mbr-shop .max-toggle {
  right: 0;
}
.cid-uLYqEZmKYX .mbr-shop .hided-by-price {
  display: none;
}
.cid-uLYqEZmKYX .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uLYqEZmKYX .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uLYqEZmKYX .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uLYqEZmKYX .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uLYqEZmKYX .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uLYqEZmKYX .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uLYqEZmKYX .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uLYqEZmKYX .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uLYqEZmKYX .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uLYqEZmKYX .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uLYqEZmKYX .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uLYqEZmKYX .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uLYqEZmKYX .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uLYqEZmKYX .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uLYqEZmKYX .mbr-shop .shop-items .onsale,
.cid-uLYqEZmKYX .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uLYqEZmKYX .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uLYqEZmKYX .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uLYqEZmKYX .mbr-shop .price-range {
  display: inline-block;
}
.cid-uLYqEZmKYX .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uLYqEZmKYX .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uLYqEZmKYX .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uLYqEZmKYX .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uLYqEZmKYX .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uLYqEZmKYX .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uLYqEZmKYX .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uLYqEZmKYX .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uLYqEZmKYX .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uLYqEZmKYX .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uLYqEZmKYX .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uLYqEZmKYX .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uLYqEZmKYX .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uLYqEZmKYX .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uLYqEZmKYX .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uLYqEZmKYX .wrapper-shop-items {
    order: 1;
  }
  .cid-uLYqEZmKYX .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-uLYqEZmKYX .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uLYqEZmKYX .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uLYqEZmKYX .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uLYqEZmKYX .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uLYqEZmKYX .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uLYqEZmKYX .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uLYqEZmKYX .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uLYqEZmKYX .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uLYqEZmKYX .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uLYqEZmKYX .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uLYqEZmKYX .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-uLYqEZmKYX .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-uLYqEZmKYX .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-uLYqEZmKYX .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-uLYqEZmKYX .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uLYqEZmKYX .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-sOq62poT1c .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .nav-item:focus,
.cid-sOq62poT1c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sOq62poT1c .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sOq62poT1c .nav-item .nav-link {
    position: relative;
  }
  .cid-sOq62poT1c .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sOq62poT1c .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOq62poT1c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOq62poT1c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOq62poT1c .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sOq62poT1c .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-sOq62poT1c .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sOq62poT1c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sOq62poT1c .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sOq62poT1c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sOq62poT1c .navbar.collapsed .right-menu,
.cid-sOq62poT1c .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse.show,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .navbar-collapse.show .brand-container,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sOq62poT1c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sOq62poT1c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sOq62poT1c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOq62poT1c .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sOq62poT1c .navbar .right-menu,
  .cid-sOq62poT1c .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sOq62poT1c .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOq62poT1c .navbar.navbar-short .mbr-overlay {
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sOq62poT1c .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sOq62poT1c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOq62poT1c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOq62poT1c .dropdown-item.active,
.cid-sOq62poT1c .dropdown-item:active {
  background-color: transparent;
}
.cid-sOq62poT1c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOq62poT1c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOq62poT1c ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sOq62poT1c .navbar-buttons {
  margin-left: auto;
}
.cid-sOq62poT1c button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c .navbar-dropdown {
  position: fixed;
}
.cid-sOq62poT1c a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sOq62poT1c .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sOq62poT1c .right-menu,
.cid-sOq62poT1c .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sOq62poT1c .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sOq62poT1c .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sOq62poT1c .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sOq62poT1c .card-wrapper {
  z-index: 3;
}
.cid-sOq62poT1c .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uM4sxjWKjN {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uM4sxjWKjN .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uM4sxjWKjN .mbr-shop .row {
  margin: 0;
}
.cid-uM4sxjWKjN .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uM4sxjWKjN .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uM4sxjWKjN .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uM4sxjWKjN .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uM4sxjWKjN .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uM4sxjWKjN .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uM4sxjWKjN .mbr-shop .hide-modal {
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uM4sxjWKjN .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uM4sxjWKjN .mbr-shop .filter-by-pu,
.cid-uM4sxjWKjN .mbr-shop .filter-by-pd,
.cid-uM4sxjWKjN .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uM4sxjWKjN .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uM4sxjWKjN .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem h4,
.cid-uM4sxjWKjN .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem h5,
.cid-uM4sxjWKjN .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem p,
.cid-uM4sxjWKjN .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uM4sxjWKjN .mbr-shop .item-button {
  text-align: center;
}
.cid-uM4sxjWKjN .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uM4sxjWKjN .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uM4sxjWKjN .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-uM4sxjWKjN .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uM4sxjWKjN .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uM4sxjWKjN .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item__hided h4,
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item__hided h5,
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-uM4sxjWKjN .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uM4sxjWKjN .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uM4sxjWKjN .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uM4sxjWKjN .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-uM4sxjWKjN .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uM4sxjWKjN .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-uM4sxjWKjN .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uM4sxjWKjN .mbr-shop .range-controls {
  position: relative;
}
.cid-uM4sxjWKjN .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uM4sxjWKjN .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-uM4sxjWKjN .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-uM4sxjWKjN .mbr-shop .toggle:hover,
.cid-uM4sxjWKjN .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uM4sxjWKjN .mbr-shop .min-toggle {
  left: 0;
}
.cid-uM4sxjWKjN .mbr-shop .max-toggle {
  right: 0;
}
.cid-uM4sxjWKjN .mbr-shop .hided-by-price {
  display: none;
}
.cid-uM4sxjWKjN .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uM4sxjWKjN .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uM4sxjWKjN .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uM4sxjWKjN .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uM4sxjWKjN .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uM4sxjWKjN .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uM4sxjWKjN .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uM4sxjWKjN .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uM4sxjWKjN .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uM4sxjWKjN .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uM4sxjWKjN .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uM4sxjWKjN .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uM4sxjWKjN .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uM4sxjWKjN .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uM4sxjWKjN .mbr-shop .shop-items .onsale,
.cid-uM4sxjWKjN .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uM4sxjWKjN .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uM4sxjWKjN .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uM4sxjWKjN .mbr-shop .price-range {
  display: inline-block;
}
.cid-uM4sxjWKjN .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uM4sxjWKjN .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uM4sxjWKjN .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uM4sxjWKjN .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uM4sxjWKjN .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uM4sxjWKjN .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uM4sxjWKjN .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uM4sxjWKjN .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uM4sxjWKjN .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uM4sxjWKjN .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uM4sxjWKjN .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uM4sxjWKjN .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uM4sxjWKjN .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uM4sxjWKjN .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uM4sxjWKjN .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uM4sxjWKjN .wrapper-shop-items {
    order: 1;
  }
  .cid-uM4sxjWKjN .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-uM4sxjWKjN .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uM4sxjWKjN .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uM4sxjWKjN .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uM4sxjWKjN .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uM4sxjWKjN .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uM4sxjWKjN .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uM4sxjWKjN .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uM4sxjWKjN .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uM4sxjWKjN .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uM4sxjWKjN .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uM4sxjWKjN .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-uM4sxjWKjN .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-uM4sxjWKjN .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-uM4sxjWKjN .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-uM4sxjWKjN .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uM4sxjWKjN .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uMgwz5He0q .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMgwz5He0q .nav-item:focus,
.cid-uMgwz5He0q .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uMgwz5He0q .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uMgwz5He0q .nav-item .nav-link {
    position: relative;
  }
  .cid-uMgwz5He0q .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uMgwz5He0q .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uMgwz5He0q .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMgwz5He0q .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-uMgwz5He0q .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMgwz5He0q .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMgwz5He0q .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMgwz5He0q .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uMgwz5He0q .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffef00;
}
.cid-uMgwz5He0q .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffef00 !important;
}
.cid-uMgwz5He0q .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-uMgwz5He0q .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uMgwz5He0q .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uMgwz5He0q .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMgwz5He0q .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uMgwz5He0q .navbar.collapsed .navbar-collapse.show,
.cid-uMgwz5He0q .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uMgwz5He0q .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uMgwz5He0q .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uMgwz5He0q .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uMgwz5He0q .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMgwz5He0q .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMgwz5He0q .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uMgwz5He0q .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMgwz5He0q .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uMgwz5He0q .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uMgwz5He0q .navbar.collapsed .right-menu,
.cid-uMgwz5He0q .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uMgwz5He0q .navbar .navbar-collapse.show,
  .cid-uMgwz5He0q .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uMgwz5He0q .navbar .navbar-collapse.show .brand-container,
  .cid-uMgwz5He0q .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uMgwz5He0q .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMgwz5He0q .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uMgwz5He0q .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMgwz5He0q .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMgwz5He0q .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uMgwz5He0q .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uMgwz5He0q .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMgwz5He0q .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uMgwz5He0q .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uMgwz5He0q .navbar .right-menu,
  .cid-uMgwz5He0q .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uMgwz5He0q .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMgwz5He0q .navbar.navbar-short .mbr-overlay {
  background: #ffef00 !important;
}
.cid-uMgwz5He0q .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uMgwz5He0q .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uMgwz5He0q .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMgwz5He0q .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMgwz5He0q .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMgwz5He0q .dropdown-item.active,
.cid-uMgwz5He0q .dropdown-item:active {
  background-color: transparent;
}
.cid-uMgwz5He0q .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMgwz5He0q .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMgwz5He0q .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMgwz5He0q .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffef00;
}
.cid-uMgwz5He0q .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMgwz5He0q .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMgwz5He0q ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uMgwz5He0q ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uMgwz5He0q .navbar-buttons {
  margin-left: auto;
}
.cid-uMgwz5He0q button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMgwz5He0q button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uMgwz5He0q button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uMgwz5He0q button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uMgwz5He0q button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uMgwz5He0q button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uMgwz5He0q nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMgwz5He0q nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uMgwz5He0q nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uMgwz5He0q nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMgwz5He0q .navbar-dropdown {
  position: fixed;
}
.cid-uMgwz5He0q a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMgwz5He0q .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uMgwz5He0q .right-menu,
.cid-uMgwz5He0q .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uMgwz5He0q .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uMgwz5He0q .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uMgwz5He0q .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uMgwz5He0q .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uMgwz5He0q .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uMgwz5He0q .card-wrapper {
  z-index: 3;
}
.cid-uMgwz5He0q .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uMgwz5He0q .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMgwz5He0q .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMgcJpSApE {
  padding-top: 135px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMgcJpSApE .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uMgcJpSApE .mbr-shop .row {
  margin: 0;
}
.cid-uMgcJpSApE .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uMgcJpSApE .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uMgcJpSApE .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uMgcJpSApE .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uMgcJpSApE .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uMgcJpSApE .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uMgcJpSApE .mbr-shop .hide-modal {
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uMgcJpSApE .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uMgcJpSApE .mbr-shop .filter-by-pu,
.cid-uMgcJpSApE .mbr-shop .filter-by-pd,
.cid-uMgcJpSApE .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uMgcJpSApE .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uMgcJpSApE .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem h4,
.cid-uMgcJpSApE .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem h5,
.cid-uMgcJpSApE .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem p,
.cid-uMgcJpSApE .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uMgcJpSApE .mbr-shop .item-button {
  text-align: center;
}
.cid-uMgcJpSApE .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uMgcJpSApE .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uMgcJpSApE .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-uMgcJpSApE .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uMgcJpSApE .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uMgcJpSApE .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-item__hided h4,
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-item__hided h5,
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-uMgcJpSApE .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uMgcJpSApE .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uMgcJpSApE .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uMgcJpSApE .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-uMgcJpSApE .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uMgcJpSApE .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-uMgcJpSApE .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uMgcJpSApE .mbr-shop .range-controls {
  position: relative;
}
.cid-uMgcJpSApE .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uMgcJpSApE .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-uMgcJpSApE .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-uMgcJpSApE .mbr-shop .toggle:hover,
.cid-uMgcJpSApE .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uMgcJpSApE .mbr-shop .min-toggle {
  left: 0;
}
.cid-uMgcJpSApE .mbr-shop .max-toggle {
  right: 0;
}
.cid-uMgcJpSApE .mbr-shop .hided-by-price {
  display: none;
}
.cid-uMgcJpSApE .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uMgcJpSApE .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uMgcJpSApE .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uMgcJpSApE .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uMgcJpSApE .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uMgcJpSApE .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uMgcJpSApE .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uMgcJpSApE .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uMgcJpSApE .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uMgcJpSApE .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uMgcJpSApE .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uMgcJpSApE .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uMgcJpSApE .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uMgcJpSApE .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uMgcJpSApE .mbr-shop .shop-items .onsale,
.cid-uMgcJpSApE .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uMgcJpSApE .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uMgcJpSApE .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uMgcJpSApE .mbr-shop .price-range {
  display: inline-block;
}
.cid-uMgcJpSApE .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uMgcJpSApE .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uMgcJpSApE .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uMgcJpSApE .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uMgcJpSApE .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uMgcJpSApE .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uMgcJpSApE .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uMgcJpSApE .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uMgcJpSApE .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uMgcJpSApE .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uMgcJpSApE .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uMgcJpSApE .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uMgcJpSApE .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uMgcJpSApE .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uMgcJpSApE .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uMgcJpSApE .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uMgcJpSApE .wrapper-shop-items {
    order: 1;
  }
  .cid-uMgcJpSApE .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-uMgcJpSApE .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uMgcJpSApE .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uMgcJpSApE .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uMgcJpSApE .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uMgcJpSApE .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uMgcJpSApE .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uMgcJpSApE .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uMgcJpSApE .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uMgcJpSApE .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uMgcJpSApE .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uMgcJpSApE .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-uMgcJpSApE .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-uMgcJpSApE .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-uMgcJpSApE .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-uMgcJpSApE .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMgcJpSApE .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-uMgv2dobvT .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMgv2dobvT .nav-item:focus,
.cid-uMgv2dobvT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-uMgv2dobvT .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-uMgv2dobvT .nav-item .nav-link {
    position: relative;
  }
  .cid-uMgv2dobvT .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-uMgv2dobvT .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-uMgv2dobvT .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMgv2dobvT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-uMgv2dobvT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMgv2dobvT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMgv2dobvT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMgv2dobvT .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-uMgv2dobvT .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffef00;
}
.cid-uMgv2dobvT .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffef00 !important;
}
.cid-uMgv2dobvT .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-uMgv2dobvT .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-uMgv2dobvT .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-uMgv2dobvT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMgv2dobvT .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-uMgv2dobvT .navbar.collapsed .navbar-collapse.show,
.cid-uMgv2dobvT .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uMgv2dobvT .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-uMgv2dobvT .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-uMgv2dobvT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uMgv2dobvT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMgv2dobvT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMgv2dobvT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uMgv2dobvT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMgv2dobvT .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-uMgv2dobvT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uMgv2dobvT .navbar.collapsed .right-menu,
.cid-uMgv2dobvT .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-uMgv2dobvT .navbar .navbar-collapse.show,
  .cid-uMgv2dobvT .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uMgv2dobvT .navbar .navbar-collapse.show .brand-container,
  .cid-uMgv2dobvT .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-uMgv2dobvT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMgv2dobvT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uMgv2dobvT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMgv2dobvT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uMgv2dobvT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uMgv2dobvT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uMgv2dobvT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uMgv2dobvT .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-uMgv2dobvT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-uMgv2dobvT .navbar .right-menu,
  .cid-uMgv2dobvT .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-uMgv2dobvT .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMgv2dobvT .navbar.navbar-short .mbr-overlay {
  background: #ffef00 !important;
}
.cid-uMgv2dobvT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uMgv2dobvT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uMgv2dobvT .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uMgv2dobvT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uMgv2dobvT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMgv2dobvT .dropdown-item.active,
.cid-uMgv2dobvT .dropdown-item:active {
  background-color: transparent;
}
.cid-uMgv2dobvT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMgv2dobvT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMgv2dobvT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMgv2dobvT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffef00;
}
.cid-uMgv2dobvT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMgv2dobvT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMgv2dobvT ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-uMgv2dobvT ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-uMgv2dobvT .navbar-buttons {
  margin-left: auto;
}
.cid-uMgv2dobvT button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uMgv2dobvT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-uMgv2dobvT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uMgv2dobvT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uMgv2dobvT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uMgv2dobvT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uMgv2dobvT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMgv2dobvT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-uMgv2dobvT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-uMgv2dobvT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uMgv2dobvT .navbar-dropdown {
  position: fixed;
}
.cid-uMgv2dobvT a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-uMgv2dobvT .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uMgv2dobvT .right-menu,
.cid-uMgv2dobvT .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-uMgv2dobvT .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uMgv2dobvT .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-uMgv2dobvT .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uMgv2dobvT .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-uMgv2dobvT .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-uMgv2dobvT .card-wrapper {
  z-index: 3;
}
.cid-uMgv2dobvT .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-uMgv2dobvT .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMgv2dobvT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMgv2dDVyu {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uMgv2dDVyu .mbr-shop {
  display: table;
  width: 100%;
}
.cid-uMgv2dDVyu .mbr-shop .row {
  margin: 0;
}
.cid-uMgv2dDVyu .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-uMgv2dDVyu .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-uMgv2dDVyu .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-uMgv2dDVyu .mbr-shop .sidebar-title {
  line-height: 25px;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal_wraper {
  position: fixed;
  display: none;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 87, 87, 0.4);
  top: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-uMgv2dDVyu .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-uMgv2dDVyu .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-uMgv2dDVyu .mbr-shop .hide-modal {
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 50px;
  width: 1000px;
  max-width: 100%;
  background-color: #ffffff;
  z-index: 2000;
  overflow: auto;
  position: fixed;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal .close-modal:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uMgv2dDVyu .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-uMgv2dDVyu .mbr-shop .filter-by-pu,
.cid-uMgv2dDVyu .mbr-shop .filter-by-pd,
.cid-uMgv2dDVyu .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-uMgv2dDVyu .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-uMgv2dDVyu .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item {
  left: 0 !important;
  top: 0 !important;
  vertical-align: top;
  position: relative !important;
  -webkit-transform: none !important;
  transform: none !important;
  padding: 10px;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem h4,
.cid-uMgv2dDVyu .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin-bottom: 0.3rem;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem h5,
.cid-uMgv2dDVyu .mbr-shop .carousel-item h5 {
  font-style: italic;
  font-weight: 400;
  line-height: 22.36px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem p,
.cid-uMgv2dDVyu .mbr-shop .carousel-item p {
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0px;
  text-align: center;
  display: inline;
}
.cid-uMgv2dDVyu .mbr-shop .item-button {
  text-align: center;
}
.cid-uMgv2dDVyu .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-uMgv2dDVyu .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-uMgv2dDVyu .mbr-shop .sidebar {
  margin-top: 30px;
  position: relative;
}
.cid-uMgv2dDVyu .mbr-shop .sidebar-block {
  position: relative;
}
.cid-uMgv2dDVyu .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: rgba(0, 0, 0, 0.05);
  top: -20px;
  right: 3px;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-uMgv2dDVyu .mbr-shop .onsale {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  background: #fe525b;
  color: #ffffff;
  border-radius: 30px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item__hided h4,
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item__hided h5,
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem .price-block {
  display: block;
  margin-bottom: 8px;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-filter ul li {
  position: relative;
  padding: 7px 0 7px 25px;
  border-bottom: 1px dotted #d6d6d6;
  margin: 0;
  font-style: normal;
  font-weight: 400;
  line-height: 24.99px;
  text-transform: none;
  letter-spacing: 0px;
  word-spacing: 0;
  direction: ltr;
  border: none;
  display: list-item;
  text-align: left;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-filter ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -2.5px;
  background: rgba(0, 0, 0, 0.3);
  width: 5px;
  height: 5px;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-filter ul li:hover {
  padding-left: 30px;
  background-color: transparent;
}
.cid-uMgv2dDVyu .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-uMgv2dDVyu .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-uMgv2dDVyu .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-uMgv2dDVyu .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 30px;
  border: 2px solid #666666;
  border-radius: 2px;
  font-size: 0;
}
.cid-uMgv2dDVyu .mbr-shop .price-controls label {
  display: inline-block;
  width: 50%;
  font-size: 14px;
  line-height: 32px;
  color: #666666;
  font-weight: normal;
  cursor: pointer;
  margin-bottom: 0;
}
.cid-uMgv2dDVyu .mbr-shop .price-controls label.min-price {
  border-right: 2px solid #666666;
}
.cid-uMgv2dDVyu .mbr-shop .price-controls input {
  width: 100%;
  background-color: #ffffff;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-uMgv2dDVyu .mbr-shop .range-controls {
  position: relative;
}
.cid-uMgv2dDVyu .mbr-shop .range-controls .scale {
  width: 100%;
  height: 2px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-uMgv2dDVyu .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 2px;
  background-color: #666666;
}
.cid-uMgv2dDVyu .mbr-shop .toggle {
  position: absolute;
  top: -9px;
  width: 4px;
  height: 4px;
  border: 8px solid #666666;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #ababab;
  cursor: pointer;
}
.cid-uMgv2dDVyu .mbr-shop .toggle:hover,
.cid-uMgv2dDVyu .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-uMgv2dDVyu .mbr-shop .min-toggle {
  left: 0;
}
.cid-uMgv2dDVyu .mbr-shop .max-toggle {
  right: 0;
}
.cid-uMgv2dDVyu .mbr-shop .hided-by-price {
  display: none;
}
.cid-uMgv2dDVyu .mbr-shop .text-modal {
  padding-right: 30px;
  padding-left: 30px;
}
.cid-uMgv2dDVyu .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-uMgv2dDVyu .mbr-shop .text-modal .price-block {
  line-height: 1;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-uMgv2dDVyu .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-uMgv2dDVyu .mbr-shop .text-modal .price-block span {
  display: inline-block;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-uMgv2dDVyu .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-uMgv2dDVyu .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-uMgv2dDVyu .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-uMgv2dDVyu .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-uMgv2dDVyu .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uMgv2dDVyu .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 40px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-uMgv2dDVyu .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-uMgv2dDVyu .mbr-shop .galleryItem .sidebar_wraper {
  text-align: center;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal .sidebar_wraper {
  text-align: left;
}
.cid-uMgv2dDVyu .mbr-shop .shopItemsModal .onsale {
  top: 10px;
  right: 10px;
  border: 1px solid #e7e7e7;
}
.cid-uMgv2dDVyu .mbr-shop .shop-items .onsale,
.cid-uMgv2dDVyu .mbr-shop .bestseller-block .onsale {
  font-size: 15px !important;
}
.cid-uMgv2dDVyu .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-uMgv2dDVyu .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-uMgv2dDVyu .mbr-shop .price-range {
  display: inline-block;
}
.cid-uMgv2dDVyu .mbr-shop .price-range-reset {
  display: inline-block;
}
.cid-uMgv2dDVyu .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-uMgv2dDVyu .mbr-shop .range-slider h4 {
  margin-bottom: 15px;
}
.cid-uMgv2dDVyu .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-uMgv2dDVyu .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-uMgv2dDVyu .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-uMgv2dDVyu .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-uMgv2dDVyu .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-uMgv2dDVyu .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-uMgv2dDVyu .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-uMgv2dDVyu .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-uMgv2dDVyu .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-uMgv2dDVyu .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-uMgv2dDVyu .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-uMgv2dDVyu .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-uMgv2dDVyu .wrapper-shop-items {
    order: 1;
  }
  .cid-uMgv2dDVyu .mbr-shop .sidebar {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cid-uMgv2dDVyu .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-uMgv2dDVyu .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-uMgv2dDVyu .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-uMgv2dDVyu .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-uMgv2dDVyu .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-uMgv2dDVyu .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-uMgv2dDVyu .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-uMgv2dDVyu .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-uMgv2dDVyu .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-uMgv2dDVyu .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-uMgv2dDVyu .oldprice {
  color: #767676;
  padding-left: .8rem;
  text-decoration: line-through;
}
.cid-uMgv2dDVyu .mbr-gallery-item .sidebar_wraper .mbr-section-btn {
  text-align: left;
}
.cid-uMgv2dDVyu .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  padding-bottom: .5rem;
}
.cid-uMgv2dDVyu .mbr-gallery-item .sidebar_wraper .item-subtitle {
  text-align: left;
}
.cid-uMgv2dDVyu .mbr-gallery-item .sidebar_wraper .price-block {
  text-align: left;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uMgv2dDVyu .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-sOq62poT1c .dropdown-item .mbr-iconfont {
  display: inline-block;
  width: 0;
  position: absolute;
  left: .5rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .nav-item:focus,
.cid-sOq62poT1c .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sOq62poT1c .dropdown-item:hover .mbr-iconfont {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 32px;
  }
  .cid-sOq62poT1c .nav-item .nav-link {
    position: relative;
  }
  .cid-sOq62poT1c .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #a38dfd, #fe525b);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sOq62poT1c .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5em 0.235em;
  transition: all 0.25s ease-in-out;
}
.cid-sOq62poT1c .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sOq62poT1c .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sOq62poT1c .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sOq62poT1c .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
  max-height: 100vh;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-sOq62poT1c .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar .dropdown-item {
  padding: .25rem 1.5rem;
  line-height: 1.6;
}
.cid-sOq62poT1c .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sOq62poT1c .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sOq62poT1c .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sOq62poT1c .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sOq62poT1c .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sOq62poT1c .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sOq62poT1c .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sOq62poT1c .navbar.collapsed .right-menu,
.cid-sOq62poT1c .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar .navbar-collapse.show,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .navbar-collapse.show .brand-container,
  .cid-sOq62poT1c .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sOq62poT1c .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sOq62poT1c .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sOq62poT1c .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sOq62poT1c .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sOq62poT1c .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sOq62poT1c .navbar .right-menu,
  .cid-sOq62poT1c .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sOq62poT1c .navbar.navbar-short {
  min-height: 60px;
}
.cid-sOq62poT1c .navbar.navbar-short .mbr-overlay {
  background: #ffef00 !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sOq62poT1c .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sOq62poT1c .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sOq62poT1c .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sOq62poT1c .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sOq62poT1c .dropdown-item.active,
.cid-sOq62poT1c .dropdown-item:active {
  background-color: transparent;
}
.cid-sOq62poT1c .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sOq62poT1c .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffef00;
}
.cid-sOq62poT1c .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sOq62poT1c .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sOq62poT1c ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sOq62poT1c .navbar-buttons {
  margin-left: auto;
}
.cid-sOq62poT1c button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sOq62poT1c button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sOq62poT1c nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sOq62poT1c .navbar-dropdown {
  position: fixed;
}
.cid-sOq62poT1c a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sOq62poT1c .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sOq62poT1c .right-menu,
.cid-sOq62poT1c .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sOq62poT1c .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sOq62poT1c .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sOq62poT1c .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sOq62poT1c .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sOq62poT1c .card-wrapper {
  z-index: 3;
}
.cid-sOq62poT1c .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sOq62poT1c .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sOq62poT1c .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uNiwEsoeHC {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNiwEsoeHC .mbr-section-title {
  text-align: center;
}
.cid-uNiwEsoeHC .mbr-section-text {
  text-align: center;
}
.cid-uNiwEsoeHC button[type="submit"] {
  border-radius: 100px;
}
.cid-uNiwEsoeHC a[type="submit"],
.cid-uNiwEsoeHC button[type="submit"] {
  margin-top: 0;
}
.cid-uNiwEsoeHC .wsSearchError {
  text-align: center;
  background-color: #ff4a52;
}
.cid-uNiwEsoeHC mark {
  padding: 0;
  color: inherit;
  background-color: #ffe161;
}
.cid-uNiwEsoeHC .row .spinner-border,
.cid-uNiwEsoeHC .row .spinner-grow {
  width: 32px;
  color: #4479d9;
}
.cid-uNiwEsoeHC .gdpr-block {
  display: none;
}
