@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --title-color: rgba(26,149,173,1);
  --arancio: #ff8717;
  --azzurro: #0072B5;
  --azzurro-scuro: #0072B5;
  --azzurro-chiaro: #48cae4;
  --azzurro-bg: #eefcff;
  --bianco: #fbfefe;
  --grigio: #999999;
  --grigio-chiaro: #d9d9d9;
  --grigio-scuro: #595959;
  --grigio-medio: rgb(158, 158, 158);
  --nero: #001666;
  --petrolio: #0072B5;
  --rosa: #ff385c;
  --footer: rgba(138,162,167,1);
  --background-alternate: #F5F7FF;

  --shadow: 0px 10px 50px 0px rgba(13,50,86,0.2);
}

* {
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: var(--bianco);
  font-size: 14px;
  line-height: 1.42857143;
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
  position: relative;
}

main.dark-overlay::after,
.header-bg.dark-overlay::after,
.header-bottom.dark-overlay::after {
  content: "";
  position: absolute;
  background-color: rgba(0,0,0,0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
}

h1 {
  font-size: 1.375rem;
}

h2 {
  font-size: 1.25rem;
}

h3, h4 {
  font-size: 1.125rem;
}

dl, ol, ul {
  margin-bottom: 0;
}

a:hover {
  color: var(--azzurro-scuro) !important;
  text-decoration: none;
}

.btn-primary:hover {
  color: #fff !important;
}

a:focus, a:visited {
  text-decoration: none;
  outline: none;
}

input:focus, select:focus, button:focus,
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus,
.form-control:focus, .input-group.focus {
  outline: none;
}

#header {
  background: transparent;
  position: relative;
  z-index: 4;
}

#header .header-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#header .header-bg.evento-bg {
  box-shadow: inset 0 0 0 2000px rgb(0 0 0 / 15%);
}

#header .hero-slider,
#header .header-bg-home {
  height: 75vh;
  position: relative;
  margin-bottom: 0;
}
#header .hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 30%);
  pointer-events: none;
  z-index: 1;
}
#header .hero-slider .slick-dots {
  position: absolute;
  bottom: 100px;
}
.dark-overlay #header .hero-slider .slick-arrow,
.dark-overlay #header .hero-slider .slick-dots {
  z-index: -1;
}
#header .hero-slider .slick-dots li {
  margin: 0;
}
#header .hero-slider .slick-dots li button::before {
  font-size: 10px;
  opacity: 1;
  color: #F5F7FF;
}
#header .hero-slider .slick-dots li.slick-active button::before {
  color: #48CAE4;
}
#header .hero-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  z-index: 5;
}
#header .hero-slider .slick-arrow.mobile-arrow-left {
  left: 20px;
}
#header .hero-slider .slick-arrow.mobile-arrow-left img {
  rotate: 90deg;
}
#header .hero-slider .slick-arrow.mobile-arrow-right {
  right: 20px;
}
#header .hero-slider .slick-arrow.mobile-arrow-right img {
  rotate: -90deg;
}
#header .hero-slider .slick-arrow img {
  width: 20px;
}

#header a {
  text-transform: none;
}

#header .header-gradient {
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%);
  padding: 150px 0 50px 0;
  position: relative;
  z-index: 1;
}

#header .header-darken {
  background: rgba(0,0,0,.45);
  padding: 50px 0;
  height: 100%;
  position: relative;
  z-index: 1;
}

#header .header-gradient-nop {
  padding: 50px 0;
}

#header .header-top {
  background: transparent;
  padding-bottom: 0;
}

#header .header-top .logo {
  z-index: 2;
}

#header .header-top .logo img {
  width: 200px;
  margin-bottom: -10px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#header.sticky .header-top .logo img {
  width: 160px;
  margin-bottom: -5px;
}

#header .header-top .pre-header {
  height: 51px;
  padding: 12px 40px;
  background: rgba(0, 114, 181, 0.8);
  transition: all 0.3s;
}
#header .header-top .pre-header ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
}
#header .header-top .pre-header ul li a {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.065px;
  color: #fff;
  transition: all 0.3s;
}
#header .header-top .pre-header ul li a:hover {
  color: var(--azzurro-chiaro) !important;
}
#header .header-top .pre-header ul li a.btn {
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--arancio);
  border: 1px solid var(--arancio);
  transition: all 0.3s;
}
#header .header-top .pre-header ul li a.btn:hover {
  color: var(--arancio) !important;
  background: #fff;
  border-color: #fff;
}
#header.sticky .header-top .pre-header {
  margin-top: -51px;
}
#header .header-top .fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
#header .header-top nav {
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#header.sticky .header-top nav {
  background-color: rgba(0, 115, 181, .9);
  padding: 16px 40px;
}

#header .header-top .main-menu li {
  display: inline-block;
  padding: 0 15px;
  position: relative;
}

#header .header-top .main-menu li a,
#header .header-top .main-menu li span,
#header .header-top .main-menu li button {
  font-weight: 600;
  color: #fff;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.1s;
}

#header .header-top .main-menu li span:hover,
#header .header-top .main-menu li button:hover {
  color: var(--azzurro-scuro);
}

#header .header-top .main-menu li button {
  padding: 4px 20px 4px 0;
}
#header .header-top .main-menu li button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 6px;
  transform: translateY(-50%);
  background-image: url(../icons/arrow_select_white.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
#header .header-top .main-menu li:hover button::after,
#header .header-top .main-menu li button:hover::after,
#header .header-top .main-menu li button:focus::after {
  transform: translateY(-50%) rotate(180deg);
}
#header .header-top .main-menu li:hover button::before,
#header .header-top .main-menu li button:hover::before,
#header .header-top .main-menu li button:focus::before {
  content: "";
  width: 40px;
  height: 3px;
  background: rgba(0, 114, 181, 0.8);
  position: absolute;
  bottom: 0;
  left: 0;
}

#header .header-top .main-menu li.has-submenu .submenu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 15px;
  padding: 0 10px;
  width: calc(100% - 30px);
  border-radius: 0px 6px 6px 6px;
  background: rgba(0, 114, 181, 0.8);
}
@media screen and (max-width: 1199px) {
  #header .header-top .main-menu li.has-submenu .submenu {
    left: 10px;
  }
}
#header .header-top .main-menu li:hover button + .submenu,
#header .header-top .main-menu li button:hover + .submenu,
#header .header-top .main-menu li button:focus + .submenu {
  display: flex;
}
#header .header-top .main-menu li.has-submenu .submenu li {
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#header .header-top .main-menu li.has-submenu .submenu li a {
  display: block;
  color: #fff !important;
}
#header .header-top .main-menu li.has-submenu .submenu li:last-of-type {
  border-bottom: 0;
}
#header .header-top .main-menu li.has-submenu .submenu li a:hover {
  color: #acc6df !important;
}

#header .header-top.header-internal .main-menu a,
#header .header-top.header-internal .main-menu span,
#header .header-top.header-internal .main-menu button {
  color: var(--azzurro-scuro);
}

#header .header-top.header-internal .main-menu button::after {
  filter: brightness(0) saturate(100%) invert(24%) sepia(50%) saturate(3988%) hue-rotate(185deg) brightness(98%) contrast(102%);
}

#header.overlay-visible .header-top.header-internal .main-menu a,
#header.overlay-visible .header-top.header-internal .main-menu span,
#header.overlay-visible .header-top.header-internal .main-menu button {
  color: #fff;
}

#header.overlay-visible .header-top.header-internal .main-menu button::after,
.dark-overlay #header:not(.sticky) .header-top.header-internal .main-menu button::after {
  filter: none;
}

.overlay-desktop li.has-submenu a {
  position: relative;
}

.overlay-desktop li.has-submenu a.opened {
  font-weight: 800;
}

.overlay-desktop li.has-submenu a::after {
  content: "";
  background-image: url(../icons/arrow_select.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: -14px;
  top: 6px;
  width: 6px;
  height: 6px;
  filter: brightness(100) grayscale(1);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.overlay-desktop li.has-submenu a.opened::after {
  transform: rotate(180deg);
}

.overlay-desktop li.has-submenu + ul {
  display: none;
  margin-left: 15px;
  margin-bottom: 5px;
}

#header .header-top .main-menu li.current > a:after,
#header .header-top .main-menu li.current > span:after,
#header .header-top .main-menu li.current > button:before {
  content: '';
  width: 40px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.dark-overlay #header .header-top .main-menu li.current > a:after,
.dark-overlay #header .header-top .main-menu li.current > span:after,
.dark-overlay #header .header-top .main-menu li.current > button:before,
#header.sticky .header-top .main-menu li.current > a:after,
#header.sticky .header-top .main-menu li.current > span:after,
#header.sticky .header-top .main-menu li.current > button:before {
  background: #fff;
}
#header .header-top .main-menu li.current > button:before {
  bottom: 0;
}

#header.sticky .header-top nav .main-menu li.current a:after,
#header.overlay-visible .header-top.header-internal nav .main-menu li.current a:after {
  background: #fff;
}

#header .header-top .right-menu {
  display: flex;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  #header .header-top .right-menu {
    height: 24px;
  }
}

#header .header-top .right-menu a {
  font-weight: 600;
  color: #fff;
  margin-left: 20px;
  cursor: pointer;
}

#header .header-top .right-menu span {
  font-weight: 600;
  color: #fff;
}

#header .header-top .right-menu a.mobile-menu-close {
  width: 21px;
  font-size: 40px;
  line-height: 0;
  text-align: right;
  font-weight: 400;
  cursor: pointer;
}

#header .header-top .right-menu .slide-searchbar {
  font-size: 20px;
}

#header .header-top .right-menu button {
  background: transparent;
}

#header .header-top .right-menu .user-icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  border: 1px #fff solid;
  background-color: var(--rosa);
}

#header .header-top .right-menu .user-info svg {
  width: 18px;
  height: auto;
}

#header .header-top .search-outer {
  background-color: var(--bianco);
  width: 700px;
  height: 60px;
  margin: 70px auto 50px auto;
  border-radius: 30px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

#header .search-catalog-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255,255,255,0.9);
  width: 700px;
  height: 60px;
  margin: 80px auto 50px auto;
  border-radius: 30px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

#header .search-catalog-wrapper input {
  width: calc(100% - 60px);
  background: transparent;
  border: none;
  padding: 0 30px;
  font-size: 16px;
  color: var(--grigio-scuro);
}

#header .search-catalog-wrapper .search-catalog-btn {
  width: 44px;
  height: 44px;
  background-color: var(--grigio);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  border: none;
  margin: 8px;
  padding: 0;
  cursor: pointer;
}

#negozi #header .header-top > .search-outer,
#category main:not(#eventi) #header .header-top > .search-outer,
#search #header .header-top > .search-outer {
  margin-top: 120px;
  margin-bottom: 0;
}

#header .header-top .header-overlay .search-outer {
  margin-top: 0;
}

.page-not-found .search-outer {
  background-color: var(--bianco);
  width: 450px;
  height: 60px;
  border-radius: 30px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

#header .header-top .search,
.page-not-found .search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  border-radius: 30px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#header .header-top .search-wrapper,
.page-not-found .search-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

#header .header-top .search .search-category-wrapper,
.page-not-found .search .search-category-wrapper {
  width: 35%;
  height: 100%;
  padding: 0 15px 0 25px;
}

#header .header-top .search .search-category-wrapper::after,
.page-not-found .search .search-category-wrapper::after {
  content: '';
  position: absolute;
  right: -1px;
  height: 46px;
  width: 1px;
  background-color: var(--grigio-chiaro);
}

#header .header-top .search .search-product-wrapper,
.page-not-found .search .search-product-wrapper {
  width: calc(65% - 94px);
  height: 100%;
  padding: 0 15px;
}

.page-not-found .search .search-product-wrapper {
  width: calc(100% - 64px);
  padding-left: 25px;
}

#header .header-top .search.is-hover,
.page-not-found .search.is-hover {
  background-color: var(--grigio-chiaro);
}

@media screen and (min-width: 992px) {
  #header .header-top .search .search-wrapper:hover,
  .page-not-found .search .search-wrapper:hover {
    background-color: var(--bianco);
    border-radius: 30px;
  }
}

#header .header-top .search .search-category-wrapper:hover label,
#header .header-top .search .search-category-wrapper:hover input,
#header .header-top .search .search-category-wrapper:hover input::placeholder,
#search.page-not-found .search .search-category-wrapper:hover label,
#search.page-not-found .search .search-category-wrapper:hover input,
#search.page-not-found .search .search-category-wrapper:hover input::placeholder,
#header .header-top .search .search-category-wrapper.filled label,
#header .header-top .search .search-category-wrapper.filled input,
#search.page-not-found .search .search-category-wrapper.filled label,
#search.page-not-found .search .search-category-wrapper.filled input {
  color: var(--petrolio);
}

#header .header-top .search .search-delete,
.page-not-found .search .search-delete {
  display: none;
  position: absolute;
  right: 8px;
  background-color: transparent;
  font-weight: 700;
  font-size: 18px;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  padding: 0;
  line-height: 17px;
  cursor: pointer;
}
#header .header-top .search .delete-cat,
#search.page-not-found .search .delete-cat {
  color: var(--petrolio);
  border: 2px solid var(--petrolio);
}

#header .header-top .search .delete-prod,
.page-not-found .search .delete-prod {
  color: var(--azzurro);
  border: 2px solid var(--azzurro);
}

#header .header-top .search .search-category-wrapper:hover .delete-cat,
#search.page-not-found .search .search-category-wrapper:hover .delete-cat {
  display: block;
}

@media screen and (min-width: 992px) {
  #header .header-top .search .search-product-wrapper:hover .delete-prod,
  .page-not-found .search .search-product-wrapper:hover .delete-prod {
    display: block;
  }
}

#header .header-top .search label,
.page-not-found .search label {
  display: block;
  text-align: left;
  font-weight: 900;
  margin-bottom: 0;
}

#header .header-top .search input,
.page-not-found .search input  {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}

#header .header-top .search-product-wrapper input,
.page-not-found .search-product-wrapper input {
  margin-left: -15px;
  padding-left: 15px !important;
}

#header .header-top .search .search-category-wrapper label,
#header .header-top .search .search-category-wrapper input,
#search.page-not-found .search .search-category-wrapper label,
#header .header-top .search .search-category-wrapper input::placeholder {
  color: var(--grigio);
}

#header .header-top .search .search-product-wrapper label,
#header .header-top .search .search-product-wrapper input,
#header .header-top .search .search-product-wrapper input::placeholder,
.page-not-found .search .search-product-wrapper label,
.page-not-found .search .search-product-wrapper input,
.page-not-found .search .search-product-wrapper input::placeholder {
  color: var(--azzurro) !important;
}

#header .header-top .search .search-cat-options,
#header .header-top .search .search-prod-options,
#search.page-not-found .search .search-cat-options,
.ui-autocomplete {
  display: none;
  position: absolute;
  background-color: #fff;
  top: 70px;
  left: 0;
  width: 345px;
  padding: 30px 20px;
  border-radius: 30px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
  z-index: 1;
}

#header .header-top .search .search-subcat-wrapper,
#header .header-top .search .search-subcat-wrapper,
#search.page-not-found .search .search-subcat-wrapper {
  display: none;
  position: absolute;
  top: 0;
  left: 345px;
  width: 355px;
  padding-left: 10px;
  border-radius: 30px;
  z-index: 1;
}

#header .header-top .search .search-subcat,
#header .header-top .search .search-subcat,
#search.page-not-found .search .search-subcat {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 30px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

#header .header-top .search .search-prod-options {
  width: 100%;
}

#header .header-top .search .search-buffer,
#search.page-not-found .search .search-buffer {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 10px;
}

#header .header-top .search-category-wrapper:hover .search-cat-options,
#header .header-top .search-product-wrapper:hover .search-prod-options,
#search.page-not-found .search-category-wrapper:hover .search-cat-options {
  display: block;
}

#header .header-top .search .search-cat-options li,
#header .header-top .search .search-prod-options li,
#search.page-not-found .search .search-cat-options li,
.ui-autocomplete .ui-menu-item a  {
  font-size: 16px;
  color: var(--grigio);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#header .header-top .search .search-cat-options li:hover,
#search.page-not-found .search .search-cat-options li:hover,
#header .header-top .search .search-cat-options li.selected,
#header .header-top .search .search-prod-options li.selected,
#search.page-not-found .search .search-cat-options li.selected {
  color: var(--petrolio);
  font-weight: 700;
}

#header .header-top .search .search-prod-options li:hover,
.ui-autocomplete .ui-menu-item a:hover {
  color: var(--azzurro) !important;
  font-weight: 700;
}

#header .header-top .search-category-wrapper:hover .search-cat-options,
#header .header-top .search-product-wrapper:hover .search-prod-options {
  display: block;
}

#header .header-top .search .search-submit,
.page-not-found .search .search-submit {
  position: unset;
  background-color: var(--azzurro);
  height: 44px;
  width: 44px;
  margin-right: 8px;
  margin-left: 50px;
  padding: 0;
  border: none;
  border-radius: 22px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.page-not-found .search .search-submit {
  margin-left: 0;
}

#header:not(.overlay-visible):not(.sticky) nav .overlay,
#header:not(.overlay-visible):not(.sticky) nav .mobile-menu-open.not-overlay.sticky,
#header.overlay-visible.sticky nav .mobile-menu-open.not-overlay.sticky,
.dark-overlay #header:not(.sticky) nav .not-overlay {
  display: none;
}

#header:not(.overlay-visible).sticky nav .mobile-menu-open.sticky,
#header:not(.overlay-visible).sticky nav .main-menu,
#header:not(.overlay-visible).sticky nav .right-menu .join,
.dark-overlay #header:not(.sticky) nav .overlay,
.dark-overlay #header:not(.sticky) nav .mobile-menu-open.not-overlay.sticky,
.dark-overlay #header.sticky nav .mobile-menu-open.not-overlay.sticky {
  display: inline;
}

#header:not(.overlay-visible).sticky nav .mobile-menu-close,
.dark-overlay #header:not(.sticky) nav .mobile-menu-close {
  display: none !important;
}

#header:not(.overlay-visible).sticky nav .main-menu a,
#header:not(.overlay-visible).sticky nav .main-menu span,
#header:not(.overlay-visible).sticky nav .main-menu button,
.dark-overlay #header:not(.sticky) nav .main-menu a,
.dark-overlay #header:not(.sticky) nav .main-menu span,
.dark-overlay #header:not(.sticky) nav .main-menu button {
  color: #fff;
}

#header:not(.overlay-visible).sticky nav .main-menu button::after,
#header.overlay-visible:not(.sticky) nav .main-menu button::after {
  filter: none;
}

#header:not(.overlay-visible).sticky nav .main-menu a:hover,
#header.sticky .header-top nav .right-menu .user-info a:hover,
#header.sticky .header-top nav .right-menu .user-info a:hover span,
#header.sticky .header-top nav .right-menu .slide-searchbar:hover,
.why-text a:hover,
#exportDataToPdf:hover,
#exportDataToCsv:hover,
#header.sticky .header-top .main-menu li span:hover,
#header.sticky .header-top .main-menu li button:hover {
  color: #acc6df !important;
}

#header.overlay-visible .not-overlay,
#header.sticky nav .not-overlay {
  display: none;
}

#header.overlay-visible .overlay,
#header.sticky nav .overlay {
  display: inline;
}

#header.overlay-visible.sticky nav {
  background-color: transparent;
}

#header.overlay-visible .header-top .right-menu a,
#header.sticky .header-top nav .right-menu a,
#header.overlay-visible .header-top .right-menu span,
#header.sticky .header-top nav .right-menu span {
  color: #fff;
}

#header.overlay-visible .header-internal .right-menu .user-icon,
#header.sticky .header-top nav .right-menu .user-icon {
  border: 1px solid #fff;
}

#header.sticky .header-top nav .right-menu .slide-searchbar {
  display: block !important;
}

#header.overlay-visible .header-top nav .right-menu .slide-searchbar {
  display: none !important;
}

#header .sliding-searchbar {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  z-index: 2;
}
#header.sticky .sliding-searchbar {
  top: 0;
}

#header .sliding-searchbar .search-catalog-wrapper {
  background-color: #fff;
}

#header .header-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  overflow: scroll;
}

#header .header-overlay.h-background {
  background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(12,72,84,0.8) 50%, rgba(72,202,228,0.8) 100%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

#header .header-overlay.h-content {
  margin-top: 130px;
  height: calc(100% - 130px);
  overflow-x: hidden;
}

#header.sticky .header-overlay.h-content {
  margin-top: 60px;
  height: calc(100% - 60px);
}

#header .header-overlay .search {
  margin-top: 0;
}

#header.sticky .header-overlay .search-outer {
  margin-top: 30px;
}

#header .overlay-categories {
  margin: 0 10%;
  border-bottom: 1px solid var(--grigio-chiaro);
}

#header .overlay-categories.overlay-desktop {
  margin: 50px 10%;
  border-bottom: none;
}

#header .overlay-categories .overlay-block {
  margin-bottom: 35px;
}

#header .overlay-block .overlay-title {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 20px;
  text-align: start;
  background: transparent;
  border: none;
  padding: 0;
}

#header .overlay-block ul {
  margin-top: 10px;
  line-height: 11px;
}

#header .overlay-block .overlay-item {
  /* color: var(--grigio); */
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  opacity: .7;
}
@media screen and (max-width: 991px) {
  #header .overlay-block .overlay-item {
    display: block;
    font-size: 16px;
    margin: 2px 0;
    padding: 2px 0;
  }
}

#header .overlay-footer {
  margin: 20px 10% 50px 10%;
}

#header .overlay-footer .overlay-title {
  font-size: 16px;
}

#header .overlay-footer .social {
  margin-top: 10px;
}

#header .overlay-footer .social a {
  color: var(--bianco);
  font-size: 20px;
  margin-right: 15px;
}

#header .header-middle {
  margin: 50px 10% 100px 10%;
}
#header .hero-slider .header-middle {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 10%;
}

#header .header-middle h3,
#header .header-middle .subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

#header .header-middle h1,
#header .header-middle .h1 {
  color: #fff;
  font-size: 50px;
  font-weight: 700;
  text-transform: none;
  width: 60%;
  margin-bottom: 30px;
}

#header .header-middle p {
  font-size: 16px;
  color: #fff;
  max-width: 40%;
}

#header .header-middle a {
  color: var(--azzurro);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 7px 25px;
  border-radius: 16px;
  width: fit-content;
}
#header .header-middle .app-download {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #header .header-middle .app-download {
    margin-top: 0;
  }
}
#header .header-middle .app-download a {
  padding: 0;
  background: transparent;
}

#header .header-bottom {
  display: flex;
  position: relative;
  padding: 10px 10px 20px 10px;
  margin: -50px 10% 0 10%;
  width: auto;
  background-color: #fff;
  border-radius: 7px;
  float: none;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

#header .header-bottom .header-box {
  padding: 10px 25px;
  position: relative;
}
#header .header-bottom .header-box .offer-type {
  font-family: 'Quicksand', sans-serif;
  color: var(--azzurro-scuro);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}
#header .header-bottom .header-box .home-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 20px 16px;
  margin-bottom: 12px;
  border-radius: 15px;
  aspect-ratio: 200 / 230;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: all 0.3s;
}
#header .header-bottom .header-box .home-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.40) 100%);
}
#header .header-bottom .header-box .home-card:hover {
  color: #fff !important;
  box-shadow: var(--shadow);
}
@media screen and (max-width: 1199px) {
  #header .header-bottom .header-box .home-card {
    font-size: 16px;
  }
}
#header .header-bottom .header-box .home-card div {
  position: relative;
  z-index: 1;
}
#header .header-bottom .header-box .cta {
  color: var(--arancio);
  font-size: 14px;
  font-weight: 500;
}
#header .header-bottom .header-box .cta:hover {
  color: var(--arancio) !important;
}

.content {
  padding: 0 200px;
}

.grey-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--grigio-scuro);
}

.title-link-right {
  position: relative;
}

.title-link-right a {
  position: absolute;
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--azzurro);
  text-transform: none;
  font-weight: 600;
}

.title-link-right a i {
  margin-left: 5px;
}

.title-with-line {
  display: flex;
  align-items: center;
}

.title-with-line h2,
.page-not-found h2 {
  color: var(--azzurro-scuro);
  font-size: 32px;
  font-weight: 700;
  min-width: -moz-fit-content;
  min-width: fit-content;
  margin-right: 25px;
}

.title-line {
  width: 100%;
  height: 1px;
  background-color: var(--azzurro-scuro);
}

.top-seller-container {
  margin-top: 50px;
}

.top-seller-container .col-lg-3 {
  padding-left: 10px;
  padding-right: 10px;
}

.top-seller-item {
  height: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  position: relative;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

.top-seller-item .shop {
  font-family: "Quicksand", sans-serif;
  margin-top: 10px;
  margin-bottom: 5px;
  color: var(--azzurro-chiaro);
  font-size: 13px;
  font-weight: 700;
}

.top-seller-item .product-price-and-shipping {
  text-align: right;
}

.top-seller-item h4,
.top-seller-item .price {
  color: var(--nero);
  font-weight: bold;
  font-size: 16px;
}

.top-seller-item a .price:hover {
  color: var(--azzurro);
}

.top-seller-item h4 {
  margin-bottom: 35px;
}

.top-seller-bottom a {
  font-family: "Quicksand", sans-serif;
  color: var(--arancio);
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
}

.top-seller-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
  width: calc(100% - 40px);
}

.top-seller-item img {
  width: 100%;
  border-radius: 15px;
}

.top-seller-banner img {
  width: 100%;
}

.top-seller-banner a {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.4px;
  text-align: center;
  padding: 7px 35px;
  border-radius: 18px;
  background-color: var(--azzurro);
  margin: 50px auto 0 auto;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

footer {
  background-color: transparent;
  margin-left: 10%;
  margin-right: 10%;
  color: var(--grigio);
}

footer.account-footer {
  background-color: var(--grigio-chiaro);
  color: var(--nero);
  margin-left: 0;
  margin-right: 0;
}

.main-footer {
  padding: 40px 0 80px 0;
  margin-left: 0;
  margin-right: 0;
  border-top: 1px solid var(--grigio);
}

footer.account-footer .main-footer {
  margin-left: 10%;
  margin-right: 10%;
  border-top: none;
}

footer .logo-col img {
  width: 110px;
  max-width: 100%;
}
footer .footer-links a {
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--grigio-scuro);
  transition: all 0.3s;
}
footer .footer-group-title {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px;
  color: var(--grigio);
}
footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--grigio);
}
@media screen and (max-width: 991px) {
  footer .links-row {
    margin-top: 12px;
    margin-bottom: 32px;
  }
  .footer-legals {
    margin-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-links {
    margin-bottom: 16px;
  }
}

.account-footer .footer-col a {
  color: var(--nero);
}

footer .social-col {
  width: 12%;
}

footer .social {
  display: flex;
  justify-content: start;
  max-width: 200px;
}

footer .social a {
  margin-right: 20px;
  font-size: 24px;
}

footer .social a img {
  height: 18px;
}

.footer-legals {
  text-align: center;
  padding: 20px 120px;
  border-top: 1px solid var(--grigio);
  opacity: .6;
}

.footer-legals span {
  padding: 0 7px;
  font-size: 12px;
  color: #003452;
}

.footer-legals a {
  color: #003452;
  text-transform: none;
  font-size: 12px;
  transition: all 0.3s;
}

.account-footer .footer-legals a {
  color: var(--nero);
}

#header .header-internal {
  padding: 50px 40px;
}

