@charset "UTF-8";
.mne-mobile {
  /* Input */
  /* Span */
  /* Box */
  /* Checkmark */
  /* Checked, Indeterminate */
  /* Hover, Focus */
  /* Active */
  /* Disabled */
  /* Visual styles */
  /* Arrow animation */
  background-color: #fff;
}
.mne-mobile .mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px 5px 5px;
  background: #085aa4;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  flex-wrap: wrap;
  transform: translateZ(0);
}
.mne-mobile .mobile-header .action {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 15px;
}
.mne-mobile .mobile-header .action svg {
  max-width: 26px;
  height: auto;
}
.mne-mobile .mobile-header .action span {
  color: #fff;
  font-weight: 500;
  font-size: 10px;
}
.mne-mobile .mobile-header .action.first {
  margin-left: auto;
  margin-right: 15px;
}
.mne-mobile .mobile-header .action.last {
  margin-left: 15px;
}
.mne-mobile .mobile-header .settings {
  display: flex;
  align-items: center;
  border-radius: 15px;
  gap: 5px;
  margin-left: 15px;
}
.mne-mobile .mobile-header .settings label {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #fff;
  font-weight: 500;
  font-size: 10px;
}
.mne-mobile .mobile-header .settings label svg {
  max-width: 26px;
  height: auto;
}
.mne-mobile .mobile-header .settings-popup {
  position: absolute;
  right: 40px;
  top: 65px;
  max-width: 200px;
  background: #fff;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  padding: 15px;
  display: none;
}
.mne-mobile .mobile-header .settings-popup:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 25px;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  display: inline-block;
  background: #fff;
}
.mne-mobile .mobile-header .settings-popup p {
  font-weight: 500;
}
.mne-mobile .mobile-header .settings input {
  display: none;
}
.mne-mobile .mobile-header .settings input:checked ~ .settings-popup {
  display: block;
}
.mne-mobile .mobile-header .logo img {
  width: auto;
  max-height: 54px; /* Adjust logo size */
}
.mne-mobile .search-bar {
  margin-top: 5px;
  padding: 10px;
}
.mne-mobile .search-bar input {
  width: 100%;
  border-radius: 5px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
  margin: 0;
  background: #fff;
  border: 1px solid transparent;
  padding: 15px 20px;
  transition: all 0.3s ease-in-out;
}
.mne-mobile .search-bar input:after {
  content: "";
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 2px;
  background-image: url("/wp-content/themes/betheme-child/images/icon-search.svg");
}
.mne-mobile .search-bar input:focus {
  background: #fff;
  border-color: #085aa4;
  padding: 15px;
}
.mne-mobile .mobile-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  display: flex;
  justify-content: space-around;
  border-bottom: 1px solid #eee;
}
.mne-mobile .mobile-menu-links {
  display: flex;
  width: 100%;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mne-mobile .mobile-menu-links li {
  flex: 1 1 0;
  text-align: center;
  border-right: 1px solid #eee;
}
.mne-mobile .mobile-menu-links li:last-child {
  border-right: none;
}
.mne-mobile .mobile-menu-links li a {
  text-decoration: none;
  color: #085aa4;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
.mne-mobile .mobile-menu-links li a:before {
  content: "";
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 2px;
}
.mne-mobile .mobile-menu-links li a:hover {
  color: #085aa4;
}
.mne-mobile .mobile-menu-links li.current-menu-item a {
  color: #085aa4;
  font-weight: 600;
}
.mne-mobile .mobile-menu-links li.home a:before {
  background-image: url("/wp-content/themes/betheme-child/images/icon-home.svg");
}
.mne-mobile .mobile-menu-links li.add a:before {
  background-image: url("/wp-content/themes/betheme-child/images/icon-tab.svg");
}
.mne-mobile .mobile-menu-links li.favorites a:before {
  background-image: url("/wp-content/themes/betheme-child/images/icon-heart.svg");
}
.mne-mobile .mobile-menu-links li.account a:before {
  background-image: url("/wp-content/themes/betheme-child/images/icon-user.svg");
}
.mne-mobile .map-wrapper {
  width: 100%;
  height: calc(100vh - 137px);
  display: flex;
  flex-flow: column;
}
.mne-mobile .map-wrapper .map-filters {
  padding: 15px 15px 10px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mne-mobile .map-wrapper .map-filters label {
  width: 50%;
}
.mne-mobile .map-wrapper #map {
  width: 100%;
  height: 100%;
}
.mne-mobile .map-wrapper #map img {
  max-width: inherit !important;
}
.mne-mobile .map-tooltip h3 {
  font-size: 14px;
  font-weight: 600;
}
.mne-mobile .map-tooltip a {
  font-weight: 600;
}
.mne-mobile .pure-material-checkbox {
  z-index: 0;
  position: relative;
  display: inline-block;
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.87);
  line-height: 1.5;
}
.mne-mobile .pure-material-checkbox > input {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  z-index: -1;
  position: absolute;
  left: -10px;
  top: -8px;
  display: block;
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  box-shadow: none;
  outline: none;
  opacity: 0;
  transform: scale(1);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
}
.mne-mobile .pure-material-checkbox > span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
}
.mne-mobile .pure-material-checkbox > span::before {
  content: "";
  display: inline-block;
  box-sizing: border-box;
  margin: 0 11px 0 1px;
  border: solid 2px; /* Safari */
  border-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
  border-radius: 2px;
  width: 18px;
  height: 18px;
  vertical-align: top;
  transition: border-color 0.2s, background-color 0.2s;
}
.mne-mobile .pure-material-checkbox > span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 1px;
  width: 10px;
  height: 5px;
  border: solid 2px transparent;
  border-right: none;
  border-top: none;
  transform: translate(3px, 4px) rotate(-45deg);
}
.mne-mobile .pure-material-checkbox > input:checked,
.mne-mobile .pure-material-checkbox > input:indeterminate {
  background-color: #085aa4;
}
.mne-mobile .pure-material-checkbox > input:checked + span::before,
.mne-mobile .pure-material-checkbox > input:indeterminate + span::before {
  border-color: #085aa4;
  background-color: #085aa4;
}
.mne-mobile .pure-material-checkbox > input:checked + span::after,
.mne-mobile .pure-material-checkbox > input:indeterminate + span::after {
  border-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
}
.mne-mobile .pure-material-checkbox > input:indeterminate + span::after {
  border-left: none;
  transform: translate(4px, 3px);
}
.mne-mobile .pure-material-checkbox:hover > input {
  opacity: 0.04;
}
.mne-mobile .pure-material-checkbox > input:focus {
  opacity: 0.12;
}
.mne-mobile .pure-material-checkbox:hover > input:focus {
  opacity: 0.16;
}
.mne-mobile .pure-material-checkbox > input:active {
  opacity: 1;
  transform: scale(0);
  transition: transform 0s, opacity 0s;
}
.mne-mobile .pure-material-checkbox > input:active + span::before {
  border-color: rgb(var(--pure-material-primary-rgb, 33, 150, 243));
}
.mne-mobile .pure-material-checkbox > input:checked:active + span::before {
  border-color: transparent;
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.6);
}
.mne-mobile .pure-material-checkbox > input:disabled {
  opacity: 0;
}
.mne-mobile .pure-material-checkbox > input:disabled + span {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  cursor: initial;
}
.mne-mobile .pure-material-checkbox > input:disabled + span::before {
  border-color: currentColor;
}
.mne-mobile .pure-material-checkbox > input:checked:disabled + span::before,
.mne-mobile .pure-material-checkbox > input:indeterminate:disabled + span::before {
  border-color: transparent;
  background-color: currentColor;
}
.mne-mobile .carousel-wrapper {
  padding-left: 10px;
  margin: 15px 0;
}
.mne-mobile .carousel-wrapper .heading {
  display: flex;
  justify-content: space-between;
  padding-right: 15px;
}
.mne-mobile .carousel-wrapper .heading h3 {
  font-size: 20px;
  font-weight: 600;
}
.mne-mobile .carousel-wrapper .heading a {
  color: #085aa4;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 5px;
}
.mne-mobile .carousel-wrapper a.view-all {
  color: #085aa4;
  font-weight: 600;
  padding: 5px 10px;
  border: 2px solid #085aa4;
  border-radius: 5px;
  display: flex;
  margin-top: 15px;
  text-transform: uppercase;
  text-decoration: none;
  margin-right: 10px;
  align-items: center;
  justify-content: center;
}
.mne-mobile .carousel-wrapper a.view-all i {
  font-size: 14px;
  margin-left: 5px;
}
.mne-mobile .carousel-wrapper p {
  font-size: 14px;
  color: #777;
}
.mne-mobile .carousel-wrapper .carousel-slider-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.mne-mobile .carousel-wrapper .carousel-slider-item picture {
  position: relative;
}
.mne-mobile .carousel-wrapper .carousel-slider-item picture img {
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}
.mne-mobile .carousel-wrapper .carousel-slider-item picture .simplefavorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mne-mobile .carousel-wrapper .carousel-slider-item picture .simplefavorite-button.active {
  opacity: 1;
}
.mne-mobile .carousel-wrapper .carousel-slider-item picture .simplefavorite-button:hover {
  text-decoration: none;
}
.mne-mobile .carousel-wrapper .carousel-slider-item picture .simplefavorite-button i {
  font-size: 20px;
}
.mne-mobile .carousel-wrapper .carousel-slider-item .badge {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 5px;
  line-height: 14px;
  text-transform: uppercase;
  color: #085aa4;
  border: 2px solid #085aa4;
}
.mne-mobile .carousel-wrapper .carousel-slider-item h4 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
  padding-bottom: 5px;
}
.mne-mobile .carousel-wrapper .carousel-slider-item .rating {
  color: #ccc;
  font-size: 12px;
}
.mne-mobile .carousel-wrapper .carousel-slider-item .rating .checked {
  color: #085aa4;
}
.mne-mobile .grid-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mne-mobile .grid-list .item {
  width: 48%;
  margin-bottom: 20px;
  position: relative;
}
.mne-mobile .grid-list .item img {
  border-radius: 5px;
}
.mne-mobile .grid-list .item .simplefavorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mne-mobile .grid-list .item .simplefavorite-button.active {
  opacity: 1;
}
.mne-mobile .grid-list .item .simplefavorite-button:hover {
  text-decoration: none;
}
.mne-mobile .grid-list .item .simplefavorite-button i {
  font-size: 20px;
}
.mne-mobile .grid-list .item h4 {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 0;
  margin-top: 5px;
}
.mne-mobile .single-catalog .carousel-slider-nav {
  padding: 0 0 0 15px;
}
.mne-mobile .single-catalog .carousel-slider-nav .carousel-slider-item {
  opacity: 0.7;
}
.mne-mobile .single-catalog .carousel-slider-nav .carousel-slider-item img {
  border-radius: 5px;
}
.mne-mobile .single-catalog .carousel-slider-nav .carousel-slider-item.glide__slide--active {
  opacity: 1;
}
.mne-mobile .single-catalog .carousel-slider.photos-slider {
  padding: 0 0 0 15px;
}
.mne-mobile .single-catalog .carousel-slider.photos-slider .carousel-slider-item {
  position: relative;
}
.mne-mobile .single-catalog .carousel-slider.photos-slider .carousel-slider-item img {
  border-radius: 5px;
  max-width: 100%;
  height: auto;
}
.mne-mobile .single-catalog .inner {
  padding: 15px;
}
.mne-mobile .single-catalog h1 {
  font-size: 22px !important;
  line-height: 28px !important;
  color: #085aa4;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.mne-mobile .single-catalog .badge {
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 5px;
  line-height: 14px;
  text-transform: uppercase;
  color: #085aa4;
  border: 2px solid #085aa4;
}
.mne-mobile .single-catalog .rating {
  color: #ccc;
  font-size: 12px;
}
.mne-mobile .single-catalog .rating .checked {
  color: #085aa4;
}
.mne-mobile .single-catalog .details {
  margin-top: 15px;
}
.mne-mobile .single-catalog .menu-pdf {
  margin-top: 15px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.mne-mobile .single-catalog #map {
  height: 300px;
  margin-top: 15px;
  width: 100%;
  border-radius: 5px;
}
.mne-mobile .single-catalog #navigate-btn {
  display: block;
  margin-top: 15px;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.mne-mobile .single-catalog table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.mne-mobile .single-catalog table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}
