body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
}
/* ---- 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: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.68rem;
    font-size: calc( 0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.9475rem + (0.85 - 0.9475) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-border-radius: 100px;
  border-radius: 100px;
}
.btn:hover:after,
.btn:focus:after,
.btn.active:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 3px;
}
.btn-md {
  padding: 0.719rem 1.5rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 0.875rem 1.875rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #6c758f !important;
}
.bg-success {
  background-color: #66a5d3 !important;
}
.bg-info {
  background-color: #e96188 !important;
}
.bg-warning {
  background-color: #fac769 !important;
}
.bg-danger {
  background-color: #92b5d5 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #6c758f !important;
  border-color: #6c758f !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #4b5163 !important;
  border-color: #4b5163 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #4b5163 !important;
  border-color: #4b5163 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #8e2f25 !important;
  border-color: #8e2f25 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #e96188 !important;
  border-color: #e96188 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #df1f56 !important;
  border-color: #df1f56 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #66a5d3 !important;
  border-color: #66a5d3 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #3580b8 !important;
  border-color: #3580b8 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #3580b8 !important;
  border-color: #3580b8 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #fac769 !important;
  border-color: #fac769 !important;
  color: #614003 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614003 !important;
  background-color: #f8ab1f !important;
  border-color: #f8ab1f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #92b5d5 !important;
  border-color: #92b5d5 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #5b90c0 !important;
  border-color: #5b90c0 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #5b90c0 !important;
  border-color: #5b90c0 !important;
}
.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.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.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.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,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #404555;
  color: #404555 !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #6c758f;
  border-color: #6c758f;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #6c758f !important;
  border-color: #6c758f !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #7a2820;
  color: #7a2820 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #ca4336;
  border-color: #ca4336;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ca4336 !important;
  border-color: #ca4336 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #c81c4d;
  color: #c81c4d !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #e96188;
  border-color: #e96188;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e96188 !important;
  border-color: #e96188 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #2f73a4;
  color: #2f73a4 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #66a5d3;
  border-color: #66a5d3;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #66a5d3 !important;
  border-color: #66a5d3 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #f5a208;
  color: #f5a208 !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #614003 !important;
  background-color: #fac769;
  border-color: #fac769;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614003 !important;
  background-color: #fac769 !important;
  border-color: #fac769 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #4883b9;
  color: #4883b9 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #92b5d5;
  border-color: #92b5d5;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #92b5d5 !important;
  border-color: #92b5d5 !important;
}
.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.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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;
}
.text-primary {
  color: #6c758f !important;
}
.text-secondary {
  color: #ca4336 !important;
}
.text-success {
  color: #66a5d3 !important;
}
.text-info {
  color: #e96188 !important;
}
.text-warning {
  color: #fac769 !important;
}
.text-danger {
  color: #92b5d5 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #404555 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #7a2820 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #2f73a4 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #c81c4d !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #f5a208 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #4883b9 !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: #66a5d3;
}
.alert-info {
  background-color: #e96188;
}
.alert-warning {
  background-color: #fac769;
}
.alert-danger {
  background-color: #92b5d5;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: 0.3s, 0.3s, 0.3s, 0.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: 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: #6c758f;
  border-color: #6c758f;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #6c758f;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4b9c6;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
}
blockquote {
  border-color: #6c758f;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
.mbr-form .btn {
  margin: 0.4rem 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;
}
.input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.input-group-btn a.btn {
  border-radius: 100px !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6c758f;
  color: #ffffff;
}
.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-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #6c758f;
  border-bottom-color: #6c758f;
}
.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: #ffffff !important;
  background-color: #6c758f !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: #ca4336 !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='%236c758f' %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-ujCYnp5XFK {
  height: 0 !important;
}
.cid-ujCYnp5XFK .navbar {
  background: #ffd381;
  transition: none;
  z-index: 1001;
  left: auto;
}
.cid-ujCYnp5XFK .navbar .show {
  height: 100vh;
}
.cid-ujCYnp5XFK .navbar-collapse {
  max-height: 100vh!important;
  overflow: visible;
  transition: none;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-ujCYnp5XFK .navbar-dropdown.bg-color.transparent.opened {
  background: #ffd381;
}
.cid-ujCYnp5XFK .bottom {
  padding-bottom: 2rem;
}
.cid-ujCYnp5XFK a {
  font-style: normal;
}
.cid-ujCYnp5XFK .dropdown-backdrop {
  display: none;
}
.cid-ujCYnp5XFK .dropdown-toggle::after {
  border-top: 0!important;
  margin-left: 10px!important;
}
.cid-ujCYnp5XFK .nav-dropdown {
  padding-top: 1.5rem;
}
.cid-ujCYnp5XFK .nav-item {
  width: 100%;
  text-align: center;
  justify-content: center;
  display: flex;
}
.cid-ujCYnp5XFK .nav-link {
  position: relative;
  margin-top: 0.5rem;
  width: fit-content;
  margin: auto;
  letter-spacing: 1px;
}
.cid-ujCYnp5XFK .nav-link:after {
  content: "";
  color: #333;
  transition: all 0.3s;
  width: 15px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 15px;
}
.cid-ujCYnp5XFK .nav-link:hover:after {
  margin-left: -10px !important;
}
.cid-ujCYnp5XFK .nav-link span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-ujCYnp5XFK .nav-link a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse.show {
  display: flex!important;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow: visible;
}
.cid-ujCYnp5XFK .navbar-nav {
  width: 100%!important;
}
.cid-ujCYnp5XFK .btn {
  width: fit-content;
  margin: 10px auto;
  padding: 1rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-ujCYnp5XFK .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-ujCYnp5XFK .navbar-caption-wrap {
  padding-left: 1rem;
  padding-top: 8px;
}
.cid-ujCYnp5XFK .dropdown-menu {
  position: absolute!important;
  width: fit-content !important;
}
.cid-ujCYnp5XFK .dropdown-item {
  background: #ff3900;
  color: #ffffff !important;
}
.cid-ujCYnp5XFK .dropdown-item:hover,
.cid-ujCYnp5XFK .dropdown-item:active {
  color: #ffffff !important;
}
.cid-ujCYnp5XFK .social-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.cid-ujCYnp5XFK .soc-item {
  width: 45px;
  height: 45px;
  background: #c4cce4;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0.4rem;
}
.cid-ujCYnp5XFK .soc-item span {
  font-size: 1.2rem;
  color: #ffffff !important;
  transition: all 0.3s;
  display: block;
}
.cid-ujCYnp5XFK .soc-item:hover span {
  color: #66a5d3 !important;
}
.cid-ujCYnp5XFK .dropdown.open > .dropdown-menu {
  position: absolute;
  opacity: 1;
  background: #ff3900;
  height: auto;
  left: auto;
  right: 100%;
  top: 5px;
  visibility: visible;
}
.cid-ujCYnp5XFK .navbar-logo {
  margin-top: 1.5rem;
  margin-right: 0!important;
}
.cid-ujCYnp5XFK .hamburger {
  position: absolute;
  top: 27px;
  right: 22px;
}
.cid-ujCYnp5XFK .menu-logo {
  position: fixed!important;
}
.cid-ujCYnp5XFK .menu-logo {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1002;
  margin-right: auto;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4.5rem;
  transition: font-size 0.25s;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-ujCYnp5XFK .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-ujCYnp5XFK .navbar-toggler {
  background: #ffd381;
  width: 65px!important;
  height: 60px!important;
  border-radius: 6px 0px 6px 6px!important;
  margin-top: -25px !important;
  margin-right: -16px !important;
}
.cid-ujCYnp5XFK .navbar-brand {
  background: transparent;
  margin: 0!important;
  padding: 10px!important;
  padding-top: 20px;
}
.cid-ujCYnp5XFK .navbar.navbar-short {
  background: transparent;
  min-height: 60px;
  transition: none;
}
.cid-ujCYnp5XFK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-ujCYnp5XFK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-ujCYnp5XFK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-ujCYnp5XFK .opened,
.cid-ujCYnp5XFK .show {
  height: 100%;
  width: 375px!important;
  right: 0;
  transition: none;
  background: #ffd381 !important;
  left: auto;
}
@media (max-width: 767px) {
  .cid-ujCYnp5XFK .dropdown-item {
    font-size: 0.8rem;
  }
  .cid-ujCYnp5XFK .nav-dropdown {
    padding-top: 1.5rem;
  }
  .cid-ujCYnp5XFK .opened,
  .cid-ujCYnp5XFK .show,
  .cid-ujCYnp5XFK .navbar {
    width: 100%!important;
  }
  .cid-ujCYnp5XFK .dropdown-toggle {
    margin: auto!important;
  }
  .cid-ujCYnp5XFK .dropdown-menu {
    position: relative!important;
    left: 0!important;
    top: 0!important;
    margin: auto;
  }
  .cid-ujCYnp5XFK .nav-item.dropdown {
    flex-direction: column;
  }
}
.cid-ujCYnp5XFK .nav-item:focus,
.cid-ujCYnp5XFK .nav-link:focus {
  outline: none;
}
.cid-ujCYnp5XFK .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 2rem;
  width: auto;
}
.cid-ujCYnp5XFK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-ujCYnp5XFK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujCYnp5XFK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-ujCYnp5XFK .dropdown .dropdown-menu {
  background: #ffd381;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-ujCYnp5XFK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-ujCYnp5XFK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ujCYnp5XFK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-ujCYnp5XFK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ujCYnp5XFK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-ujCYnp5XFK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
  position: absolute;
}
.cid-ujCYnp5XFK button.navbar-toggler:focus {
  outline: none;
}
.cid-ujCYnp5XFK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ujCYnp5XFK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-ujCYnp5XFK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-ujCYnp5XFK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-ujCYnp5XFK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-ujCYnp5XFK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ujCYnp5XFK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-ujCYnp5XFK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-ujCYnp5XFK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-ujCYnp5XFK .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ujCYnp5XFK .collapsed .btn {
  display: -webkit-flex;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse.collapsing,
.cid-ujCYnp5XFK .collapsed .navbar-collapse.show {
  display: flex !important;
  width: 100%;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-ujCYnp5XFK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-ujCYnp5XFK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-ujCYnp5XFK .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-ujCYnp5XFK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-ujCYnp5XFK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-ujCYnp5XFK .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: 89.5vh;
  }
}
.cid-ujCYnp5XFK .collapsed button.navbar-toggler {
  display: block;
}
.cid-ujCYnp5XFK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-ujCYnp5XFK .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-ujCYnp5XFK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-ujCYnp5XFK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-ujCYnp5XFK .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ujCYnp5XFK img {
    height: 4.5rem !important;
  }
  .cid-ujCYnp5XFK .btn {
    display: -webkit-flex;
  }
  .cid-ujCYnp5XFK button.navbar-toggler {
    display: block;
  }
  .cid-ujCYnp5XFK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-ujCYnp5XFK .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-ujCYnp5XFK .navbar-collapse.collapsing,
  .cid-ujCYnp5XFK .navbar-collapse.show {
    display: block !important;
  }
  .cid-ujCYnp5XFK .navbar-collapse.collapsing .navbar-nav,
  .cid-ujCYnp5XFK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-ujCYnp5XFK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-ujCYnp5XFK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-ujCYnp5XFK .navbar-collapse.collapsing .navbar-buttons,
  .cid-ujCYnp5XFK .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-ujCYnp5XFK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-ujCYnp5XFK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-ujCYnp5XFK .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-ujCYnp5XFK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-ujCYnp5XFK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 767px) {
  .cid-ujCYnp5XFK .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-ujCYnp5XFK .mbr-section-title,
.cid-ujCYnp5XFK .mbr-section-btn {
  color: #6c758f;
  text-align: center;
}
.cid-ujCYnp5XFK .media-container-row .mbr-text {
  text-align: right;
  color: #66a5d3;
}
.cid-ujCYnp5XFK .mbr-section-title {
  color: #6c758f;
  text-align: center;
}
.cid-ujCYnp5XFK .icons-menu,
.cid-ujCYnp5XFK .text-column {
  color: #6c758f;
}
.cid-ujCYnp5XFK .mbr-section-subtitle {
  color: #6c758f;
  text-align: center;
}
.cid-ubTv4bVZoq {
  overflow: hidden !important;
  padding-top: 30px;
  padding-bottom: 30px;
  background: linear-gradient(to right, #ffd381 0%, #ffd381 40%, #6c758f 30%, #6c758f 100%);
}
.cid-ubTv4bVZoq .animated-element {
  color: #ffffff;
}
.cid-ubTv4bVZoq .img-block {
  -webkit-align-self: center;
}
.cid-ubTv4bVZoq .mbr-section-subtitle {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-ubTv4bVZoq .img-block {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ubTv4bVZoq .mbr-figure img {
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-ubTv4bVZoq {
    background: #6c758f;
  }
  .cid-ubTv4bVZoq .img-block {
    padding-bottom: 2rem;
  }
}
.cid-ubTv4bVZoq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTv4bVZoq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTv4bVZoq .mbr-section-title {
  color: #ffffff;
}
.cid-ubTv4DxN9s {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/cid-coimb-bg-7-1920x1080.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-ubTv4DxN9s .mbr-fallback-image.disabled {
  display: none;
}
.cid-ubTv4DxN9s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ubTv4DxN9s .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-ubTv4DxN9s .mbr-section-title {
  color: #FF014E;
}
.cid-ubTv4DxN9s .mbr-section-subtitle {
  color: #6c758f;
  margin-top: 15px;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-ubTv4DxN9s .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ubTv4DxN9s .card-row {
  align-items: stretch;
}
.cid-ubTv4DxN9s .card {
  margin-top: 30px;
}
.cid-ubTv4DxN9s .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #efefef, #6c758f);
  box-shadow: 10px 10px 19px #ffd381, -10px -10px 19px #6c758f;
}
@media (max-width: 1199px) {
  .cid-ubTv4DxN9s .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-ubTv4DxN9s .card-wrapper {
    padding: 20px;
  }
}
.cid-ubTv4DxN9s .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-ubTv4DxN9s .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-ubTv4DxN9s .card-wrapper:hover .card-title {
  color: #232323 !important;
}
.cid-ubTv4DxN9s .card-wrapper:hover .card-text {
  color: #232323 !important;
}
.cid-ubTv4DxN9s .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #ffd381, #6c758f);
  opacity: 0;
  transition: .5s all;
}
.cid-ubTv4DxN9s .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-ubTv4DxN9s .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-ubTv4DxN9s .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-ubTv4DxN9s .card-title {
  color: #ffd381;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
.cid-ubTv4DxN9s .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-ubTv4DxN9s .card-title DIV {
  text-align: center;
}
.cid-ubTv5pm9b4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffd381;
}
.cid-ubTv5pm9b4 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ubTv5pm9b4 .media-container-row .mbr-text {
  color: #6c758f;
}
.cid-ufAHXwo7fC {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cabec-bar1-1920x257.png");
}
.cid-ufAHXwo7fC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufAHXwo7fC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufAHXwo7fC .container {
    padding: 0 15px;
  }
}
.cid-ufAHXwo7fC .content-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-ufAHXwo7fC .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-ufAHXwo7fC .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-ufAHXwo7fC .content-wrapper .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ufAHXwo7fC .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ufAHXwo7fC .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufAHXwo7fC .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-ufAHXwo7fC .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-ufAHXwo7fC .image-wrapper img {
  width: 100px;
  height: 100px;
  border: 0px solid #ffffff;
  box-shadow: 0px 0px 0px #d2d2df;
  object-fit: cover;
  border-radius: 0% !important;
}
@media (max-width: 1500px) {
  .cid-ufAHXwo7fC .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1199px) {
  .cid-ufAHXwo7fC .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1200px) {
  .cid-ufAHXwo7fC .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-ufAHXwo7fC .mbr-section-title {
  color: #ffffff;
}
.cid-ufAHXwo7fC .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ufAHXwo7fC .mbr-text {
  color: #d2d2df;
}
.cid-ufAHXwo7fC .mbr-section-title,
.cid-ufAHXwo7fC .mbr-section-btn {
  color: #6c758f;
}
.cid-ubTvpE5Umw {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #b6bcd4;
}
.cid-ubTvpE5Umw .mbr-shop {
  display: table;
  width: 100%;
}
.cid-ubTvpE5Umw .mbr-shop .row {
  margin: 0;
}
.cid-ubTvpE5Umw .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-ubTvpE5Umw .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-ubTvpE5Umw .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-ubTvpE5Umw .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-ubTvpE5Umw .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;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-ubTvpE5Umw .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-ubTvpE5Umw .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-ubTvpE5Umw .mbr-shop .hide-modal {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 25px;
  width: 1000px;
  max-width: 100%;
  background-color: #6c758f;
  z-index: 2000;
  overflow: auto;
  position: fixed;
  border-radius: 8px;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-ubTvpE5Umw .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-ubTvpE5Umw .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-ubTvpE5Umw .mbr-shop .filter-by-pu,
.cid-ubTvpE5Umw .mbr-shop .filter-by-pd,
.cid-ubTvpE5Umw .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-ubTvpE5Umw .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-ubTvpE5Umw .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-ubTvpE5Umw .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-ubTvpE5Umw .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: 5px;
  width: 33%;
}
.cid-ubTvpE5Umw .mbr-shop .galleryItem h4,
.cid-ubTvpE5Umw .mbr-shop .carousel-item h4 {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin: 0;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-ubTvpE5Umw .mbr-shop .galleryItem h5,
.cid-ubTvpE5Umw .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-ubTvpE5Umw .mbr-shop .galleryItem p,
.cid-ubTvpE5Umw .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-ubTvpE5Umw .mbr-shop .item-button {
  text-align: center;
}
.cid-ubTvpE5Umw .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-ubTvpE5Umw .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-ubTvpE5Umw .mbr-shop .sidebar {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}
.cid-ubTvpE5Umw .mbr-shop .sidebar-block {
  position: relative;
}
.cid-ubTvpE5Umw .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #ffd381;
  top: 0;
  right: 3px;
  border-radius: 10px;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-ubTvpE5Umw .mbr-shop .onsale {
  position: absolute;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  top: 15px;
  left: 15px;
  line-height: 17px;
  padding: 5px 15px 5px;
  background: #ffd381;
  border-radius: 15px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #000000;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item__hided h4,
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item__hided h5,
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .galleryItem .price-block {
  display: block;
  padding: 10px 0 0;
}
.cid-ubTvpE5Umw .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-ubTvpE5Umw .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-ubTvpE5Umw .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-ubTvpE5Umw .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-ubTvpE5Umw .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-ubTvpE5Umw .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-ubTvpE5Umw .mbr-shop .price-controls input {
  width: 100%;
  background-color: transparent;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-ubTvpE5Umw .mbr-shop .range-controls {
  position: relative;
}
.cid-ubTvpE5Umw .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-ubTvpE5Umw .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-ubTvpE5Umw .mbr-shop .toggle {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -9px;
  width: 7px;
  height: 7px;
  border: 8px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #66458e;
  cursor: pointer;
}
.cid-ubTvpE5Umw .mbr-shop .toggle:hover,
.cid-ubTvpE5Umw .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-ubTvpE5Umw .mbr-shop .min-toggle {
  left: 0;
}
.cid-ubTvpE5Umw .mbr-shop .max-toggle {
  right: 0;
}
.cid-ubTvpE5Umw .mbr-shop .hided-by-price {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .text-modal {
  padding-left: 30px;
}
.cid-ubTvpE5Umw .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-ubTvpE5Umw .mbr-shop .text-modal .price-block {
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-ubTvpE5Umw .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-ubTvpE5Umw .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-ubTvpE5Umw .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-ubTvpE5Umw .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-ubTvpE5Umw .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 10px;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-ubTvpE5Umw .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-ubTvpE5Umw .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-ubTvpE5Umw .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-ubTvpE5Umw .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-ubTvpE5Umw .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.cid-ubTvpE5Umw .mbr-shop .shopItemsModal .sidebar_wraper {
  height: 100%;
  text-align: left;
}
.cid-ubTvpE5Umw .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-ubTvpE5Umw .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-ubTvpE5Umw .mbr-shop .price-range {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .price-range-reset {
  display: none;
}
.cid-ubTvpE5Umw .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-ubTvpE5Umw .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-ubTvpE5Umw .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-ubTvpE5Umw .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-ubTvpE5Umw .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-ubTvpE5Umw .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-ubTvpE5Umw .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
    background: none;
  }
  .cid-ubTvpE5Umw .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-ubTvpE5Umw .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-ubTvpE5Umw .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-ubTvpE5Umw .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-ubTvpE5Umw .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-ubTvpE5Umw .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-ubTvpE5Umw .mbr-shop .sidebar {
    margin-bottom: 30px;
  }
  .cid-ubTvpE5Umw .wrapper-shop-items {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-ubTvpE5Umw .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-ubTvpE5Umw .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-ubTvpE5Umw .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-ubTvpE5Umw .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-ubTvpE5Umw .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-ubTvpE5Umw .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-ubTvpE5Umw .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-ubTvpE5Umw .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-ubTvpE5Umw .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-ubTvpE5Umw .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-ubTvpE5Umw .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ubTvpE5Umw .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-ubTvpE5Umw .mbr-gallery-item .sidebar_wraper {
  background-color: #6c758f;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-ubTvpE5Umw .sidebar .sidebar_wraper {
  background-color: #ffd381;
}
.cid-ubTvpE5Umw .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-ubTvpE5Umw .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-ubTvpE5Umw .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  font-size: 12px;
  color: #6c758f;
  border-radius: 100px;
}
.cid-ubTvpE5Umw .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-ubTvpE5Umw .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-ubTvpE5Umw .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-ubTvpE5Umw .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-ubTvpE5Umw .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-ubTvpE5Umw .categories {
  padding: 0;
}
.cid-ubTvpE5Umw .sidebar-title {
  font-weight: bold;
  color: #6c758f;
}
.cid-ubTvpE5Umw .shop-item-price,
.cid-ubTvpE5Umw .price-block {
  color: #b6bcd4;
}
.cid-ubTvpE5Umw .item-title {
  color: #ffffff;
}
.cid-ubTvpE5Umw .card-description {
  color: #d5dae7;
}
.cid-ubTvpE5Umw div.galleryItem {
  background: transparent;
}
.cid-ubTv5pm9b4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffd381;
}
.cid-ubTv5pm9b4 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ubTv5pm9b4 .media-container-row .mbr-text {
  color: #6c758f;
}
.cid-ufAI2pVl4D {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cabec-bar1-1920x257.png");
}
.cid-ufAI2pVl4D .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufAI2pVl4D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufAI2pVl4D .container {
    padding: 0 15px;
  }
}
.cid-ufAI2pVl4D .content-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-ufAI2pVl4D .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-ufAI2pVl4D .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-ufAI2pVl4D .content-wrapper .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ufAI2pVl4D .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ufAI2pVl4D .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufAI2pVl4D .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-ufAI2pVl4D .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-ufAI2pVl4D .image-wrapper img {
  width: 100px;
  height: 100px;
  border: 0px solid #ffffff;
  box-shadow: 0px 0px 0px #d2d2df;
  object-fit: cover;
  border-radius: 0% !important;
}
@media (max-width: 1500px) {
  .cid-ufAI2pVl4D .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1199px) {
  .cid-ufAI2pVl4D .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1200px) {
  .cid-ufAI2pVl4D .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-ufAI2pVl4D .mbr-section-title {
  color: #ffffff;
}
.cid-ufAI2pVl4D .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ufAI2pVl4D .mbr-text {
  color: #d2d2df;
}
.cid-ufAI2pVl4D .mbr-section-title,
.cid-ufAI2pVl4D .mbr-section-btn {
  color: #6c758f;
}
.cid-udkC4ayrHZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #b6bcd4;
}
.cid-udkC4ayrHZ .mbr-shop {
  display: table;
  width: 100%;
}
.cid-udkC4ayrHZ .mbr-shop .row {
  margin: 0;
}
.cid-udkC4ayrHZ .mbr-shop .btn-sm {
  margin: 0.2rem 0.2rem;
}
.cid-udkC4ayrHZ .mbr-shop .shoppingcart-icons {
  z-index: 105 !important;
}
.cid-udkC4ayrHZ .mbr-shop .shop-title {
  margin-bottom: 18px;
  padding-left: 25px;
  padding-right: 25px;
  display: inline-block;
  max-width: 80%;
}
.cid-udkC4ayrHZ .mbr-shop .sidebar-title {
  line-height: 25px;
  margin-bottom: 1.8rem;
}
.cid-udkC4ayrHZ .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;
  left: 0;
  cursor: pointer;
  z-index: 1040;
}
.cid-udkC4ayrHZ .mbr-shop .card-description {
  cursor: text;
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .image-modal {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  position: relative;
}
.cid-udkC4ayrHZ .mbr-shop .image-modal img {
  max-width: 100%;
  max-height: 75vh;
}
.cid-udkC4ayrHZ .mbr-shop .hide-modal {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModal {
  cursor: default;
  padding: 25px;
  width: 1000px;
  max-width: 100%;
  background-color: #6c758f;
  z-index: 2000;
  overflow: auto;
  position: fixed;
  border-radius: 8px;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModal p {
  margin-bottom: 0;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModal ul {
  margin-bottom: 0;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModal .card-description {
  display: block;
  width: 100%;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModal .close-modal {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 4px;
  background-color: red;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.cid-udkC4ayrHZ .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-udkC4ayrHZ .mbr-shop .test-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.cid-udkC4ayrHZ .mbr-shop .filter-by-pu,
.cid-udkC4ayrHZ .mbr-shop .filter-by-pd,
.cid-udkC4ayrHZ .mbr-shop .filter-by-d {
  display: inline-block;
  margin-right: 3px;
}
.cid-udkC4ayrHZ .mbr-shop .sort-buttons {
  padding-bottom: 1rem;
  margin-right: 13px;
  text-align: right;
}
.cid-udkC4ayrHZ .mbr-shop .galleryItem:before {
  width: 0 !important;
  height: 0 !important;
}
.cid-udkC4ayrHZ .mbr-shop .modal-dialog {
  max-width: 700px;
}
.cid-udkC4ayrHZ .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: 5px;
  width: 33%;
}
.cid-udkC4ayrHZ .mbr-shop .galleryItem h4,
.cid-udkC4ayrHZ .mbr-shop .carousel-item h4 {
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
  margin: 0;
  padding-top: 15px;
  transition: color 0.5s;
}
.cid-udkC4ayrHZ .mbr-shop .galleryItem h5,
.cid-udkC4ayrHZ .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-udkC4ayrHZ .mbr-shop .galleryItem p,
.cid-udkC4ayrHZ .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-udkC4ayrHZ .mbr-shop .item-button {
  text-align: center;
}
.cid-udkC4ayrHZ .mbr-shop .modalButton {
  display: inline-block;
  float: right;
  margin-right: 10px;
}
.cid-udkC4ayrHZ .mbr-shop .modalButton.btn-success {
  right: 15%;
}
.cid-udkC4ayrHZ .mbr-shop .sidebar {
  margin-top: 15px;
  padding-top: 15px;
  position: relative;
}
.cid-udkC4ayrHZ .mbr-shop .sidebar-block {
  position: relative;
}
.cid-udkC4ayrHZ .mbr-shop .sidebar-background:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 102%;
  background-color: #ffd381;
  top: 0;
  right: 3px;
  border-radius: 10px;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers {
  padding-left: 0;
  padding-right: 0;
  position: relative;
  margin-bottom: 20px;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .onsale {
  top: -15px;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .price-block {
  padding-top: 5px;
  text-align: left;
  line-height: 1;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .mbr-gallery-item {
  width: 100%;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .mbr-gallery-item img {
  width: 80px;
  float: left;
  margin-right: 20px;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .mbr-gallery-item h4 {
  text-align: left;
  padding-bottom: 5px;
  line-height: 1;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .mbr-gallery-item h5 {
  text-align: left;
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .mbr-gallery-item p {
  text-align: left;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .btn {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers-img {
  display: inline-block;
  width: 80px;
  height: 80px;
  overflow: hidden;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers-title {
  display: inline-block;
}
.cid-udkC4ayrHZ .mbr-shop .onsale {
  position: absolute;
  display: block;
  transition: color .3s ease;
  text-align: center;
  z-index: 95;
  top: 15px;
  left: 15px;
  line-height: 17px;
  padding: 5px 15px 5px;
  background: #ffffff;
  border-radius: 15px;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0px;
  color: #000000;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item__hided {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item__hided h4,
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item__hided h5,
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item__hided p {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item__hided .btn {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .galleryItem .price-block {
  display: block;
  padding: 10px 0 0;
}
.cid-udkC4ayrHZ .mbr-shop .galleryItem .price-block span {
  font-style: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: -1px;
  word-spacing: 0;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-filter {
  padding-left: 0;
  text-align: left;
  padding-top: 0;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-filter ul li.active {
  background-color: transparent;
  font-weight: bold;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-filter ul li:hover {
  background-color: transparent;
}
.cid-udkC4ayrHZ .mbr-shop .range-slider {
  padding-bottom: 25px;
}
.cid-udkC4ayrHZ .mbr-shop .filter-cost {
  display: block;
  vertical-align: middle;
  max-width: 250px;
  text-align: left;
  position: relative;
  margin-bottom: 30px;
}
.cid-udkC4ayrHZ .mbr-shop .filter-cost p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 21px;
  color: #666666;
  font-weight: bold;
}
.cid-udkC4ayrHZ .mbr-shop .price-controls {
  position: relative;
  height: 36px;
  margin-bottom: 10px;
  border-radius: 2px;
  font-size: 0;
}
.cid-udkC4ayrHZ .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-udkC4ayrHZ .mbr-shop .price-controls input {
  width: 100%;
  background-color: transparent;
  border: none;
  line-height: 31px;
  height: 31px;
  text-align: center;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cid-udkC4ayrHZ .mbr-shop .range-controls {
  position: relative;
}
.cid-udkC4ayrHZ .mbr-shop .range-controls .scale {
  width: 100%;
  height: 5px;
  background-color: rgba(190, 190, 190, 0.3);
}
.cid-udkC4ayrHZ .mbr-shop .range-controls .bar {
  margin-left: 0;
  width: 100%;
  height: 5px;
  background-color: #66458e;
}
.cid-udkC4ayrHZ .mbr-shop .toggle {
  -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
  position: absolute;
  top: -9px;
  width: 7px;
  height: 7px;
  border: 8px solid #ffffff;
  border-radius: 100%;
  box-sizing: content-box;
  background-color: #66458e;
  cursor: pointer;
}
.cid-udkC4ayrHZ .mbr-shop .toggle:hover,
.cid-udkC4ayrHZ .mbr-shop .toggle:active {
  background-color: #c0a375;
}
.cid-udkC4ayrHZ .mbr-shop .min-toggle {
  left: 0;
}
.cid-udkC4ayrHZ .mbr-shop .max-toggle {
  right: 0;
}
.cid-udkC4ayrHZ .mbr-shop .hided-by-price {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .text-modal {
  padding-left: 30px;
}
.cid-udkC4ayrHZ .mbr-shop .text-modal .item-button {
  text-align: left !important;
}
.cid-udkC4ayrHZ .mbr-shop .text-modal .price-block {
  line-height: 1;
  padding-bottom: 5px;
  border-bottom: 1px dotted #d6d6d6;
}
.cid-udkC4ayrHZ .mbr-shop .text-modal .price-block p {
  display: inline;
}
.cid-udkC4ayrHZ .mbr-shop .text-modal .price-block span {
  display: inline;
  font-weight: 700;
  padding: 10px 0 20px 0;
}
.cid-udkC4ayrHZ .mbr-shop .text-modal .card-description {
  padding-top: 20px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 50px;
}
.cid-udkC4ayrHZ .mbr-shop .modal-control-panel {
  padding-right: 0;
}
.cid-udkC4ayrHZ .mbr-shop .modal-cb {
  display: inline-block;
  float: right;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 10px;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModalBg {
  width: 100%;
  height: 100%;
}
.cid-udkC4ayrHZ .mbr-shop .close-modal-wrapper {
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: 0;
}
.cid-udkC4ayrHZ .mbr-shop .close-modal-wrapper:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #cccccc;
  top: 50%;
  right: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-udkC4ayrHZ .mbr-shop .close-modal-wrapper:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #cccccc;
  right: 50%;
  top: 5%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.cid-udkC4ayrHZ .mbr-shop .closeModal {
  position: absolute;
  top: 10px;
  right: 10px;
}
.cid-udkC4ayrHZ .mbr-shop .galleryItem .sidebar_wraper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}
.cid-udkC4ayrHZ .mbr-shop .shopItemsModal .sidebar_wraper {
  height: 100%;
  text-align: left;
}
.cid-udkC4ayrHZ .mbr-shop .item_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: transparent;
}
.cid-udkC4ayrHZ .mbr-shop .style_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}
.cid-udkC4ayrHZ .mbr-shop .price-range {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .price-range-reset {
  display: none;
}
.cid-udkC4ayrHZ .mbr-shop .bestsellers .item-button {
  display: none !important;
}
.cid-udkC4ayrHZ .mbr-shop .range-slider h4 {
  margin-bottom: 1.8rem;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-filter ul {
  padding-left: 0px;
  display: inline-block;
  list-style: none;
  margin-bottom: 0px;
}
.cid-udkC4ayrHZ .mbr-shop .categories:after {
  content: "";
  display: table;
  clear: both;
}
@media (min-width: 767px) and (max-width: 1100px) {
  .cid-udkC4ayrHZ .mbr-shop .col-md-9 {
    width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .col-md-3 {
    width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .sidebar-background:after {
    top: 0;
  }
  .cid-udkC4ayrHZ .mbr-shop .bestseller-block {
    width: 100%;
    margin: 0;
    display: inline-block;
    float: left;
    padding-top: 15px;
  }
  .cid-udkC4ayrHZ .mbr-shop .range-slider {
    width: 49%;
    margin: 0;
    display: inline-block;
    float: right;
    padding-top: 15px;
  }
  .cid-udkC4ayrHZ .mbr-shop .bestsellers {
    width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .bestsellers .mbr-gallery-item {
    width: 49%;
    display: inline-block;
  }
  .cid-udkC4ayrHZ .mbr-shop .sidebar-categories {
    width: 49%;
    margin: 0;
    display: inline-block;
    padding-top: 15px;
  }
  .cid-udkC4ayrHZ .mbr-shop .price-range {
    max-width: 250px;
    text-align: center;
  }
  .cid-udkC4ayrHZ .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item {
    width: 33%;
  }
}
@media (max-width: 500px) {
  .cid-udkC4ayrHZ .mbr-shop .shopItemsModal {
    padding: 50px 10px 10px 10px;
  }
  .cid-udkC4ayrHZ .mbr-shop .shop-title {
    max-width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .mbr-gallery-item {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .cid-udkC4ayrHZ .mbr-shop .sort-buttons {
    text-align: center;
    margin-right: 0 !important;
  }
  .cid-udkC4ayrHZ .mbr-shop .sidebar {
    margin-bottom: 30px;
  }
  .cid-udkC4ayrHZ .wrapper-shop-items {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-udkC4ayrHZ .mbr-shop .image-modal {
    text-align: center;
  }
  .cid-udkC4ayrHZ .mbr-shop .image-modal img {
    max-height: 50vh;
    width: auto;
    max-width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .shopItemsModal {
    top: 15%;
    bottom: 70px;
    left: 10%;
    width: 80%;
  }
  .cid-udkC4ayrHZ .mbr-shop .shopItemsModal .image-modal {
    padding-right: 0;
  }
  .cid-udkC4ayrHZ .mbr-shop .sidebar-background:after {
    top: -1%;
  }
}
@media (max-width: 1100px) {
  .cid-udkC4ayrHZ .mbr-shop .shopItemsModal {
    max-height: 85vh;
    width: 90%;
    left: 5%;
    margin-left: 0;
  }
  .cid-udkC4ayrHZ .mbr-shop .sort-buttons {
    margin-right: 21px;
  }
  .cid-udkC4ayrHZ .mbr-shop .sidebar-background:after {
    right: 0;
    width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .text-modal .card-description {
    width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .text-modal .price-block {
    width: 100%;
  }
  .cid-udkC4ayrHZ .mbr-shop .text-modal h4 {
    padding-top: 30px;
  }
}
.cid-udkC4ayrHZ .shopItemsModal_wraper .mbr-section-btn {
  display: block !important;
}
.cid-udkC4ayrHZ .range-slider .mbr-section-btn {
  margin: 0;
}
.cid-udkC4ayrHZ .oldprice {
  color: #767676;
  padding-left: .8rem !important;
  text-decoration: line-through;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-udkC4ayrHZ .shopItemsModal.row {
    position: absolute !important;
    top: calc(50% - 300px) !important;
    left: calc(50% - 500px) !important;
  }
}
.cid-udkC4ayrHZ .mbr-gallery-item .sidebar_wraper {
  background-color: #6c758f;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-udkC4ayrHZ .sidebar .sidebar_wraper {
  background-color: #ffd381;
}
.cid-udkC4ayrHZ .mbr-gallery-item .price-block {
  text-align: left;
}
.cid-udkC4ayrHZ .big-container {
  max-width: 1326px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}
.cid-udkC4ayrHZ .mbr-shop .mbr-gallery-filter ul li {
  padding: 7px 16px 5px;
  margin: 4px 8px 4px 0;
  border: 1px solid;
  font-size: 12px;
  color: #6c758f;
  border-radius: 100px;
}
.cid-udkC4ayrHZ .mbr-gallery-item .sidebar_wraper .item-title {
  text-align: left;
  font-weight: 700;
}
.cid-udkC4ayrHZ .sidebar {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-udkC4ayrHZ .range-slider {
  -webkit-order: 1;
  order: 1;
}
.cid-udkC4ayrHZ .sidebar-categories {
  -webkit-order: 2;
  order: 2;
}
.cid-udkC4ayrHZ .bestseller-block {
  -webkit-order: 3;
  order: 3;
}
.cid-udkC4ayrHZ .categories {
  padding: 0;
}
.cid-udkC4ayrHZ .sidebar-title {
  font-weight: bold;
  color: #6c758f;
}
.cid-udkC4ayrHZ .shop-item-price,
.cid-udkC4ayrHZ .price-block {
  color: #b6bcd4;
}
.cid-udkC4ayrHZ .item-title {
  color: #ffffff;
}
.cid-udkC4ayrHZ .card-description {
  color: #d5dae7;
}
.cid-udkC4ayrHZ div.galleryItem {
  background: transparent;
}
.cid-udkC4bkqK1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffd381;
}
.cid-udkC4bkqK1 .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-udkC4bkqK1 .media-container-row .mbr-text {
  color: #6c758f;
}
.cid-ueVB9Ya8UT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cabec-bar1-1920x257.png");
}
.cid-ueVB9Ya8UT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueVB9Ya8UT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ueVB9Ya8UT .container {
    padding: 0 15px;
  }
}
.cid-ueVB9Ya8UT .content-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-ueVB9Ya8UT .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-ueVB9Ya8UT .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-ueVB9Ya8UT .content-wrapper .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ueVB9Ya8UT .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ueVB9Ya8UT .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ueVB9Ya8UT .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-ueVB9Ya8UT .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-ueVB9Ya8UT .image-wrapper img {
  width: 225px;
  height: 125px;
  border: 0px solid #ffffff;
  box-shadow: 0px 0px 0px #d2d2df;
  object-fit: cover;
  border-radius: 0% !important;
}
@media (max-width: 1500px) {
  .cid-ueVB9Ya8UT .image-wrapper img {
    width: 225px;
    height: 125px;
  }
}
@media (max-width: 1199px) {
  .cid-ueVB9Ya8UT .image-wrapper img {
    width: 225px;
    height: 125px;
  }
}
@media (max-width: 1200px) {
  .cid-ueVB9Ya8UT .image-wrapper img {
    width: 225px;
    height: 160px;
  }
}
.cid-ueVB9Ya8UT .mbr-section-title {
  color: #ffffff;
}
.cid-ueVB9Ya8UT .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ueVB9Ya8UT .mbr-text {
  color: #d2d2df;
}
.cid-ueVB9Ya8UT .mbr-section-title,
.cid-ueVB9Ya8UT .mbr-section-btn {
  color: #6c758f;
}
.cid-ueVzsnnE99 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-image: url("../../../assets/images/cid-coimb-bg-6-1920x1080.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cid-ueVzsnnE99 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ueVzsnnE99 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ueVzsnnE99 .mbr-section-head {
  margin-bottom: 20px;
  width: 100%;
}
.cid-ueVzsnnE99 .mbr-section-title {
  color: #FF014E;
}
.cid-ueVzsnnE99 .mbr-section-subtitle {
  color: #6c758f;
  margin-top: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-ueVzsnnE99 .mbr-section-subtitle {
    margin-top: 10px;
  }
}
.cid-ueVzsnnE99 .card-row {
  align-items: stretch;
}
.cid-ueVzsnnE99 .card {
  margin-top: 30px;
}
.cid-ueVzsnnE99 .card-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 35px 50px 35px 50px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, #efefef, #6c758f);
  box-shadow: 10px 10px 19px #ffd381, -10px -10px 19px #6c758f;
}
@media (max-width: 1199px) {
  .cid-ueVzsnnE99 .card-wrapper {
    padding: 30px;
  }
}
@media (max-width: 575px) {
  .cid-ueVzsnnE99 .card-wrapper {
    padding: 20px;
  }
}
.cid-ueVzsnnE99 .card-wrapper:hover .card-bg {
  opacity: 1;
}
.cid-ueVzsnnE99 .card-wrapper:hover .card-box {
  transform: translateY(0);
}
.cid-ueVzsnnE99 .card-wrapper:hover .card-title {
  color: #232323 !important;
}
.cid-ueVzsnnE99 .card-wrapper:hover .card-text {
  color: #232323 !important;
}
.cid-ueVzsnnE99 .card-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right bottom, #ffd381, #6c758f);
  opacity: 0;
  transition: .5s all;
}
.cid-ueVzsnnE99 .card-box {
  position: relative;
  z-index: 5;
  height: 100%;
  transition: 0.7s cubic-bezier(0.17, 0.67, 0, 1.01);
  transform: translateY(20px);
}
.cid-ueVzsnnE99 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: auto;
  margin-bottom: 30px;
}
.cid-ueVzsnnE99 .iconfont-wrapper .mbr-iconfont {
  font-size: 42px;
  color: #ffffff;
}
.cid-ueVzsnnE99 .card-title {
  color: #ffd381;
  margin-bottom: 20px;
  transition: .5s all;
  text-align: center;
}
.cid-ueVzsnnE99 .card-text {
  color: #878e99;
  margin-bottom: 22px;
  transition: .5s all;
}
.cid-ueVzsnnE99 .card-title DIV {
  text-align: center;
}
.cid-ueVBaZWyJm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffd381;
}
.cid-ueVBaZWyJm .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ueVBaZWyJm .media-container-row .mbr-text {
  color: #6c758f;
}
.cid-ufZhl9grdJ {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/cabec-bar1-1920x257.png");
}
.cid-ufZhl9grdJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufZhl9grdJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ufZhl9grdJ .container {
    padding: 0 15px;
  }
}
.cid-ufZhl9grdJ .content-wrapper {
  padding-left: 80px;
}
@media (max-width: 992px) {
  .cid-ufZhl9grdJ .content-wrapper {
    margin-top: 40px;
    padding: 0;
  }
}
.cid-ufZhl9grdJ .content-wrapper .mbr-section-subtitle {
  margin-bottom: 30px;
}
.cid-ufZhl9grdJ .content-wrapper .mbr-section-title {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-ufZhl9grdJ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-ufZhl9grdJ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ufZhl9grdJ .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
.cid-ufZhl9grdJ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.cid-ufZhl9grdJ .image-wrapper img {
  width: 100px;
  height: 100px;
  border: 0px solid #ffffff;
  box-shadow: 0px 0px 0px #d2d2df;
  object-fit: cover;
  border-radius: 0% !important;
}
@media (max-width: 1500px) {
  .cid-ufZhl9grdJ .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1199px) {
  .cid-ufZhl9grdJ .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 1200px) {
  .cid-ufZhl9grdJ .image-wrapper img {
    width: 100px;
    height: 100px;
  }
}
.cid-ufZhl9grdJ .mbr-section-title {
  color: #ffffff;
}
.cid-ufZhl9grdJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: left;
}
.cid-ufZhl9grdJ .mbr-text {
  color: #d2d2df;
}
.cid-ufZhl9grdJ .mbr-section-title,
.cid-ufZhl9grdJ .mbr-section-btn {
  color: #6c758f;
}
#custom-html-1a {
  /* Type valid CSS here */
}
#custom-html-1a div {
  font-size: 12px;
  padding: 10px 0;
  color: #6c758f;
  text-align: center;
}
#custom-html-1a p {
  font-size: 14px;
  color: #777;
}
#custom-html-1a #location-list ul {
  list-style-type: none;
  margin-left: 20px;
  padding: 0;
  color: #6c758f;
}
#custom-html-1a #location-list li {
  padding: 10px;
  margin-bottom: 5px;
  border-radius: 5px;
}
#custom-html-1a #location-list button {
  padding: 5px 20px;
  margin-right: 20px;
  margin-bottom: 5px;
}
.cid-ufZga5dTgq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffd381;
}
.cid-ufZga5dTgq .media-container-row {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-ufZga5dTgq .media-container-row .mbr-text {
  color: #6c758f;
}
.cid-ujrAfVlsJw.popup-builder {
  background-color: #ffffff;
}
.cid-ujrAfVlsJw.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-ujrAfVlsJw.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-ujrAfVlsJw .modal-content,
.cid-ujrAfVlsJw .modal-dialog {
  height: auto;
}
.cid-ujrAfVlsJw .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-ujrAfVlsJw .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-ujrAfVlsJw .form-wrapper .mbr-form .form-group,
  .cid-ujrAfVlsJw .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-ujrAfVlsJw .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-ujrAfVlsJw .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-ujrAfVlsJw .mbr-text {
  text-align: center;
  color: #6c758f;
}
.cid-ujrAfVlsJw .pt-0 {
  padding-top: 0 !important;
}
.cid-ujrAfVlsJw .pb-0 {
  padding-bottom: 0 !important;
}
.cid-ujrAfVlsJw .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-ujrAfVlsJw .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-ujrAfVlsJw .modal-open {
  overflow: hidden;
}
.cid-ujrAfVlsJw .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-ujrAfVlsJw .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-ujrAfVlsJw .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-ujrAfVlsJw .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-ujrAfVlsJw .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-ujrAfVlsJw .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-ujrAfVlsJw .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-ujrAfVlsJw .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-ujrAfVlsJw .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-ujrAfVlsJw .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-ujrAfVlsJw .modal-backdrop.fade {
  opacity: 0;
}
.cid-ujrAfVlsJw .modal-backdrop.show {
  opacity: .5;
}
.cid-ujrAfVlsJw .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-ujrAfVlsJw .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujrAfVlsJw .modal-header {
    padding: 1rem;
  }
}
.cid-ujrAfVlsJw .image-wrapper {
  margin-top: 1rem;
  margin-left: 1rem;
  padding: 0.5rem;
}
.cid-ujrAfVlsJw .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-ujrAfVlsJw .modal-header .close svg {
  fill: #6c758f;
}
.cid-ujrAfVlsJw .modal-header .close:hover {
  opacity: 1;
}
.cid-ujrAfVlsJw .modal-header .close:focus {
  outline: none;
}
.cid-ujrAfVlsJw .modal-title {
  line-height: 1;
  width: 100%;
  margin: 0;
  text-align: center;
  color: #6c758f;
}
.cid-ujrAfVlsJw .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-ujrAfVlsJw .modal-body {
    padding: 0.5rem 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-ujrAfVlsJw .modal-body {
    padding: 0.5rem 1rem 1rem 1rem;
  }
}
.cid-ujrAfVlsJw .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ujrAfVlsJw .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ujrAfVlsJw .modal-footer {
    padding: 1rem;
  }
}
.cid-ujrAfVlsJw .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-ujrAfVlsJw .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-ujrAfVlsJw .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-ujrAfVlsJw .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-ujrAfVlsJw .modal-sm {
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .cid-ujrAfVlsJw .modal-lg,
  .cid-ujrAfVlsJw .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-ujrAfVlsJw .modal-xl {
    max-width: 1140px;
  }
}
.cid-ujrAfVlsJw .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-ujrAfVlsJw .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 100%;
}
.cid-ujrAfVlsJw .form-group {
  margin-bottom: 1rem;
}
.cid-ujrAfVlsJw .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-ujrAfVlsJw .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ujrAfVlsJw .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-ujrAfVlsJw .mbr-section-btn {
  margin: 0;
}
.cid-ujrAfVlsJw .mbr-section-btn .btn {
  margin: 0;
}
.cid-ujrAfVlsJw LABEL {
  color: #66a5d3;
}
.cid-ujrAfVlsJw TEXTAREA {
  color: #6c758f;
  font-size: 12px;
}
.cid-ujrAfVlsJw input[type="radio"] {
  accent-color: #6c758f;
}
.cid-ujrAfVlsJw .underline {
  margin-top: 0rem;
  margin-bottom: 0rem;
}
.cid-ujrAfVlsJw .underline .line {
  width: 16rem;
  height: 1px;
  background-color: #66a5d3;
  display: inline-block;
}