#header .header-internal .main-menu li a {
  color: var(--petrolio);
}

#header .header-internal .main-menu li.current a:after,
#header .header-internal .main-menu li.current span:after,
#header .header-internal .main-menu li.current button:before {
  background: var(--petrolio);
}

#header .header-internal .right-menu a,
#header .header-internal .right-menu span {
  color: var(--petrolio);
}

#header .header-internal .right-menu .user-icon {
  border: 1px solid var(--petrolio);
}

.content-internal {
  padding: 100px 0;
  margin-left: 10%;
  margin-right: 10%;
}

#negozi .content-internal,
#category .content-internal,
#category main:not(#eventi) .content-internal#search .content-internal {
  padding-top: 0;
}

.breadcrumbs li,
.breadcrumbs li a {
  display: contents;
  font-family: "Quicksand", sans-serif;
  color: var(--grigio);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.breadcrumbs li:not(:first-of-type)::before {
  content: '/';
  margin-right: 9px;
  margin-left: 5px;
}

#checkout .sliding-searchbar #search_widget,
#checkout .header-overlay #search_widget {
  display: block;
}

#cart h1,
#checkout h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--azzurro-scuro);
  margin-top: 15px;
}

.cart-left,
.checkout-left {
  padding-right: 50px;
}

.cart-item {
  display: flex;
  padding: 25px 0;
}

.cart-item:not(:first-of-type) {
  border-top: 1px solid var(--grigio-chiaro);
}

.cart-item .cart-item-img {
  width: 250px;
  margin-right: 30px;
}

.cart-item .cart-item-info {
  position: relative;
  width: 100%;
}

.cart-item .cart-item-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cart-item img {
  width: 100%;
  border-radius: 15px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

.cart-item .cart-item-text {
  max-width: 80%;
  margin-bottom: 60px;
}
.cart-item .cart-item-text img {
  width: auto;
}

.cart-item h3 {
  color: var(--azzurro-scuro);
  font-weight: 700;
  font-size: 18px;
  text-transform: none;
}

.cart-item .description {
  color: var(--grigio-scuro);
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 10px;
}

.cart-item .attribute {
  color: var(--grigio-scuro);
  font-size: 15px;
}

.cart-item .attribute .attribute-value {
  font-weight: 700;
}

.cart-item .remove-item {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: 40px;
  line-height: 15px;
  color: var(--grigio-scuro);
  cursor: pointer;
}

.product-top .qty-wrapper {
  border: 1px solid var(--azzurro);
}

.qty-wrapper button {
  border: none;
  background: none;
  color: var(--azzurro-scuro);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  width: 45px;
  height: 100%;
  cursor: pointer;
}

.qty-wrapper .cart-qty-decrease {
  border-right: 1px solid var(--grigio-chiaro);
}

.qty-wrapper .cart-qty-increase {
  border-left: 1px solid var(--grigio-chiaro);
}

.product-top .qty-wrapper .cart-qty-decrease {
  border-right: 1px solid var(--azzurro);
}

.product-top .qty-wrapper .cart-qty-increase {
  border-left: 1px solid var(--azzurro);
}

.qty-wrapper input {
  border: none;
  background: none;
  text-align: center;
  vertical-align: top;
  color: var(--grigio-scuro);
  font-size: 15px;
  width: 45px;
  height: 100%;
}

.cart-item .price {
  color: var(--petrolio);
  font-weight: 700;
  font-size: 18px;
}

.cart-item .discount-amount {
  display: none;
}

.cart-right,
.checkout-right {
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
  padding: 30px 30px 40px 30px;
  border-radius: 15px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

.cart-totals {
  width: 100%;
  color: var(--grigio);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-top: 20px;
}

.cart-totals td {
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--grigio);
  font-weight: 700;
  font-size: 15px;
}

.cart-totals tr:first-of-type {
  border-bottom: 1px solid var(--grigio-chiaro);
}

.cart-totals .value {
  text-align: right;
}

.cart-totals .total {
  color: var(--nero);
  font-size: 16px;
}

#cart .cart-totals .total {
  color: var(--azzurro);
}

.cart-totals .shipping.value .shipping-info {
  display: none;
  position: absolute;
  right: 0;
  top: 20px;
  background-color: var(--grigio-chiaro);
  text-align: left;
  color: var(--nero);
  text-transform: none;
  padding: 15px;
  border-radius: 10px;
}

.cart-totals .shipping.value i {
  cursor: pointer;
  position: relative;
}

.cart-totals .shipping.value i:hover .shipping-info {
  display: block;
}

.cart-right .complete-order,
.cart-right .checkout .btn,
#blockcart-modal .go-to-cart {
  background-color: var(--arancio);
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.3px;
  display: block;
  width: 100%;
  padding: 6px;
  border-radius: 16px;
  border: 1px solid var(--arancio);
  margin-top: 20px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.cart-right .complete-order:hover,
.cart-right .checkout .btn:hover,
#blockcart-modal .go-to-cart:hover {
  background: var(--bianco);
  color: var(--arancio) !important;
}

.cart-right .continue-shopping,
#blockcart-modal .close-modal {
  display: block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--grigio-scuro);
  text-transform: none;
}

.cart-right .continue-shopping img,
#blockcart-modal .close-modal img,
#password .account-link img {
  height: 20px;
  margin-right: 5px;
}

#cart #consigli {
  margin-left: 10%;
  margin-right: 10%;
}

.cart-suggestions-wrapper {
  margin-top: 70px;
}

.product-top,
.associazione-top {
  margin-top: 40px;
  position: relative;
}

.product-top .images-container {
  display: flex;
}

.product-top .product-cover {
  width: 85%;
  margin-right: 15px;
  z-index: 1;
}

.product-top .images-container .js-qv-mask {
  width: 15% !important;
  overflow: visible !important;
}

.product-top .product-images {
  width: 100%;
}

.product-top .product-images .slick-list {
  height: 100% !important;
}

#product-availability {
  display: flex;
  align-items: center;
}

#product-availability .availability-message {
  margin-left: 10px;
}

#product-availability .availability-message span {
  font-weight: normal;
}

#product-availability .material-icons {
  height: auto;
}

@media screen and (min-width: 768px) {
  .product-top .product-images li.thumb-container {
    display: block;
    width: 100% !important;
  }
}

.product-top .product-gallery .main-image,
.product-top .product-cover img,
.product-top .item-thumb img,
#blockcart-modal .info img,
.associazione-top .associazione-gallery .main-image,
.associazione-top .item-thumb img {
  width: 100%;
  border-radius: 20px;
}

.product-top li.thumb-container .thumb {
  border-radius: 20px;
  margin-bottom: 0;
  width: 100%;
}

.product-images>li.thumb-container>.thumb.selected, 
.product-images>li.thumb-container>.thumb:hover {
  border: none;
}

.product-top .product-gallery .main-image,
.product-top .product-cover img,
#blockcart-modal .info img,
.associazione-top .associazione-gallery .main-image {
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

.product-cover .layer {
  display: none;
}

.product-top .product-thumbnails,
.product-top .product-images,
.associazione-top .associazione-thumbnails {
  padding: 0;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
  background-color: rgba(216,223,229,0.65);
  border-radius: 20px;
}

.product-top .product-thumbnails .slick-list,
.associazione-top .associazione-thumbnails .slick-list {
  margin-bottom: -15px;
}

.product-top .product-thumbnails .slick-arrow,
.associazione-top .associazione-thumbnails .slick-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: var(--azzurro-scuro);
  font-size: 32px;
  cursor: pointer;
}

.product-top .product-thumbnails .slick-arrow.slick-disabled,
.product-top .product-images .slick-arrow.slick-disabled,
.associazione-top .associazione-thumbnails .slick-arrow.slick-disabled {
  display: none !important;
}

.product-top .product-thumbnails .fa-angle-up,
.associazione-top .associazione-thumbnails .fa-angle-up {
  top: -35px;
}

.product-top .product-thumbnails .fa-angle-down,
.associazione-top .associazione-thumbnails .fa-angle-down {
  bottom: -35px;
}

.product-top .item-thumb,
.product-top .product-images li.thumb-container,
.associazione-top .item-thumb {
  margin-bottom: 15px;
  background-color: #fff;
  cursor: pointer;
  border-radius: 20px;
  border: none !important;
  outline: none;
}

.product-top .product-info,
.associazione-top .associazione-info {
  padding-left: 50px;
}

.product-top h1,
.associazione-top h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--azzurro-scuro);
}

.product-top .description,
.associazione-top .description {
  font-size: 14px;
  line-height: 20px;
  color: var(--grigio-scuro);
  margin-top: 25px;
  margin-bottom: 0;
}

.product-top label,
.product-actions .control-label {
  display: block;
  margin-top: 20px;
  margin-bottom: 3px;
  color: var(--nero);
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
}

.product-top select.attr-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 350px;
  max-width: 100%;
  height: 40px;
  border: 1px solid var(--azzurro);
  border-radius: 5px;
  background: transparent;   
  padding: 0 10px;
  color: var(--grigio-scuro);
  background: url(../icons/arrow_select.svg) no-repeat right transparent;
  background-size: 12px;
  background-position-x: calc(100% - 15px);
  cursor: pointer;
}

.product-top .price,
.associazione-top .price {
  font-size: 30px;
  font-weight: 700;
  color: var(--petrolio);
  margin-top: 20px;
  margin-bottom: 20px;
}

.product-top .add-to-cart,
.associazione-top .add-to-cart,
.kb-booking-product-block #kb-submit-booking-product-cart {
  color: #fff;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  background-color: var(--arancio);
  border: none;
  padding: 7px 30px;
  border-radius: 20px;
  margin-right: 10px;
  margin-bottom: 5px;
  cursor: pointer;
}

.product-top .add-to-cart:disabled,
.associazione-top .add-to-cart:disabled,
.kb-booking-product-block #kb-submit-booking-product-cart:disabled {
  cursor: not-allowed;
  opacity: .7;
}

.add-to-favorites {
  display: inline-block;
  vertical-align: middle;
  margin-top: -4px;
  cursor: pointer;
  background-image: url(../icons/ico_favourites.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
}

.add-to-favorites.active {
  background-image: url(../icons/ico_favourites_filled.svg);
}

.product-details-wrapper,
.product-suggestions-wrapper,
.associazione-details-wrapper {
  margin-top: 70px;
}

.product-details-wrapper .product-details,
.associazione-details-wrapper .associazione-details {
  margin-top: 20px;
  margin-bottom: 50px;
  width: 75%;
}

.product-details-wrapper .product-details .content {
  margin: 0;
}

.product-details-wrapper .product-details div,
.product-details-wrapper .product-details li,
.product-details-wrapper .product-details p,
.associazione-details-wrapper .associazione-details p,
.page-not-found p {
  font-size: 16px;
  line-height: 20px;
  color: var(--grigio-scuro);
}

.product-details-wrapper .product-details span,
#store .text-wrapper span,
#single-event .text-wrapper span {
  font-family: 'Montserrat', sans-serif !important;
  font-size: 16px !important;
  line-height: 20px !important;
  color: var(--grigio-scuro) !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: var(--azzurro);
  opacity: 0.7 !important;
  /* filter: grayscale(.4); */
}

#blockcart-modal,
#new-address-modal,
#form-sent-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  max-width: 600px;
  z-index: 11;
  background-color: #fff;
  border-radius: 15px;
  padding: 40px 30px;
}

#blockcart-modal .intro,
#form-sent-modal .intro {
  text-align: center;
  color: var(--grigio-scuro);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 30px;
}

#blockcart-modal .name {
  color: var(--azzurro-scuro);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}

#blockcart-modal .description {
  color: var(--grigio-scuro);
  font-size: 13px;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#blockcart-modal .attribute {
  color: var(--nero);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#blockcart-modal .price {
  color: var(--petrolio);
  font-size: 28px;
}

#blockcart-modal .cart-status {
  color: var(--grigio-scuro);
  font-size: 13px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  margin: 30px 0 15px 0;
  padding: .8rem 0;
  border-top: 1px solid var(--grigio);
  border-bottom: 1px solid var(--grigio);
}

#blockcart-modal .shipping-in-checkout {
  color: var(--grigio-scuro);
  font-size: 13px;
  text-align: center;
  margin-bottom: 30px;
}

#blockcart-modal .actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#blockcart-modal .close-modal {
  margin-top: 0;
  cursor: pointer;
}

#blockcart-modal .go-to-cart {
  width: auto;
  padding: 6px 30px;
  margin-top: 0;
}

#new-address-modal .addr-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--grigio-scuro);
  margin-bottom: 20px;
}

#new-address-modal .row {
  margin-left: -7px;
  margin-right: -7px;
}

#new-address-modal .input-wrapper {
  margin-bottom: 10px;
}

#new-address-modal .checkbox-wrapper {
  margin-top: 10px;
  margin-bottom: 20px;
}

#new-address-modal .buttons-wrapper {
  display: flex;
  justify-content: space-between;
}

#new-address-modal .close-modal {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
  text-transform: uppercase;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

#new-address-modal .add-address-confirm {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding: 7px 30px;
  border-radius: 17px;
  background-color: var(--arancio);
  border: none;
  cursor: pointer;
}

.content {
  padding-bottom: 100px;
}

#index section {
margin-top: 100px;
}

#home-blog .blog-header {
  position: relative;
  text-align: center;
  margin-bottom: 44px;
}
#home-blog .blog-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--grigio-scuro);
  margin-bottom: 0;
}
#home-blog .blog-header a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--azzurro);
}
#home-blog .blog-header a img {
  height: 20px;
  rotate: -90deg;
}
#home-blog .dynamic-height {
  padding: 20px;
}
@media screen and (max-width: 991px) {
  #home-blog .mobile-carousel {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  #home-blog .blog-header {
    margin-bottom: 24px;
  }
  #home-blog .mobile-carousel {
    margin-left: 30px;
    margin-right: 30px;
  }
  #home-blog .blog-archive .slick-slide {
    padding: 0;
  }
  #home-blog .blog-archive .post-wrapper {
    box-shadow: none;
  }
}

.cat-evid-grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px 0;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.cat-evid-grid-container .carousel-wrapper {
  display: contents;
}

.cat-evid-grid-item {
  padding: 2px;
  font-size: 30px;
  text-align: center;
  margin: 0 10px 30px 10px;
}

.cat-flex-child:first-child {
  flex-basis: 40%;
  padding: 15px 35px;
}

.cat-flex-child img {
  width: 100%;
  border-radius: 25px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.cat-evid-grid-item:hover .cat-flex-child img {
  opacity: .75;
}

.cat-flex-child:nth-child(2) {
  line-height: 16px;
}

.cat-flex-child:nth-child(2) a {
  font-size: 14px;
  font-weight: 500;
  color: var(--grigio);
  text-transform: none;
}

.fake-cat-evid-grid-container {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 10px 0;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cat-compress-butt {
  display: flex;
  align-items: center;
}

.consigli-compress-butt,
.raccolte-compress-butt {
  text-align: center;
  margin-top: 30px;
}

.cat-compress-butt a,
.consigli-compress-butt a,
.raccolte-compress-butt a {
  color: var(--azzurro);
  font-weight: 500;
  text-transform: none;
}

.cat-compress-butt a img,
.consigli-compress-butt a img,
.raccolte-compress-butt a img {
  width: 14px;
  margin-right: 5px;

}

.about-section-home img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 10px 50px 0px rgba(0, 11, 51, 0.20), 0px 9px 38px 0px rgba(0, 17, 77, 0.04);
}
.about-section-home h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--azzurro);
  margin-bottom: 16px;
}
.about-section-home p {
  font-size: 15px;
  color: var(--grigio-scuro);
  margin-bottom: 16px;
}
.about-section-home a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 35px;
  border-radius: 18px;
  background-color: var(--azzurro);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s;
}
.about-section-home a:hover {
  color: #acc6df !important;
}
@media screen and (min-width: 992px) {
  .about-section-home .push-to-bottom {
    padding-top: 140px;
  }
  .about-section-home .push-to-middle {
    padding-top: 70px;
  }
}
@media screen and (max-width: 991px) {
  #about-home .push-to-bottom {
    padding-top: 100px;
  }
  #about-home .push-to-middle {
    margin-top: 30px;
  }
  #card-home .row {
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  #about-home .push-to-bottom {
    padding-top: 50px;
  }
}

.why-seller-container {
  margin-top: 60px;
  margin-left: calc(-100vw * 0.1);
  margin-right: calc(-100vw * 0.1);
  background-color: var(--background-alternate);
}

.why-seller-container > .row {
  margin: 0 10%;
  padding: 50px 0;
}

.why-seller-container .why-call .row {
  margin: 0;
}

.why-ad, .why-img {
  position: relative;
}

.why-call .row {
  width: 100%;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.why-call-left {
  padding-left: 0px;
  padding-right: 30px;
}

.why-img {
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

.why-text {
  padding: 35px;
  background-color: #fff;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

.why-text .subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  color: var(--azzurro);
}

.why-text h4 {
  color: var(--azzurro);
  font-size: 28px;
  font-weight: 700;
  position: relative;
  margin-bottom: 8px;
}

.why-text ul {
  list-style-type: disc;
  list-style-position: inside;
  line-height: 1.4em;
  font-size: 16px;
  color: var(--grigio-scuro);
}

.why-text a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.4px;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 35px;
  border-radius: 18px;
  background-color: var(--azzurro);
  margin: 16px 0 0 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.2s;
}

.why-ad img, .why-img img{
  width: 100%;
}

.associazioni-container {
  margin-top: 50px;
}

.associazione-container {
  min-height: 300px;
  border-radius: 15px;
  position: relative;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.results-wrapper .associazione-container {
  margin-bottom: 30px;
}

#associazioni .associazione-container {
  margin-bottom: 30px;
}

.ass-cat {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
  position: absolute;
  top: 20px;
  left: 35px;
  z-index: 1;
  max-width: calc(100% - 70px);
}

.ass-cat a {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.ass-cat a:hover {
  color: #fff !important;
  opacity: .8;
}

.ass-text-wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.ass-title {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2em;
  text-transform: none;
  word-break: break-word;
}

.ass-descr {
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;  /* temporaneamente */
}

.owl-carousel .item {
 display: flex;
 justify-content: center;
 align-items: center; font-size:70px; color:#fff;
 margin-left: 20px;
}

.owl2 .item {
 display: flex;
 justify-content: center;
 align-items: center; font-size:70px; color:#fff;
}

.item .card-slider {
  height: 400px;
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.item  .card-image {
  padding-top: 70px;
}

.item .card-slider .card-cat {
  margin-top: 10px;
  margin-bottom: 5px;
  color: var(--grigio);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
}

.item .card-slider .card-title {
  color: var(--nero);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 50px;
}

.item .card-slider .card-bottom{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
  width: calc(100% - 40px);
}

.price {
  color: var(--nero);
  font-weight: bold;
  font-size: 18px;
  line-height: 10px;
}

.img-bottom {
  display: inline-flex;
  align-items: center;
  position: absolute;
  bottom: 40px;
  right: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  z-index: 2;
}

.img-bottom i {
  margin-left: 5px;
}

#raccolte .row {
  margin-top: 50px;
}

#raccolte .img-container {
  position: relative;
}

#raccolte .img-container::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.25);
  border-radius: 20px;
}

.img-raccolte-title {
  position: absolute;
  top: 45%;
  left: 40px;
  right: 40px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  z-index: 2;
}

.img-estro {
  position: absolute;
  top: 40px;
  left: 40px;
  font-family: "Quicksand", sans-serif;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  z-index: 2;
}

.checkout-wrapper {
  margin-top: 30px;
}

.checkout-steps {
  display: flex;
  border-bottom: 1px solid var(--azzurro-scuro);
  margin: 0;
}

.checkout-steps .checkout-step {
  text-align: center;
  color: var(--grigio);
  font-weight: 600;
  padding: 10px;
  width: 100%;
  border: none;
  background: transparent;
}
.checkout-steps .checkout-step.last,
.checkout-steps .checkout-step.complete {
  cursor: pointer;
}

.checkout-steps .checkout-step.active {
  color: var(--azzurro-scuro);
  border-bottom: 3px solid var(--azzurro-scuro);
}

.checkout-item:not(:last-of-type) {
  margin-bottom: 20px;
}

.checkout-item img {
  width: 100%;
  border-radius: 15px;
}

.checkout-item .item-name {
  color: var(--nero);
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 5px;
}

.checkout-item .item-price {
  color: var(--nero);
  font-size: 18px;
  font-weight: 700;
}

.checkout-wrapper .cart-totals tr.subtotal-row {
  border-top: 1px solid var(--grigio-chiaro);
}

.checkout-wrapper .cart-totals td.shipping {
  padding-bottom: 40px;
}

.checkout-wrapper .cart-totals td.total {
  border-top: 1px solid var(--nero);
  border-bottom: 1px solid var(--nero);
  padding-top: 7px;
  padding-bottom: 7px;
}

.checkout-wrapper .cart-totals .shipping-method-row,
.checkout-wrapper .cart-totals .address-row,
.checkout-wrapper .cart-totals .coupon-row,
.checkout-wrapper .cart-totals tr.total-row .discount-price {
  display: none;
}

.checkout-wrapper .cart-totals.payment-active .shipping-method-row,
.checkout-wrapper .cart-totals.payment-active .address-row {
  display: table-row;
}

.checkout-wrapper .cart-totals.payment-active tr.subtotal-row {
  border-top: 1px solid var(--nero);
  border-bottom: 1px solid var(--nero);
}

.checkout-wrapper .cart-totals.payment-active tr.subtotal-row,
.checkout-wrapper .cart-totals.payment-active tr.shipping-row {
  color: var(--nero);
}

.checkout-wrapper .cart-totals.payment-active tr.shipping-row .title,
.checkout-wrapper .cart-totals.payment-active tr.shipping-method-row td {
  padding-bottom: 0;
}

.checkout-wrapper .cart-totals.payment-active tr.shipping-row .value {
  display: none;
}

.checkout-wrapper .cart-totals.payment-active tr.shipping-method-row,
.checkout-wrapper .cart-totals.payment-active tr.address-row {
  color: var(--grigio-scuro);
  font-size: 13px;
  font-weight: 500;
}

.checkout-wrapper .cart-totals.payment-active tr.address-row {
  text-transform: none;
}

.checkout-wrapper .cart-totals.payment-active tr.address-row .full-name {
  color: var(--nero);
}

.checkout-wrapper .cart-totals.payment-active tr.coupon-row {
  color: var(--grigio);
  border-top: 1px solid var(--grigio-chiaro);
}

.checkout-wrapper .cart-totals.payment-active tr.coupon-row td {
  padding-top: 7px;
  padding-bottom: 7px;
}

.checkout-wrapper .cart-totals.payment-active tr.total-row {
  border-top: 1px solid var(--grigio-chiaro);
}

.checkout-wrapper .cart-totals.payment-active tr.total-row td {
  vertical-align: bottom;
  border: none;
  padding-top: 20px;
  padding-bottom: 0;
}

.checkout-wrapper .cart-totals.payment-active tr.total-row .discount-price {
  color: var(--grigio);
  font-weight: 500;
  text-decoration: line-through;
}

.checkout-wrapper .cart-totals.payment-active tr.total-row .final-price {
  font-size: 26px;
}

.checkout-wrapper .checkout-step-container {
  margin: 50px;
}

.checkout-wrapper #checkout-personal-information-step .checkout-info-button {
  display: block;
  width: 100%;
  text-align: left;
  color: var(--grigio);
  font-size: 15px;
  font-weight: 600;
  padding: 20px 0;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--grigio-chiaro);
  cursor: pointer;
}

.checkout-wrapper #checkout-personal-information-step .checkout-info-button i {
  font-weight: 100;
  margin-left: 15px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.checkout-wrapper #checkout-personal-information-step .checkout-info-button[aria-expanded="true"] i {
  transform: rotate(180deg) translateY(-3px);
}

.checkout-wrapper #checkout-personal-information-step .checkout-info-button.blue {
  color: var(--azzurro-scuro) !important;
}

.checkout-wrapper #checkout-guest-form .disclaimer {
  color: var(--grigio);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  padding: 15px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--grigio-chiaro);
}

.checkout-wrapper form {
  margin-top: 30px;
}

.checkout-wrapper form .row {
  margin-left: -7px;
  margin-right: -7px;
}

.checkout-wrapper form h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--azzurro-scuro);
  margin-bottom: 0;
}

.checkout-wrapper .input-wrapper {
  margin-bottom: 15px;
  padding: 0 7px;
}

body#checkout .checkout-step-container a {
  color: var(--azzurro-scuro);
}

.js-customer-form {
  margin-top: 40px;
}

#login-form .input-wrapper,
.renew-password .input-wrapper {
  margin-bottom: 25px;
}

.js-customer-form .input-wrapper,
.js-address-form .input-wrapper {
  margin-bottom: 35px;
}

.js-customer-form .checkbox-wrapper {
  margin-bottom: 15px;
}

.login-wrapper a {
  color: var(--azzurro);
}

.checkout-wrapper .input-wrapper label,
#login-form .input-wrapper label,
.js-customer-form .input-wrapper label,
.js-address-form .input-wrapper label,
.forgotten-password .input-wrapper label,
.renew-password .input-wrapper label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--grigio-scuro);
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 2px;
}

#identity .js-customer-form .input-wrapper label,
.js-address-form .input-wrapper label {
  font-family: "Quicksand", sans-serif;
  color: var(--azzurro-scuro);
  text-transform: none;
  font-weight: 700;
}

.required::after {
  content: '*';
  color: var(--rosa);
  margin-left: 2px;
}

.checkout-wrapper .legal-checkboxes {
  padding: 30px 0;
  margin-top: 10px;
  border-top: 1px solid var(--grigio-chiaro);
  border-bottom: 1px solid var(--grigio-chiaro);
}

.checkout-wrapper .input-wrapper input,
.checkout-wrapper .input-wrapper select,
#login-form .input-wrapper input,
.js-customer-form .input-wrapper input,
.js-address-form .input-wrapper input,
.forgotten-password .input-wrapper input,
.renew-password .input-wrapper input {
  width: 100%;
  height: 40px;
  background: transparent;
  border: 1px solid var(--grigio);
  border-radius: 5px;
  padding: 0 10px;
  color: var(--grigio-scuro);
}

.checkout-wrapper .input-wrapper select,
.js-address-form .input-wrapper select,
.order-message-form .input-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../icons/arrow_select_grey.svg) no-repeat right transparent;
  background-size: 12px;
  background-position-x: calc(100% - 15px);
  cursor: pointer;
  padding-right: 30px;
  text-overflow: ellipsis;
}

