body {
  font-family: 'Poppins', sans-serif;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #93a895 !important;
}
.bg-success {
  background-color: #38745b !important;
}
.bg-info {
  background-color: #e7eaef !important;
}
.bg-warning {
  background-color: #edc5ab !important;
}
.bg-danger {
  background-color: #cf1417 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #93a895 !important;
  border-color: #93a895 !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #333333 !important;
  background-color: #93a895 !important;
  border-color: #93a895 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #333333 !important;
  background-color: #667e68 !important;
  border-color: #667e68 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #217074 !important;
  border-color: #217074 !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #333333 !important;
  background-color: #217074 !important;
  border-color: #217074 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #333333 !important;
  background-color: #0e2f31 !important;
  border-color: #0e2f31 !important;
}
.btn-info,
.btn-info:active {
  background-color: #e7eaef !important;
  border-color: #e7eaef !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #333d4d !important;
  background-color: #e7eaef !important;
  border-color: #e7eaef !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #333333 !important;
  background-color: #b3bccc !important;
  border-color: #b3bccc !important;
}
.btn-success,
.btn-success:active {
  background-color: #38745b !important;
  border-color: #38745b !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #333333 !important;
  background-color: #38745b !important;
  border-color: #38745b !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #333333 !important;
  background-color: #1c3a2d !important;
  border-color: #1c3a2d !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #edc5ab !important;
  border-color: #edc5ab !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #333333 !important;
  background-color: #edc5ab !important;
  border-color: #edc5ab !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #333333 !important;
  background-color: #de9464 !important;
  border-color: #de9464 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #cf1417 !important;
  border-color: #cf1417 !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #333333 !important;
  background-color: #cf1417 !important;
  border-color: #cf1417 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #333333 !important;
  background-color: #800c0e !important;
  border-color: #800c0e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #333333 !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #333333 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #333333 !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #333333 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #93a895;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #667e68 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #93a895 !important;
  border-color: #93a895 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #217074;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #0e2f31 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #217074 !important;
  border-color: #217074 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e7eaef;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b3bccc !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #566681 !important;
  background-color: #e7eaef !important;
  border-color: #e7eaef !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #38745b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #1c3a2d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #38745b !important;
  border-color: #38745b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #edc5ab;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #de9464 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #7e421b !important;
  background-color: #edc5ab !important;
  border-color: #edc5ab !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cf1417;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #800c0e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #cf1417 !important;
  border-color: #cf1417 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #93a895 !important;
}
.text-secondary {
  color: #217074 !important;
}
.text-success {
  color: #38745b !important;
}
.text-info {
  color: #e7eaef !important;
}
.text-warning {
  color: #edc5ab !important;
}
.text-danger {
  color: #cf1417 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5f7661 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #0a2325 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #172f25 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #aab4c6 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #db8b57 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #720b0d !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
.nav-tabs .nav-link.active {
  color: #93a895;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e7eaef;
}
.alert-warning {
  background-color: #edc5ab;
}
.alert-danger {
  background-color: #cf1417;
}
.mbr-gallery-filter li.active .btn {
  background-color: #93a895;
  border-color: #93a895;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #93a895;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dae1da;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #71ba9c;
}
.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: #f8b7b8;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #93a895 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #93a895;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #93a895;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #93a895;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #93a895;
  border-bottom-color: #93a895;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #93a895 !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: #217074 !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%;
  width: 100%;
  height: auto;
}
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='%2393a895' %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;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-sQroIpwIfb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-sQroIpwIfb nav.navbar {
  position: fixed;
}
@media (min-width: 992px) {
  .cid-sQroIpwIfb .container,
  .cid-sQroIpwIfb .container-fluid {
    flex-wrap: initial;
  }
}
.cid-sQroIpwIfb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQroIpwIfb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQroIpwIfb .dropdown-item:hover,
.cid-sQroIpwIfb .dropdown-item:focus {
  background: #93a895 !important;
  color: white !important;
}
.cid-sQroIpwIfb .dropdown-item:hover span {
  color: white;
}
.cid-sQroIpwIfb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQroIpwIfb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQroIpwIfb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQroIpwIfb .nav-link {
  position: relative;
  opacity: 1;
}
.cid-sQroIpwIfb .container {
  display: flex;
  margin: auto;
}
.cid-sQroIpwIfb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQroIpwIfb .iconfont-wrapper span {
  border-radius: 100px;
  background-color: #cbc0ff;
}
.cid-sQroIpwIfb .navbar-caption {
  font-weight: 600;
}
.cid-sQroIpwIfb .dropdown-menu,
.cid-sQroIpwIfb .navbar.opened {
  background: #93a895 !important;
}
.cid-sQroIpwIfb .nav-item:focus,
.cid-sQroIpwIfb .nav-link:focus {
  outline: none;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQroIpwIfb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQroIpwIfb .navbar {
  min-height: 100px;
  transition: all 0.3s;
  background: #93a895;
}
.cid-sQroIpwIfb .navbar.opened {
  transition: all 0.3s;
}
.cid-sQroIpwIfb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQroIpwIfb .navbar .navbar-logo img {
  width: auto;
}
.cid-sQroIpwIfb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQroIpwIfb .navbar.collapsed {
  justify-content: center;
}
.cid-sQroIpwIfb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQroIpwIfb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQroIpwIfb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sQroIpwIfb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQroIpwIfb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQroIpwIfb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQroIpwIfb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sQroIpwIfb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQroIpwIfb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQroIpwIfb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQroIpwIfb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQroIpwIfb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQroIpwIfb .navbar ul.navbar-nav li {
    padding: 20px 0;
    border-top: 1px solid #ffffff29;
    width: 100%;
  }
}
.cid-sQroIpwIfb .navbar.navbar-short {
  min-height: 70px;
}
.cid-sQroIpwIfb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQroIpwIfb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQroIpwIfb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQroIpwIfb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQroIpwIfb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQroIpwIfb .dropdown-item.active,
.cid-sQroIpwIfb .dropdown-item:active {
  background-color: transparent;
}
.cid-sQroIpwIfb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQroIpwIfb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #93a895;
}
.cid-sQroIpwIfb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQroIpwIfb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQroIpwIfb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQroIpwIfb .navbar-buttons {
  text-align: center;
  min-width: 170px;
  color: #333333;
}
.cid-sQroIpwIfb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQroIpwIfb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQroIpwIfb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQroIpwIfb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQroIpwIfb .navbar {
    height: 70px;
  }
  .cid-sQroIpwIfb .navbar.opened {
    height: auto;
  }
  .cid-sQroIpwIfb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQroIpwIfb .btn {
  border-radius: 30px;
}
.cid-sQroIpwIfb ul.navbar-nav li a:hover {
  color: #cf1417 !important;
}
.cid-sQroIpwIfb .navbar-short {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.cid-uHUgNWyned {
  padding-top: 6rem;
  padding-bottom: 7rem;
  overflow: hidden;
  background-color: #93a895;
}
@media (max-width: 768px) {
  .cid-uHUgNWyned {
    padding-top: 5rem;
  }
}
.cid-uHUgNWyned .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHUgNWyned .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-uHUgNWyned .container {
    padding: 0 24px;
  }
}
.cid-uHUgNWyned .row {
  position: relative;
}
.cid-uHUgNWyned .row .card {
  justify-content: center;
}
.cid-uHUgNWyned .row .decor-wrapper {
  position: absolute;
  bottom: -16rem;
  right: -58rem;
  border: 120px solid #edc5ab;
  width: 2000px;
  height: 1000px;
  border-radius: 100%;
}
@media (max-width: 992px) {
  .cid-uHUgNWyned .row .decor-wrapper {
    right: -20rem;
  }
}
@media (max-width: 768px) {
  .cid-uHUgNWyned .row .decor-wrapper {
    height: 500px;
    right: -10rem;
  }
}
.cid-uHUgNWyned .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uHUgNWyned .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uHUgNWyned .title-wrapper .mbr-section-title {
  line-height: 1.5em;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-uHUgNWyned .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uHUgNWyned .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uHUgNWyned .title-wrapper .mbr-section-btn {
  margin-top: 64px;
}
@media (max-width: 992px) {
  .cid-uHUgNWyned .title-wrapper .mbr-section-btn {
    margin-top: 32px;
  }
}
.cid-uHUgNWyned .mbr-section-title {
  color: #F5DF4D;
}
.cid-uHUgNWyned .mbr-text {
  color: #FF3399;
}
.cid-uHUgNWyned .mbr-section-title,
.cid-uHUgNWyned .mbr-section-btn {
  text-align: left;
  color: #000000;
}
@media (max-width: 768px) {
  .cid-uHUgNWyned .mbr-section-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: block;
    background: #93a895;
    z-index: 999999;
    text-align: center;
    padding: 7px 10px;
    margin: 0px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
  }
}
.cid-uHUgNWyned .b-red,
.cid-uHUgNWyned .b-white {
  box-shadow: none;
  color: #FFF !important;
  border-radius: 30px !important;
  border: 2px solid;
  font-weight: 400;
  display: inline;
}
@media (max-width: 1200px) {
  .cid-uHUgNWyned .b-red,
  .cid-uHUgNWyned .b-white {
    display: block;
  }
}
@media (max-width: 768px) {
  .cid-uHUgNWyned .b-red,
  .cid-uHUgNWyned .b-white {
    width: 100%;
    margin: 7px 0;
  }
}
.cid-uHUgNWyned .b-red {
  background-color: #cf1417;
  border-color: #cf1417;
}
.cid-uHUgNWyned .b-red svg {
  max-width: 40px;
  margin-right: 7px;
}
.cid-uHUgNWyned .b-white {
  background-color: #fff;
  border-color: #a7171a;
  color: #a7171a !important;
}
.cid-uHUgNWyned .b-white svg {
  max-width: 30px;
  margin-right: 7px;
}
#custom-html-2b {
  /* Type valid CSS here */
}
#custom-html-2b .dove-siamo {
  padding: 7rem 0;
}
#custom-html-2b .tlr {
  border-top-left-radius: 20%;
}
#custom-html-2b h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#custom-html-2b p {
  font-size: 16px;
  line-height: 1.9em;
}
#custom-html-2b .mb-50 {
  margin-bottom: 50px;
}
#custom-html-2b .b-red {
  box-shadow: none;
  color: #FFF !important;
  border-radius: 30px !important;
  border: 3px solid;
  font-weight: 400;
  display: inline;
  background-color: #cf1417;
  border-color: #cf1417;
}
@media (max-width: 768px) {
  #custom-html-2b .b-red {
    width: auto;
    display: block;
  }
}
#custom-html-2b .mbr-section-btn {
  margin-top: 50px;
}
#custom-la-nostra-pizza .la-nostra-pizza {
  padding: 7rem 0;
  background-color: #92A794;
}
#custom-la-nostra-pizza .trr {
  border-top-right-radius: 20%;
}
#custom-la-nostra-pizza .blr {
  border-bottom-left-radius: 20%;
}
#custom-la-nostra-pizza h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#custom-la-nostra-pizza p {
  font-size: 16px;
  line-height: 1.9em;
}
#custom-la-nostra-pizza .mb-50 {
  margin-bottom: 50px;
}
#proposte-culinarie .proposte-culinarie {
  padding: 0 0 7rem 0;
}
#proposte-culinarie .proposte-culinarie .title {
  background: #92a794;
  padding-bottom: 7rem;
}
#proposte-culinarie h2,
#proposte-culinarie h3 {
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#proposte-culinarie h2 {
  font-weight: 40px;
}
#proposte-culinarie h3 {
  font-size: 32px;
}
#proposte-culinarie p {
  font-size: 16px;
  line-height: 1.9em;
}
#proposte-culinarie .mb-50 {
  margin-bottom: 50px;
}
#proposte-culinarie .mt-10 {
  margin-top: 10px;
}
#proposte-culinarie .pizza-autore {
  padding: 130px 0 200px 0;
}
@media (max-width: 1200px) {
  #proposte-culinarie .pizza-autore {
    padding: 90px 0;
  }
}
@media (max-width: 1100px) {
  #proposte-culinarie .pizza-autore {
    padding: 50px 0;
  }
}
#proposte-culinarie .pizza-grande {
  display: inline-block;
  height: 0px;
  width: 100%;
  text-align: right;
}
@media (max-width: 992px) {
  #proposte-culinarie .pizza-grande {
    display: block;
    height: auto;
    width: auto;
    text-align: center;
  }
}
#proposte-culinarie .pizza-grande img {
  width: 50%;
  position: absolute;
  z-index: 999;
  right: 0;
  top: 80px;
  max-height: 700px;
  max-width: 700px;
}
@media (max-width: 992px) {
  #proposte-culinarie .pizza-grande img {
    width: 720px;
    position: relative;
    top: -50px;
    margin: auto;
    margin-top: -40px;
  }
}
@media (max-width: 768px) {
  #proposte-culinarie .pizza-grande img {
    width: 540px;
    max-width: 100%;
  }
}
#proposte-culinarie .b-red {
  box-shadow: none;
  color: #FFF !important;
  border-radius: 30px !important;
  border: 3px solid;
  font-weight: 400;
  display: inline;
  background-color: #cf1417;
  border-color: #cf1417;
}
@media (max-width: 768px) {
  #proposte-culinarie .b-red {
    width: auto;
    display: block;
  }
}
#pizze-classiche .pizze-classiche {
  padding: 7rem 0;
  background-color: #92A794;
}
#pizze-classiche h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#pizze-classiche p {
  font-size: 16px;
  line-height: 1.9em;
}
#pizze-classiche .mb-50 {
  margin-bottom: 50px;
}
#pizze-classiche .mb-10 {
  margin-bottom: 10px;
}
#pizze-classiche .cornetto {
  height: 100px;
}
@media (max-width: 991px) {
  #pizze-classiche .cornetto {
    margin-top: 50px;
  }
}
#pizze-classiche .b-red {
  box-shadow: none;
  color: #FFF !important;
  border-radius: 30px !important;
  border: 3px solid;
  font-weight: 400;
  display: inline;
  background-color: #cf1417;
  border-color: #cf1417;
}
@media (max-width: 768px) {
  #pizze-classiche .b-red {
    width: auto;
    display: block;
  }
}
#variazioni .pizze-varianti {
  padding: 7rem 0;
}
#variazioni h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#variazioni p {
  font-size: 16px;
  line-height: 1.9em;
}
#variazioni .mb-50 {
  margin-bottom: 50px;
}
#variazioni .mb-10 {
  margin-bottom: 10px;
}
#variazioni .icona-senza-glutine {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 0;
  right: 0;
}
#variazioni .senza-glutine {
  position: relative;
}
#variazioni .b-red {
  color: #cf1417;
  padding: 20px 0;
  font-weight: 400;
  margin-top: -20px;
}
#variazioni .b-red svg {
  width: 19px;
  margin-left: 5px;
}
#pizze-asporto .pizze-asporto {
  padding: 7rem 0;
  background-color: #92A794;
}
#pizze-asporto h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#pizze-asporto p {
  font-size: 16px;
  line-height: 1.9em;
}
#pizze-asporto .mb-50 {
  margin-bottom: 50px;
}
#pizze-asporto .mb-10 {
  margin-bottom: 10px;
}
#pizze-asporto .cornetto {
  height: 100px;
}
#pizze-asporto .b-red {
  box-shadow: none;
  color: #FFF !important;
  border-radius: 30px !important;
  border: 3px solid;
  font-weight: 400;
  display: inline;
  background-color: #cf1417;
  border-color: #cf1417;
}
@media (max-width: 768px) {
  #pizze-asporto .b-red {
    width: auto;
    display: block;
  }
}
#atmosfera {
  /* Type valid CSS here */
}
#atmosfera .atmosfera {
  padding: 7rem 0;
}
#atmosfera .tlr {
  border-top-left-radius: 20%;
}
#atmosfera h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#atmosfera p {
  font-size: 16px;
  line-height: 1.9em;
}
#atmosfera .mb-50 {
  margin-bottom: 50px;
}
#prenotazione .prenotazione {
  padding: 7rem 0;
  background-color: #92A794;
}
#prenotazione h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#prenotazione p {
  font-size: 16px;
  line-height: 1.9em;
}
#prenotazione .subtitle {
  font-size: 25px;
  line-height: 1.45em;
  font-weight: 700;
}
#prenotazione .mt-40 {
  margin-top: 40px;
}
#prenotazione .mb-50 {
  margin-bottom: 50px;
}
#prenotazione .mb-70 {
  margin-bottom: 70px;
}
#prenotazione .mb-0 {
  margin-bottom: 0px;
}
#prenotazione ul {
  margin-bottom: 0;
  padding: 0;
}
#prenotazione li {
  list-style: none;
  font-size: 16px;
}
#prenotazione li strong {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 7px;
  padding: 0;
  display: inline-block;
}
#prenotazione .b-red {
  box-shadow: none;
  color: #FFF !important;
  border-radius: 30px !important;
  border: 3px solid;
  font-weight: 400;
  display: inline;
  background-color: #cf1417;
  border-color: #cf1417;
  display: block;
}
@media (max-width: 768px) {
  #prenotazione .b-red {
    width: auto;
  }
}
#prenotazione .mano-corna {
  position: relative;
  bottom: -7rem;
  margin-top: -7rem;
}
#come-raggiungerci {
  /* Type valid CSS here */
}
#come-raggiungerci .come-raggiungerci {
  padding: 7rem 0;
}
#come-raggiungerci .trr {
  border-top-right-radius: 20%;
}
#come-raggiungerci h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#come-raggiungerci p {
  font-size: 16px;
  line-height: 1.9em;
}
#come-raggiungerci .mb-50 {
  margin-bottom: 50px;
}
#reviews .reviews {
  padding: 7rem 0 0 0;
  background-color: #92A794;
}
#reviews h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#reviews p {
  font-size: 16px;
  line-height: 1.9em;
}
#reviews .mt-40 {
  margin-top: 40px;
}
#reviews .mb-70 {
  margin-bottom: 70px;
}
#reviews .mb-10 {
  margin-bottom: 10px;
}
#reviews .mb-0 {
  margin-bottom: 0px;
}
#reviews .hidden {
  display: none;
}
#reviews .star {
  width: 24px;
  height: 24px;
  margin-left: 3px;
}
#reviews .dot {
  margin-left: 3px;
}
#reviews .review {
  background: #fff;
  padding: 48px 24px;
  margin-top: 20px;
}
#reviews .rev {
  padding-bottom: 28px;
  border-bottom: 1px solid #8ea390;
  margin-bottom: 28px;
}
#reviews .subtitle {
  font-size: 20px;
  line-height: 1.3em;
}
#reviews .counter {
  background: #fff;
  padding: 18px;
  border-radius: 4px;
  margin-top: 10px;
}
#reviews .counter .platform {
  font-weight: 700;
  color: #000000a6;
  font-size: 15px;
}
#reviews .score {
  font-size: 19px;
  font-weight: 700;
  color: #a26900;
  padding-right: 0;
}
#reviews .counter .star {
  width: 20px;
  height: 20px;
  margin: 0 -2px 0 0;
}
#reviews .counter .stars {
  padding-left: 4px;
}
#reviews .counter .dot {
  margin-left: 0;
}
#reviews .counter .rev-link {
  font-size: 12px;
  clear: both;
}
#reviews .col-logo {
  padding-right: 0;
}
#reviews .col-logo svg {
  max-width: 54px;
}
#reviews .rev-link a {
  color: #000;
}
#reviews .dot {
  background-color: #00852f;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 3px;
}
#reviews .score.green {
  color: #00852f;
}
#faq {
  /* Type valid CSS here */
}
#faq .faq {
  padding: 7rem 0;
}
#faq h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25em;
  margin: 0;
}
#faq h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 21px;
}
#faq p {
  font-size: 16px;
  line-height: 1.75em;
  margin-bottom: 50px;
}
#faq .mb-50 {
  margin-bottom: 50px;
}
#faq .mt-50 {
  margin-top: 50px;
}
#faq .pl-50 {
  padding-left: 50px;
}
.cid-uI058Sda6u {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uI058Sda6u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uI058Sda6u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uI058Sda6u .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-uI058Sda6u .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-uI058Sda6u .socicon {
  color: #ffffff !important;
}
@media (max-width: 767px) {
  .cid-uI058Sda6u .row {
    text-align: center !important;
  }
  .cid-uI058Sda6u .social-row {
    justify-content: center;
  }
}
.cid-uI058Sda6u .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uI058Sda6u .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uI058Sda6u .list {
    margin-bottom: 0rem;
  }
}
.cid-uI058Sda6u .mbr-text {
  color: #bbbbbb;
}
.cid-uI058Sda6u .mbr-iconfont {
  color: black;
}
.cid-uI058Sda6u .copyright {
  color: #ffffff;
}
.cid-uI058Sda6u .soc-item svg {
  width: 25px;
}
.cid-sQroIpwIfb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-sQroIpwIfb nav.navbar {
  position: fixed;
}
@media (min-width: 992px) {
  .cid-sQroIpwIfb .container,
  .cid-sQroIpwIfb .container-fluid {
    flex-wrap: initial;
  }
}
.cid-sQroIpwIfb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQroIpwIfb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQroIpwIfb .dropdown-item:hover,
.cid-sQroIpwIfb .dropdown-item:focus {
  background: #93a895 !important;
  color: white !important;
}
.cid-sQroIpwIfb .dropdown-item:hover span {
  color: white;
}
.cid-sQroIpwIfb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQroIpwIfb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQroIpwIfb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQroIpwIfb .nav-link {
  position: relative;
  opacity: 1;
}
.cid-sQroIpwIfb .container {
  display: flex;
  margin: auto;
}
.cid-sQroIpwIfb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQroIpwIfb .iconfont-wrapper span {
  border-radius: 100px;
  background-color: #cbc0ff;
}
.cid-sQroIpwIfb .navbar-caption {
  font-weight: 600;
}
.cid-sQroIpwIfb .dropdown-menu,
.cid-sQroIpwIfb .navbar.opened {
  background: #93a895 !important;
}
.cid-sQroIpwIfb .nav-item:focus,
.cid-sQroIpwIfb .nav-link:focus {
  outline: none;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQroIpwIfb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQroIpwIfb .navbar {
  min-height: 100px;
  transition: all 0.3s;
  background: #93a895;
}
.cid-sQroIpwIfb .navbar.opened {
  transition: all 0.3s;
}
.cid-sQroIpwIfb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQroIpwIfb .navbar .navbar-logo img {
  width: auto;
}
.cid-sQroIpwIfb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQroIpwIfb .navbar.collapsed {
  justify-content: center;
}
.cid-sQroIpwIfb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQroIpwIfb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQroIpwIfb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sQroIpwIfb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQroIpwIfb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQroIpwIfb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQroIpwIfb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sQroIpwIfb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQroIpwIfb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQroIpwIfb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQroIpwIfb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQroIpwIfb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQroIpwIfb .navbar ul.navbar-nav li {
    padding: 20px 0;
    border-top: 1px solid #ffffff29;
    width: 100%;
  }
}
.cid-sQroIpwIfb .navbar.navbar-short {
  min-height: 70px;
}
.cid-sQroIpwIfb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQroIpwIfb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQroIpwIfb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQroIpwIfb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQroIpwIfb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQroIpwIfb .dropdown-item.active,
.cid-sQroIpwIfb .dropdown-item:active {
  background-color: transparent;
}
.cid-sQroIpwIfb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQroIpwIfb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #93a895;
}
.cid-sQroIpwIfb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQroIpwIfb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQroIpwIfb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQroIpwIfb .navbar-buttons {
  text-align: center;
  min-width: 170px;
  color: #333333;
}
.cid-sQroIpwIfb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQroIpwIfb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQroIpwIfb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQroIpwIfb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQroIpwIfb .navbar {
    height: 70px;
  }
  .cid-sQroIpwIfb .navbar.opened {
    height: auto;
  }
  .cid-sQroIpwIfb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQroIpwIfb .btn {
  border-radius: 30px;
}
.cid-sQroIpwIfb ul.navbar-nav li a:hover {
  color: #cf1417 !important;
}
.cid-sQroIpwIfb .navbar-short {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#custom-html-12 .header {
  width: 100%;
  text-align: center;
  height: 126px;
  padding: 18px 0;
  background: #93a895;
}
#custom-html-12 .header img {
  max-height: 90px;
  width: auto;
  margin: auto;
}
.cid-uJjNamB1wF .categories-selector-menu {
  text-align: center;
  margin-top: 20px;
}
.cid-uJjNamB1wF .categories-selector-menu .btn {
  margin: 4px 3px;
}
.cid-uJjNamB1wF .categories-selector-menu .btn.btn-outline-primary {
  color: #334636;
  border-color: #93a895;
}
.cid-uJjNamB1wF .categories-selector-menu .btn.btn-outline-primary:hover {
  color: #334636;
  background-color: #93a8952b;
  border-color: #93a895;
  box-shadow: none !important;
}
.cid-uJiKh8V1kt {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJiKh8V1kt img,
.cid-uJiKh8V1kt .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJiKh8V1kt .item-img {
  height: 100%;
}
.cid-uJiKh8V1kt .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJiKh8V1kt .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJiKh8V1kt .item-wrapper {
  position: relative;
}
.cid-uJiKh8V1kt .item:focus,
.cid-uJiKh8V1kt span:focus {
  outline: none;
}
.cid-uJiKh8V1kt .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJiKh8V1kt .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJiKh8V1kt .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJiKh8V1kt .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJiKh8V1kt .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJiKh8V1kt .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJiKh8V1kt .mbr-text,
.cid-uJiKh8V1kt .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJiKh8V1kt .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJiKh8V1kt .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsrGfJq1H {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsrGfJq1H img,
.cid-uJsrGfJq1H .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsrGfJq1H .item-img {
  height: 100%;
}
.cid-uJsrGfJq1H .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsrGfJq1H .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsrGfJq1H .item-wrapper {
  position: relative;
}
.cid-uJsrGfJq1H .item:focus,
.cid-uJsrGfJq1H span:focus {
  outline: none;
}
.cid-uJsrGfJq1H .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsrGfJq1H .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsrGfJq1H .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsrGfJq1H .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsrGfJq1H .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsrGfJq1H .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsrGfJq1H .mbr-text,
.cid-uJsrGfJq1H .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsrGfJq1H .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsrGfJq1H .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsrGfJq1H .item:has(.stagionale) {
  background: #fdf8e8;
  border: 1px dashed #ffdd70;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uJsrGfJq1H .stagionale {
  padding: 1px 4px;
  font-size: 12px;
  color: #b48900;
  background: #ffdd70;
  border-radius: 6px;
  position: relative;
  top: -2px;
}
.cid-uJsrGfJq1H .item:has(.bestseller) {
  background: #92a79436;
  border: 1px dashed #93a895;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-uJsrGfJq1H .bestseller {
  padding: 1px 4px;
  font-size: 12px;
  color: #ffffff;
  background: #cf1418;
  border-radius: 6px;
  position: relative;
  top: -2px;
}
.cid-uJssFQiwex {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJssFQiwex img,
.cid-uJssFQiwex .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJssFQiwex .item-img {
  height: 100%;
}
.cid-uJssFQiwex .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJssFQiwex .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJssFQiwex .item-wrapper {
  position: relative;
}
.cid-uJssFQiwex .item:focus,
.cid-uJssFQiwex span:focus {
  outline: none;
}
.cid-uJssFQiwex .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJssFQiwex .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJssFQiwex .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJssFQiwex .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJssFQiwex .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJssFQiwex .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJssFQiwex .mbr-text,
.cid-uJssFQiwex .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJssFQiwex .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJssFQiwex .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsv1gQ3w6 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsv1gQ3w6 img,
.cid-uJsv1gQ3w6 .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsv1gQ3w6 .item-img {
  height: 100%;
}
.cid-uJsv1gQ3w6 .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsv1gQ3w6 .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsv1gQ3w6 .item-wrapper {
  position: relative;
}
.cid-uJsv1gQ3w6 .item:focus,
.cid-uJsv1gQ3w6 span:focus {
  outline: none;
}
.cid-uJsv1gQ3w6 .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsv1gQ3w6 .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsv1gQ3w6 .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsv1gQ3w6 .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsv1gQ3w6 .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsv1gQ3w6 .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsv1gQ3w6 .mbr-text,
.cid-uJsv1gQ3w6 .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsv1gQ3w6 .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsv1gQ3w6 .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsw2cJgoF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsw2cJgoF img,
.cid-uJsw2cJgoF .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsw2cJgoF .item-img {
  height: 100%;
}
.cid-uJsw2cJgoF .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsw2cJgoF .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsw2cJgoF .item-wrapper {
  position: relative;
}
.cid-uJsw2cJgoF .item:focus,
.cid-uJsw2cJgoF span:focus {
  outline: none;
}
.cid-uJsw2cJgoF .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsw2cJgoF .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsw2cJgoF .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsw2cJgoF .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsw2cJgoF .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsw2cJgoF .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsw2cJgoF .mbr-text,
.cid-uJsw2cJgoF .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsw2cJgoF .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsw2cJgoF .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJswsJKDxn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJswsJKDxn img,
.cid-uJswsJKDxn .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJswsJKDxn .item-img {
  height: 100%;
}
.cid-uJswsJKDxn .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJswsJKDxn .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJswsJKDxn .item-wrapper {
  position: relative;
}
.cid-uJswsJKDxn .item:focus,
.cid-uJswsJKDxn span:focus {
  outline: none;
}
.cid-uJswsJKDxn .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJswsJKDxn .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJswsJKDxn .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJswsJKDxn .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJswsJKDxn .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJswsJKDxn .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJswsJKDxn .mbr-text,
.cid-uJswsJKDxn .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJswsJKDxn .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJswsJKDxn .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJszYQj3yH {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJszYQj3yH img,
.cid-uJszYQj3yH .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJszYQj3yH .item-img {
  height: 100%;
}
.cid-uJszYQj3yH .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJszYQj3yH .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJszYQj3yH .item-wrapper {
  position: relative;
}
.cid-uJszYQj3yH .item:focus,
.cid-uJszYQj3yH span:focus {
  outline: none;
}
.cid-uJszYQj3yH .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJszYQj3yH .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJszYQj3yH .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJszYQj3yH .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJszYQj3yH .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJszYQj3yH .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJszYQj3yH .mbr-text,
.cid-uJszYQj3yH .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJszYQj3yH .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJszYQj3yH .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsAay0fGx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsAay0fGx img,
.cid-uJsAay0fGx .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsAay0fGx .item-img {
  height: 100%;
}
.cid-uJsAay0fGx .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsAay0fGx .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsAay0fGx .item-wrapper {
  position: relative;
}
.cid-uJsAay0fGx .item:focus,
.cid-uJsAay0fGx span:focus {
  outline: none;
}
.cid-uJsAay0fGx .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsAay0fGx .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsAay0fGx .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsAay0fGx .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsAay0fGx .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsAay0fGx .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsAay0fGx .mbr-text,
.cid-uJsAay0fGx .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsAay0fGx .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsAay0fGx .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsAp5fZPO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsAp5fZPO img,
.cid-uJsAp5fZPO .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsAp5fZPO .item-img {
  height: 100%;
}
.cid-uJsAp5fZPO .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsAp5fZPO .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsAp5fZPO .item-wrapper {
  position: relative;
}
.cid-uJsAp5fZPO .item:focus,
.cid-uJsAp5fZPO span:focus {
  outline: none;
}
.cid-uJsAp5fZPO .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsAp5fZPO .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsAp5fZPO .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsAp5fZPO .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsAp5fZPO .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsAp5fZPO .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsAp5fZPO .mbr-text,
.cid-uJsAp5fZPO .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsAp5fZPO .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsAp5fZPO .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsADqOseo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsADqOseo img,
.cid-uJsADqOseo .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsADqOseo .item-img {
  height: 100%;
}
.cid-uJsADqOseo .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsADqOseo .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsADqOseo .item-wrapper {
  position: relative;
}
.cid-uJsADqOseo .item:focus,
.cid-uJsADqOseo span:focus {
  outline: none;
}
.cid-uJsADqOseo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsADqOseo .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsADqOseo .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsADqOseo .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsADqOseo .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsADqOseo .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsADqOseo .mbr-text,
.cid-uJsADqOseo .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsADqOseo .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsADqOseo .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsMTOodig .categories-selector-bevande {
  text-align: center;
  margin-top: 20px;
}
.cid-uJsMTOodig .categories-selector-bevande .btn {
  margin: 4px 3px;
}
.cid-uJsMTOodig .categories-selector-bevande .btn.btn-outline-primary {
  color: #334636;
  border-color: #93a895;
}
.cid-uJsMTOodig .categories-selector-bevande .btn.btn-outline-primary:hover {
  color: #334636;
  background-color: #93a8952b;
  border-color: #93a895;
  box-shadow: none !important;
}
.cid-uJsNxCZyrA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsNxCZyrA img,
.cid-uJsNxCZyrA .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsNxCZyrA .item-img {
  height: 100%;
}
.cid-uJsNxCZyrA .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsNxCZyrA .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsNxCZyrA .item-wrapper {
  position: relative;
}
.cid-uJsNxCZyrA .item:focus,
.cid-uJsNxCZyrA span:focus {
  outline: none;
}
.cid-uJsNxCZyrA .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsNxCZyrA .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsNxCZyrA .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsNxCZyrA .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsNxCZyrA .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsNxCZyrA .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsNxCZyrA .mbr-text,
.cid-uJsNxCZyrA .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsNxCZyrA .item-content {
    width: 72%;
    float: left;
    margin-left: 3%;
  }
}
.cid-uJsNxCZyrA .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsNRMBcOX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsNRMBcOX img,
.cid-uJsNRMBcOX .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsNRMBcOX .item-img {
  height: 100%;
}
.cid-uJsNRMBcOX .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsNRMBcOX .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsNRMBcOX .item-wrapper {
  position: relative;
}
.cid-uJsNRMBcOX .item:focus,
.cid-uJsNRMBcOX span:focus {
  outline: none;
}
.cid-uJsNRMBcOX .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsNRMBcOX .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsNRMBcOX .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsNRMBcOX .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsNRMBcOX .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsNRMBcOX .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsNRMBcOX .mbr-text,
.cid-uJsNRMBcOX .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsNRMBcOX .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJsNRMBcOX .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsO0NABKE {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsO0NABKE img,
.cid-uJsO0NABKE .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsO0NABKE .item-img {
  height: 100%;
}
.cid-uJsO0NABKE .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsO0NABKE .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsO0NABKE .item-wrapper {
  position: relative;
}
.cid-uJsO0NABKE .item:focus,
.cid-uJsO0NABKE span:focus {
  outline: none;
}
.cid-uJsO0NABKE .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsO0NABKE .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsO0NABKE .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsO0NABKE .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsO0NABKE .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsO0NABKE .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsO0NABKE .mbr-text,
.cid-uJsO0NABKE .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsO0NABKE .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJsO0NABKE .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJucnHTlte {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJucnHTlte img,
.cid-uJucnHTlte .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJucnHTlte .item-img {
  height: 100%;
}
.cid-uJucnHTlte .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJucnHTlte .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJucnHTlte .item-wrapper {
  position: relative;
}
.cid-uJucnHTlte .item:focus,
.cid-uJucnHTlte span:focus {
  outline: none;
}
.cid-uJucnHTlte .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJucnHTlte .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJucnHTlte .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJucnHTlte .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJucnHTlte .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJucnHTlte .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJucnHTlte .mbr-text,
.cid-uJucnHTlte .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJucnHTlte .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJucnHTlte .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsOfzDPGm {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsOfzDPGm img,
.cid-uJsOfzDPGm .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsOfzDPGm .item-img {
  height: 100%;
}
.cid-uJsOfzDPGm .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsOfzDPGm .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsOfzDPGm .item-wrapper {
  position: relative;
}
.cid-uJsOfzDPGm .item:focus,
.cid-uJsOfzDPGm span:focus {
  outline: none;
}
.cid-uJsOfzDPGm .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsOfzDPGm .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsOfzDPGm .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsOfzDPGm .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsOfzDPGm .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsOfzDPGm .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsOfzDPGm .mbr-text,
.cid-uJsOfzDPGm .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsOfzDPGm .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJsOfzDPGm .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJsOkJS2oS {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsOkJS2oS img,
.cid-uJsOkJS2oS .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsOkJS2oS .item-img {
  height: 100%;
}
.cid-uJsOkJS2oS .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsOkJS2oS .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsOkJS2oS .item-wrapper {
  position: relative;
}
.cid-uJsOkJS2oS .item:focus,
.cid-uJsOkJS2oS span:focus {
  outline: none;
}
.cid-uJsOkJS2oS .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsOkJS2oS .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsOkJS2oS .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsOkJS2oS .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsOkJS2oS .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsOkJS2oS .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsOkJS2oS .mbr-text,
.cid-uJsOkJS2oS .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsOkJS2oS .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJsOkJS2oS .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJjRc2WKmh .menu-selector {
  text-align: center;
  height: 75px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background: #93a895;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}
.cid-uJjRc2WKmh .menu-selector ul {
  display: inline-block;
  height: 75px;
  width: 100%;
}
.cid-uJjRc2WKmh .menu-selector li.nav-item {
  float: left;
  display: inline-block;
  height: 75px;
  width: 25%;
  border-right: 1px solid #ffffff57 !important;
}
.cid-uJjRc2WKmh .menu-selector li.nav-item a.nav-link.active {
  color: #334636;
  border-top: 10px solid #cf1418 !important;
}
.cid-uJjRc2WKmh .menu-selector li.nav-item a.nav-link {
  height: 75px;
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px !important;
  border-radius: 0 !important;
}
.cid-uJsB89Gfeo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJsB89Gfeo img,
.cid-uJsB89Gfeo .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJsB89Gfeo .item-img {
  height: 100%;
}
.cid-uJsB89Gfeo .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJsB89Gfeo .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJsB89Gfeo .item-wrapper {
  position: relative;
}
.cid-uJsB89Gfeo .item:focus,
.cid-uJsB89Gfeo span:focus {
  outline: none;
}
.cid-uJsB89Gfeo .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJsB89Gfeo .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJsB89Gfeo .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJsB89Gfeo .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJsB89Gfeo .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJsB89Gfeo .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJsB89Gfeo .mbr-text,
.cid-uJsB89Gfeo .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJsB89Gfeo .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJsB89Gfeo .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJuhJQR1DU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJuhJQR1DU img,
.cid-uJuhJQR1DU .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJuhJQR1DU .item-img {
  height: 100%;
}
.cid-uJuhJQR1DU .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJuhJQR1DU .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJuhJQR1DU .item-wrapper {
  position: relative;
}
.cid-uJuhJQR1DU .item:focus,
.cid-uJuhJQR1DU span:focus {
  outline: none;
}
.cid-uJuhJQR1DU .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJuhJQR1DU .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJuhJQR1DU .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJuhJQR1DU .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJuhJQR1DU .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJuhJQR1DU .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJuhJQR1DU .mbr-text,
.cid-uJuhJQR1DU .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJuhJQR1DU .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJuhJQR1DU .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJukRUqiSU {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJukRUqiSU img,
.cid-uJukRUqiSU .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJukRUqiSU .item-img {
  height: 100%;
}
.cid-uJukRUqiSU .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJukRUqiSU .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJukRUqiSU .item-wrapper {
  position: relative;
}
.cid-uJukRUqiSU .item:focus,
.cid-uJukRUqiSU span:focus {
  outline: none;
}
.cid-uJukRUqiSU .item {
  cursor: pointer;
  margin-bottom: 8px !important;
  position: relative;
}
@media (max-width: 576px) {
  .cid-uJukRUqiSU .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJukRUqiSU .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJukRUqiSU .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJukRUqiSU .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJukRUqiSU .mbr-text,
.cid-uJukRUqiSU .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJukRUqiSU .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJukRUqiSU .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJukRUqiSU .tit {
  font-weight: 700;
}
.cid-uJunMX98pP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJunMX98pP img,
.cid-uJunMX98pP .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJunMX98pP .item-img {
  height: 100%;
}
.cid-uJunMX98pP .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJunMX98pP .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJunMX98pP .item-wrapper {
  position: relative;
}
.cid-uJunMX98pP .item:focus,
.cid-uJunMX98pP span:focus {
  outline: none;
}
.cid-uJunMX98pP .item {
  cursor: pointer;
  margin-bottom: 8px !important;
  position: relative;
}
@media (max-width: 576px) {
  .cid-uJunMX98pP .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJunMX98pP .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJunMX98pP .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJunMX98pP .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJunMX98pP .mbr-text,
.cid-uJunMX98pP .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJunMX98pP .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJunMX98pP .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJunMX98pP .tit {
  font-weight: 700;
}
.cid-uJuo30K7rp {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJuo30K7rp img,
.cid-uJuo30K7rp .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJuo30K7rp .item-img {
  height: 100%;
}
.cid-uJuo30K7rp .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJuo30K7rp .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJuo30K7rp .item-wrapper {
  position: relative;
}
.cid-uJuo30K7rp .item:focus,
.cid-uJuo30K7rp span:focus {
  outline: none;
}
.cid-uJuo30K7rp .item {
  cursor: pointer;
  margin-bottom: 8px !important;
  position: relative;
}
@media (max-width: 576px) {
  .cid-uJuo30K7rp .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJuo30K7rp .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJuo30K7rp .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJuo30K7rp .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJuo30K7rp .mbr-text,
.cid-uJuo30K7rp .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJuo30K7rp .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJuo30K7rp .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJuo30K7rp .tit {
  font-weight: 700;
}
.cid-uJvOPporCs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJvOPporCs img,
.cid-uJvOPporCs .item-img {
  transition: all 0.5s;
  width: 100%;
  height: 100%;
}
.cid-uJvOPporCs .item-img {
  height: 100%;
}
.cid-uJvOPporCs .item-img img {
  object-fit: cover;
}
@media (max-width: 576px) {
  .cid-uJvOPporCs .item-img {
    width: 25%;
    float: left;
  }
}
.cid-uJvOPporCs .item-wrapper {
  position: relative;
}
.cid-uJvOPporCs .item:focus,
.cid-uJvOPporCs span:focus {
  outline: none;
}
.cid-uJvOPporCs .item {
  cursor: pointer;
  margin-bottom: 2rem;
  position: relative;
}
.cid-uJvOPporCs .mbr-text {
  font-weight: 600;
}
@media (max-width: 576px) {
  .cid-uJvOPporCs .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-uJvOPporCs .price {
  font-size: 16px;
  font-weight: 600;
  text-align: right;
  color: #cf1417;
}
@media (max-width: 576px) {
  .cid-uJvOPporCs .price {
    text-align: right;
    margin: 0;
  }
}
.cid-uJvOPporCs .ingredienti {
  font-weight: 400;
  font-size: 1rem;
}
.cid-uJvOPporCs .mbr-text,
.cid-uJvOPporCs .mbr-section-btn {
  text-align: left;
}
@media (max-width: 576px) {
  .cid-uJvOPporCs .item-content {
    width: 100%;
    float: left;
    margin-left: 0%;
  }
}
.cid-uJvOPporCs .item-allergeni img {
  max-width: 1.8rem;
  float: left;
  margin-right: 5px;
  margin-top: 10px;
}
.cid-uJufAjNiH4 .decongelato {
  margin-bottom: 85px;
  font-size: 10px;
  margin-top: 15px;
}
.cid-sQroIpwIfb {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-sQroIpwIfb nav.navbar {
  position: fixed;
}
@media (min-width: 992px) {
  .cid-sQroIpwIfb .container,
  .cid-sQroIpwIfb .container-fluid {
    flex-wrap: initial;
  }
}
.cid-sQroIpwIfb .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sQroIpwIfb .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sQroIpwIfb .dropdown-item:hover,
.cid-sQroIpwIfb .dropdown-item:focus {
  background: #93a895 !important;
  color: white !important;
}
.cid-sQroIpwIfb .dropdown-item:hover span {
  color: white;
}
.cid-sQroIpwIfb .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sQroIpwIfb .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sQroIpwIfb .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sQroIpwIfb .nav-link {
  position: relative;
  opacity: 1;
}
.cid-sQroIpwIfb .container {
  display: flex;
  margin: auto;
}
.cid-sQroIpwIfb .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sQroIpwIfb .iconfont-wrapper span {
  border-radius: 100px;
  background-color: #cbc0ff;
}
.cid-sQroIpwIfb .navbar-caption {
  font-weight: 600;
}
.cid-sQroIpwIfb .dropdown-menu,
.cid-sQroIpwIfb .navbar.opened {
  background: #93a895 !important;
}
.cid-sQroIpwIfb .nav-item:focus,
.cid-sQroIpwIfb .nav-link:focus {
  outline: none;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sQroIpwIfb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sQroIpwIfb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sQroIpwIfb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sQroIpwIfb .navbar {
  min-height: 100px;
  transition: all 0.3s;
  background: #93a895;
}
.cid-sQroIpwIfb .navbar.opened {
  transition: all 0.3s;
}
.cid-sQroIpwIfb .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sQroIpwIfb .navbar .navbar-logo img {
  width: auto;
}
.cid-sQroIpwIfb .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sQroIpwIfb .navbar.collapsed {
  justify-content: center;
}
.cid-sQroIpwIfb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sQroIpwIfb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sQroIpwIfb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 6.7rem);
  }
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sQroIpwIfb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sQroIpwIfb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sQroIpwIfb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sQroIpwIfb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sQroIpwIfb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sQroIpwIfb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sQroIpwIfb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sQroIpwIfb .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sQroIpwIfb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sQroIpwIfb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sQroIpwIfb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .cid-sQroIpwIfb .navbar ul.navbar-nav li {
    padding: 20px 0;
    border-top: 1px solid #ffffff29;
    width: 100%;
  }
}
.cid-sQroIpwIfb .navbar.navbar-short {
  min-height: 70px;
}
.cid-sQroIpwIfb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sQroIpwIfb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sQroIpwIfb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sQroIpwIfb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sQroIpwIfb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sQroIpwIfb .dropdown-item.active,
.cid-sQroIpwIfb .dropdown-item:active {
  background-color: transparent;
}
.cid-sQroIpwIfb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sQroIpwIfb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sQroIpwIfb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #93a895;
}
.cid-sQroIpwIfb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sQroIpwIfb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sQroIpwIfb ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sQroIpwIfb .navbar-buttons {
  text-align: center;
  min-width: 170px;
  color: #333333;
}
.cid-sQroIpwIfb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sQroIpwIfb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sQroIpwIfb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sQroIpwIfb .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sQroIpwIfb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sQroIpwIfb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sQroIpwIfb .navbar {
    height: 70px;
  }
  .cid-sQroIpwIfb .navbar.opened {
    height: auto;
  }
  .cid-sQroIpwIfb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sQroIpwIfb .btn {
  border-radius: 30px;
}
.cid-sQroIpwIfb ul.navbar-nav li a:hover {
  color: #cf1417 !important;
}
.cid-sQroIpwIfb .navbar-short {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#custom-html-27 {
  /* Type valid CSS here */
}
#custom-html-27 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-27 p {
  font-size: 60px;
  color: #fff;
}