.mne-mobile .single-catalog table tr {
  padding: 0.35em;
}
.mne-mobile .single-catalog table th,
.mne-mobile .single-catalog table td {
  padding: 0.625em;
  text-align: center;
}
.mne-mobile .single-catalog table th {
  font-size: 0.85em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mne-mobile .single-catalog table {
  border: 0;
}
.mne-mobile .single-catalog table thead {
  border: none;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.mne-mobile .single-catalog table tr {
  border-bottom: 1px solid #ddd;
  display: block;
}
.mne-mobile .single-catalog table td {
  display: block;
  text-align: right;
}
.mne-mobile .single-catalog table td::before {
  content: attr(data-label);
  float: left;
  font-weight: bold;
  text-transform: uppercase;
}
.mne-mobile .single-catalog table td:last-child {
  border-bottom: 0;
}
.mne-mobile .single-catalog .address-section {
  margin: 25px 0;
}
.mne-mobile .single-catalog .address-section h4 {
  color: #085aa4;
  font-size: 16px;
  font-weight: 600;
}
.mne-mobile .single-catalog #comments h3.reply-title {
  font-size: 16px;
}
.mne-mobile .single-catalog .modal-link {
  clear: left;
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 10px 0 0 0;
}
.mne-mobile .fancybox-toolbar .fancybox-button svg {
  width: 24px;
}
.mne-mobile .fancybox-toolbar .fancybox-button svg path {
  fill: #fff;
}
.mne-mobile .fancybox-toolbar .fancybox-button:not(.fancybox-button--close) {
  display: none !important;
}
.mne-mobile .product.type-product img {
  border-radius: 5px;
}
.mne-mobile .product.type-product div.entry-summary h1.product_title {
  font-size: 24px !important;
  font-weight: 500;
  line-height: 28px !important;
  color: #085aa4;
  margin-bottom: 10px !important;
  margin-top: 10px !important;
}
.mne-mobile .product.type-product p.price {
  font-size: 16px !important;
  line-height: 22px !important;
  color: #085aa4;
  margin-bottom: 10px !important;
}
.mne-mobile .related-catalog {
  padding-top: 25px;
  border-top: 1px solid #eee;
}
.mne-mobile .tab {
  position: relative;
}
.mne-mobile .tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.mne-mobile .tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.mne-mobile .tab input:checked ~ .tab__content {
  height: auto;
  max-height: none;
}
.mne-mobile .accordion {
  color: #085aa4;
  border: 2px solid;
  border-radius: 5px;
  overflow: hidden;
}
.mne-mobile .tab__label,
.mne-mobile .tab__close {
  display: flex;
  color: white;
  background: #085aa4;
  cursor: pointer;
  margin-bottom: 0;
}
.mne-mobile .tab__label {
  justify-content: space-between;
  padding: 1rem;
}
.mne-mobile .tab__label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(90deg);
  transition: all 0.35s;
}
.mne-mobile .tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}
.mne-mobile .tab__content p {
  margin: 0;
  padding: 1rem;
}
.mne-mobile .tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.mne-mobile .accordion--radio {
  --theme: #085aa4;
}
.mne-mobile .tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce 0.5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}
.mne-mobile .mne-mobile .page-wrapper {
  padding: 0 15px;
}
.mne-mobile .offer-slider {
  margin-bottom: 25px;
}
.mne-mobile .offer-category {
  font-size: 18px;
  line-height: 18px;
  color: #085aa4;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.mne-mobile .offer-box__inner {
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  overflow: hidden;
}
.mne-mobile .offer-box__inner h4 {
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  background: #085aa4;
  color: #fff;
  text-align: center;
  padding: 15px 5px;
  margin-bottom: 15px;
}
.mne-mobile .offer-box__inner form {
  padding: 0 15px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mne-mobile .offer-box__inner form .radios {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}
.mne-mobile .offer-box__inner form .radios label {
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 600;
  color: #085aa4;
}
.mne-mobile .offer-box__inner form .radios input {
  display: none;
}
.mne-mobile .offer-box__inner form .radios input:checked + label {
  border: 1px solid #085aa4;
}
.mne-mobile .offer-box__inner form .price {
  margin-bottom: 15px;
  color: #085aa4;
}
.mne-mobile .offer-box__inner form .price .main-price {
  font-size: 20px;
  font-weight: 600;
  margin-right: 5px;
}
.mne-mobile .offer-box__inner form button {
  width: 100%;
  border-radius: 5px;
  box-sizing: border-box;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid #085aa4;
  background: #fff;
  color: #085aa4;
  padding: 10px;
}
.mne-mobile .offer-box__inner form button i {
  font-size: 15px;
  margin-left: 5px;
  position: relative;
  bottom: -1px;
}
.mne-mobile *:not(.fa) {
  font-family: "Open Sans", sans-serif !important;
}
.mne-mobile .button {
  font-size: 14px !important;
  font-weight: 600 !important;
}
.mne-mobile h1 {
  color: #085aa4;
  margin-bottom: 10px !important;
}
.mne-mobile h2 {
  color: #085aa4;
  margin-bottom: 10px !important;
}
.mne-mobile h3 {
  color: #085aa4;
  margin-bottom: 10px !important;
}
.mne-mobile.page-template-page-add-mobile .content_wrapper {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.mne-mobile #Content {
  padding-top: 25px !important;
  padding-bottom: 70px !important;
}
.mne-mobile .grecaptcha-badge {
  display: none !important;
}
.mne-mobile .section_wrapper {
  padding: 0 10px !important;
}
.mne-mobile #Header_wrapper, .mne-mobile #Footer {
  display: none !important;
}
.mne-mobile .product .related.products, .mne-mobile .product .upsells.products, .mne-mobile .product .post-nav {
  display: none !important;
}
.mne-mobile .woocommerce {
  padding-top: 10px !important;
}
.mne-mobile.search-results #Content {
  padding-top: 20px !important;
}
.mne-mobile .btn.show-title-form {
  display: none !important;
}
.mne-mobile .addresses .title .edit {
  margin-bottom: 10px !important;
}
.mne-mobile .woocommerce-error, .mne-mobile .woocommerce-info, .mne-mobile .woocommerce-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.mne-mobile .woocommerce-error a, .mne-mobile .woocommerce-info a, .mne-mobile .woocommerce-message a {
  margin-top: 15px;
}
.mne-mobile #Content .woocommerce {
  padding: 0 !important;
}
.mne-mobile .wishlist-title {
  margin-bottom: 0;
}
.mne-mobile table.wishlist_table tbody td.wishlist-empty, .mne-mobile p.wishlist-empty {
  margin: 0;
}
.mne-mobile .mb-20 {
  margin-bottom: 20px !important;
}
.mne-mobile .mb-25 {
  margin-bottom: 25px !important;
}
.mne-mobile .mb-30 {
  margin-bottom: 30px !important;
}
.mne-mobile .star-cb-group {
  /* remove inline-block whitespace */
  font-size: 22px;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
  /* the hidden clearer */
}
.mne-mobile .star-cb-group > input {
  display: none;
}
.mne-mobile .star-cb-group > input + label {
  /* only enough room for the star */
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
}
.mne-mobile .star-cb-group > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "☆";
  color: #ccc;
}
.mne-mobile .star-cb-group > input:checked ~ label:before, .mne-mobile .star-cb-group > input + label:hover ~ label:before, .mne-mobile .star-cb-group > input + label:hover:before {
  content: "★";
  color: #085aa4;
  text-shadow: 0 0 1px #333;
}
.mne-mobile .star-cb-group > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}
.mne-mobile .star-cb-group > .star-cb-clear + label:before {
  width: 0.5em;
}
.mne-mobile .star-cb-group:hover > input + label:before {
  content: "☆";
  color: #ccc;
  text-shadow: none;
}
.mne-mobile .star-cb-group:hover > input + label:hover ~ label:before, .mne-mobile .star-cb-group:hover > input + label:hover:before {
  content: "★";
  color: #085aa4;
  text-shadow: 0 0 1px #333;
}
.mne-mobile #comments .comment-rating span {
  color: #ccc;
  font-size: 14px;
}
.mne-mobile #comments .comment-rating span.checked {
  color: #085aa4;
}
.mne-mobile .weather {
  background-color: #085aa4;
}
.mne-mobile .weather .inpl-weather-main {
  margin: 0 auto;
}
.mne-mobile .pager {
  margin-bottom: 25px;
}
.mne-mobile .pager .prev_page, .mne-mobile .pager .next_page {
  display: none;
}
.mne-mobile .shop_table .wcsatt-options {
  display: none;
}
.mne-mobile .woocommerce-form-coupon-toggle {
  display: none;
}
.mne-mobile .alert {
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  margin-top: 25px;
  border-radius: 5px;
}
.mne-mobile .alert.info {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}
.mne-mobile .term-title {
  display: flex;
  align-items: center;
}
.mne-mobile .term-title a {
  display: flex;
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  color: #004085;
  margin-right: 15px;
}
.mne-mobile .term-title a i {
  font-size: 14px;
}
.mne-mobile .child-categories {
  margin: 0 0 25px 0;
  width: 100%;
}
.mne-mobile .child-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mne-mobile .child-categories ul::after {
  content: "";
  flex: 1 1 calc(50% - 10px);
  visibility: hidden;
}
.mne-mobile .child-categories ul li {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
}
.mne-mobile .child-categories ul li a {
  display: flex;
  padding: 10px 15px;
  border: 1px solid #eee;
  border-radius: 5px;
  color: #004085;
  font-weight: 500;
  justify-content: space-between;
  align-items: center;
}
.mne-mobile .child-categories ul li a:hover {
  text-decoration: none;
}
.mne-mobile .child-categories ul li a.active {
  border-color: #004085;
}
.mne-mobile .child-categories ul li a .count {
  color: #999;
  border: 1px solid #999;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.mne-mobile .subchild-categories {
  margin: 0 0 25px 0;
  width: 100%;
}
.mne-mobile .subchild-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mne-mobile .subchild-categories ul::after {
  content: "";
  flex: 1 1 calc(50% - 10px);
  visibility: hidden;
}
.mne-mobile .subchild-categories ul li {
  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box;
}
.mne-mobile .subchild-categories ul li a {
  display: flex;
  padding: 5px 10px;
  border: 1px solid #eee;
  border-radius: 5px;
  color: #004085;
  font-weight: 500;
  justify-content: space-between;
  align-items: center;
}
.mne-mobile .subchild-categories ul li a:hover {
  text-decoration: none;
}
.mne-mobile .subchild-categories ul li a.active {
  border-color: #004085;
}
.mne-mobile .subchild-categories ul li a .count {
  color: #999;
  border: 1px solid #999;
  border-radius: 100%;
  width: 22px;
  height: 22px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}