#identity .js-customer-form .input-wrapper input,
.js-address-form .input-wrapper input,
.js-address-form .input-wrapper select,
.order-message-form .input-wrapper select {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--grigio-chiaro);
}

.checkout-wrapper #no-register .checkbox-wrapper:not(:last-of-type) {
  margin-bottom: 15px;
}

.checkbox-wrapper {
  display: block;
  position: relative;
  width: 100%;
}

.checkbox-wrapper input[type="checkbox"],
.jmarketplace-panel input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  background: transparent;
  width: 24px;
  height: 24px;
  vertical-align: middle;
  cursor: pointer;
}

.jmarketplace-panel input[type="checkbox"] {
  position: relative;
}

.checkbox-wrapper input[type="checkbox"]:checked,
.jmarketplace-panel input[type="checkbox"]:checked {
  background-color: var(--azzurro-scuro);
}

.checkbox-wrapper input[type="checkbox"]:checked::after,
.jmarketplace-panel input[type="checkbox"]:checked::after {
  content: "✔\fe0e";
  position: absolute;
  color: #fff;
  left: 6px;
}

.jmarketplace-panel #tree1 input[type="checkbox"].disabled,
.jmarketplace-panel #tree1 input[type="checkbox"].disabled + label {
  display: none;
}

.js-customer-form .checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.js-customer-form .checkbox-wrapper input[type="checkbox"]:checked {
  background-color: var(--azzurro);
}

.js-customer-form .checkbox-wrapper input[type="checkbox"]:checked::after {
  font-size: 12px;
  top: -1px;
  left: 4px;
}

.checkbox-wrapper label {
  color: var(--grigio);
  font-weight: 500;
  text-align: left;
  margin-left: 40px;
  margin-top: 2px;
  cursor: pointer;
}

.js-customer-form .checkbox-wrapper label {
  margin-left: 35px;
  margin-top: -2px;
}

.checkout-wrapper #no-register .no-register-buttons {
  padding: 40px 0;
}

.checkout-wrapper #no-register .no-register-buttons > div {
  padding: 0 7px;
}

.checkout-wrapper #no-register .no-register-buttons button,
.checkout-wrapper #checkout-personal-information-step form button,
.checkout-wrapper #checkout-addresses-step button,
.checkout-wrapper #checkout-delivery-step button {
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding: 7px;
  border-radius: 17px;
  border: none;
  cursor: pointer;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkout-wrapper #no-register .no-register-buttons .login {
  background-color: var(--grigio-chiaro);
}

.checkout-wrapper #no-register .no-register-buttons .continue,
.checkout-wrapper #checkout-personal-information-step form button.continue,
.checkout-wrapper #checkout-addresses-step button.continue,
.checkout-wrapper #checkout-delivery-step button.continue {
  background-color: var(--arancio);
  border: 1px solid var(--arancio);
}
.checkout-wrapper #no-register .no-register-buttons .continue:hover,
.checkout-wrapper #checkout-personal-information-step form button.continue:hover,
.checkout-wrapper #checkout-addresses-step button.continue:hover,
.checkout-wrapper #checkout-delivery-step button.continue:hover {
  background: var(--bianco);
  color: var(--arancio) !important
}

#checkout-login-form,
#checkout-register-form {
  padding-top: 20px;
}

.checkout-wrapper #address h3,
.checkout-wrapper #payment h3 {
  color: var(--azzurro-scuro);
  font-weight: 700;
  font-size: 18px;
}

.checkout-wrapper .shipping-info {
  margin: 25px 0 50px 0;
  background-color: #fff;
  border: 1px solid var(--grigio-chiaro);
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
}

.checkout-wrapper .shipping-info .custom-radio {
  display: none;
}

.checkout-wrapper .shipping-info-text {
  padding: 22px 30px;
  font-weight: 500;
  color: var(--grigio);
}

.checkout-wrapper .shipping-info-text .full-name {
  font-weight: 700;
  color: var(--nero);
}

.checkout-wrapper .shipping-info-text .edit-address {
  margin-top: 20px;
}


.checkout-wrapper .shipping-info-text .edit-address a,
body#checkout section.checkout-step .delete-address, 
body#checkout section.checkout-step .edit-address {
  text-transform: none;
  font-weight: 700;
  color: var(--nero);
}

.checkout-wrapper .shipping-info-text .edit-address span,
body#checkout section.checkout-step .address-footer span {
  color: var(--grigio);
  font-size: 24px;
  margin: 0 7px;
  line-height: 0;
}

.checkout-wrapper .shipping-info-map {
  padding: 0;
}

.checkout-wrapper .shipping-info-map > div {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.checkout-wrapper .shipping-method-container {
  margin: 25px -7px 50px -7px;
}

.checkout-wrapper .shipping-method-container > div {
  padding-left: 7px;
  padding-right: 7px;
}

.checkout-wrapper .shipping-method,
.checkout-wrapper .payment-method {
  height: 100%;
  background: #fff;
  border: 2px solid var(--grigio-chiaro);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.checkout-wrapper .shipping-method.selected,
.checkout-wrapper .payment-method.selected {
  border: 2px solid var(--azzurro);
  background-color: rgba(72,202,228,.001);
}

.checkout-wrapper .shipping-method input[type="radio"],
.checkout-wrapper .payment-method input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: 18px;
  height: 18px;
  padding: 2px;
  background-clip: content-box;
  border: 1px solid var(--grigio-scuro);
  border-radius: 50%;
  cursor: pointer;
}

.checkout-wrapper .shipping-method input[type="radio"]:checked,
.checkout-wrapper .payment-method input[type="radio"]:checked {
  background-color: var(--grigio-scuro);
}

.checkout-wrapper .shipping-method label,
.checkout-wrapper .payment-method label {
  text-align: left;
  margin-bottom: 0;
  cursor: pointer;
}

.checkout-wrapper .shipping-method .shipping-method-info {
  margin-bottom: 35px;
}

.checkout-wrapper .shipping-method .shipping-name,
.checkout-wrapper .payment-method .payment-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--nero);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.checkout-wrapper .shipping-method .shipping-timing,
.checkout-wrapper .payment-method .payment-description {
  color: var(--grigio);
  line-height: 18px;
}

.checkout-wrapper .shipping-method .shipping-free {
  color: var(--nero);
  line-height: 16px;
}

.checkout-wrapper .shipping-method .shipping-price {
  position: absolute;
  bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: var(--azzurro-scuro);
}

.checkout-wrapper .shipping-actions button,
.checkout-wrapper .payment-actions button {
  width: 100%;
  padding: 7px;
  border: none;
  cursor: pointer;
}

.checkout-wrapper .go-back {
  display: block;
  background: transparent;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--grigio-scuro);
}

.checkout-wrapper .go-back img {
  height: 20px;
  margin-right: 5px;
}

.checkout-wrapper .confirm-address,
.checkout-wrapper .confirm-payment {
  background-color: var(--arancio);
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.3px;
  border-radius: 17px;
}

.checkout-wrapper .confirm-payment:disabled,
.checkout-wrapper #GestpaySubmit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.checkout-wrapper .payment-methods-container {
  margin-top: 20px;
  margin-bottom: 50px;
}

.checkout-wrapper .payment-method {
  margin-bottom: 20px;
}

.checkout-wrapper .payment-method .payment-description {
  width: 65%;
}

.checkout-wrapper .payment-method .card-logos {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
}

.checkout-wrapper #payment .coupon-wrapper {
  padding: 0;
  margin-top: 15px;
  margin-bottom: 50px;
}

.checkout-wrapper #payment .coupon-wrapper input {
  width: 75%;
}

.checkout-wrapper #confirm .order-received-title {
  color: var(--azzurro-scuro);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}

.checkout-wrapper #confirm .thank-you-message {
  color: var(--grigio-scuro);
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 50px;
}

.checkout-wrapper #confirm a {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding: 7px;
  border-radius: 17px;
}

.checkout-wrapper #confirm a.go-to-orders {
  background-color: var(--grigio-chiaro);
}

.checkout-wrapper #confirm a.go-to-store {
  background-color: var(--arancio);
}

.text-center {
  text-align: center;
}

a.link-primary {
  text-transform: none;
}

.arrow-down {
  width: 14px;
  margin-right: 5px;
}

.top-seller-item {
  width: auto;
}

h1.title-internal-primary {
  font-size: 50px;
  font-weight: 700;
  color: var(--azzurro);
  margin-bottom: 80px;
  margin-top: 20px;
}

h1.title-internal-account {
  font-size: 32px;
  font-weight: 700;
  color: var(--azzurro);
}

ul.filter-menu {
  list-style: none;
}

ul.filter-menu li {
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--grigio-chiaro);
  padding: 2px 0px 2px 0px;
  margin-bottom: 10px;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
ul.filter-menu li a {
  font-family: "Quicksand", sans-serif;
}

ul.filter-menu li.active {
  color: var(--arancio);
  border-bottom: 2px solid var(--arancio);
}

ul.filter-menu li:hover {
  color: var(--azzurro);
  cursor: pointer;
}

ul.seller-filter li {
  width: 100%;
}
ul.seller-filter li a {
  color: var(--grigio);
  transition: all 0.3s;
}
ul.seller-filter li.active {
  border-bottom: none;
}
ul.seller-filter li.active > a,
ul.seller-filter li.active .dropdown-title > a {
  color: var(--arancio);
  border-bottom: 2px solid var(--arancio);
}
ul.seller-filter li.category-dropdown .dropdown-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: default;
}
ul.seller-filter li.category-dropdown button {
  border: none;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}
ul.seller-filter li.category-dropdown ul {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}
ul.seller-filter li.category-dropdown ul li {
  margin-bottom: 4px;
}
ul.seller-filter li.category-dropdown.show button {
  rotate: 180deg;
}
ul.seller-filter li.category-dropdown.show ul {
  display: block;
}

@media screen and (max-width: 991px) {
  ul.seller-filter {
    padding: 50px 40px;
    height: 100%;
    width: 0px;
    position: fixed;
    z-index: 10;
    top: 0px;
    left: 0px;
    background-color: rgb(255, 255, 255);
    overflow-x: hidden;
    box-shadow: var(--shadow);
    transform: translateX(-100%);
    transition: 0.5s;
  }
  ul.seller-filter.open {
    width: 90%;
    transform: none;
  }
  ul.seller-filter .filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
  }
  ul.seller-filter .filters-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 20px;
    color: var(--azzurro);
  }
  ul.seller-filter .close-filters {
    font-size: 50px;
    font-weight: 400;
    line-height: 20px;
    color: var(--azzurro);
    background: none;
    padding: 0px;
    border: none;
  }
}

#filter-mobile-button .arrow {
  border: solid rgb(255, 255, 255);
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  position: absolute;
  right: 15px;
  top: 12px;
}

#filter-mobile-button .arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

#filter-mobile-button .arrow.down {
  transform: rotate(45deg);
  top:12px;
  -webkit-transform: rotate(45deg);
}

#filter-mobile-button {
  position: relative;
}

#filter-mobile-button:not(.open) .arrow.down {
  visibility: visible;
}

#filter-mobile-button:not(.open) .arrow.up {
  visibility: hidden;
}

#filter-mobile-button.open .arrow.down {
    visibility: hidden;
}

#filter-mobile-button.open .arrow.up {
    visibility: visible;
}

h2.paragraph-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.paragraph-subtitle {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 60px;
}

p.with-separator {
  padding-bottom: 40px;
  position: relative;
  margin-bottom: 33px;
}

p.with-separator:before {
  content: '';
  width: 240px;
  height: 7px;
  background-color: gainsboro;
  position: absolute;
  bottom: 0px;
}

.first-info .left-image {
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  width: 50%;
  border-radius: 15px;
  background-position: center;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.first-info .right-image {
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  width: 50%;
  border-radius: 15px;
  margin-top: 85px;
  margin-left: 20px;
  background-position: center;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.second-info .left-image {
  overflow: hidden;
  height: 100%;
  border-radius: 15px;
  width: 50%;
  background-position: center;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.second-info .left-image img {
  height: 100%;
}

.second-info .right-image {
  overflow: hidden;
  border-radius: 15px;
  margin-left: auto;
  margin-top: 20px;
  width: 75%;
  max-height: 300px;
  background-position: center;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.second-info ul {
  margin-top: 40px;
  margin-left: 100px;
}

button.orange-button,
a.orange-button {
  background-color: var(--arancio);
  color: white;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 15px;
  text-transform: uppercase;
  border: 0px;
  padding: 5px 25px 5px 25px;
}

.banner-wrapper {
  background-color: #DDDBCF;
  border-radius: 20px;
}

.banner-text {
  padding: 80px 50px;
  background-color: #DDDBCF;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.banner-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--grigio-scuro);
}

.banner-text p {
  color: var(--grigio-scuro);
}

.banner-text .discover {
  background-color: white;
  color: var(--azzurro);
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 15px;
  text-transform: uppercase;
  border: 0px;
  padding: 5px 25px 5px 25px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}

.banner-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.icons-row {
  margin-top:100px;
}

.icons-row h2 {
  color: var(--petrolio);
  font-size: 24px;
  font-weight: 700;
}

.icon-info .icon {
  background-color: #48cae4;
  width: 150px;
  height: 150px;
  text-align: center;
  display: flex;
  padding: 20px;
  border-radius: 100%;
  align-items: center;
  vertical-align: middle;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.icon-info .icon svg {
  margin: 0 auto;
}

.icon-info .text {
  width: 100%;
  text-align: center;
}

#chi-siamo .header-middle,
#cos-e-la-seregnostore-card .header-middle,
#welfare-aziendale-con-la-card-di-seregnostore .header-middle,
#welfare-aziendale-di-prossimita-con-seregnostore .header-middle,
#diventa-esercente-convenzionato-seregnostore .header-middle {
  height: 250px;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#single-event {
  margin-top: 50px;
}

#store {
  margin-top: 75px;
}

#category,
section#search {
  margin-top: 0;
}

.category-prod-grid .row {
  margin-left: -30px;
  margin-right: -30px;
}

.category-prod-grid [class*='col-'] {
  padding-left: 30px;
  padding-right: 30px;
}

#search .category-prod-grid .row {
  margin-left: -15px;
  margin-right: -15px;
}
#search .category-prod-grid [class*='col-'] {
  padding-left: 15px;
  padding-right: 15px;
}

#header .header-middle.hcategory h3 {
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 10px;
}

#header .header-middle.hcategory h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.content-internal.evento {
  padding-top: 0;
}

.working-hours > p {
  font-family: "Quicksand", sans-serif;
  color: var(--azzurro-scuro);
  font-weight: 700;
  font-size: 13px;
}

.working-hours .hours,
.working-hours .hours p,
.working-hours .contact,
.working-hours .contact p,
.working-hours .sslabel,
.working-hours .sslabel p,
#single-event .text-wrapper,
#single-event .text-wrapper p,
.seller-catalog-description p {
  font-size: 16px;
  color: var(--grigio);
}

#single-event .text-wrapper .flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  #single-event .text-wrapper .flex-center {
    flex-wrap: wrap;
  }
  #single-event .text-wrapper .flex-center img {
    width: 100%;
    height: auto;
  }
  #single-event .text-wrapper .flex-center.double {
    gap: 30px;
    flex-wrap: nowrap;
  }
  #single-event .text-wrapper .flex-center.double img {
    width: 50%;
  }
}

#store .text-wrapper,
#store .text-wrapper p {
  font-size: 16px;
  color: var(--grigio-scuro);
}

.working-hours .hours {
  margin-bottom: 40px;
}

.working-hours .hours p,
.working-hours .contact p,
.working-hours .sslabel p {
  margin-bottom: 0;
}

.working-hours .contact {
  margin-bottom: 8px;
  font-size: 13px;
}

.working-hours .contact a {
  word-break: break-word;
}

.working-hours .hours table p {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-weight: normal;
  font-size: 16px;
  line-height: 5px;
}

#store .text-wrapper,
#single-event .text-wrapper {
  padding-left: 40px;
  padding-right: 40px;
}

#single-event .text-wrapper .loghi {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
#single-event .text-wrapper .loghi img {
  width: 33%;
}
@media screen and (max-width: 767px) {
  #single-event .text-wrapper .loghi {
      flex-direction: column;
  }
  #single-event .text-wrapper .loghi img {
    width: 100%;
  }
}

#single-event .top-seller-item .text-wrapper {
  padding-left: 0;
  padding-right: 0;
}

#single-event .top-seller-item .text-wrapper .shop {
  color: var(--azzurro-chiaro);
  font-size: 13px;
}

#single-event .top-seller-item .text-wrapper .price {
  color: var(--nero) !important;
}

#store .text-wrapper ul,
#single-event .text-wrapper ul {
  list-style: disc;
}

#store .text-wrapper ul li,
#single-event .text-wrapper ul li {
  margin-bottom: .5rem;
}

#single-event .working-hours .contact a {
  color: var(--grigio-scuro);
}

.working-hours .social a {
  color: var(--grigio-scuro);
  font-size: 26px;
  margin-right: 10px;
}

label.order-by {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
  text-align: left;
}

.show-more a {
  font-weight: 600;
}

.onlus-price-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 10px 0;
}

.onlus-price-wrapper .onlus-price {
  margin-right: 20px;
  margin-bottom: 20px;
}

.onlus-price-wrapper input[type="radio"] {
  display: none;
}

.onlus-price-wrapper label {
  height: 125px;
  width: 120px;
  background-color: var(--grigio-chiaro);
  border-radius: 15px;
  color: var(--grigio-scuro);
  text-align: left;
  padding: 15px;
  padding-top: 75px;
  margin-top: 0;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.onlus-price-wrapper .onlus-price :checked + label {
  background-color: var(--azzurro-scuro);
  color: #fff;
}

#eventi .header-top > .search {
  margin-bottom: 100px;
}

#eventi .header-middle {
  margin: 100px 100px;
}

#eventi .header-middle h1 {
  margin-bottom: 5px;
}

#eventi .header-middle h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 50px;
}

#eventi .title-with-line {
  margin-top: 70px;
  margin-bottom: 40px;
}

#eventi .next-event {
  height: 450px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  position: relative;
  color: #fff;
  padding: 70px;
  margin-bottom: 70px;
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
  z-index: 0;
}

#eventi .next-event a {
  color: #fff !important;
}

#eventi .next-event::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.1);
  border-radius: 20px;
}

#eventi .event-category {
  font-weight: 600;
  position: absolute;
  z-index: 1;
}

.negozio-category {
  font-weight: 600;
  position: absolute;
  z-index: 1;
  top: 30px;
  left: 60px;
  font-size: 14px;
  color: #fff;
  max-width: calc(100% - 120px);
}

.negozio-category a {
  font-size: 14px;
  color: #fff;
}

.negozio-category a:hover {
  color: #fff !important;
  opacity: .8;
}

#eventi .next-event .event-info {
  position: absolute;
  bottom: 70px;
  width: calc(100% - 140px);
  z-index: 1;
}

#eventi .event-start,
#eventi .event-end {
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  text-transform: uppercase;
}

#eventi .event-start .day,
#eventi .event-end .day {
  font-size: 50px;
}

#eventi .next-event .event-name {
  font-weight: 700;
  font-size: 50px;
  line-height: 50px;
  margin-top: 25px;
  max-width: calc(100% - 150px);
}

#eventi .event-link {
  position: absolute;
  right: 70px;
  bottom: 75px;
  color: var(--azzurro);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 7px 25px;
  border-radius: 16px;
  z-index: 1;
}

#eventi .past-event {
  height: 370px;
  margin-bottom: 50px;
  border-radius: 20px;
  color: #fff;
  padding: 40px;
  position: relative;
  background-position: center;
  background-size: cover;
  filter: grayscale(1);
  -webkit-box-shadow: var(--shadow); 
  box-shadow: var(--shadow);
  z-index: 0;
}

#eventi .past-event .event-info {
  position: absolute;
  bottom: 100px;
  word-break: break-word;
  width: calc(100% - 80px);
}

#eventi .past-event .event-dates {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

#eventi .past-event .event-name {
  font-weight: 700;
  font-size: 38px;
  line-height: 42px;
}

#eventi .past-event .past-event-link {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: #fff;
  font-weight: 600;
  text-transform: none;
}

#eventi .header-middle {
  margin: 100px 10%;
}

.content {
  padding: 0;
  margin: 0 10% 100px 10%;
}

.extend-content {
  margin-left: -80px;
  margin-right: -80px;
}

.filter-select .check-mark {
  color: var(--azzurro);
  font-size: 14px;
}
.products-sort-order .dropdown-menu .select-list.current,
.facet-dropdown .select-list.active {
  color: var(--azzurro);
  font-weight: bold;
  position: relative;
}
.products-sort-order .dropdown-menu .select-list.current .fa,
.facet-dropdown .select-list.active .fa {
  position: absolute;
  right: 15px;
  top: 7px;
}
.filter-select .select-list-wrapper .list-content .item a:hover {
  color: var(--azzurro) !important;
}

.selects {
  margin-bottom: 70px;
}

.curtain-select-holder {
  position: relative;
}

.curtain-select-holder:hover {
  cursor: pointer;
}

.curtain-select {
  position: relative;
  margin-bottom: 5px;
  position: relative;
  display: flex;
  min-width: 10em;
  height: 30px;
  line-height: 2;
  border-radius: .25em;
  border: 1px solid var(--azzurro-scuro);
  padding: 0 8px;
  background-color: var(--bianco);
}

.curtain-select .placeholder {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--azzurro-scuro);
  transition: 0.5s ease all;
  margin-left: 8px;
}

.curtain-select .arrow,
.dropdown .arrow,
.btn-group .dropdown-toggle .arrow {
  position: absolute;
  right: 15px;
  border: solid var(--azzurro-scuro);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.dropdown .active .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

#filters-mobile .dropdown .active .arrow {
  border: solid var(--azzurro-scuro);
  border-width: 0 2px 2px 0;
}

.curtain-select .arrow.up,
.dropdown.show .arrow,
.btn-group.show .dropdown-toggle .arrow {
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transform:translateY(-50%) rotate(-135deg);
}

.open>.dropdown-menu {
  display: none;
}

.open.show>.dropdown-menu {
  display: block;
}

.facet-dropdown.open>.select-title {
  background: transparent;
  border: 1px solid var(--azzurro-scuro);
}

.curtain-select .arrow.down,
.dropdown .arrow,
.btn-group .dropdown-toggle .arrow {
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transform:translateY(-50%) rotate(45deg);
}

.curtain-select-buttons .curtain-select-save {
  float: right;
  color: var(--azzurro)
}

.curtain-select-buttons .curtain-select-reset {
  color: var(--grigio-chiaro);
}

.curtain-select-buttons .curtain-select-save.disabled, .curtain-select-buttons .curtain-select-reset.disabled {
  color: var(--grigio-chiaro);
}

.curtain-select-holder .select-list-wrapper {
  background: var(--bianco);
  min-height: 100px;
  width: 250px;
  box-shadow: 0px 2px 4px 0px #6b6b6b87;
  z-index: -1;
  border: 1px solid var(--azzurro-scuro);
  left: 0px;
  position: absolute;
  top: 21px;
  transform: scale(1);
  transition: .1s ease all;
  opacity: 0;
  border-radius: 0px 4px 4px 4px;
}

.curtain-select-holder.has-selected-item .placeholder {
  font-size: 10px;
  line-height: 1;
  height: 10px;
  position: absolute;
  top: -6px;
  left: 4px;
  background: white;
}

.curtain-select.curtain-select-open {
  border: 2px solid grey;
}

.curtain-select-holder.curtain-select-open .select-list-wrapper {
  top: 29px;
  width: 300px;
  opacity: 1;
  z-index: 1;
  border-width: 1px;
}

.curtain-select-holder.curtain-select-open .curtain-select {
  border-bottom: none;
  z-index: 2;
  border-radius: 4px 4px 0px 0px;
}

.curtain-select-holder .select-list-wrapper .list-content {
  line-height: 2;
  padding: 10px 16px;
}

.curtain-select-holder .select-list-wrapper .list-content .item a {
  text-transform: none;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
}

.curtain-select-holder .select-list-wrapper .list-content .item:hover {
  cursor: pointer;
}

.curtain-select-holder .select-list-wrapper .list-content .check-mark {
  float: right;
  opacity: 0;
  transition: .2s ease all;
}

.curtain-select-holder .select-list-wrapper .list-content .item.active .check-mark {
  float: right;
  opacity: 1;
}

.curtain-select-holder .curtain-select-buttons {
  margin-top: 50px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
}

.negozio .curtain-select {
  min-width: 12em;
  border: 1px solid var(--grigio);
}

.negozio .curtain-select .placeholder {
  color: var(--grigio);
}

.negozio .curtain-select .arrow {
  border: solid var(--grigio);
  border-width: 0 2px 2px 0;
}

.negozio .curtain-select-holder .select-list-wrapper {
  border: 1px solid var(--grigio);
}

#module-jmarketplace-sellercatalog #main .page-header {
  margin-bottom: 0;
}

#module-jmarketplace-sellercatalog .catalog-filters {
  margin-left: 0;
}

#module-jmarketplace-sellercatalog #content {
  margin-bottom: 80px;
}

#module-jmarketplace-sellercatalog .sort-by button {
  display: flex;
  min-width: 100px;
  width: 100%;
  height: 30px;
  line-height: 2;
  border-radius: 3px;
  border: 1px solid var(--azzurro);
  padding: 0 70px 0 15px;
  margin-left: 0 !important;
  margin-right: 15px;
  background-color: var(--bianco);
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--azzurro);
}

#module-jmarketplace-sellercatalog .sort-by button.active {
  border: 1px solid #48CAE4;
  background-color: #48CAE4;
  color: #fff;
}

#module-jmarketplace-sellercatalog .sort-by .show button {
  border-bottom: 1px solid transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 1001;
  box-shadow: none;
}

#module-jmarketplace-sellercatalog .sort-by button.dropdown-toggle::after {
  display: none;
}

#module-jmarketplace-sellercatalog .btn-group .dropdown-toggle .arrow {
  border: solid var(--azzurro);
  border-width: 0 2px 2px 0;
}

#module-jmarketplace-sellercatalog .btn-group .dropdown-toggle.active .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
}

#module-jmarketplace-sellercatalog .dropdown-menu {
  left: 10px;
  top: -1px !important;
  min-width: 220px;
  margin-top: 0;
  background-color: var(--bianco);
  border-radius: 3px;
  border-top-left-radius: 0;
  border: 1px solid var(--azzurro);
  transform: translate3d(0px, 30px, 0px) !important;
}

#module-jmarketplace-sellercatalog #filters-mobile .dropdown-menu {
  top: -30px !important;
  width: 100%;
}

#filters-mobile .category-hierarchy {
  max-height: unset;
}

#filters-mobile .category-hierarchy .cat-first-level-wrapper {
  margin-bottom: 10px;
}

#filters-mobile .category-hierarchy .category-name {
  display: block;
  width: 100%;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #b6b6b6;
  text-transform: uppercase;
}

#filters-mobile .category-hierarchy .category-name.open {
  color: var(--grigio);
}

#filters-mobile .category-hierarchy .category-name .arrow {
  transform: translateY(-50%) rotate(45deg);
}

#filters-mobile .category-hierarchy .category-name.open .arrow {
  transform: translateY(-50%) rotate(-135deg);
}

#filters-mobile .category-hierarchy .first-level-group {
  display: none;
  margin-top: 10px;
}

#filters-mobile .category-hierarchy .category-name.open + .first-level-group {
  display: block;
}

#filters-mobile .category-hierarchy .select-list {
  display: block !important;
  width: fit-content;
}

#filters-mobile .dropdown-menu .first-level-group .subcats::before,
#filters-mobile .dropdown-menu .first-level-group .subcats::after {
  content: none !important;
}

#module-jmarketplace-sellercatalog .dropdown-item {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
  padding: 5px 40px 5px 15px;
}

#module-jmarketplace-sellercatalog .dropdown-item.current {
  color: var(--azzurro);
}

#module-jmarketplace-sellercatalog .open>.dropdown-menu {
  display: none;
}

#module-jmarketplace-sellercatalog .open>.dropdown-menu.show {
  display: block;
}

#module-jmarketplace-sellercatalog .dropdown-item:hover {
  background-color: transparent;
}

.breadcrumb-title {
  color: var(--azzurro-scuro);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.card {
  height: 100%;
  background-color: #fff;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  border: none;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.card.card-dynamic a {
  color: var(--grigio);
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
  margin-left: 1rem;
}

.state-manage.active .state-normal {
  display: none;
}

.state-manage.active .state-hover {
  display: block;
}

.card.card-dynamic:hover, 
.card.card-dynamic.active,
.card.card-dynamic:hover a, 
.card.card-dynamic.active a,
.card.card-dynamic a:hover {
  color: var(--arancio) !important;
  font-weight: bold;
  fill: var(--arancio);
}

.card.card-dynamic:hover svg,
.card.card-dynamic.active svg {
  fill: var(--arancio);
}

.card.card-dynamic:hover svg path,
.card.card-dynamic.active svg path {
  fill: var(--arancio);
}

h1 {
  position: relative;
}

h1 .icon-title {
  position: absolute;
  left: -45px;
}

h1 .icon-title svg {
  width: 37px;
  height: 37px;
}

h1 .icon-title svg path {
  fill: var(--azzurro-scuro);
}

.state-manage .state-hover {
  display: none;
}

.state-manage:hover .state-normal {
  display: none;
}

.state-manage:hover .state-hover {
  display: block;
}

.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin .5s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.text-center {
  text-align: center;
}

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

.d-flex {
  display: flex;
}

.flex-center {
  align-items: center;
  justify-content: center;
}

.flex-left-middle {
  align-items: center;
  justify-content: left;
}

.ml-auto {
  margin-left: auto;
}

.m-auto {
  margin: 0 auto;
}

.mr-2 {
  margin-right: 20px;
}

.color-azure {
  color: var(--azzurro) !important;
}

.color-orange {
  color: var(--arancio) !important;
}

.color-azure-dark {
  color: var(--azzurro-scuro) !important;
}

.color-grey {
  color: var(--grigio) !important;
}

.size-28 {
  font-size: 28px !important;
}

.card.address {
  min-height: 200px;
  padding: 20px 30px;
}
.card.address .note {
  text-transform: uppercase;
  color: var(--rosa);
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 15px;
}
.card.address .name {
  font-weight: bold;
  font-size: 16px;
  color: var(--petrolio);
  margin-bottom: 15px;
}

.card.address .address-info {
  color: var(--grigio-scuro);
  font-size: 15px;
}

.order-intervals {
  margin-top: 50px;
}

.order-intervals li {
  display: inline-block;
  padding: 0 10px;
}

.order-intervals li:first-of-type {
  padding-left: 0;
  padding-right: 20px;
  margin-right: 10px;
  border-right: 1px solid var(--grigio);
}

.order-intervals li a {
  color: var(--grigio);
  font-weight: 500;
  text-transform: none;
}

.order-intervals li a.active {
  font-weight: 700;
  color: var(--azzurro-scuro);
  border-bottom: 2px solid var(--azzurro-scuro);
}

ul.sub-menu-tabs {
  margin-top: 15px;
  margin-bottom: 20px;
  color: grey;
}

ul.sub-menu-tabs li {
  display: inline;
}

ul.sub-menu-tabs li a {
  font-family: "Quicksand", sans-serif;
  text-transform: none;
  font-size: 13px;
  font-weight: 700;
}

ul.sub-menu-tabs li.active {
  color: var(--azzurro-scuro);
  font-weight: bold;
  text-decoration: underline;
}

ul.sub-menu-tabs li:not(:first-child) {
  padding: 0px 12px 0px 12px;
}

ul.sub-menu-tabs li:first-child {
  padding-right: 20px;
}

.row.row-item {
  padding: 0px;
}

.row.row-item .image {
  border-right: 1px solid var(--grigio-chiaro);
  position: relative;
}

.row.row-item .image img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.row.row-item .row-name {
  padding: 20px 0px 20px 0px;
}

.row.row-item .title {
  color: var(--nero);
  font-weight: bold;
  font-size: 30px;
}

.row.row-item .details .detail-label {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-chiaro);
  font-weight: bold;
  padding: 20px 0px 20px 0px;
  border-bottom: 1px solid var(--grigio-chiaro);
  max-height: 61px;
}

.row.row-item .details .detail-value {
  font-family: "Quicksand", sans-serif;
  padding: 15px 0px 15px 0px;
  color: var(--grigio-scuro);
  font-weight: 700;
}

.row.row-item .details .detail-value.success {
  color: var(--azzurro-scuro);
  font-weight: bold;
}

.row.row-item .details .detail-value.warning {
  color: var(--rosa);
  font-weight: bold;
}

.row.row-item .details .detail-label,
.row.row-item .details .detail-value {
  padding-left: 25px;
}

.row.row-item .details .upper {
  padding: 0px 0px 0px 0px;
  border-bottom: 1px solid var(--grigio-chiaro);
}

.row.row-item .details .lower {
  padding: 10px 25px;
}

.add-address {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  color: #e2e2e2;
  font-size: 16px;
  margin-bottom: 32px;
}

.plus {
  position: relative;
  width:100px;
  height:100px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.plus:before,
.plus:after {
  content: "";
  position:absolute;
  background: var(--grigio-chiaro);
  border-radius: 10px;
}

.plus:before {
  left:50%;
  top:4px;
  bottom:4px;
  width: 9px;
  transform:translateX(-50%);
}

.plus:after {
  top:50%;
  left:4px;
  right:4px;
  height:9px;
  transform:translateY(-50%);
}

.plus-address {
  color: var(--grigio-chiaro);
}

.d-flex-center {
  display: flex;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
}

.negozio-container {
  position: relative;
  min-height: 250px;
  padding: 30px;
  margin: 0 15px 60px 15px;
  color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.negozio-container,
.associazione-container,
.top-seller-item img {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.negozio-container:hover,
.associazione-container:hover,
.top-seller-item img:hover {
  opacity: .8;
}

.negozio-container::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  border-radius: 20px;
}

.negozio-container .negozio-name {
  position: absolute;
  bottom: 80px;
  left: 30px;
  right: 30px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  word-break: break-word;
  z-index: 1;
}

.negozio-container .enter-seller {
  position: absolute;
  bottom: 40px;
  right: 40px;
  color: #fff;
  font-weight: 600;
  text-transform: none;
  z-index: 1;
}

.show-more a {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}

.ss-arrow-right {
  background-image: url(../icons/arrow_down.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: baseline;
  transform: rotate(-90deg);
  height: 13px;
  width: 13px;
  margin-left: 5px;
}

.ss-arrow-right.white {
  background-image: url(../icons/arrow_down_white.svg);
}

.ss-arrow-right.big {
  height: 20px;
  width: 20px;
  vertical-align: sub;
}

.banner-bottom {
  margin-top: 80px;
}

.banner-bottom img {
  display: block;
  margin: auto;
  max-width: 100%;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

#seller .card-wrapper {
  margin-bottom: 30px;
}

#seller .card .icon,
#sellermenu li a .icon {
  margin: 0 auto;
}

#seller .card a,
#sellermenu li a span {
  font-family: "Quicksand", sans-serif;
  margin-left: 0;
  text-align: center;
  font-size: 13px;
  margin-top: 10px;
}

.add-product-wrapper {
  padding-top: 50px;
  border-top: 1px solid var(--grigio-chiaro);
}

.add-tab-selector {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}

.add-tab-selector li {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid var(--grigio-chiaro);
  padding: 8px;
  float: unset !important;
  cursor: pointer;
}

.add-tab-selector li a {
  display: flex !important;
  align-items: center;
  width: 100%;
  text-transform: none;
  color: var(--grigio) !important;
}

.add-tab-selector li a.active .state-normal {
  display: none;
}
.add-tab-selector li a.active .state-hover {
  display: block;
}

.add-tab-selector li a.active,
.add-tab-selector li:hover a {
  color: var(--arancio) !important;
  background-color: transparent !important;
}

.add-tab-selector li .icon,
#module-jmarketplace-sellerproduct .list-group-item .icon {
  margin-right: 15px;
}

.add-tab-wrapper {
  padding: 0;
  border-radius: 20px;
}

.tab-content .info1 {
  z-index: 2;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.tab-content .info1,
.tab-content .info3 {
  position: relative;
  padding: 30px;
  background-color: #fff;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.tab-content .info2 {
  position: relative;
  padding: 30px;
  background-color: var(--background-alternate);
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  z-index: 1;
}

.tab-content .info3 {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.seller-label {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-size: 13px;
  font-weight: 700;
}

.jmarketplace-panel .radio-wrapper {
  display: flex;
  align-items: baseline;
}

.jmarketplace-panel .radio-wrapper label {
  margin-left: 30px;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 14px;
  color: var(--grigio);
  cursor: pointer;
}

.jmarketplace-panel .radio-wrapper input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  width: 16px;
  height: 16px;
  padding: 2px;
  background-clip: content-box;
  border: 1px solid var(--grigio);
  border-radius: 50%;
  cursor: pointer;
}

.jmarketplace-panel .radio-wrapper input[type="radio"]:checked {
  background-color: var(--azzurro);
  border: 1px solid var(--azzurro);
}

.jmarketplace-panel .radio-wrapper input[type="radio"]:checked + label {
  color: var(--azzurro);
}

.jmarketplace-panel .input-text-wrapper label,
.jmarketplace-panel .select-wrapper label {
  margin-bottom: 2px;
}

.jmarketplace-panel .input-text-wrapper input[type="text"],
.jmarketplace-panel .input-text-wrapper input[type="number"],
#module-jmarketplace-seller .input-text-wrapper input[type="text"],
#module-jmarketplace-seller .input-text-wrapper input[type="number"] {
  display: block;
  width: 100%;
  height: 40px;
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  padding: 0 10px;
}

.jmarketplace-panel .checkbox-wrapper {
  display: flex;
  align-items: baseline;
}

.jmarketplace-panel .checkbox-wrapper label {
  line-height: 14px;
  margin-left: 30px;
  margin-bottom: 15px;
}

#module-jmarketplace-seller .checkbox-wrapper label {
  margin-left: 15px;
  margin-bottom: 0;
}

#module-jmarketplace-seller .checkbox-wrapper a {
  color: var(--azzurro);
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  margin-left: 5px;
}

.jmarketplace-panel input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

.jmarketplace-panel input[type="checkbox"]:checked {
  background-color: var(--azzurro);
}

.jmarketplace-panel input[type="checkbox"]:checked::after {
  left: 3px;
  font-size: 10px;
}

.jmarketplace-panel input[type="checkbox"]:checked + label {
  color: var(--azzurro) !important;
}

.jmarketplace-panel .select-wrapper {
  background-color: #fff;
  border-radius: 5px;
}

.jmarketplace-panel .select-wrapper select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  padding: 0 10px;
  color: var(--grigio);
  font-size: 14px;
  font-weight: 600;
  background: url(../icons/arrow_select_grey.svg) no-repeat right transparent;
  background-size: 10px;
  background-position-x: calc(100% - 10px);
  cursor: pointer;
}

.jmarketplace-panel #info .select-wrapper select {
  height: 30px;
}

.info3 .nav-tabs .nav-link {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  color: var(--grigio);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.info3 .nav-tabs .nav-item.show .nav-link, 
.info3 .nav-tabs .nav-link.active {
  background-color: var(--azzurro);
  color: #fff;
}

.formatting-wrapper {
  margin: 20px 0;
  padding: 5px 0;
  align-items: center;
  border-top: 1px solid var(--grigio-chiaro);
  border-bottom: 1px solid var(--grigio-chiaro);
}

.formatting-wrapper .formatting-group:not(:first-of-type) {
  border-left: 1px solid var(--grigio-chiaro);
}

.formatting-wrapper li {
  display: inline-block;
  color: var(--grigio);
  font-weight: 700;
  font-size: 18px;
  padding: 5px 7px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}

.formatting-wrapper li.active,
.formatting-wrapper li:hover {
  color: var(--nero);
}

.formatting-wrapper .formatting-group:last-of-type li {
  font-size: 14px;
}

#seller .textarea-wrapper textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--grigio-chiaro);
}

#seller .textarea-wrapper textarea:focus {
  outline: none;
}

#seller .textarea-wrapper .counter {
  background-color: var(--background-alternate);
  padding: 10px 20px;
  margin-top: -6px;
  border: 1px solid var(--grigio-chiaro);
}

#seller .textarea-wrapper .counter span {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio);
  font-size: 13px;
  font-weight: 700;
  margin-right: 30px;
}

.ss-tab-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  -webkit-box-shabow: var(--shadow);
  box-shadow: var(--shadow);
}

#module-jmarketplace-sellerproduct .price-append {
  width: calc(100% - 40px);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  display: inline-block;
}

#module-jmarketplace-sellerproduct .input-group-append {
  display: inline-block;
}

#module-jmarketplace-sellerproduct .input-group-text {
  width: 40px;
  height: 40px;
  font-weight: 600;
  color: #fff;
  background-color: var(--azzurro);
  border-radius: 5px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: 1px solid var(--azzurro);
}

.seller-title {
  color: var(--azzurro);
  font-weight: 700;
  margin-bottom: 15px;
}

#module-jmarketplace-sellerproduct .shipping-methods,
#module-jmarketplace-sellerproduct .combinazioni-table {
  width: 100%;
  color: var(--grigio-scuro);
}

#module-jmarketplace-sellerproduct .shipping-methods {
  text-align: center;
}

#module-jmarketplace-sellerproduct .shipping-methods th,
#module-jmarketplace-sellerproduct .shipping-methods td,
#module-jmarketplace-sellerproduct .combinazioni-table th,
#module-jmarketplace-sellerproduct .combinazioni-table td {
  padding: 15px 0;
}

#module-jmarketplace-sellerproduct .shipping-methods thead tr,
#module-jmarketplace-sellerproduct .combinazioni-table thead tr {
  border-top: 1px solid var(--grigio-chiaro);
  border-bottom: 1px solid var(--grigio-chiaro);
}

#module-jmarketplace-sellerproduct .shipping-methods th:first-of-type,
#module-jmarketplace-sellerproduct .shipping-methods td:first-of-type {
  text-align: left;
}

#module-jmarketplace-sellerproduct .shipping-methods .checkbox-wrapper {
  align-items: center;
  justify-content: center;
}

#module-jmarketplace-sellerproduct .delete-feature-row {
  display: block;
  margin: 28px auto 0 auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

#module-jmarketplace-sellerproduct .orange-button {
  background-color: var(--arancio);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
}

#module-jmarketplace-sellerproduct .notice {
  background-color: var(--background-alternate);
  margin: -30px;
  padding: 30px;
  color: var(--nero);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}

#module-jmarketplace-sellerproduct .upload-file-input {
  margin-top: -5px;
}

#module-jmarketplace-sellerproduct .upload-caption {
  margin-top: 15px;
}

#module-jmarketplace-sellerproduct .bootstrap-filestyle,
#module-jmarketplace-seller .bootstrap-filestyle {
  flex-wrap: nowrap;
}

#module-jmarketplace-sellerproduct .bootstrap-filestyle input,
#module-jmarketplace-seller .bootstrap-filestyle input {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#module-jmarketplace-sellerproduct .group-span-filestyle,
#module-jmarketplace-seller .group-span-filestyle {
  width: 130px;
}

#module-jmarketplace-sellerproduct .group-span-filestyle label,
#module-jmarketplace-seller .group-span-filestyle label {
  text-align: center;
  width: 130px;
  height: 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  background-color: var(--azzurro);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-top: 11px;
}

#module-jmarketplace-sellerproduct .upload_image .preview {
  border-radius: 5px;
  border: 1px solid var(--grigio-chiaro);
}

#seller .drop-files {
  position: relative;
  width: 100%;
  height: 300px;
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  margin-top: 30px;
}

#seller .drop-files span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--grigio-chiaro);
  font-weight: 700;
  font-size: 18px;
}

#seller .progress {
  margin-top: 15px;
}

#seller .progress-bar {
  background-color: var(--azzurro);
}

#seller .comb-values {
  padding: 8px 5px;
  border-top: 1px solid var(--grigio-chiaro);
}

#seller .comb-values li label {
  margin-right: 24px;
  margin-bottom: 8px;
}

#seller #combinazione-selector {
  border-bottom: 1px solid var(--grigio);
  margin-bottom: 15px;
}

#seller .assoc-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2px;
}

#module-jmarketplace-sellerproduct .category_search_block input {
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  font-size: 13px;
  width: 200px;
  height: 30px;
  margin-bottom: 5px;
  padding: 0 8px;
  box-shadow: none;
}

#module-jmarketplace-sellerproduct #tree1, 
#module-jmarketplace-sellerproduct #tree2 {
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  padding: 15px;
}

#module-jmarketplace-sellerproduct #tree1 label,
#module-jmarketplace-sellerproduct #tree2 label {
  margin-left: 15px;
  margin-bottom: 5px;
  color: var(--grigio-scuro);
  vertical-align: middle;
}

#module-jmarketplace-sellerproduct #tree1 label .icon-folder,
#module-jmarketplace-sellerproduct #tree2 label .icon-folder {
  margin-right: 5px;
}

#seller .assoc-checkboxes {
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  padding: 15px;
  padding-bottom: 0;
}

.add-tab-selector li a .euro-sign,
#module-jmarketplace-sellerproduct .list-group-item .euro-sign {
  width: 20px;
  height: 22px;
  margin-right: 15px;
  font-weight: 500;
  font-size: 22px;
  line-height: 22px;
}

.header-spacer {
  height: 100px;
}

.product-variants>.product-variants-item .color,
.product-variants>.product-variants-item .radio-label {
  border-radius: 5px;
}

.input-color:checked+span, 
.input-color:hover+span, 
.input-radio:checked+span, 
.input-radio:hover+span {
  border: 2px solid var(--nero);
}

.product-discount .regular-price {
  color: var(--grigio);
  font-size: 15px;
  float: right;
  margin-right: 0;
}

.product-prices .current-price,
.kb-booking-product-price-block .kb-booking-product-price {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 700;
  color: var(--petrolio);
}

.has-discount .discount {
  background: var(--azzurro);
  margin-left: 20px;
  border-radius: 5px;
}

.product-quantity .bootstrap-touchspin,
.cart-item .qty-wrapper .bootstrap-touchspin {
  box-shadow: none;
}

.product-quantity #quantity_wanted,
.cart-item .qty-wrapper input {
  height: 40px;
  width: 50px;
  text-align: center;
  color: var(--grigio-scuro);
  font-size: 15px;
  background: transparent;
  margin-left: 45px;
  border: 1px solid var(--azzurro);
}

.cart-item .qty-wrapper input {
  border: 1px solid var(--grigio-chiaro);
}

.product-quantity .input-group-btn-vertical,
.cart-item .qty-wrapper .input-group-btn-vertical {
  position: relative;
}

.product-quantity .input-group-btn-vertical .btn,
.cart-item .qty-wrapper .input-group-btn-vertical .btn {
  position: absolute;
  width: 45px;
  height: 40px;
  max-width: unset;
  background: transparent;
  border-radius: 0;
  border: 1px solid var(--azzurro);
}

.cart-item .qty-wrapper .input-group-btn-vertical .btn {
  border: 1px solid var(--grigio-chiaro);
}

.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-down,
.cart-item .qty-wrapper .input-group-btn-vertical .btn.bootstrap-touchspin-down {
  left: -93px;
  margin-top: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.product-quantity .input-group-btn-vertical .btn.bootstrap-touchspin-up,
.cart-item .qty-wrapper .input-group-btn-vertical .btn.bootstrap-touchspin-up {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.product-quantity .input-group-btn-vertical .btn i,
.cart-item .qty-wrapper .input-group-btn-vertical .btn i {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -7px;
}

.product-quantity .input-group-btn-vertical .touchspin-up::after,
.cart-item .qty-wrapper .input-group-btn-vertical .touchspin-up::after {
  content: "+";
  color: var(--azzurro-scuro);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.product-quantity .input-group-btn-vertical .touchspin-down::after,
.cart-item .qty-wrapper .input-group-btn-vertical .touchspin-down::after {
  content: "-";
  color: var(--azzurro-scuro);
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.cart-item .qty-wrapper input.no-increase-qty ~ .input-group-btn-vertical .js-increase-product-quantity:hover::after {
  content: "Hai già la quantità massima disponibile per questo prodotto.";
  background-color: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 500;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  padding: 10px;
  border-radius: 15px;
  position: absolute;
  top: 30px;
  left: 30px;
}

.seller-information {
  margin-top: 50px;
  box-shadow: none;
  margin-bottom: 0;
  background: transparent;
  padding: 0;
}

.seller-information-container {
  display: block;
}

.seller-information h4 {
  color: var(--azzurro-scuro);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 5px;
  border-bottom: none;
  padding-bottom: 0;
}

.seller-information .seller-name-container {
  display: flex;
  align-items: center;
}

.seller-information .seller-name a {
  color: var(--grigio-scuro);
  font-size: 18px;
  font-weight: 700;
}

.seller-information-container .seller-logo {
  margin: 15px 30px 15px 0;
  width: 100px;
  height: auto;
  padding: 0;
  background-color: transparent;
  border: none;
}

.seller-information .seller-logo img {
  width: 100px;
}

.seller-information .seller-description {
  color: var(--grigio-scuro);
  font-size: 14px;
  line-height: 18px;
}

.seller-information .seller-links {
  margin-top: 15px;
}

.seller-information .seller-links a {
  line-height: 1.25;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 5px;
  text-transform: none;
  border: none;
  box-shadow: none;
}

.seller-information .seller-links a:hover {
  color: #fff !important;
}

.page-not-found .search-widget,
.page-not-found .search-widget form {
  width: 100%;
}

#module-jmarketplace-selleraccount #content,
#module-jmarketplace-sellerproduct #content,
#module-jmarketplace-seller #content,
#module-jmarketplace-sellerorder #content,
#module-jmarketplace-sellerdashboard #content {
  padding: 0;
  margin-top: 40px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

#module-jmarketplace-sellerorder .jmarketplace-panel-header,
#module-jmarketplace-sellerdashboard #seller-dashboard-orders .jmarketplace-panel-header {
  margin: 0 0 15px 0;
  padding: 5px 0;
}

#module-jmarketplace-sellerdashboard #seller-dashboard-orders {
  margin-top: 40px;
}

#module-jmarketplace-sellerdashboard #calendar_form input {
  border: 1px solid var(--grigio-chiaro);
}

.seller-separator {
  margin: 50px 0;
  height: 1px;
  width: 100%;
  background: var(--grigio-chiaro);
}

.info3 .nav-tabs {
  border-bottom: none;
  margin-bottom: 10px;
}

#module-jmarketplace-sellerproduct .mce-tinymce,
#module-jmarketplace-seller .mce-tinymce {
  border: 1px solid var(--grigio-chiaro);
  -webkit-box-shadow: none;
  box-shadow: none;
}

#module-jmarketplace-sellerproduct .mce-top-part::before,
#module-jmarketplace-seller .mce-top-part::before {
  -webkit-box-shadow: none;
  box-shadow: none;
}

#module-jmarketplace-sellerproduct .mce-edit-area,
#module-jmarketplace-seller .mce-edit-area {
  border-right: 1px solid var(--grigio-chiaro) !important;
}

#module-jmarketplace-sellerproduct .mce-txt,
#module-jmarketplace-sellerproduct .mce-text,
#module-jmarketplace-seller .mce-txt,
#module-jmarketplace-seller .mce-text {
  font-family: "Quicksand", sans-serif !important;
  color: var(--grigio-scuro) !important;
  font-size: 13px !important;
  font-weight: 500;
}

#module-jmarketplace-sellerproduct .mce-statusbar,
#module-jmarketplace-seller .mce-statusbar {
  background-color: var(--background-alternate);
  padding-left: 10px;
}

#module-jmarketplace-sellerproduct .mce-wordcount,
#module-jmarketplace-sellerproduct .mce-charactercount,
#module-jmarketplace-seller .mce-wordcount,
#module-jmarketplace-seller .mce-charactercount {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio);
  font-size: 13px;
  font-weight: 700;
  text-transform: lowercase;
}

#module-jmarketplace-sellerproduct .footer-form,
#module-jmarketplace-seller .footer-form {
  margin-top: 20px;
  justify-content: flex-end;
}

#module-jmarketplace-sellerproduct .footer-form button,
#module-jmarketplace-seller .footer-form button {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding: 5px 25px;
  border-radius: 16px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

#module-jmarketplace-sellerproduct .footer-form button.btn-primary,
#module-jmarketplace-seller .footer-form button.btn-primary {
  background-color: var(--arancio);
  margin-left: 10px;
}

#module-jmarketplace-sellerproduct .footer-form button.btn-secondary {
  background-color: var(--grigio);
}

.negozio-right .logo-holder img {
  height: auto;
}

#module-jmarketplace-sellercatalog .content-internal {
  padding-top: 50px;
}

#module-jmarketplace-sellercatalog .orderby-selection {
  margin-bottom: 10px;
}

.seller-catalog-top {
  display: flex;
  align-items: flex-end;
}

.seller-catalog-description {
  margin-right: 50px;
  width: 100%;
}

#module-jmarketplace-sellerprofile .catalog-holder {
  margin-top: 35px;
}

#module-jmarketplace-sellerprofile .catalog-holder a,
#module-jmarketplace-sellercatalog .back-to-seller-profile a {
  color: var(--arancio);
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

#module-jmarketplace-sellerprofile .catalog-holder a svg,
#module-jmarketplace-sellercatalog .back-to-seller-profile a svg {
  font-weight: normal;
  margin-left: 5px;
  font-size: 14px;
}

#module-jmarketplace-sellercatalog .back-to-seller-profile {
  margin-top: -28px;
}

#module-jmarketplace-sellercatalog .back-to-seller-profile a {
  color: var(--azzurro);
}

#module-jmarketplace-sellercatalog .page-footer {
  margin: 0;
}

#module-jmarketplace-sellerprofile .social img {
  height: 25px;
}