.mne-mobile .woocommerce-MyAccount-navigation ul li a:before {
  display: none;
}
.mne-mobile .woocommerce-MyAccount-content h2 {
  font-size: 20px !important;
  line-height: 22px !important;
  color: #085aa4;
  margin-bottom: 10px !important;
}
.mne-mobile .shop-filters {
  display: none;
}
.mne-mobile .products_wrapper img {
  border-radius: 5px;
}
.mne-mobile .products_wrapper h5 {
  font-size: 14px;
  font-weight: 500;
}
.mne-mobile .products_wrapper span.price {
  font-size: 12px !important;
}
.mne-mobile .products_wrapper .show-button {
  width: 100%;
}
.mne-mobile .products_wrapper .button {
  font-size: 12px !important;
  width: 100%;
  padding: 10px;
  font-weight: 500 !important;
}
.mne-mobile .woocommerce-MyAccount-navigation-link.woocommerce-MyAccount-navigation-link--members-area {
  display: none;
}
.mne-mobile table.shop_table td.product-name, .mne-mobile table.shop_table td.product-name a {
  font-size: 13px;
}
.mne-mobile .shop_table_responsive .subscription-id a, .mne-mobile .shop_table_responsive .order-number a {
  background-color: #fff !important;
}
.mne-mobile table.shop_table tbody td.actions {
  display: none !important;
}
.mne-mobile .post-preview {
  background: #131313;
  padding: 5px 10px;
}
.mne-mobile .post-preview a {
  color: #fff;
}
.mne-mobile .post-preview a i {
  margin-right: 5px;
}
.mne-mobile ul.products li.product .star-rating {
  display: none !important;
}
.mne-mobile .woocommerce-product-rating {
  display: none !important;
}
.mne-mobile #cookie-notice {
  display: none !important;
}

/*# sourceMappingURL=app.css.map */