#sellercatalog .products {
  margin-left: -15px;
  margin-right: -15px;
}

#sellercatalog .product {
  padding-left: 15px;
  padding-right: 15px;
}

.sellercatalog-footer {
  display: block;
  margin-top: 75px;
}

.sellercatalog-footer .showing,
.sellercatalog-footer .pagination-container {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}

#module-jmarketplace-sellercatalog .pagination {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#module-jmarketplace-sellercatalog .pagination > li {
  margin-bottom: -1px;
}

#module-jmarketplace-sellercatalog .pagination > li > a {
  border: 1px solid var(--grigio-chiaro);
  width: 35px;
  height: 35px;
  text-align: center;
  padding: 7px 0 7px 3px;
}

#module-jmarketplace-sellercatalog .pagination > li.spacer > a:hover {
  background-color: #fff;
}

#module-jmarketplace-sellercatalog .pagination > .active > a {
  background-color: var(--azzurro-scuro);
  border-color: var(--azzurro-scuro);
}

#module-jmarketplace-sellercatalog .pagination > .active > a:hover {
  background-color: var(--azzurro-scuro);
  color: #fff !important;
}

#_desktop_cart .cart-products-count {
  position: absolute;
  background-color: var(--arancio);
  color: #fff !important;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: -9px;
  right: -11px;
  text-align: center;
  font-size: 14px;
}

#_desktop_cart {
  margin-left: 20px;
}

#header .header-top .right-menu #_desktop_cart a {
  margin-left: 0;
}

#_desktop_cart .header {
  position: relative;
}

#_desktop_cart .cart-products-count.muted {
  background-color: var(--azzurro-chiaro);
}

.product-top .product-brand {
  font-size: 14px;
  line-height: 20px;
  color: var(--grigio-scuro);
}

.product-top .product-brand-label {
  color: var(--nero);
  font-weight: 600;
  text-transform: uppercase;
}

.faceted-slider #facet_label_ {
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  color: var(--azzurro-scuro);
  font-weight: 700;
  line-height: 10px;
  margin-bottom: 13px;
}

.faceted-slider .ui-widget-content {
  border: 1px solid var(--azzurro-scuro);
  width: calc(100% - 13px);
}

#search_filters .ui-widget-header {
  background: var(--azzurro-scuro);
}

#search_filters .ui-slider .ui-slider-handle {
  border: 1px solid var(--azzurro);
  height: 15px;
  width: 15px;
  border-radius: 50%;
  top: -5.6px;
}

.facet-dropdown {
  color: var(--azzurro-scuro);
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.facet-dropdown.show>.select-title.active {
  border: 1px solid var(--azzurro-chiaro);
  background-color: var(--azzurro-chiaro);
  color: #fff;
}

#filters-mobile .facet-dropdown .select-title.active,
#filters-mobile .facet-dropdown.show>.select-title.active,
#filters-mobile .facet-dropdown .select-title.active:hover span {
  color: var(--azzurro-scuro);
}

.facet-dropdown .select-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--azzurro-scuro);
  background: transparent;
  border: 1px solid var(--azzurro-scuro);
  padding: 5px 30px 5px 15px;
  border-radius: 5px;
}

.facet-dropdown .select-title.active {
  border: 1px solid var(--azzurro-chiaro);
  background-color: var(--azzurro-chiaro);
  color: #fff;
}

.facet-dropdown .select-title.active:hover span {
  color: #fff;
}

.facet-dropdown .select-title span {
  font-family: "Quicksand", sans-serif;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.facet-dropdown .select-title.active .name-filter {
  display: none;
}

.facet-dropdown .select-title .divider-mobile {
  display: none;
}

.facet-dropdown.show>.select-title {
  position: relative;
  border: 1px solid var(--azzurro-scuro);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: var(--bianco);
  border-bottom: var(--bianco);
  z-index: 1001;
}

.facet-dropdown .dropdown-menu {
  padding: 10px 0;
  margin-top: -1px;
  left: 0;
  width: 200px;
  min-width: calc(100% + 30px);
  background: var(--bianco);
  border: 1px solid var(--azzurro-scuro);
  border-radius: 5px;
  border-top-left-radius: 0;
  box-shadow: none;
  max-height: 200px;
  overflow: scroll;
  transform: translate3d(0px, 30px, 0px) !important;
}

.facet-dropdown .select-list {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
  background: transparent;
  padding: 5px 35px 5px 15px;
}

.facet-dropdown .select-list:hover {
  background: transparent;
  color: var(--azzurro) !important;
}

.products-selection {
  margin-top: 0 !important;
}

#js-product-list {
  margin-top: 30px;
  width: 100%;
}


#search_filters .facet,
#search_filters .dropdown {
  padding-left: 0;
  margin-bottom: 8px;
}

#search_filters, #search_filters_brands, #search_filters_suppliers {
  box-shadow: none;
  margin-bottom: 0;
  background: transparent;
  padding: 0px;
  padding-left: 15px;
  align-items: flex-start;
}

#search_filters .facet,#search_filters_brands .facet,#search_filters_suppliers .facet{
  padding-top: 0;
}


#search_filters .facet .collapse,#search_filters_brands .facet .collapse,#search_filters_suppliers .facet .collapse{
  display:block;
}
#search_filters .facet .facet-title,#search_filters_brands .facet .facet-title,#search_filters_suppliers .facet .facet-title{
  color:#7a7a7a;
}
#search_filters .facet .facet-label,#search_filters_brands .facet .facet-label,#search_filters_suppliers .facet .facet-label{
    margin-bottom:0;
}
#search_filters .facet .facet-label a,#search_filters_brands .facet .facet-label a,#search_filters_suppliers .facet .facet-label a{
margin-top:.4375rem;
color:#232323;
display:inline-block;
font-size:.9375rem;
}
#search_filters_brands .facet,#search_filters_suppliers .facet{
  padding-top:0;
}
#search_filters_brands .facet .facet-label,#search_filters_suppliers .facet .facet-label{
  margin-bottom:.3125rem;
}

.brands-sort .select-title, 
.products-sort-order .select-title, 
.suppliers-sort .select-title {
  position: relative;
  display: inline-block;
  width: 100%;
  color: var(--azzurro-scuro);
  background: transparent;
  padding: 5px 15px;
  cursor: pointer;
  border: 1px solid var(--azzurro-scuro);
  box-shadow: none;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.brands-sort.show .select-title, 
.products-sort-order.show .select-title, 
.suppliers-sort.show .select-title {
  border-bottom: var(--bianco);
  background-color: var(--bianco);
  z-index: 1001;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.brands-sort .dropdown-menu, 
.products-sort-order .dropdown-menu, 
.suppliers-sort .dropdown-menu {
  left: auto;
  width: 200px;
  min-width: calc(100% + 30px);
  background: var(--bianco);
  border: 1px solid var(--azzurro-scuro);
  border-radius: 5px;
  border-top-left-radius: 0;
  box-shadow: none;
  margin: 0;
  top: calc(100% - 3px);
}

.brands-sort .dropdown-menu .select-list, 
.products-sort-order .dropdown-menu .select-list, 
.suppliers-sort .dropdown-menu .select-list {
  display: block;
  font-family: "Quicksand", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
  background: transparent;
  padding: 5px 35px 5px 15px;
}

.brands-sort .dropdown-menu .select-list:hover, 
.products-sort-order .dropdown-menu .select-list:hover, 
.suppliers-sort .dropdown-menu .select-list:hover {
  color: var(--azzurro) !important;
}

#checkout #wrapper {
  background: transparent;
  box-shadow: none;
  padding-top: 100px;
}

body#checkout section.checkout-step {
  box-shadow: none;
  background-color: transparent;
  border-bottom: none;
  padding: 0;
}

body#checkout section.checkout-step.-unreachable {
  display: none;
}

body#checkout section.checkout-step .content {
  margin: 0;
  padding: 0;
}

body#checkout #footer {
  box-shadow: none;
  padding: 0;
  background: transparent;
  color: var(--grigio);
}

body#checkout section.checkout-step .form-footer {
  margin: 40px 0;
}

.checkout-step #custom-checkout-identity {
  margin-top: 1rem;
}

.form-group {
  margin-bottom: 0;
}

.form-control:focus {
  color: var(--grigio-scuro);
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

#module-jmarketplace-seller .form-group {
  margin-bottom: 20px;
}

body#checkout section.checkout-step #customer-form, 
body#checkout section.checkout-step #delivery-address, 
body#checkout section.checkout-step #invoice-address, 
body#checkout section.checkout-step #login-form {
  margin-top: 0;
  margin-left: 0;
}

.form-control-label {
  padding-top: 0;
}

body#checkout section.checkout-step .forgot-password {
  margin-left: 0;
  text-align: right;
}

.page-order table td, .page-order table th {
  padding: unset;
  padding-top: 15px;
  padding-bottom: 15px;
}

body#checkout section.checkout-step .delivery-options .delivery-option, 
body#checkout section.checkout-step .delivery-options .delivery-option .carrier, 
body#checkout section.checkout-step .delivery-options .delivery-option label>.row {
  align-items: normal;
}

body#checkout section.checkout-step .delivery-options .delivery-option {
  background: #fff;
  padding: 20px;
  margin-bottom: 0;
  min-height: 80px;
}

body#checkout section.checkout-step .delivery-options .delivery-option.selected {
  background: rgba(72,202,228,.001);
}

body#checkout section.checkout-step .address-item {
  background-color: #fff;
  border: 2px solid var(--grigio-chiaro);
  padding: 0;
  margin-top: 0;
}

body#checkout section.checkout-step .address-item.selected {
  border: 2px solid var(--azzurro);
  background-color: rgba(72,202,228,.001);
}

body#checkout section.checkout-step .address-item .h4 {
  margin-bottom: 0;
}

body#checkout section.checkout-step .radio-block {
  padding: 0;
  width: 100%;
  margin-bottom: 0;
}

body#checkout section.checkout-step .address {
  margin-left: 0;
}

.btn.focus, .btn:focus {
  box-shadow: none;
}

#blockcart-modal .modal-dialog {
  margin: 0;
}

.modal-content {
  border: none;
}

.product-actions .add-to-cart {
  height: auto;
}

.product-actions .add-to-cart .material-icons {
  font-size: 22px;
  line-height: 22px;
}

#header .header-top .search-widget {
  width: 100%;
  float: unset;
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.ui-autocomplete {
  border: none;
  width: 400px !important;
  z-index: 100;
}

.ui-autocomplete .ui-menu-item a {
  line-height: 1;
  padding: 2px 0;
}

.ui-autocomplete .ui-menu-item a.ui-state-focus {
  background: transparent;
  border: none;
}

.ui-autocomplete .ui-menu-item a .category,
.ui-autocomplete .ui-menu-item a .separator {
  display: none;
}

.ui-autocomplete .ui-menu-item a .product {
  text-transform: capitalize;
}

.products-sort-order .dropdown-menu {
  top: -1px !important;
}

#_desktop_search_filters_clear_all {
  padding-left: 0;
}

.js-search-filters-clear-all {
  display: flex;
  align-items: center;
  background:transparent;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  color: var(--grigio);
  font-size: 13px;
  font-weight: 700;
  height: 30px;
}

#submit-login,
.js-customer-form .form-control-submit,
.js-address-form .form-control-submit,
.forgotten-password .form-control-submit,
.renew-password button[type="submit"] {
  float: right;
  background-color: var(--azzurro);
  border: none;
  box-shadow: none;
  text-transform: none;
  border-radius: 5px;
  padding: 7px 25px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 25px;
}

.page-my-account #content .links {
  width: 100%;
  margin-top: 40px;
}

.page-my-account #content .links a {
  text-align: left;
  text-transform: none;
  color: var(--grigio);
}

.page-my-account #content .links a:hover {
  color: var(--arancio) !important;
}

.page-my-account #content .links a span.link-item {
  display: flex;
  background-color: #fff;
  padding: 20px 20px 40px 20px;
  border-radius: 15px;
  position: relative;
  border: none;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.page-my-account #content .links a span .icon {
  margin-right: 20px;
}

.page-my-account .page-footer {
  display: flex;
  justify-content: center;
}

.page-my-account .page-footer a {
  text-align: center;
  background-color: var(--grigio);
  color: #fff;
  border: 2px solid var(--grigio);
  font-size: 15px;
  font-weight: 700;
  padding: 6px 50px;
  border-radius: 15px;
  transition: all 0.2s;
}
.page-my-account .page-footer a:hover {
  color: var(--grigio) !important;
  background: #fff;
}

.page-customer-account #content {
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.page-addresses .address {
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  height: 100%;
  padding: 30px 30px 0 30px;
}

.page-addresses .addresses-footer {
  margin: 0;
  background: #fff;
  border-radius: 15px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  height: 100%;
}

.page-addresses .address .address-body,
.page-addresses .address .address-footer {
  padding: 0;
}

.page-addresses .address .address-footer {
  border-top: none;
  margin-top: 20px;
}

.page-addresses .address .address-footer a {
  color: var(--grigio);
  margin-right: 25px;
}

#address .address-form,
#authentication .login-form {
  margin-top: 40px;
}

#authentication .no-account {
  margin-top: 20px;
}

#main .page-content #notifications {
  margin-left: 0;
  margin-right: 0;
}

#password .forgotten-password {
  padding: 0;
  margin-top: 40px;
}

.send-renew-password-link {
  color: var(--grigio-scuro);
  margin-bottom: 30px;
}

.forgotten-password .form-fields label.required,
.forgotten-password .form-fields .email {
  width: auto;
}

#password footer.page-footer {
  margin-left: 0;
  margin-right: 0;
}

.page-footer .account-link span {
  color: var(--grigio-scuro);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .5px;
}

.page-authentication #content {
  margin: 0;
  max-width: unset;
}

.page-authentication .register-form p {
  color: var(--grigio);
}

.page-authentication .register-form a {
  color: var(--azzurro);
}

#sellermenu li a {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  min-height: unset;
  max-height: unset;
  margin-bottom: 0;
  margin-left: 0;
  text-align: center;
}

#sellermenu li a:hover {
  background-color: transparent;
  border: none;
}

#module-jmarketplace-sellerproduct .list-group-item {
  display: flex !important;
  align-items: center;
  font-weight: 700;
  color: var(--grigio);
  padding: 14px 20px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--grigio-chiaro);
}

#module-jmarketplace-sellerproduct .list-group-item.active, 
#module-jmarketplace-sellerproduct .list-group-item.active:focus, 
#module-jmarketplace-sellerproduct .list-group-item.active:hover, 
#module-jmarketplace-sellerproduct .list-group-item:focus, 
#module-jmarketplace-sellerproduct .list-group-item:hover {
  color: var(--arancio) !important;
  background-color: transparent;
  border-color: var(--grigio-chiaro);
}

.jmarketplace-panel {
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

#module-jmarketplace-sellerproduct .select2-selection,
#module-jmarketplace-seller .select2-selection {
  padding: 5px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid var(--grigio-chiaro);
}

#module-jmarketplace-sellerproduct .select2-selection[aria-expanded="true"],
#module-jmarketplace-seller .select2-selection[aria-expanded="true"] {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#module-jmarketplace-sellerproduct .select2-selection .select2-selection__rendered,
#module-jmarketplace-seller .select2-selection .select2-selection__rendered {
  color: var(--grigio);
  font-size: 14px;
  font-weight: 600;
}

#module-jmarketplace-sellerproduct .select2-selection .select2-selection__arrow,
#module-jmarketplace-seller .select2-selection .select2-selection__arrow {
  top: 7px;
  right: 8px;
}

#module-jmarketplace-sellerproduct .select2-dropdown,
#module-jmarketplace-seller .select2-dropdown {
  border: 1px solid var(--grigio-chiaro);
  border-top: none;
}

#module-jmarketplace-sellerproduct .select2-dropdown .select2-results__option--highlighted[aria-selected],
#module-jmarketplace-seller .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: var(--azzurro-scuro);
}

#module-jmarketplace-sellerproduct #category_suggestions .suggest-element {
  background-color: var(--grigio-chiaro);
  border-bottom: 1px solid var(--grigio);
}

#attributes-list .attribute-group {
  border: none;
  border-top: 1px solid var(--grigio);
}

#attributes-list .attribute-group .attribute-group-name {
  font-family: "Quicksand", sans-serif;
  background-color: transparent;
  width: 100%;
  text-align: left;
  color: var(--grigio-scuro);
  font-weight: 600;
  padding: 5px;
  border: none;
  cursor: pointer;
}

#attributes-list .attribute-group .attribute-group-name:hover {
  color: var(--grigio-scuro) !important;
}

#attributes-list .attribute-group .attributes {
  border-top: 1px solid var(--grigio-chiaro);
}

#module-jmarketplace-sellerproduct label {
  cursor: pointer;
}

#table-combinations-list .form-control,
#table-combinations-list .form-control:focus {
  border: 1px solid var(--grigio-chiaro);
}

#table-combinations-list tr td:last-of-type {
  text-align: center;
}

#table-combinations-list tr td svg path {
  fill: var(--azzurro);
}

#content-hook_order_confirmation a {
  color: var(--nero);
  font-weight: 700;
}

#content-hook_order_confirmation p {
  color: var(--nero);
}

#order-items {
  border-right: 0;
}

#order-items h3 {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio);
  font-weight: 700;
  font-size: 14px;
}

.page-order-confirmation {
  margin-top: 40px;
}

.page-order-confirmation h2 {
  color: var(--nero);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.order-confirmation-table {
  color: var(--grigio-scuro);
}

.order-confirmation-table .card {
  padding: 40px;
}

#order-details {
  margin-top: 30px;
  padding: 0 55px;
}

#order-details li {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-weight: 700;
  font-size: 14px;
}

#order-items .order-line {
  border-top: 1px solid var(--grigio-chiaro);
  padding-top: 1rem;
  margin-left: 0;
  margin-right: 0;
}

#order-items .order-line:first-of-type {
  border-top: none;
}

#order-items .order-line > div:first-of-type {
  padding-left: 0;
}

#order-items .details {
  color: var(--nero);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#order-items .details .product-customization-line {
  color: #232323;
  font-size: 14px;
  font-weight: 400;
}
#order-items .details .product-customization-line .label {
  font-size: 14px;
  font-weight: 700;
}

#order-items .qty {
  color: var(--grigio-scuro);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 0;
}

#order-items .qty > .row {
  height: 100%;
  align-items: center;
}

#order-items .qty > .row > div {
  font-family: "Quicksand", sans-serif;
}

#order-items .image img {
  border-radius: 20px;
  margin-bottom: 0;
}

#order-items table tr:not(:last-of-type) td {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-weight: 700;
  font-size: 14px;
}

#order-items table tr td:first-of-type {
  padding-left: 40px;
}

#order-items table tr td:last-of-type {
  padding-right: 40px;
  width: 17.5%;
  text-align: left;
}

#order-items table tr:nth-of-type(2) td {
  padding-bottom: 25px;
}

#order-items table tr.total-value td {
  color: #fff;
  font-size: 16px;
  background-color: var(--azzurro);
}

#order-items table tr.total-value td:first-of-type {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

#order-items table tr.total-value td:last-of-type {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.order-confirmation-actions a {
  text-align: center;
  padding: 7px 20px;
  border-radius: 17px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.3px;
  margin-left: 15px;
}

.order-confirmation-actions a.my-orders-link {
  background-color: var(--grigio-chiaro);
  color: var(--grigio-scuro);
}

.order-confirmation-actions a.store-link {
  background-color: var(--arancio);
  color: #fff;
}

.order-history-table {
  border-radius: 20px;
  background-color: #fff;
  margin-top: 40px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.order-history-table .thead-default th {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-chiaro);
  font-weight: bold;
  background-color: transparent;
  border-top: none;
  border-bottom: 1px solid var(--grigio-chiaro);
}

.order-history-table td {
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-weight: 700;
}

.order-history-table td span,
.order-history-table .order-actions a {
  font-family: "Quicksand", sans-serif;
  font-weight: 700 !important;
}

.order-history-table td, 
.order-history-table th {
  padding: 18px;
}

.order-history-table td .material-icons {
  color: var(--azzurro);
}

.order-history-table .order-actions .details {
  color: var(--azzurro);
}

.order-history-table .order-actions .reorder {
  color: var(--arancio);
}

.order-history-table .order-actions span {
  color: var(--grigio-chiaro);
  margin: 0 5px;
}

.order-detail-wrapper {
  background-color: #fff;
  color: var(--grigio-scuro);
  padding: 40px;
  margin-top: 40px;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.order-detail-wrapper h3,
.order-detail-wrapper h4 {
  color: var(--azzurro);
}

.order-detail-wrapper a {
  color: var(--azzurro);
}

.page-order-detail .box {
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin-bottom: 40px;
}

.order-detail-wrapper .table thead th {
  font-family: "Quicksand", sans-serif;
  font-weight: 900;
  background-color: transparent;
  border-top: 1px solid var(--grigio-scuro);
  border-bottom: 1px solid var(--grigio-scuro);
}

.order-detail-wrapper .table,
.order-detail-wrapper .table thead th:first-of-type,
.order-detail-wrapper .table tr td:first-of-type {
  border-left: none;
}

.order-detail-wrapper .table,
.order-detail-wrapper .table thead th:last-of-type,
.order-detail-wrapper .table tr td:last-of-type {
  border-right: none;
}

.order-detail-wrapper .table tr {
  border-bottom: 1px solid var(--grigio-chiaro);
}

.order-message-form textarea {
  margin-top: 15px;
  border: 1px solid var(--grigio-chiaro);
}

.order-message-form .form-control-submit {
  background-color: var(--arancio);
  border: none;
  box-shadow: none;
  text-align: center;
  font-weight: 600;
  letter-spacing: 1.3px;
  padding: 5px 30px;
  margin-top: 15px;
  border-radius: 17px;
}

#module-jmarketplace-sellerprofile .hours table {
  box-shadow: none;
  background-color: transparent;
  width: calc(100% + 15px) !important;
  margin-left: 5.4pt;
}

#module-jmarketplace-sellerprofile .hours p {
  margin-bottom: 0;
}

.hours table tr:first-of-type {
  border-top: 1px solid var(--azzurro);
  border-bottom: 1px solid var(--azzurro);
}

.hours table td {
  border: none !important;
  padding: 1px 5px 1px 0 !important;
}

.hours table td span {
  font-family: "Quicksand", sans-serif !important;
  text-decoration: none !important;
  color: var(--grigio) !important;
  font-weight: normal !important;
  font-size: 13px !important;
}

.hours table tr:first-of-type td span {
  font-family: "Quicksand", sans-serif !important;
  text-align: center;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--azzurro) !important;
}

.product-flags li.product-flag {
  background-color: var(--azzurro-scuro);
  border-radius: 5px;
}

.product-flags li.product-flag.discount, 
.product-flags li.product-flag.discount-amount, 
.product-flags li.product-flag.discount-percentage {
  background-color: var(--arancio);
}

.product-flags li.product-flag.on-sale {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--orange);
  margin-top: .625rem !important;
}

#search_filters .facet .facet-label{
  text-align:left;
}

#checkout section.checkout-step .delivery-options .delivery-option label {
  margin-left: 30px;
}

.slideshow-container {
  /* max-width: 1000px; */
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slideHeaderMerchant {
  display: none;
  /* opacity: 0.8; */
}

.prevSlideMerchant, .nextSlideMerchant {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 12px;
  color: black !important;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  z-index: 2;
  background-color: rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 49px;
  text-align: center;
}

.prevSlideMerchant {
  left: 40px;
}

.nextSlideMerchant {
  right: 40px;
}

.prevSlideMerchant:hover, .nextSlideMerchant:hover {
  background-color: rgba(255,255,255,0.5);
  color: black !important;
}

.slideshow-container .slider-dots {
  display: flex;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.slideshow-container .slider-dot {
  background-color: #fff;
  opacity: .5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
}

.slideshow-container .slider-dot.active {
  opacity: 1;
}

.activeslide, .dot:hover {
  background-color: #717171;
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

#module-jmarketplace-sellerprofile #header,
#module-jmarketplace-sellercatalog #header {
  height: calc(100vw * 433 / 1300);
}

#module-jmarketplace-sellerprofile .header-middle,
#module-jmarketplace-sellercatalog .header-middle {
  margin-top: 0 !important;
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#module-jmarketplace-sellerprofile .header-middle h1,
#module-jmarketplace-sellercatalog .header-middle h1 {
  font-size: 50px !important;
}

#module-jmarketplace-sellerprofile .title-with-line {
  margin-bottom: 40px;
}

#module-jmarketplace-sellerprofile .title-with-line h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.seller-categories,
.seller-profile-info {
  margin-top: 75px;
}

.seller-profile-info .more-products {
  font-size: 16px;
  font-weight: 700;
  color: var(--azzurro);
  margin-bottom: 75px;
}

.seller-categories .categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.seller-categories .categories-wrapper .seller-cat {
  width: calc(100% / 8);
  padding: 0 15px 20px 15px;
}

.seller-categories .categories-wrapper .seller-cat img {
  width: 100%;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.seller-categories .categories-wrapper .seller-cat:hover img {
  opacity: .8;
}

.seller-categories .categories-wrapper .seller-cat .cat-name {
  color: var(--azzurro);
  text-align: center;
  font-size: 14px;
  line-height: 17px;
  margin-top: 20px;
}

#registrazione-negozio .header-middle,
#registrazione-associazione .header-middle,
#adesione-esercente .header-middle,
#adesione-impresa-sostenitrice .header-middle {
  margin: 100px 10% 50px 10%;
}

.header-middle .form-h-btn {
  background-color: #fff;
  border: none;
  color: var(--azzurro);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 5px 30px;
  border-radius: 15px;
  margin-top: 10px;
  cursor: pointer;
}

#registrazione-negozio section,
#registrazione-associazione section {
  margin-top: 100px;
}

h3.container-title {
  font-weight: 700;
}

p.container-descr {
  font-size: 16px;
}

.form-container-right {
  padding-right: 100px;
}

.form-container-left {
  padding-right: 100px;
}

.form-shadow {
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: 20px;
  padding: 30px 40px;
  background-color: #fff;
}

.form-shadow .form-group {
  margin-bottom: 20px;
}

.form-shadow label {
  font-family: "Quicksand", sans-serif;
  color: var(--azzurro);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 3px;
}

.form-shadow .form-control {
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
}

.form-shadow .form-control::placeholder {
  color: var(--grigio-chiaro);
  font-size: 13px;
  font-weight: 600;
}

.form-shadow .checkbox-wrapper input {
  width: 18px;
  height: 18px;
}

.form-shadow .checkbox-wrapper input:checked::after {
  left: 3px;
  top: -1px;
  font-size: 13px;
}

.form-shadow .checkbox-wrapper label {
  color: var(--grigio-scuro);
  margin-left: 30px;
  margin-top: 0;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}

.form-shadow .checkbox-wrapper label a {
  color: var(--azzurro);
}

.form-last-row {
  display: flex;
}

.form-shadow .form-note {
  flex-basis:70%;
  padding-right: 10%;
  margin-bottom: 0;
}

.form-submit {
  flex-basis:30%;
}

.form-submit input {
  height: 42px;
  width: 100%;
  color: #fff;
  background-color: var(--arancio) !important;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
}

#registrazione-negozio .modal-backdrop,
#registrazione-associazione .modal-backdrop,
#welfare-aziendale-di-prossimita-con-seregnostore .modal-backdrop,
#diventa-esercente-convenzionato-seregnostore .modal-backdrop {
  display: none;
}

#form-sent-modal .actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

#form-sent-modal .actions .close-modal {
  color: #fff;
  cursor: pointer;
}

#form-sent-modal .actions .close-modal:hover {
  color: #fff !important;
}

.pagination .page-list {
  background: transparent;
  padding:0;
  box-shadow: none;
  display: flex;
  justify-content: center;
}

.pagination .page-list li {
  width: 35px;
  height: 35px;
}

.pagination .page-list li a {
  border: 1px solid var(--grigio-chiaro);
  display: flex;
  justify-content: center;
  padding-left: 2px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 35px;
}

.pagination .page-list li a:hover {
  background-color: #f6f6f6;
}

.pagination .page-list li.spacer a:hover {
  background-color: transparent;
  color: #000 !important;
}

.pagination .page-list li:not(:first-of-type) a {
  border-left: none;
}

.pagination .page-list .current a {
  background-color: var(--azzurro-scuro);
  border: 1px solid var(--azzurro-scuro);
  color: #fff;
  pointer-events: none;
}

#checkout #delivery textarea, 
#checkout #gift_message textarea {
  border: 1px solid var(--grigio-chiaro);
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  color: var(--grigio-scuro);
  font-size: 15px;
  font-weight: 500;
}

#checkout #delivery textarea:focus, 
#checkout #gift_message textarea:focus {
  outline: none;
}

.title-404 {
  width: 80%;
  margin-bottom: 25px !important;
}

.message-404 {
  font-size: 24px;
  font-weight: 700;
  color: var(--grigio-scuro);
  margin-bottom: 35px;
}

.link-404.orange-button {
  padding: 10px 30px;
  border-radius: 19px;
}

.link-404:hover {
  color: #fff !important;
}

.ps-alert-error .item p, 
.ps-alert-success .item p {
  word-break: break-word;
}

#best-sales #content-wrapper,
#prices-drop #content-wrapper,
#new-products #content-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

#module-psgdpr-gdpr .container {
  padding-right: 0;
  padding-left: 0;
}

.psgdprinfo17 {
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

.psgdprinfo17 h2 {
  font-weight: 700;
  color: var(--grigio-scuro);
}

#exportDataToPdf, #exportDataToCsv {
  background-color: var(--azzurro);
  border: none;
  box-shadow: none;
  border-radius: 7px;
  margin: 10px 0 0 15px;
}

.contact-rich h4,
.contact-form h3 {
  font-weight: 700;
  color: var(--grigio-scuro);
}

#contact .contact-rich {
  margin-top: 30px;
}
#contact .contact-rich h4,
#contact .contact-form h3 {
  font-size: 22px;
  color: var(--azzurro);
  text-transform: none;
  margin-bottom: 24px;
}
#contact .contact-rich .block .data,
#contact .contact-rich .block a {
  font-size: 15px;
  color: var(--grigio-scuro);
  transition: all 0.3s;
}

.form-shadow select {
  cursor: pointer;
}

#contact .contact-form {
  padding: 0;
}

#contact .input-group .form-control,
.input-group-btn:not(:first-child)>.btn {
  z-index: 1;
}

#contact .form-group .input-group {
  width: calc(100% - 100px);
}

#contact .form-group .group-span-filestyle .btn {
  width: 104px;
  height: 38px;
  margin-bottom: 0;
  background-color: var(--azzurro);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

#contact .custom-checkbox input[type=checkbox]+span {
  border: 1px solid var(--grigio-scuro);
  border-radius: 5px;
}

#contact .form-footer input.btn {
  background-color: var(--arancio);
  border: none;
  box-shadow: none;
  height: 42px;
  width: 140px;
  color: #fff;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
}

#contact .content-internal {
  padding-bottom: 0;
}

#contact footer {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#search.page-not-found .title-internal-primary {
  margin-bottom: 20px;
}

#search.page-not-found .search-outer {
  width: 700px;
  margin: 80px auto 50px auto;
}

#search.page-not-found .content-internal .search-outer {
  margin-bottom: 80px;
}

#search.page-not-found .search .search-product-wrapper {
  width: calc(65% - 94px);
  padding: 0 15px;
}

#search.page-not-found .search .search-submit {
  margin-left: 50px;
}

#search.page-not-found .cat-tree .cat-column {
  margin-bottom: 35px;
}

#search.page-not-found .cat-tree .cat-column ul {
  margin-top: 10px;
}

#search.page-not-found .cat-tree .cat-level-1 {
  font-size: 20px;
  color: var(--nero);
}

#search.page-not-found .cat-tree .cat-level-2 {
  color: var(--grigio);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  opacity: .6;
}

.payment-option .custom-radio input[type=radio]:checked+span {
  background-color: var(--grigio-scuro);
}

#checkout #payment-option-2-additional-information {
  margin-left: 0;
}

body#checkout section.checkout-step .payment-options .payment-option {
  display: block !important;
  margin-bottom: 0;
}

#js-stripe-payment-element {
  margin-top: 50px;
}

#GestpayContent .credit-card {
  border-radius: 15px;
  border: 1px solid var(--grigio-chiaro);
  -webkit-box-shadow: none;
  box-shadow: none;
}

#GestpayContent .credit-card .title span {
  margin-left: 20px;
  color: var(--grigio-scuro);
}

#GestpayContent .credit-card .form-body-right {
  max-width: unset;
}

#GestpayContent .credit-card .form-body-right form > label {
  display: block !important;
}

#GestpayContent .credit-card form {
  margin-top: 0;
}

#GestpayContent .credit-card form input,
#GestpayContent .credit-card form select {
  opacity: 1;
  font-weight: 500;
  border: 1px solid var(--grigio-scuro);
}

#GestpayContent .credit-card form .date-field label,
#GestpayContent .credit-card form .card-verification label {
  margin-right: 10px;
}

#GestpayContent .credit-card form .cvv-details {
  float: left;
}

#GestpayContent .credit-card #GestpayErrorBox {
  margin-bottom: 10px;
}

#product .product-information .tabs {
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 20px;
}

#module-jmarketplace-sellercatalog .alert-info {
  background-color: transparent;
  color: var(--azzurro);
  font-weight: 700;
  border: none;
  font-size: 28px;
  padding: 0;
  margin-top: 40px;
}

#best-sales .products,
#prices-drop .products,
#new-products .products {
  width: calc(100% + 30px);
}

.products .product-flags {
  left: 15px;
  z-index: 1;
}

#seller-order-state form .input-group-btn {
  width: 42px;
}

#seller-order-state form .input-group-btn .btn {
  height: 33px;
}

.cart-right .paypal-buttons-context-iframe iframe {
  z-index: 1 !important;
}

#seller-order-state form select,
.order-message-form textarea,
.order-message-form textarea:focus {
  border: 1px solid var(--grigio-chiaro);
}

.block-promo {
  margin-top: 1rem;
}

.block-promo .promo-name,
.block-promo .promo-code {
  padding: 0;
}

.block-promo .promo-name .cart-summary-line .label,
.cart-summary-subtotals-container .cart-summary-line .label, 
.cart-summary-subtotals-container .cart-summary-line .value {
  color: var(--grigio);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.block-promo .promo-name .cart-summary-line span {
  color: var(--arancio);
  font-weight: 700;
  font-size: 15px;
}

.block-promo .promo-name .material-icons {
  color: var(--nero);
}

.block-promo .promo-code-button {
  padding: 0;
}

.block-promo .promo-code-button a,
.block-promo .promo-code-button.cancel-promo {
  color: var(--azzurro);
}

.block-promo .promo-input {
  border: 1px solid var(--grigio-chiaro);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  width: 60%;
}

.block-promo .promo-input+button {
  background-color: var(--azzurro);
  border: none;
  width: 40%;
  height: 2.5rem;
  font-weight: 600;
  margin-top: -2px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.block-promo .cart-summary-line .label, 
.block-promo .promo-name {
  color: var(--arancio);
}

.block-promo .cart-summary-line .label .code {
  cursor: pointer;
}

.cart-voucher .promo-discounts {
  padding: 10px 0;
}

.cart-summary-subtotals-container, 
.card-block.cart-summary-totals {
  padding: 0;
}

.card-block.cart-summary-totals {
  margin-top: 20px;
  margin-bottom: 40px;
}

.cart-summary-subtotals-container .cart-summary-line {
  border-top: 1px solid var(--grigio-chiaro);
  padding: 15px 0;
}

.card-block.cart-summary-totals .cart-summary-line.cart-total {
  background-color: transparent;
  padding: 8px 0;
  border-top: 1px solid var(--nero);
  border-bottom: 1px solid var(--nero);
}

.card-block.cart-summary-totals .cart-summary-line.cart-total .label,
.card-block.cart-summary-totals .cart-summary-line.cart-total .value {
  color: var(--nero);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
}

.checkout-right {
  padding-bottom: 20px;
}

#cart .cart-summary-subtotals-container .cart-summary-line:first-of-type {
  border-top: none;
}

#cart .card-block.cart-summary-totals .cart-summary-line.cart-total {
  border: none !important;
}

#cart .card-block.cart-summary-totals .cart-summary-line.cart-total .label,
#cart .card-block.cart-summary-totals .cart-summary-line.cart-total .value {
  color: var(--azzurro);
}

#cart .card-block.cart-summary-totals {
  margin-top: 0;
}

#checkout .cart-summary-subtotals-container {
  margin-top: 15px;
}

#product .top-seller-container .slick-track {
  height: 100%;
}

#product .top-seller-container .top-seller-item {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mobile-carousel .slick-arrow {
  color: #fff;
  background-color: var(--arancio);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.mobile-carousel .mobile-arrow-left {
  left: -45px;
}

.mobile-carousel .mobile-arrow-right {
  right: -45px;
}

.mobile-carousel .slick-arrow.slick-disabled {
  background-color: var(--grigio-chiaro);
}

.mobile-carousel .slick-arrow img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
}

.mobile-carousel .mobile-arrow-left img {
  transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-carousel .mobile-arrow-right img {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.seller-legals {
  color: var(--grigio);
  font-size: 13px;
}

.seller-legals .seller-legal {
  margin-bottom: 8px;
}

.seller-legals .seller-legal p {
  margin-bottom: 0;
  color: var(--grigio);
  font-size: 13px;
}

.seller-legal-text {
  font-size: 11px;
  line-height: 14px;
  color: var(--grigio-chiaro);
  margin-top: 30px;
  border-top: 1px solid var(--grigio-chiaro);
  padding-top: 10px;
}

#legals-cms .page-content.page-cms {
  background: transparent;
  padding: 0;
}
#legals-cms h2,
#legals-cms h3,
#legals-cms h4 {
  font-weight: 700;
  color: var(--azzurro);
}
#legals-cms .page-content.page-cms li {
  color: #7a7a7a;
}

#module-jmarketplace-sellercatalog .catalog-facet .sort-by,
#module-jmarketplace-sellercatalog .btn-group {
  width: 100%;
}

#module-jmarketplace-sellercatalog .catalog-facet .sort-by button {
  width: 100%;
  margin-left: 0 !important;
}

#module-jmarketplace-sellercatalog .dropdown-menu {
  width: 110%;
}

#js-product-list-top .category-facet.category-hierarchy-mobile {
  display: none;
}

#module-jmarketplace-sellercatalog .category-facet .dropdown-menu,
#js-product-list-top .category-facet .dropdown-menu {
  width: 300px;
  max-height: 250px !important;
}

#module-jmarketplace-sellercatalog .dropdown-menu .first-level-group .subcats,
#js-product-list-top .category-facet .dropdown-menu .first-level-group .subcats,
#filters-mobile .first-level-group .subcats {
  margin-left: 20px;
  position: relative;
}

#module-jmarketplace-sellercatalog .dropdown-menu .first-level-group .subcats::before,
#js-product-list-top .category-facet .dropdown-menu .first-level-group .subcats::before {
  content: "";
  position: absolute;
  width: 1px;
  height: calc(100% - 14px);
  background-color: var(--azzurro-chiaro);
}

#module-jmarketplace-sellercatalog .dropdown-menu .first-level-group .subcats::after,
#js-product-list-top .category-facet .dropdown-menu .first-level-group .subcats::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 13px;
  width: 15px;
  height: 1px;
  background-color: var(--azzurro-chiaro);
}

#module-jmarketplace-sellercatalog .dropdown-menu .first-level-group .subcats.last::after,
#js-product-list-top .category-facet .dropdown-menu .first-level-group .subcats.last::after {
  content: "";
  position: absolute;
  width: 16px;
  top: -13px;
  left: -21px;
  height: calc(100% + 1px);
  background-color: var(--bianco);
  z-index: 1;
}

#module-jmarketplace-sellercatalog .dropdown-menu .first-level-group .subcats .dropdown-item,
#js-product-list-top .category-facet .dropdown-menu .first-level-group .subcats .select-list {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#module-jmarketplace-sellercatalog .dropdown-menu .first-level-group .subcats .dropdown-item::before,
#js-product-list-top .category-facet .dropdown-menu .first-level-group .subcats .select-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--azzurro-chiaro);
}

#module-jmarketplace-sellercatalog .category-facet .dropdown-item.first-level,
#js-product-list-top .category-facet .dropdown-menu .select-list.first-level {
  background-color: var(--azzurro-chiaro);
  color: #fff;
}

#module-jmarketplace-sellercatalog .category-facet .dropdown-item,
#js-product-list-top .category-facet .select-list {
  padding-left: 20px;
}

#module-jmarketplace-sellercatalog .category-facet .dropdown-item.active {
  color: var(--azzurro);
  background-color: transparent;
}

#module-jmarketplace-sellercatalog .category-facet .dropdown-item.first-level.active,
#js-product-list-top .category-facet .dropdown-menu .select-list.first-level.active {
  color: #fff;
  background-color: var(--azzurro);
}

#module-jmarketplace-sellercatalog .category-facet .dropdown-item.first-level.active:hover,
#js-product-list-top .category-facet .dropdown-menu .select-list.first-level.active:hover {
  color: #fff !important;
}

#module-jmarketplace-sellercatalog .orderby-selection.flex-sort .sort-by {
  display: flex;
  align-items: center;
  width: 100%;
}

#module-jmarketplace-sellercatalog .orderby-selection.flex-sort .sort-by label {
  margin-bottom: 4px;
}

.filter-btn-mobile {
  margin-bottom: 10px;
  margin-top: -47px;
}

.filter-btn-mobile button {
  background-color: var(--arancio);
  border-radius: 5px;
  border: none;
  padding: 5px 15px;
  color: #fff;
  font-weight: 800;
  font-size: 20px;
  font-family: 'Quicksand', sans-serif;
}

.filter-btn-mobile button .fa-sliders-h {
  margin-right: 15px;
}

#filters-mobile {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow);
}

#filters-mobile .filters-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 40px;
}

#filters-mobile .filters-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 20px;
  color: var(--azzurro);
}

#filters-mobile .close-filters {
  font-size: 50px;
  font-weight: 400;
  line-height: 20px;
  color: var(--azzurro);
  background: none;
  padding: 0;
}

#filters-mobile .filters-body {
  padding: 0 40px 40px 40px;
}

#filters-mobile .facet-dropdown .select-title,
#filters-mobile .products-sort-order .select-title {
  background: transparent;
  border: none;
  padding: 10px 0;
}

#filters-mobile .facet-dropdown .select-title span,
#filters-mobile .products-sort-order .select-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

#filters-mobile .facet-dropdown .select-title .divider-mobile {
  display: block;
  margin: 0 5px;
}

#filters-mobile .facet-dropdown .select-title .name-filter {
  display: block;
}

#filters-mobile .dropdown .arrow {
  right: 10px;
}

#filters-mobile .facet-dropdown .dropdown-menu,
#filters-mobile .products-sort-order .dropdown-menu {
  border: none;
  background: transparent;
  padding-top: 0;
  margin-bottom: 20px;
  transform: translate3d(0, 40px, 0) !important;
}

#filters-mobile .facet-dropdown .select-list,
#filters-mobile .products-sort-order .select-list {
  display: inline-block;
  padding: 0;
  margin-right: 15px;
  margin-bottom: 10px;
  color: #b6b6b6;
  text-transform: uppercase;
}

#filters-mobile .facet-dropdown .select-list.active,
#filters-mobile .products-sort-order .select-list.current {
  color: var(--arancio);
  border-bottom: 2px solid var(--arancio);
}

#filters-mobile .facet-dropdown .select-list.active {
  display: inline;
}

#filters-mobile .facet-dropdown .select-list.active svg,
#filters-mobile .products-sort-order .select-list.current svg {
  display: none;
}

#filters-mobile .facet.order-last {
  display: none;
}

#filters-mobile .js-search-filters-clear-all {
  background: none;
  color: #b6b6b6;
  font-size: 14px;
  margin-top: 40px;
}

#filters-mobile .dropdown-backdrop {
  display: none;
}

#filters-mobile .category-hierarchy .select-title {
  position: relative;
}

.overlay-desktop .overlay-title {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.overlay-desktop .categories-block {
  padding-bottom: 70px;
}

.overlay-desktop .subcategories-block {
  padding-left: 25px;
  padding-bottom: 50px;
  border-left: 1px solid var(--grigio-chiaro);
}

.overlay-desktop .subcategories-block .helper {
  color: var(--grigio-chiaro);
  opacity: .8;
}

.overlay-desktop .subcategories-wrapper {
  position: relative;
  display: none;
}

.overlay-desktop .subcategories-wrapper .close-subcategories {
  position: absolute;
  background: transparent;
  color: #fff;
  font-size: 16px;
  border: none;
  padding: 0;
  cursor: pointer;
}

.overlay-desktop .subcategories-wrapper ul {
  margin-left: 40px;
}

.overlay-desktop .subcategories-wrapper li a {
  color: #fff !important;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.overlay-desktop .subcategories-wrapper li a:hover {
  color: var(--azzurro) !important;
}

.overlay-desktop .subcategories-wrapper li.top-category {
  font-weight: 800;
  margin-bottom: 10px;
}

.overlay-desktop.cat-selected .overlay-title {
  opacity: .5;
}

.overlay-desktop.cat-selected .overlay-title.selected {
  opacity: 1;
  font-weight: 800;
}

.product-price-and-shipping .regular-price {
  text-decoration: line-through;
  font-weight: 600;
  color: var(--grigio);
}

.product-price-and-shipping .regular-price ~ .price {
  margin-left: 10px;
}

.ui-slider .ui-slider-handle {
  z-index: 1;
}

#module-jmarketplace-sellercatalog .dropdown-menu,
#js-product-list-top .dropdown-menu {
  z-index: 2;
}

#module-jmarketplace-sellercatalog .sort-by .show button,
#js-product-list-top .facet-dropdown.show>.select-title {
  z-index: 3;
}

.social-sharing {
  display: block;
  color: var(--grigio-chiaro);
}

.social-sharing span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 900;
  font-size: 15px;
}

.social-sharing ul {
  margin-top: 10px;
}

.social-sharing li {
  margin-left: 0;
  margin-right: 15px;
  box-shadow: none;
  height: auto;
  width: auto;
  border-radius: 0;
}

.social-sharing li a {
  overflow: visible;
  text-indent: 0;
  color: var(--grigio-chiaro);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.social-sharing li a img {
  height: 30px;
}


/* Cookies banner START */
#lgcookieslaw_banner {
  background-color: rgba(0,114,181,.9);
}

#lgcookieslaw_banner a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
#lgcookieslaw_banner a:hover {
  color: #acc6df !important;
}

.lgcookieslaw-button-container #lgcookieslaw_reject_all, 
.lgcookieslaw-reject-all-button-enabled #lgcookieslaw_accept {
  border: none;
  border-radius: 15px;
  background-color: #fff;
}

.lgcookieslaw-modal-body {
  border-top: 4px solid var(--azzurro);
}

input:checked + .lgcookieslaw-slider,
.lgcookieslaw-modal .lgcookieslaw-accept-all {
  background-color: var(--azzurro);
}

.lgcookieslaw-section-description ul li:before {
  color: var(--azzurro);
}

.lgcookieslaw-modal .lgcookieslaw-save, 
.lgcookieslaw-modal .lgcookieslaw-reject-all,
.lgcookieslaw-modal .lgcookieslaw-accept-all {
  font-weight: 500;
}

#module-lgcookieslaw-disallow section#content {
  margin-top: 25px;
}

#module-lgcookieslaw-disallow section h2 {
  margin-bottom: 0;
}
/* Cookies banner END */

/* Prenotazione BEGIN */
#product .product-customization {
  display: none;
}
.kb-booking-product-block {
  box-shadow: none;
  background: transparent;
  padding: 0;
  margin-top: 1rem;
}
.booking-product-checkin-block {
  margin-bottom: 1.25rem;
}
.kb-booking-product-price-block {
  display: block;  /* TEMP */
  border-bottom: none;
  margin-bottom: 1.25rem;
}
.booking-product-checkin-block .form-control:focus {
  background-color: #fff;
  border: 1px solid #ced4da;
}
.kb-booking-product-block .kb-error-message {
  margin: 15px;
}
.kb-booking-product-block #kb-submit-booking-product-cart {
  box-shadow: none;
  font-size: 14px;
}
.kb-booking-product-price-block .qty {
  margin-bottom: 1.5rem;
}
.kb-booking-product-price-block .qty input {
  height: 40px;
  width: 50px;
  text-align: center;
  color: var(--grigio-scuro);
  font-size: 15px;
  background: transparent;
  margin-left: 45px;
  border: 1px solid var(--azzurro);
}
.kb-booking-product-price-block .qty .input-group-btn-vertical .btn i {
  position: absolute;
}
.kb-booking-product-price-block .qty .input-group-btn-vertical .btn.bootstrap-touchspin-down {
  left: -94px;
}
.kb-booking-product-price-block .qty .input-group-btn-vertical .btn.bootstrap-touchspin-up {
  left: -1px;
}
.datetimepicker table tr td.disabled,
.datetimepicker table tr td.disabled:hover {
  color: var(--grigio-chiaro);
}
.datetimepicker table tr td {
  position: relative;
}
.datetimepicker table tr td::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}
.datetimepicker table tr td.free::after {
  background: #2ACD4E;
}
.datetimepicker table tr td.partial::after {
  background: #FFAF36;
}
.datetimepicker table tr td.full::after {
  background: #EB001B;
}
.cart-item .product-customization-line {
  color: #7a7a7a;
}
.cart-item .product-customization-line .label {
  font-weight: 600;
  color: #7a7a7a;
  margin-right: 10px;
}
/* Prenotazione END */


@media screen and (min-width: 1200px) {
  .hidden-lg {
    display: none;
  }
  .d-lg-block {
    display: block !important;
  }
}

@media screen and (min-width: 992px) {
  #module-jmarketplace-sellerprofile .product {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media screen and (min-width: 768px) {
  #product .top-seller-container {
    filter: drop-shadow(0px 0px 50px rgba(13, 50, 86, 0.2));
  }

  #product .top-seller-container .slick-list {
    clip-path: inset(0px 15px 0px 15px);
    min-width: 100%;
  }

  #product .top-seller-container .slick-track {
    min-width: 100%;
  }
}

@media screen and (max-width: 1399px) {
  .cart-item .qty-wrapper input.no-increase-qty ~ .input-group-btn-vertical .js-increase-product-quantity:hover::after {
    top: 40px;
    left: -90px;
  }
  
  .product-suggestions-wrapper .extend-content {
    margin-left: -15px;
    margin-right: -15px;
  }
}

/* SMALL LAPTOP */
@media screen and (max-width: 1299px) {
  #module-jmarketplace-sellercatalog .header-middle {
    margin-top: -40px !important;
  }

  #module-jmarketplace-sellerprofile .header-middle h1, 
  #module-jmarketplace-sellercatalog .header-middle h1,
  #module-jmarketplace-sellerprofile .header-middle p, 
  #module-jmarketplace-sellercatalog .header-middle p {
    width: 100%;
    max-width: 100%;
  }
}


/* TABLET LANDSCAPE */
@media screen and (max-width: 1199px) {
  #header .header-top .main-menu li {
    padding: 0 10px;
  }

  #header .header-middle {
    margin-top: 100px;
  }

  #module-jmarketplace-sellerprofile .header-middle,
  #module-jmarketplace-sellercatalog .header-middle {
    margin-top: 0 !important;
  }

  .negozio-container {
    margin: 0 0 30px 0;
  }

  .negozio-category {
    left: 45px;
    max-width: calc(100% - 90px);
  }
}

/* TABLET PORTRAIT */
@media screen and (max-width: 991px) {
  #header .hero-slider .slick-arrow.mobile-arrow-left {
    left: 10px;
  }
  #header .hero-slider .slick-arrow.mobile-arrow-right {
    right: 10px;
  }

  #category main:not(#eventi) #header .header-top > .search-outer {
    margin-top: 60px;
  }

  #header .mobile-menu-content {
    display: flex;
    flex-direction: row-reverse;
    width: 200vw;
    min-width: 200vw;
    overflow-x: hidden;
    margin-bottom: 20px;
    transition: all 0.3s;
  }
  #header .mobile-menu-content.shop-shown {
    transform: translateX(-100vw);
  }
  #header .main-menu-mobile {
    min-width: 100vw;
  }

  #header .overlay-shop {
    padding-top: 0;
    border-bottom: none;
  }

  #hide-shop-mobile {
    padding: 0;
    border: none;
    background: transparent;
    filter: brightness(100);
    margin-bottom: 20px;
  }
  #hide-shop-mobile img {
    width: 30px;
    height: 30px;
    object-fit: cover;
  }

  .row.row-item .details .detail-label,
  .row.row-item .details .detail-value { 
    text-align: center;
    border-bottom: none;
    padding: 6px 0px 5px 0px;
  }

  .row.row-item .details .col-lg-2:not(:first-child) {
    margin-top: 20px;
  }

  .details .col-lg-2:last-child {
    margin-bottom: 20px;
  }

  .extend-content {
    margin-left: 0;
    margin-right: 0;
  }

  .title-link-right a {
    right: 15px;
  }

  .content.internal {
    padding: 0 20px;
  }

  .d-lg-block {
    display: none;
  }

  #header,
  #header.is-open, #header.is-open .header-top {
    background-color: transparent;
  }

  #header .header-top nav {
    padding-left: 30px;
    padding-right: 30px;
  }
  
  #header.sticky .header-top nav {
    padding: 15px 30px;
  }

  #header .header-top .logo img {
    width: 180px;
    min-width: 120px;
  }

  #header .header-top .right-menu a {
    margin-left: 15px;
  }

  #header .main-menu,
  #header .right-menu a:not(.mobile-menu),
  #header .header-top .pre-header {
    display: none !important;
  }

  #header .right-menu a.show-mobile-overlay {
    display: block !important;
    opacity: 0;
    pointer-events: none;
  }

  #header.overlay-visible .right-menu .show-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  #header .right-menu #_desktop_cart .header {
    display: none;
  }

  #header.overlay-visible .right-menu #_desktop_cart .header,
  #header.overlay-visible .right-menu #_desktop_cart a,
  #header.overlay-visible .right-menu .user-info a {
    display: inline !important;
  }

  #header .header-middle {
    margin: 50px 45px;
  }
  #header .hero-slider .header-middle {
    left: 0;
    transform: translateY(-50%);
    margin: 0 60px;
    width: calc(100vw - 120px);
  }

  #header .header-middle .subtitle {
    letter-spacing: normal;
    font-size: 14px;
  }

  #header .header-middle .h1,
  #header .header-middle h1 {
    width: 100%;
    font-size: 32px;
  }

  #header .header-middle p {
    max-width: 100%;
  }

  .content {
    margin: 0 30px 100px 30px;
  }

  .content-internal {
    padding-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
  }

  #cart #consigli {
    margin-left: 30px;
    margin-right: 30px;
  }

  .content.internal {
    padding: 0 15px;
  }

  footer {
    margin-left: 30px;
    margin-right: 30px;
  }

  .main-footer {
    display: block;
    padding: 30px 0 0 0;
  }

  .footer-col,
  footer .social-col {
    margin-left: 0 !important;
    margin-bottom: 30px;
    width: 100%;
  }

  .footer-col h4 {
    margin-bottom: 15px;
  }

  footer .social {
    max-width: 150px;
  }

  .footer-legals {
    padding: 20px 0;
    text-align: left;
  }

  .footer-legals span {
    padding: 0 12px 0 0;
  }

  footer.account-footer .main-footer,
  footer.account-footer .footer-legals {
    margin-left: 30px;
    margin-right: 30px;
  }

  .title-line {
    display: none;
  }

  .header-spacer {
    height: 50px;
  }

  section,
  #index section {
    margin-top: 50px;
  }

  section#js-checkout-summary {
    margin-top: 0;
  }

  #header .header-top .search-outer {
    max-width: calc(100% - 60px) !important;
  }

  #negozi #header .header-top > .search-outer, 
  #category main:not(#eventi) #header .header-top > .search-outer,
  #search #header .header-top > .search-outer {
    max-width: calc(100vw - 60px) !important;
    margin-top: 60px;
  }

  #search.page-not-found .search-outer {
    max-width: 100%;
  }

  #header .header-top .search .search-category-wrapper,
  #header .header-top .search label,
  #search.page-not-found .search .search-category-wrapper,
  #search.page-not-found .search label {
    display: none;
  }

  #header .header-top .search input,
  #search.page-not-found .search input {
    font-size: 18px;
    font-weight: 600;
  }

  #header .header-top .search .search-product-wrapper,
  #search.page-not-found .search .search-product-wrapper {
    width: calc(100% - 84px);
  }

  #header .header-top .search .search-submit,
  #search.page-not-found .search .search-submit {
    margin-left: 20px;
  }

  #header .overlay-categories {
    margin: 0 30px;
    padding: 35px 15px 30px 15px;
  }

  #header .overlay-block {
    margin-bottom: 10px !important;
  }

  #header .overlay-block.has-submenu::after,
  #header .overlay-block.has-subcategories::after {
    content: "";
    background-image: url(../icons/arrow_select.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    filter: brightness(100) grayscale(1);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  #header .overlay-block.has-subcategories::after {
    transform: rotate(-90deg);
  }

  #header .overlay-block.has-submenu.opened::after {
    transform: rotate(180deg);
  }

  #header .overlay-block.has-submenu .overlay-title {
    pointer-events: none;
  }

  #header .overlay-block.has-submenu ul {
    display: none;
    margin-top: 15px;
    margin-bottom: 5px;
  }

  #header .overlay-footer {
    margin: 35px 30px;
    padding: 0 15px 30px 15px;
  }

  #header .overlay-footer .overlay-title {
    line-height: 20px;
  }

  .title-with-line {
    display: block;
  }

  .title-with-line h2 {
    color: var(--grigio-scuro);
    font-size: 28px;
    margin-right: 0;
    text-align: center;
  }
  
  .mobile-carousel {
    margin-left: 30px;
    margin-right: 30px;
  }

  .mobile-carousel .slick-list {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
    border-radius: 20px;
    background-color: #fff;
  }

  .product-suggestions-wrapper .mobile-carousel .slick-list {
    background-color: transparent;
  }

  .product-suggestions-wrapper .extend-content {
    margin-left: 30px;
    margin-right: 30px;
  }

  .mobile-carousel .slick-slide.slick-current {
    z-index: 1;
  }

  .cart-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .cart-left, .checkout-left {
    padding: 0 0 30px 0;
  }

  .cart-item .cart-item-img {
    width: 180px;
    margin-right: 15px;
  }

  .cart-item .cart-item-text {
    max-width: 85%;
  }

  .cart-item .description {
    display: none;
  }

  .qty-wrapper {
    height: 35px;
  }

  .qty-wrapper button {
    width: 35px;
  }

  .qty-wrapper input {
    width: 30px;
  }

  .cart-suggestions-wrapper {
    background-color: var(--background-alternate);
    margin-top: 50px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 35px 30px 80px 30px;
  }

  .product-top,
  .associazione-top {
    margin-top: 20px;
  }

  .product-top .product-thumbnails .slick-arrow,
  .product-top .product-images .slick-arrow,
  .associazione-top .associazione-thumbnails .slick-arrow {
    display: none !important;
  }

  .product-top .product-thumbnails .slick-dots,
  .product-top .product-active .slick-dots
  .associazione-top .associazione-thumbnails .slick-dots {
    bottom: 10px;
    color: var(--grigio);
  }

  .product-top .product-thumbnails .slick-dots li:not(.slick-active),
  .product-top .product-images .slick-dots li:not(.slick-active),
  .associazione-top .associazione-thumbnails .slick-dots li:not(.slick-active) {
    display: none;
  }

  .product-top .product-info,
  .associazione-top .associazione-info {
    padding-left: 15px;
  }

  .product-top select.attr-select {
    background-size: 12px;
    background-position-x: calc(100% - 15px);
  }

  .product-top .qty-wrapper {
    border: 1px solid var(--grigio-chiaro);
  }

  .product-top .qty-wrapper .cart-qty-decrease {
    border-right: 1px solid var(--grigio-chiaro);
  }

  .product-top .qty-wrapper .cart-qty-increase {
    border-left: 1px solid var(--grigio-chiaro);
  }

  .product-details-wrapper,
  .associazione-details-wrapper {
    margin-top: 40px;
  }

  .product-details-wrapper .product-details,
  .associazione-details-wrapper .associazione-details {
    width: 100%;
  }

  .onlus-price-wrapper {
    justify-content: space-between;
  }

  .onlus-price-wrapper .onlus-price {
    width: 50%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .onlus-price-wrapper label {
    height: 110px;
    width: 90%;
    padding-top: 65px;
  }

  .event-center {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .event-left, .event-center, .event-right {
    margin-bottom: 50px !important;
  }

  .working-hours > p {
    padding: 0;
  }

  #single-event .text-wrapper,
  #store .text-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  #store {
    margin-top: 0;
  }

  .negozio-right {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -2;
    order: -2;
    margin-left: -15px;
    margin-right: -15px;
    width: 100vw;
    padding: 30px;
    background-color: var(--background-alternate);
  }

  .negozio-right img {
    width: 35%;
  }

  .negozio-center {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 50px !important;
    margin-top: 30px;
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
  }

  .negozio-left {
    padding: 0;
    margin-left: 15px;
    margin-right: 15px;
  }

  .negozio-order-col {
    padding: 0;
  }
  
  #module-jmarketplace-sellerprofile .hours table {
    width: calc(100% - 5.4pt) !important;
  }

  #module-jmarketplace-sellerprofile table tr td {
    background-color: transparent;
  }

  .curtain-select-holder.curtain-select-open .select-list-wrapper {
    width: 250px;
  }

  #module-jmarketplace-sellercatalog .content-internal {
    padding-top: 0;
  }

  .seller-catalog-top {
    flex-wrap: wrap;
  }

  .seller-catalog-description {
    margin-right: 0;
  }

  section#sellercatalog {
    margin-top: 0;
  }

  #eventi .header-top > .search {
    margin-bottom: 50px;
  }

  #eventi #header .header-middle {
    margin-bottom: 20px;
  }

  #eventi .header-middle h2 {
    margin-bottom: 25px;
    font-size: 22px;
  }

  #eventi .event-start,
  #eventi .event-end {
    font-size: 16px;
  }

  #eventi .event-start .day,
  #eventi .event-end .day {
    font-size: 36px;
  }

  #eventi .next-event .event-name {
    font-size: 32px;
    line-height: 32px;
    max-width: 100%;
    margin-top: 15px;
  }

  #eventi .past-event {
    padding: 30px;
    margin-bottom: 30px;
    height: calc(50vw - 60px);
  }

  #eventi .past-event .event-dates {
    font-size: 16px;
    margin-bottom: 5px;
  }

  #eventi .past-event .event-name {
    font-size: 32px;
    line-height: 36px;
  }


  #header .hero-slider,
  #header .header-bg-home {
    height: 55vh;
  }
  #header .hero-slider .slick-dots {
    display: none !important;
  }

  #header .header-bottom {
    margin: -40px 60px 0 60px;
    padding: 0 10px;
  }

  #header .header-bottom.mobile-carousel .slick-list {
    border-radius: 7px;
  }

  #header .header-bottom .header-box {
    padding: 15px 10px 25px 10px;
  }

  .cat-evid-grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .cat-evid-grid-container.mobile-carousel .slick-list {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    background-color: transparent;
  }

  .why-seller-container > .row {
    margin: 0 15px;
  }

  .why-seller-container {
    margin-left: -30px;
    margin-right: -30px;
  }

  .why-ad {
    margin: 0 25px 30px 25px;
  }

  .why-img {
    height: 250px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 20px;
  }

  .why-text {
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
  }

  .why-text h4 {
    word-break: break-word;
  }

  .mobile-carousel .associazione-container {
    margin-bottom: 20px !important;
    min-height: unset;
    height: calc(50vw - 120px) !important;
  }

  .why-call-left {
    padding-right: 0;
    margin: 0 15px 30px 15px;
  }

  .mobile-carousel .consigli-item {
    margin-bottom: 20px !important;
  }

  .checkout-wrapper {
    margin-left: 0;
    margin-right: 0;
  }

  .checkout-steps .checkout-step.active {
    border-bottom: 7px solid var(--azzurro-scuro);
  }

  .checkout-wrapper .checkout-step-container {
    margin: 20px 0;
  }

  .checkout-wrapper #checkout-personal-information-step .checkout-info-button {
    padding: 10px 0;
  }

  .checkout-wrapper .input-wrapper {
    margin-bottom: 10px;
  }

  .checkout-wrapper #no-register .no-register-buttons .login {
    display: none;
  }

  .checkout-wrapper .shipping-info {
    border: none;
  }

  .checkout-wrapper .shipping-info-map {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    height: 150px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }

  .checkout-wrapper .shipping-method input[type="radio"],
  .checkout-wrapper .payment-method input[type="radio"] {
    border: 1px solid var(--grigio-chiaro);
  }

  .checkout-wrapper .shipping-method .shipping-name,
  .checkout-wrapper .payment-method .payment-name {
    color: var(--grigio);
  }

  .checkout-wrapper .shipping-method .shipping-timing,
  .checkout-wrapper .payment-method .payment-description,
  .checkout-wrapper .shipping-method .shipping-free,
  .checkout-wrapper .shipping-method .shipping-price {
    color: var(--grigio-chiaro);
  }

  .checkout-wrapper .shipping-method input[type="radio"]:checked,
  .checkout-wrapper .payment-method input[type="radio"]:checked {
    border: 1px solid var(--grigio-scuro);
  }

  .checkout-wrapper .shipping-method.selected .shipping-name,
  .checkout-wrapper .payment-method.selected .payment-name,
  .checkout-wrapper .shipping-method.selected .shipping-free {
    color: var(--nero);
  }

  .checkout-wrapper .shipping-method.selected .shipping-timing,
  .checkout-wrapper .payment-method.selected .payment-description {
    color: var(--grigio);
  }

  .checkout-wrapper .shipping-method.selected .shipping-price {
    color: var(--azzurro-scuro);
  }

  .checkout-wrapper .shipping-method-container,
  .checkout-wrapper .shipping-method-container > div,
  .checkout-wrapper .payment-methods-container {
    margin-bottom: 15px;
  }

  .checkout-wrapper .shipping-actions div:nth-child(2),
  .checkout-wrapper .payment-actions div:nth-child(2),
  .checkout-wrapper .confirm-actions div:nth-child(2) {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 15px;
  }

  .checkout-wrapper .payment-method .payment-description {
    width: 100%;
  }

  .checkout-wrapper .payment-method .card-logos {
    position: unset;
    margin-top: 15px;
  }
  
  .checkout-wrapper #payment .coupon-wrapper {
    margin-bottom: 25px;
  }

  .checkout-item {
    padding-bottom: 20px;
  }

  .checkout-item:not(:last-of-type) {
    border-bottom: 1px solid var(--grigio-chiaro);
  }

  .checkout-item img {
    -webkit-box-shadow: var(--shadow);
    box-shadow: var(--shadow);
  }

  .checkout-item .item-img-wrapper {
    padding-right: 0;
  }

  .checkout-item .item-name {
    color: var(--azzurro-scuro);
    font-weight: 700;
  }

  .checkout-item .item-price {
    color: var(--azzurro);
    text-align: right;
    margin-top: 15px;
  }

  .checkout-wrapper .cart-totals tr.subtotal-row {
    border-top: none;
  }

  .checkout-wrapper .cart-totals td.shipping {
    padding-bottom: 15px;
  }

  .checkout-wrapper .cart-totals td.total {
    border: none;
  }

  .cart-totals .total {
    color: var(--azzurro);
    font-size: 20px;
  }

  #associazioni .associazione-container {
    min-height: unset;
    height: calc(100vw - 60px);
  }

  .negozio-container {
    height: calc(50vw - 60px);
  }

  h1.title-internal-primary {
    margin-bottom: 40px;
  }

  .ui-autocomplete {
    width: calc(100vw - 60px) !important;
  }

  .facet-dropdown .dropdown-menu,
  .brands-sort .dropdown-menu, 
  .products-sort-order .dropdown-menu, 
  .suppliers-sort .dropdown-menu {
    min-width: 100%;
    width: 100%;
    position: relative !important;
    top: -30px !important;
    border-top-right-radius: 0;
  }

  #search_filters .dropdown.products-sort-order {
    margin-bottom: 16px;
  }

  .orderby-selection .sort-by {
    margin: 0;
  }


  #product .title-with-line h2 {
    color: var(--azzurro-scuro);
    text-align: left;
  }

  #product .product-suggestions-wrapper h2 {
    text-align: center;
  }

  .page-not-found .search-outer {
    width: 100%;
  }

  #search #js-product-list {
    margin-left: 0;
    margin-right: 0;
  }

  textarea, input {
    -webkit-appearance: none;
  }

  #registrazione-negozio .header-middle, 
  #registrazione-associazione .header-middle {
    margin: 80px 30px 10px 30px;
  }

  #registrazione-negozio .content.internal, 
  #registrazione-associazione .content.internal {
    padding: 0;
  }

  #registrazione-negozio section, 
  #registrazione-associazione section {
    margin-top: 20px;
  }

  .form-shadow {
    padding: 20px 25px;
  }

  #module-jmarketplace-sellerprofile #header, 
  #module-jmarketplace-sellercatalog #header {
    height: 433px;
  }

  .slideshow-container {
    height: 100%;
    overflow: hidden;
  }

  .slideHeaderMerchant {
    height: 100%;
  }

  .slideHeaderMerchant img {
    width: auto !important;
    height: 100%;
    transform: translateX(calc((100vw - 100%) / 2));
  }

  .prevSlideMerchant, .nextSlideMerchant {
    padding: 2px;
    font-size: 12px;
    width: 22px;
  }

  .prevSlideMerchant {
    left: 4px;
  }

  .nextSlideMerchant {
    right: 4px;
  }

  .title-404 {
    width: 100%;
  }

  #sellermenu > li {
    margin-bottom: 20px;
  }

  #contact .contact-form,
  #contact .form-fields {
    margin-top: 0;
  }

  h1.title-internal-account {
    margin-left: 45px;
  }

  .page-my-account #content .links {
    margin-top: 0;
  }

  #header .header-bottom .header-box p {
    bottom: 35px;
  }

  #header .header-bottom .header-box span {
    bottom: 10px;
  }

  .cart-item .qty-wrapper input.no-increase-qty ~ .input-group-btn-vertical .js-increase-product-quantity:hover::after {
    content: "Hai già la quantità massima disponibile \a per questo prodotto.";
    text-align: left;
    top: 40px;
    left: unset;
    right: -130px;
    white-space: pre;
  }

  .results-wrapper {
    padding-top: 15px;
  }

  #module-jmarketplace-sellercatalog .sort-by .dropdown-menu {
    width: calc(100% - 9px);
    top: -2px !important;
  }
  
  #module-jmarketplace-sellercatalog .catalog-facet .sort-by .dropdown-menu {
    width: calc(100% - 1px);
  }

  #module-jmarketplace-sellercatalog #content {
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .sellercatalog-footer {
    margin-top: 35px;
  }

  #seller-featured-products {
    margin-top: 40px;
  }

  #module-jmarketplace-sellerprofile .title-with-line {
    display: flex;
  }

  #module-jmarketplace-sellerprofile .title-with-line h2 {
    color: var(--azzurro);
    margin-right: 20px;
  }

  #module-jmarketplace-sellerprofile .title-with-line .title-line {
    display: block;
  }

  .seller-categories .categories-wrapper .seller-cat {
    width: calc(100% / 6);
  }

  #module-jmarketplace-sellercatalog .back-to-seller-profile {
    margin-top: 40px;
  }

  #category .category-facet.category-hierarchy-mobile {
    display: block;
  }

  #category .category-facet:not(.category-hierarchy-mobile) {
    display: none;
  }
}

/* MOBILE */
@media screen and (max-width: 767px) {
  #header .header-bottom {
    padding: 0;
  }
  #header .header-bottom .header-box .home-card {
    font-size: 20px;
  }

  #search_filters_wrapper{
    margin-left: -30px;
    margin-right: -30px;
  }

  #category #left-column #search_filter_controls{
    text-align: center;
    margin-bottom: 1rem;
  }

  #category #left-column #search_filter_controls button{
    margin: 0 .5rem;
  }

  #category #left-column #search_filters{
    margin-bottom: 0;
    box-shadow: none;
    padding: 0;
    border-top: 1px solid #f6f6f6;
  }

  #category #left-column #search_filters .facet{
    padding-top: 0;
    border-bottom: 1px solid #f6f6f6;
  }

  #category #left-column #search_filters .facet .title{
    cursor: pointer;
  }

  #category #left-column #search_filters .facet .title .collapse-icons .remove,#category #left-column #search_filters .facet .title[aria-expanded=true] .collapse-icons .add{
    display: none;
  }

  #category #left-column #search_filters .facet .title[aria-expanded=true] .collapse-icons .remove{
    display: block;
  }

  #category #left-column #search_filters .facet .facet-title{
    color: #232323;
    text-transform: uppercase;
  }

  #category #left-column #search_filters .facet .h6{
    margin-bottom: 0;
    padding: .625rem;
    display: inline-block;
  }

  #category #left-column #search_filters .facet .navbar-toggler{
    display: inline-block;
    padding: .625rem .625rem 0 0;
  }

  #category #left-column #search_filters .facet .collapse{
    display: none;
  }

  #category #left-column #search_filters .facet .collapse.in{
    display: block;
  }

  #category #left-column #search_filters .facet .facet-label a{
    margin-top: 0;
  }

  #category #left-column #search_filters .facet ul{
    margin-bottom: 0;
  }

  #category #left-column #search_filters .facet ul li{
    border-top: 1px solid #f6f6f6;
    padding: .625rem;
  }

  #category #content-wrapper,#category #search_filter_toggler{
    width: 100%;
  }

  .products-sort-order .select-title{
    margin-left: 0;
  }

  .products-selection h1{
    padding-top: 0;
    text-align: center;
    margin-bottom: 1rem;
  }

  .products-selection .showing{
    padding-top: 1rem;
  }

  #best-sales #content-wrapper,#new-products #content-wrapper,#prices-drop #content-wrapper{
    width: 100%;
  }

  body#checkout section.checkout-step {
    padding: 0;
  }

  body#checkout section.checkout-step .address-item {
    flex: auto;
  }

  .form-container-right {
    padding-left: 16px;
    padding-right: 16px;
  }

  .form-container-left {
    padding-right: 16px;
  }

  .negozio-category {
    left: 40px;
    top: 25px;
    max-width: calc(100% - 80px);
  }

  .negozio-container {
    height: calc(50vw - 30px);
    min-height: unset;
    background-position: center;
  }

  .negozio-container .negozio-name {
    left: 25px;
    right: 25px;
    bottom: 55px;
  }

  .negozio-container .enter-seller {
    bottom: 30px;
    right: 30px;
  }

  #eventi .past-event {
    height: calc(100vw - 60px);
  }
  
  .product-top .product-gallery,
  .product-top .product-cover,
  .associazione-top .associazione-gallery {
    display: none;
  }
  
  .product-top .item-thumb,
  .associazione-top .item-thumb,
  .product-top .item-thumb img, 
  .product-top li.thumb-container .thumb,
  .associazione-top .item-thumb img {
    border-radius: 0;
  }
  
  .product-top .product-thumbnails,
  .product-top .images-container .js-qv-mask,
  .associazione-top .associazione-thumbnails {
    margin-left: -30px !important;
    margin-right: -30px !important;
    width: 100vw !important;
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .product-top .slick-dots {
    bottom: -20px;
  }

  .product-top .product-images {
    border-radius: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    max-height: calc(100vw - 30px) !important;
  }

  .product-top section.page-content {
    margin-top: 0;
  }
  
  .product-top h1,
  .associazione-top h1 {
    color: var(--azzurro);
  }

  .product-suggestions-wrapper {
    background-color: var(--background-alternate);
    margin-top: 50px;
    margin-left: -30px;
    margin-right: -30px;
    padding: 35px 30px 80px 30px;
  }

  .top-seller-container {
    margin-top: 30px !important;
  }

  .mobile-carousel .top-seller-item {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
  }

  .mobile-carousel .col-md-3 {
    margin-bottom: 0;
    padding: 0;
  }

  .mobile-carousel .associazione-container {
    border-radius: 0;
    height: calc(100vw - 120px) !important;
    margin-bottom: 0 !important;
    margin-left: -15px;
    margin-right: -15px;
  }

  .ass-cat {
    left: 20px;
  }

  #negozi .ass-cat {
    left: 40px;
  }

  #consigli .top-seller-item {
    padding: 10px;
  }

  #consigli .top-seller-bottom {
    width: calc(100% - 20px);
  }

  #consigli .top-seller-item img {
    margin-top: 10px;
  }

  #header .header-bottom .header-box {
    padding: 15px 20px 25px 20px;
  }

  .cat-evid-grid-container.mobile-carousel .slick-list {
    width: calc(100vw - 120px);
  }

  .cat-flex-child:first-child {
    padding: 10px;
  }

  .cat-flex-child img {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(13,50,86,0.2);
    box-shadow: 0px 0px 20px 0px rgba(13,50,86,0.2);
    border-radius: 20px;
  }

  #index #top-seller,
  #index #associazioni,
  #index #consigli {
    margin-top: 50px;
  }

  #index .associazioni-container {
    margin-top: 30px;
  }
  
  #eventi .next-event {
    padding: 30px;
    margin-bottom: 30px;
    height: calc(100vw - 60px);
  }

  #eventi .next-event .event-info {
    width: calc(100% - 60px);
    bottom: 90px;
  }

  #eventi .event-link {
    left: 30px;
    right: unset;
    bottom: 30px;
  }

  .first-info .left-image, 
  .first-info .right-image {
    width: 50%;
  }

  .second-info .right-image {
    margin-left: 0px;
    width: 100%;
    max-width: 100%;
  }

  .second-info .left-image {
    margin-left: 0px;
    width: 100%;
  }

  .second-info .left-image img {
    width: 100%;
  }

  #chi-siamo .header-middle,
  #cos-e-la-seregnostore-card .header-middle, 
  #welfare-aziendale-con-la-card-di-seregnostore .header-middle,
  #welfare-aziendale-di-prossimita-con-seregnostore .header-middle,
  #diventa-esercente-convenzionato-seregnostore .header-middle {
    justify-content: space-between;
    margin: 70px 30px 0 30px;
  }

  #chi-siamo section > .row {
    margin-left: -30px;
    margin-right: -30px;
  }

  .paragraph-subtitle {
    color: var(--azzurro) !important;
    margin-top: 0;
  }

  h2.paragraph-title {
    margin-bottom: 20px;
  }

  p.with-separator {
    padding-bottom: 30px;
    margin-bottom: 23px;
  }

  .first-info {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .banner-wrapper {
    margin-right: -45px !important;
    margin-left: -45px !important;
    margin-top: 10px !important;
  }

  .banner-text {
    padding: 40px 30px;
    border-radius: 0;
  }

  .banner-text h2 {
    font-size: 24px;
  }

  .banner-img {
    border-radius: 0;
    height: 100vw;
  }

  .second-info ul {
    margin-top: 20px;
    margin-left: 25px;
  }

  .second-info .images-wrapper {
    margin-top: 30px;
  }

  .icon-info .icon {
    background-color: var(--azzurro-scuro);
  }

  #authentication .login-wrapper,
  #authentication .register-form {
    margin-top: 0;
  }

  .js-customer-form .input-wrapper, 
  .js-address-form .input-wrapper,
  #login-form .input-wrapper {
    margin-bottom: 20px;
  }

  #password #content,
  #password .forgotten-password,
  #password .form-fields {
    margin-top: 0;
  }

  .forgotten-password .form-fields .email {
    padding-left: 0;
    padding-right: 0;
  }

  #history .orders {
    padding: 0 25px;
  }

  #history .orders .order {
    border-bottom: 1px solid var(--grigio-chiaro);
    padding: 25px 0;
  }
  
  #history .orders a {
    color: var(--azzurro);
  }

  #history .orders .order a h3 {
    color: var(--grigio-scuro);
    font-weight: 600;
  }

  #history .orders .order .status {
    margin-top: 5px;
  }

  #history .orders .order .status .label {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
  }

  #header .header-bottom .header-box p {
    bottom: 30px;
  }

  #header .header-bottom .header-box span {
    bottom: 15px;
  }

  #header .header-middle {
    margin: 50px 30px;
  }
  #header .hero-slider .header-middle {
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    width: calc(100vw - 80px);
  }
  #header .hero-slider .slick-arrow.mobile-arrow-left {
    left: 4px;
    padding: 12px 6px;
  }
  #header .hero-slider .slick-arrow.mobile-arrow-right {
    right: 4px;
    padding: 12px 6px;
  }
  #header .hero-slider .slick-arrow img {
    width: 16px;
  }

  #negozi #header .header-top > .search-outer, 
  #category main:not(#eventi) #header .header-top > .search-outer,
  #search #header .header-top > .search-outer {
    margin-left: -10px;
  }

  .mobile-carousel .see-all-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-carousel .see-all-mobile a {
    background-color: var(--azzurro);
    color: #fff;
    font-family: 'Quicksand', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    padding: 6px 25px;
    border-radius: 16px;
    letter-spacing: 1.2px;
    transition: all 0.2s;
  }
  .mobile-carousel .see-all-mobile a:hover {
    color: #acc6df !important;
  }

  .why-text h4 {
    font-size: 24px;
  }

  .cat-evid-grid-container .carousel-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-carousel .consigli-item {
    margin-bottom: 0 !important;
  }
  
  .title-link-right a {
    display: none;
  }

  #module-jmarketplace-sellercatalog .sort-by .dropdown-menu {
    width: calc(100% - 10px);
  }

  #module-jmarketplace-sellercatalog .catalog-facet .sort-by .dropdown-menu {
    width: 100% !important;
  }

  .cat-flex-child:nth-child(2) a {
    word-break: break-word;
  }

  #header .search-catalog-wrapper {
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
  }

  .seller-categories .categories-wrapper .seller-cat {
    width: calc(100% / 2);
  }

  #module-jmarketplace-sellerprofile .mobile-carousel .slick-slide {
    padding: 0;
    margin-bottom: 0 !important;
  }

  #module-jmarketplace-sellercatalog .top-seller-item,
  #js-product-list .top-seller-item,
  #single-event .top-seller-item {
    display: flex;
    padding: 0;
  }

  #module-jmarketplace-sellercatalog .top-seller-item .image-wrapper,
  #js-product-list .top-seller-item .image-wrapper,
  #single-event .top-seller-item .image-wrapper {
    width: 50%;
  }

  #module-jmarketplace-sellercatalog .top-seller-item .image-wrapper img,
  #js-product-list .top-seller-item .image-wrapper img,
  #single-event .top-seller-item .image-wrapper img {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  #module-jmarketplace-sellercatalog .top-seller-item .text-wrapper,
  #js-product-list .top-seller-item .text-wrapper,
  #single-event .top-seller-item .text-wrapper {
    width: 50%;
    padding: 20px;
  }

  #module-jmarketplace-sellercatalog .top-seller-item .shop,
  #js-product-list .top-seller-item .shop,
  #single-event .top-seller-item .shop {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 14px;
  }

  #module-jmarketplace-sellercatalog .top-seller-item h4,
  #js-product-list .top-seller-item h4,
  #single-event .top-seller-item h4 {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #module-jmarketplace-sellercatalog .top-seller-item .top-seller-bottom a,
  #js-product-list .top-seller-item .top-seller-bottom a {
    display: none;
  }

  #module-jmarketplace-sellercatalog .top-seller-item .top-seller-bottom .regular-price,
  #js-product-list .top-seller-item .top-seller-bottom .regular-price {
    font-size: 13px;
  }
}

@media screen and (max-width: 575px) {
  .products-selection .filter-button{
    padding-left: 0;
  }

  #category #left-column #search_filters_wrapper{
    margin-left: -15px;
    margin-right: -15px;
  }

  .cart-item .qty-wrapper input {
    height: 35px;
    width: 35px;
    margin-left: 35px;
  }

  .cart-item .qty-wrapper .input-group-btn-vertical .btn {
    height: 35px;
    width: 35px;
  }

  .cart-item .qty-wrapper .input-group-btn-vertical .btn.bootstrap-touchspin-down {
    left: -68px;
  }

  h1.title-internal-primary {
    font-size: 40px;
  }

  .page-addresses .addresses-footer {
    height: 230px;
  }

  .checkout-steps .checkout-step {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #contact #content-wrapper, 
  #contact #left-column {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  #module-jmarketplace-sellerprofile .header-middle h1, 
  #module-jmarketplace-sellercatalog .header-middle h1 {
    font-size: 36px !important;
  }

  #module-jmarketplace-sellerprofile .header-middle p, 
  #module-jmarketplace-sellercatalog .header-middle p {
    font-size: 15px;
  }
}

@media screen and (max-width: 360px) {
  .curtain-select-holder.curtain-select-open .select-list-wrapper {
    width: 100% !important;
  }

  #eventi .next-event,
  #eventi .past-event {
    padding: 25px;
  }

  #eventi .next-event .event-info {
    bottom: 65px;
  }

  #eventi .event-start, 
  #eventi .event-end {
    font-size: 14px;
  }

  #eventi .event-start .day, 
  #eventi .event-end .day {
    font-size: 32px;
  }

  #eventi .next-event .event-name {
    font-size: 28px;
    margin-top: 5px;
  }

  #eventi .event-link {
    padding: 4px 20px;
    left: 25px;
    bottom: 25px;
  }

  #eventi .past-event .event-info {
    bottom: 60px;
  }

  #eventi .past-event .event-name {
    font-size: 28px;
  }

  #eventi .past-event a {
    bottom: 30px;
    right: 30px;
  }

  .cart-item .cart-item-text {
    margin-bottom: 90px;
  }

  .cart-item .cart-item-bottom > div:nth-of-type(2) {
    width: 100%;
    margin-top: 10px;
  }

  h1.title-internal-primary {
    font-size: 30px;
  }

  #header .header-top .search .search-product-wrapper {
    width: calc(100% - 64px);
  }

  #header .header-top .search input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #header .header-top .search .search-submit {
    margin-left: 0;
  }

  .checkout-steps .checkout-step {
    font-size: 12px;
  }
}


/* WIDE DESKTOP */
@media screen and (min-width: 1800px) {
  #header .overlay-categories,
  #cart #consigli {
    margin: 0 20%;
  }

  #header .overlay-footer {
    margin: 20px 20% 50px 20%;
  }

  #header .header-middle {
    margin: 50px 20% 100px 20%;
  }

  #header .hero-slider .header-middle {
    margin: 0 20%;
  }
  #header .header-bottom {
    margin: -50px 20% 0 20%;
  }

  #module-jmarketplace-sellercatalog .header-middle {
    margin-top: calc(((100vw * 0.20) - 250px) / 2) !important;
  }

  footer {
    margin-left: 20%;
    margin-right: 20%;
  }

  footer.account-footer .main-footer {
    margin-left: 20%;
    margin-right: 20%;
  }

  .content-internal {
    margin-left: 20%;
    margin-right: 20%;
  }

  .content {
    margin: 0 20% 100px 20%;
  }

  .why-seller-container > .row {
    margin: 0 20%;
  }

  .why-seller-container {
    margin-left: calc(-100vw * 0.2);
    margin-right: calc(-100vw * 0.2);
    }

  #eventi .header-middle {
    margin: 100px 20%;
  }
}


/* @-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
} */

#module-jmarketplace-sellerorder .modal-backdrop {
  display: none;
}
#module-jmarketplace-sellerorder #sendMessage.fade.in {
  display: block !important;
  background: rgba(0,0,0,0.4);
}
#module-jmarketplace-sellerorder #sendMessage form {
  height: 100%;
}
#module-jmarketplace-sellerorder #sendMessage .modal-dialog {
  top: 50%;
  transform: translate(0, -50%);
}
#module-jmarketplace-sellerorder #sendMessage .modal-dialog .modal-header {
  align-items: center;
}
#module-jmarketplace-sellerorder #sendMessage .modal-dialog button.close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto !important;
}
#module-jmarketplace-sellerorder #sendMessage .modal-dialog .form-group {
  margin-bottom: 20px;
}
#module-jmarketplace-sellerorder #sendMessage .modal-dialog .bootstrap-filestyle input {
  flex: unset;
  width: calc(100% - 110px);
}

.ad-horizontal {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
}
.ad-horizontal img {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 991px) {
  #header .header-top .right-menu a.mobile-menu-open {
    margin-left: 0;
  }
  #header .header-top .right-menu .slide-searchbar {
    display: block !important;
  }
  #header .sliding-searchbar {
    top: 40px;
  }
  #cms .header-bg::before {
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
  }
  #header .main-menu-mobile a:hover,
  #header .overlay-block .overlay-item:hover {
    color: #acc6df !important;
  }
}
@media screen and (max-width: 767px) {
  .ad-horizontal img {
    display: block;
    max-width: 300px;
  }
  #header .header-gradient {
    padding-top: 100px;
  }
  .content.internal.chi-siamo {
    padding: 0;
  }
  #welfare-aziendale-con-la-card-di-seregnostore .header-bg,
  #welfare-aziendale-di-prossimita-con-seregnostore .header-bg,
  #diventa-esercente-convenzionato-seregnostore .header-bg,
  #faq .header-bg {
    background-position: 65% center;
  }
}
@media screen and (max-width: 767px) {
  .datetimepicker {
    width: calc(100vw - 60px);
  }
  .datetimepicker table {
    width: 100%;
  }
}

.about-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.about-section.bg-azure,
.about-section.bg-grey,
.about-section.bg-azure-darker {
  margin: 0 -10vw;
  padding-left: 10vw;
  padding-right: 10vw;
}
.about-section.bg-azure {
  background: var(--azzurro-bg);
}
.about-section.bg-grey {
  background: #f5f5f5;
}
.about-section.bg-azure-darker {
  background: #DBF9FF;
}
@media screen and (min-width: 1800px) {
  .about-section.bg-azure,
  .about-section.bg-grey,
  .about-section.bg-azure-darker {
    margin: 0 -20vw;
    padding-left: 20vw;
    padding-right: 20vw;
  }
}
.about-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--azzurro);
  margin-bottom: 16px;
}
.about-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--azzurro);
  margin-bottom: 16px;
}
.about-section p,
.about-section ul li,
.about-section ol li {
  font-size: 16px;
  color: var(--grigio-scuro);
  margin-bottom: 28px;
}
.about-section p.subtitle {
  font-size: 18px;
  font-weight: 700;
  color: var(--azzurro);
}
.about-section ul {
  list-style: disc;
  padding-left: 20px;
}
.about-section ol {
  padding-left: 20px;
}
.about-section ul li,
.about-section ol li {
  margin-bottom: 16px;
}
.about-section ul li:last-of-type,
.about-section ol li:last-of-type {
  margin-bottom: 0;
}
.about-section ol li::marker,
.about-section ol li b {
  font-weight: 700;
}
.about-section ol.blue-items li::marker,
.about-section ol.blue-items li b {
  color: var(--azzurro);
}
.about-section ul li b {
  font-size: 18px;
}
.about-section a {
  color: var(--grigio-scuro);
}
.about-section img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about-section .benefit {
  text-align: center;
}
.about-section .benefit .img-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 32px;
  margin: 38px auto;
  background: var(--azzurro-chiaro);
  box-shadow: var(--shadow);
}
.about-section .benefit .img-wrapper img {
  box-shadow: none;
  border-radius: 0;
}
.about-section .horizontal-line {
  width: 160px;
  height: 6px;
  margin: 20px 0;
  background: var(--azzurro);
}
.about-section .push-to-bottom {
  padding-top: 90px;
}
.about-section .push-to-middle {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about-section .form-submit-row {
  display: flex;
  align-items: flex-end;
}
.about-section .form-group textarea {
  resize: none;
}
.app-store-banner {
  padding: 56px 90px;
  border-radius: 80px;
  background: #679EC4;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.app-store-banner .row {
  min-height: 250px;
}
.app-store-banner .text-wrapper {
  position: relative;
  z-index: 1;
}
.app-store-banner h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--background-alternate);
  margin-bottom: 12px;
}
.app-store-banner p {
  font-size: 16px;
  color: var(--background-alternate);
  margin-bottom: 28px;
}
.app-store-banner a {
  display: inline-block;
  margin-top: 6px;
  margin-right: 6px;
}
.app-store-banner .img-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 500px;
}
@media screen and (max-width: 991px) {
  .about-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-section .order-mobile-1 {
    order: 1;
  }
  .about-section .mt-mobile {
    margin-top: 28px;
  }
  .about-section .center-mobile {
    text-align: center;
  }
  .app-store-banner {
    padding: 0 24px 70px 24px;
  }
  .app-store-banner .text-wrapper {
    order: 1;
  }
  .app-store-banner .img-card {
    display: block;
    position: unset;
    transform: none;
    width: auto;
    height: 400px;
    margin: auto;
  }
  .about-section .push-to-middle {
    order: -1;
  }
  .about-section .checkbox-wrapper {
    order: 9;
  }
  .about-section .form-submit-row {
    order: 10;
  }
}
@media screen and (max-width: 767px) {
  .app-store-banner .img-card {
    width: calc(100% + 140px);
    height: auto;
    margin-left: -70px;
  }
}

/* --- BLOG --- */
#ets_blog_page #wrapper {
  box-shadow: none;
  padding-top: 100px;
  background: transparent;
}
.ets-blog-wrapper-detail {
  padding: 0;
  margin: 20px 0;
  background: transparent;
}
.ets-blog-wrapper-detail h1 {
  font-size: 50px;
  font-weight: 700;
  color: var(--azzurro);
  margin-bottom: 38px;
}
.ets-blog-wrapper-detail img {
  width: 100%;
}
.ets-blog-wrapper-detail .featured-image {
  border-radius: 12px;
  margin-bottom: 48px;
}
.ets-blog-wrapper-detail .blog-description {
  font-size: 16px;
  color: var(--grigio-scuro);
}
.ets-blog-wrapper-detail .blog-description p,
.ets-blog-wrapper-detail .blog-description li,
.ets-blog-wrapper-detail .blog-description a {
  font-size: 16px;
}
.ets-blog-wrapper-detail .blog-description h2,
.ets-blog-wrapper-detail .blog-description h3,
.ets-blog-wrapper-detail .blog-description h4,
.ets-blog-wrapper-detail .blog-description h5,
.ets-blog-wrapper-detail .blog-description h6 {
  font-weight: 700;
  margin-top: 32px;
}
.ets-blog-wrapper-detail .blog-description > *:first-child {
  margin-top: 0 !important;
}
.ets-blog-wrapper-detail .blog-description img {
  width: 100% !important;
  height: auto !important;
  border-radius: 12px;
}
.ets-blog-wrapper-detail .article-date {
  font-size: 14px;
  font-style: italic;
  color: var(--grigio-scuro);
  margin-top: 32px;
  opacity: 0.7;
}
.ets-blog-wrapper-detail .sharing {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.ets-blog-wrapper-detail .sharing li {
  font-size: 14px;
  font-weight: 700;
}
.ets-blog-wrapper-detail .sharing img {
  width: 24px;
}
#feedbackModal .modal-content {
    border-radius: 20px;
}
#feedbackModal .modal-body {
    padding: 40px;
}
#feedbackModal .modal-body p {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: var(--nero);
    margin-bottom: 0;
}
#ets_blog_page.blog-archive #wrapper {
  padding-top: 35px;
}
.blog-archive #header .header-middle {
  margin-top: 100px;
}
.blog-archive .breadcrumbs {
  display: none;
}
.blog-archive .blog-filters {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 16px;
}
.blog-archive .blog-filters .label {
  font-size: 16px;
  line-height: normal;
  color: var(--nero);
  margin-bottom: 0;
}
.blog-archive .blog-filters .select {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: var(--nero);
  border: none;
  background: transparent;
  cursor: pointer;
}
.blog-archive .blog-filters .select img {
  filter: brightness(0.2);
  transition: all 0.3s;
}
.blog-archive .blog-filters .select.open img {
  rotate: 180deg;
}
.blog-archive .blog-filters .select .filter-list {
  display: none;
  position: absolute;
  width: 200px;
  right: 0;
  top: calc(100% + 10px);
  text-align: end;
  padding: 10px 22px;
  border-radius: 6px;
  background: var(--bianco);
  box-shadow: var(--shadow);
  z-index: 1;
}
.blog-archive .blog-filters .select.open .filter-list {
  display: block;
}
.blog-archive .blog-filters .select .filter-list::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 20px;
  top: -14px;
  border: 7px solid transparent;
  border-bottom: 7px solid var(--bianco);
}
.blog-archive .blog-filters .select .filter-list li a {
  display: block;
  padding: 2px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--grigio);
  transition: all 0.3s;
}
.blog-archive .post-wrapper {
  height: 100%;
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.blog-archive .post-wrapper .ets_item_img {
  display: block;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
}
.blog-archive .post-wrapper img {
  width: 100%;
  aspect-ratio: 290 / 200;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s;
}
.blog-archive .post-wrapper a:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.blog-archive .post-wrapper a {
  transition: all 0.3s;
}
.blog-archive .post-wrapper .date {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
  margin-bottom: 8px;
}
.blog-archive .post-wrapper .ets_title_block {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--nero);
  text-transform: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 16px;
}
.blog-archive .post-wrapper .read_more {
  display: block;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  color: var(--arancio);
  border: none;
  margin-top: 0;
}
.ets_blog_layout_grid {
  padding-bottom: 50px;
}
.ets-blog-list {
  row-gap: 32px;
}
.blog-paggination {
  margin-top: 32px;
}
.blog-paggination .results,
.blog-paggination .frist,
.blog-paggination .prev,
.blog-paggination .next,
.blog-paggination .last {
  display: none !important;
}
.blog-paggination .links {
  display: flex;
  justify-content: center;
}
.blog-paggination .links a {
  border: 1px solid var(--grigio-chiaro);
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  color: #000;
  font-weight: 600;
  transition: all 0.3s;
}
.blog-paggination .links a:hover {
  background-color: #f6f6f6;
}
.blog-paggination .links > b {
  display: flex;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: var(--azzurro-scuro);
  border: 1px solid var(--azzurro-scuro);
  text-align: center;
  font-size: 14px;
  line-height: 35px;
  color: #fff;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  #ets_blog_page #wrapper {
    padding-top: 0;
  }
  #ets_blog_page .breadcrumbs,
  .ets-blog-wrapper-detail {
    padding-left: 15px;
    padding-right: 15px;
  }
  .ets-blog-wrapper-detail h1 {
    font-size: 42px;
    margin-bottom: 24px;
  }
  .ets-blog-wrapper-detail .featured-image {
    margin-bottom: 24px;
  }
  #ets_blog_page.blog-archive #wrapper {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .ets-blog-wrapper-detail h1 {
    font-size: 32px;
  }
  #ets_blog_page #header .header-bg {
    background-position: 80% center;
  }
  .ets-blog-list li {
    padding: 0 30px !important;
  }
  .blog-archive .blog-filters {
    padding: 0 15px;
  }
  .blog-archive .blog-filters .select .filter-list {
    right: 15px;
  }
}

.faq-group {
  margin-bottom: 60px;
}
.faq-group h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #99AFFF;
  margin-bottom: 0;
}
.card.faq {
  padding: 0;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-bottom: 1px solid var(--grigio);
}
.card.faq button {
  position: relative;
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: start;
  color: var(--azzurro);
  padding: 20px 30px 20px 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.card.faq button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.card.faq button[aria-expanded="true"]::after {
  content: "-";
}
.card.faq .faq-answer {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 15px;
  color: var(--grigio-scuro);
}
.card.faq .faq-answer ul {
  list-style: disc;
  padding-left: 20px;
}
.card.faq .faq-answer a {
  color: var(--grigio-scuro);
  transition: all 0.3s;
}
#faq-accordion {
  margin-top: 46px;
}
@media screen and (max-width: 767px) {
  .card.faq button {
    font-size: 18px;
  }
}

#search h1.title-internal-primary {
  margin-bottom: 28px;
}
.search-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.search-tabs button {
  font-size: 14px;
  font-weight: 500;
  color: var(--grigio);
  padding: 10px 20px;
  border-radius: 5px;
  background: transparent;
  border: 1px solid var(--grigio);
  cursor: pointer;
  transition: all 0.3s;
}
.search-tabs button:hover,
.search-tabs button.active {
  border-color: var(--azzurro);
  background: var(--azzurro);
  color: var(--bianco);
}
#search .search-container {
  display: none;
}
#search .search-container.show {
  display: block;
}
#search .search-container .no-results-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--grigio);
}
@media screen and (max-width: 991px) {
  #search h1.title-internal-primary {
    margin-bottom: 12px;
  }
}

.contact-rich .block {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sellers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 80px;
}
.sellers-header h1 {
  margin: 0;
}
.sellers-header .sellers-view-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--grigio);
}
.sellers-header .sellers-view-tabs button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #003452;
  padding: 4px 12px;
  background: transparent;
  border-radius: 5px;
  border: 1px solid var(--grigio);
  cursor: pointer;
  transition: all 0.3s;
}
.sellers-header .sellers-view-tabs button:hover,
.sellers-header .sellers-view-tabs button.active {
  color: var(--bianco);
  background: var(--azzurro);
  border-color: var(--azzurro);
}
.sellers-header .sellers-view-tabs button:hover img,
.sellers-header .sellers-view-tabs button.active img {
  filter: saturate(0) brightness(100);
}

.sellers-view-container {
  display: none;
}
.sellers-view-container.show {
  display: block;
}
#map {
  z-index: 1;
  height: 600px;
}
#map-seller {
  z-index: 1;
  height: 250px;
}
#map .leaflet-marker-icon,
#map-seller .leaflet-marker-icon {
  background: transparent;
  border: none;
}
#map .leaflet-marker-icon img,
#map-seller .leaflet-marker-icon img {
  width: 100%;
}
#map .leaflet-marker-icon.inactive {
  z-index: 100 !important;
}
#map .leaflet-marker-icon.inactive img {
  filter: saturate(0) brightness(1.3);
}
.map-wrapper {
  position: relative;
  overflow: hidden;
}
.map-wrapper .seller-map-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 250px;
  height: 100%;
  z-index: 1000;
  transition: all 0.3s;
}
.map-wrapper .seller-map-container.show {
  right: 0;
}
.map-wrapper .seller-map-card {
  position: absolute;
  top: 50%;
  right: calc(-100% - 50px);
  transform: translateY(-50%);
  background: var(--azzurro);
  padding: 42px 18px;
  border-radius: 12px;
  width: 100%;
  max-width: 220px;
  box-shadow: 0px 10px 50px 0px rgba(0, 11, 51, 0.20), 0px 9px 38px 0px rgba(0, 17, 77, 0.04);
  transition: all 0.3s;
}
.map-wrapper .seller-map-card.show {
  right: 28px;
}
.map-wrapper .seller-map-card .close-card {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  color: var(--bianco);
  font-size: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  border: 1px solid var(--bianco);
  cursor: pointer;
}
.map-wrapper .seller-map-card .category {
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #99AFFF;
  text-transform: uppercase;
}
.map-wrapper .seller-map-card .name {
  font-size: 18px;
  font-weight: 700;
  color: var(--bianco);
  margin-bottom: 8px;
}
.map-wrapper .seller-map-card .address {
  font-size: 16px;
  color: var(--bianco);
  margin-bottom: 20px;
}
.map-wrapper .seller-map-card a {
  border-radius: 5px;
  padding: 10px 20px;
  background: var(--bianco);
  font-size: 14px;
  font-weight: 500;
  color: var(--azzurro);
}
@media screen and (max-width: 767px) {
  .sellers-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 40px;
  }
  .map-wrapper .seller-map-container {
    position: unset;
    width: 100%;
    height: auto;
  }
  .map-wrapper .seller-map-card {
    display: none;
    position: unset;
    transform: none;
    max-width: unset;
    box-shadow: none;
    margin-bottom: 30px;
  }
  .map-wrapper .seller-map-card.show {
    display: block;
  }
}
.products-container {
  width: 100%;
}
#contact .alert-success {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  #contact section {
    margin-top: 0;
  }
  #contact .contact-rich {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  #contact .contact-rich {
    margin-top: 0;
    margin-bottom: 50px;
  }
  #contact .contact-rich h4 {
    margin-bottom: 8px;
  }
  #header .header-middle h1,
  .about-section h2 {
    font-size: 28px;
  }
  #header .header-middle h1 {
    width: 90%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-category.page-not-found #js-product-list,
  .page-category.page-not-found #js-product-list > section {
    margin-top: 0;
  }

  .page-category.page-not-found #js-product-list h2 {
    font-size: 28px;
  }
}

[id^="module-shoppingplus"] #content-wrapper {
  margin-top: 20px;
}
[id^="module-shoppingplus"] #content-wrapper h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--azzurro);
}
#formcustomersp .form-group {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}
#formcustomersp .form-group .form-control-label {
  margin-bottom: 0;
}

.page-customer-account .fidelity-link {
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  background: var(--arancio);
  border: 1px solid var(--arancio);
  transition: all 0.3s;
}
.page-customer-account .fidelity-link:hover {
  color: var(--arancio) !important;
  background: #fff;
}
.page-customer-account .fidelity-link .fidelity-text {
  text-decoration: none;
}

#frm_fidelity_coupon input[type="number"] {
  height: 34px;
  border: 1px solid var(--grigio);
}
#frm_fidelity_coupon .btn-submit {
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
  background: var(--arancio);
  border: 1px solid var(--arancio) !important;
}
#frm_fidelity_coupon .btn-submit:hover {
  color: var(--arancio) !important;
  background: #fff !important;
}

.product-carriers li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-carriers li img {
  width: 16px;
  height: 16px;
}
.unit-price-label {
  margin-bottom: 3px !important;
  font-weight: 600;
  font-size: 14px;
  color: var(--nero);
  text-transform: uppercase;
}
.unit-price-label span {
  font-weight: 500;
  font-size: 12px;
  color: #7a7a7a;
  text-transform: none;
}
.disclaimer-shipping {
  font-size: 13px;
  color: #7a7a7a;
}
.different-invoice-address {
  font-weight: 700;
  color: var(--nero) !important;
  transition: all 0.3s;
}
.add-address a {
  font-size: 14px;
  font-weight: 600;
  color: var(--nero) !important;
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid var(--nero);
  transition: all 0.3s;
}
.add-address a:hover {
  color: var(--azzurro-scuro) !important;
}
body#checkout section.checkout-step .address-selector {
  display: block;
}
.checkout-wrapper .info-next-step {
  color: #7a7a7a;
  margin: 24px 0 12px 0;
}
body#checkout .cancel-address {
  width: 100%;
  color: var(--bianco) !important;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.3px;
  padding: 7px;
  margin: 0;
  margin-top: 8px;
  border-radius: 17px;
  background: var(--grigio);
  transition: all 0.3s;
}
body#checkout .cancel-address:hover {
  background: var(--grigio-scuro);
}
.order-confirmation-actions {
  row-gap: 12px;
}
.cart-item .cart-item-bottom .has-discount {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-item .cart-item-bottom .has-discount .product-discount {
  display: flex;
  align-items: center;
}
.cart-item .cart-item-bottom .has-discount .discount {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .cart-item .cart-item-bottom .has-discount {
    margin-top: 8px;
  }
  .order-confirmation-table .table-head {
    display: none;
  }
  #order-items .order-line {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 0;
  }
  #order-items .order-line > div:first-of-type {
    padding: 0;
    margin-bottom: 12px;
  }
}
