@import url('https://fonts.googleapis.com/css2?family=Readex+Pro:wght@200;300;400;500;600;700&display=swap');

:root {
    --screen-max-width: 1750px;
    --site-header-padding: 0px;
    --site-header-min-height: calc(var(--site-header-padding) + var(--site-header-padding) + 110px);
    --general-radius: 6px;
    --general-padding: 20px;

    --totem-lightgray: #FFF;
    --totem-lightgray-active: #d9e6c6;
    --totem-gray: #edeff3;
    --totem-dark-gray: #999;
    --totem-text-gray: #000;
    --totem-orange: #002967;
    --totem-orange-secondary: #133f81;
    --totem-secondary: #de1420;
    --totem-secondary-secondary: #3f659d;
    /* --totem-lightorange: #D1D8E4; */
    --totem-lightorange: #de1420;
    --totem-red: #b00;
    --totem-promoclima: var(--totem-orange);
    --totem-cashback: #1bb394;
    --totem-garanzia: var(--totem-orange);
    --totem-background: linear-gradient(90deg, var(--totem-orange) 0%, var(--totem-orange-secondary) 100%);

    --box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
    --border-color: #E1E1E1;
    --border: solid 1px var(--border-color);
    --transition: .3s all ease;
}

.row {
    --bs-gutter-x: var(--general-padding);
}

html,
body {
    scroll-behavior: smooth;
    overflow: visible;
}

p,
div,
li {
    font-family: "DM Sans", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
span {
    font-family: "Outfit", sans-serif !important;
}

body {
    font-weight: 300;
    color: var(--totem-text-gray);
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background-color: #F8F8F8;
}

b,
strong {
    font-weight: 600;
}

a,
a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: var(--totem-secondary);
    text-decoration: none !important;
    outline: none !important;
    transition: var(--transition);
    cursor: pointer;
}

a:hover {
    color: var(--totem-secondary);
    /* background-color: var(--totem-lightorange); */
}

button {
    border: none;
    background: none;
}

label {
    font-weight: 400;
}

form {
    margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

.h1:not(:last-child),
.h2:not(:last-child),
.h3:not(:last-child),
.h4:not(:last-child),
.h5:not(:last-child),
.h6:not(:last-child),
h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child),
p:not(:last-child) {
    margin-bottom: calc(var(--general-padding) / 2);
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: var(--general-padding);
    padding-left: var(--general-padding);
}

.fa,
.far,
.fas,
.fa::before,
.far::before,
.fas::before {
    line-height: inherit !important;
}

.hidden {
    display: none !important;
}

.max-width {
    width: 100%;
    padding: 0;
}

.max-width-small {
    max-width: 1200px;
}

.no-margin-top {
    margin-top: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.page-title {
    text-align: center;
    text-transform: uppercase;
    color: var(--totem-orange);
}

.page-title:not(:last-child) {
    margin-bottom: var(--general-padding) !important;
}

#container-content .page-title {
    margin-bottom: 80px !important;
}

.header-button {
    background: none !important;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
}

.header-button>span {
    text-transform: uppercase;
    font-weight: 500;
    margin-top: 7px;
    font-size: 0.65rem;
    line-height: 0.65rem;
    white-space: nowrap;
}

.header-button i {
    /* font-size: 1.75rem; */
    font-size: 2.2rem;
    /* background: white; */
    color: var(--totem-secondary);
    /* border-radius: 100rem; */
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: var(--box-shadow); */
}

.title-header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: calc(var(--general-padding) / 2);
    padding-bottom: 0;
}

.title-header .title-modal {
    flex-grow: 1;
    font-size: 1.75rem;
    display: block;
    color: var(--totem-text-gray);
    font-weight: 600;
    margin-left: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-header .title-modal i {
    color: var(--totem-secondary);
    margin-right: 15px;
}

.title-header .header-button {
    margin-left: 20px;
}

.modal .modal-dialog {
    width: calc(100% - var(--general-padding) * 2);
    height: calc(100% - var(--general-padding) * 2);
    max-width: var(--screen-max-width);
    min-height: initial !important;
    margin: var(--general-padding) auto !important;
}

.modal-small .modal-dialog {
    max-width: 550px;
}

.modal-medium .modal-dialog {
    max-width: 991px;
}

.modal .modal-content {
    overflow: auto;
    max-height: 100%;
}

.modal .modal-body {
    padding: var(--general-padding);
}

.modal .modal-footer {
    border: none;
    padding: calc(var(--general-padding) - 5px);
    padding-top: 0;
    margin-top: -5px;
    justify-content: center;
}

.modal .modal-footer>* {
    margin: 5px;
}

.popover {
    max-width: 300px;
}

.popover-header {
    padding: 10px;
    margin: 0 !important;
}

.popover-body {
    padding: 10px;
}

.totem-checkbox {
    display: inline-flex !important;
    align-items: center;
}

.totem-checkbox input {
    display: none;
}

#frmInfo .totem-checkbox input,
.checkout-info .totem-checkbox input {
    display: inline;
    visibility: hidden !important;
    max-height: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

.totem-checkbox .checkmark {
    height: 1rem;
    width: 1rem;
    min-width: 1rem;
    background-color: white;
    border: 1px solid #002967;
    border-radius: 100rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .25rem;
    margin-right: .5rem;
}

.small .checkmark {
    width: .75rem;
    height: .75rem;
    min-width: .75rem;
    margin-top: 0;
    margin-right: 3px;
}

.totem-checkbox input:checked~.checkmark {
    background-color: #D1D8E4;
}

.totem-checkbox .checkmark:after {
    opacity: 0;
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--totem-secondary);
    font-size: 55%;
    transition: var(--transition);
}

.totem-checkbox input:checked~.checkmark:after {
    opacity: 1;
}

.totem-button {
    font-size: 1rem;
    padding: 3px 8px;
    text-transform: uppercase;
    font-weight: 500;
    color: white !important;
    border-radius: var(--general-radius);
    background-color: #002967;
    border: 1px solid #002967;
    text-align: center;
    transition: var(--transition);
}

#scheda-tecnica .totem-button {
    text-transform: none;
}

.totem-button.black {
    background: black;
    border-color: black;
}

.totem-button.gray {
    background: var(--totem-dark-gray);
    border-color: var(--totem-dark-gray);
}

.totem-button.black:not(.nofocus):hover,
.totem-button.black:not(.nofocus):active {
    background: #666;
    color: white !important;
}

.totem-button.gray:not(.nofocus):hover,
.totem-button.gray:not(.nofocus):active {
    background: #aaa;
}

.totem-button.secondary {
    background: white;
    color: var(--totem-secondary) !important;
}

.totem-button:not(.nofocus):hover,
.totem-button:not(.nofocus):active {
    background: var(--totem-secondary-secondary);
}

.totem-button.secondary:not(.nofocus):hover,
.totem-button.secondary:not(.nofocus):active {
    background: var(--totem-lightorange);
}

.totem-button.small {
    font-size: .7rem;
    padding: 2px 6px;
}

.totem-button.small.card-prodotto {
    font-size: 1.1rem;
    padding: 4px 8px;
}

.totem-button img {
    max-height: 1rem;
    max-width: 1rem;
    margin-top: -3px;
    object-fit: contain;
}

.totem-button.small.scheda {
    font-size: 1.4rem;
    padding: 4px 60px;
    border-radius: var(--general-radius);
    font-weight: 400;
    width: 400px;
    margin: 15px 0;
}

.totem-button.small.scheda i {
    font-size: 1.25rem;
}

.totem-button.small.scheda:hover {
    background-color: #002967 !important;
    scale: 1.075;
    transition: scale 0.2s ease;
    color: white !important;
}

.azioni-secondarie .totem-button.btn-share-product {
    font-size: 0.85rem;
    padding: 4px 5px !important;
    border-radius: var(--general-radius);
    height: fit-content;
    align-self: center;
}

.cky-btn {
    font-size: 1rem !important;
    padding: 5px 10px !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    color: white !important;
    border-radius: 100rem !important;
    background-color: var(--totem-orange) !important;
    border: 1px solid var(--totem-orange) !important;
    text-align: center !important;
    transition: var(--transition) !important;
}

.totem-button.secondary,
.cky-btn.cky-btn-reject,
.cky-btn.cky-btn-preferences {
    background: white !important;
    color: var(--totem-secondary) !important;
    border-color: var(--totem-secondary) !important;
}

.totem-button:not(.nofocus):hover,
.totem-button:not(.nofocus):active,
.cky-btn.cky-btn-reject:hover,
.cky-btn.cky-btn-preferences:hover,
.cky-btn.cky-btn-reject:active,
.cky-btn.cky-btn-preferences:active {
    background: white;
    color: #002967 !important;
}

.totem-button.secondary:not(.nofocus):hover,
.totem-button.secondary:not(.nofocus):active,
.cky-btn.cky-btn-reject:hover,
.cky-btn.cky-btn-preferences:hover,
.cky-btn.cky-btn-reject:active,
.cky-btn.cky-btn-preferences:active {
    background: var(--totem-lightorange) !important;
    color: white !important;
}

.cky-preference-content-wrapper .cky-show-desc-btn,
button.cky-show-desc-btn:not(:hover):not(:active) {
    color: var(--totem-orange) !important;
}

.cky-consent-container .cky-consent-bar {
    border: none !important;
    box-shadow: var(--box-shadow) !important;
    padding: var(--general-padding) !important;
}

.form-control,
.select2-container {
    font-weight: 300;
    border: var(--border);
    border-radius: var(--general-radius);
    margin: 0;
    outline: none !important;
    box-shadow: none !important;
}

.form-control,
.select2.select2-container .select2-selection {
    padding: .5rem 1rem;
}

.form-control::placeholder,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--totem-dark-gray);
}

.form-control:focus {
    border-color: var(--totem-lightorange);
}

.select2.select2-container .select2-selection {
    border: none !important;
    height: auto !important;
}

.select2.select2-container .select2-selection--single {
    background: none !important;
    outline: none !important;
}

.select2.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 !important;
    text-align: left !important;
    color: var(--totem-text-gray) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.5 !important;
}

.select2.select2-container .select2-selection--single .select2-selection__arrow {
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
}

.grid-item {
    width: 16% !important;
}

#loader-layer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000000;
    background-color: rgba(0, 0, 0, 0.536);
    backdrop-filter: blur(4px);
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#loader-layer.show {
    display: flex;
}

.loader3 {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000000000000;
  margin-left: 4px;
}

.circle1 {
  width: 21px;
  height: 21px;
  margin: 0px -4px;
  /* border-radius: 50%; */
  /* margin: 0 -4px; */
  /* background-color: white; */
  /* color: white; */
  animation: circle1 1.8s ease-in-out infinite;
}

.circle1:nth-child(2) {
  animation-delay: 0.2s;
}

.circle1:nth-child(3) {
  animation-delay: 0.4s;
}

.circle1:nth-child(4) {
  animation-delay: 0.6s;
}

.circle1:nth-child(5) {
  animation-delay: 0.8s;
}

.circle1:nth-child(6) {
  animation-delay: 1.0s;
}

.circle1:nth-child(7) {
  animation-delay: 1.2s;
}

.circle1:nth-child(8) {
  animation-delay: 1.5s;
}

@keyframes circle1 {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  40% {
    transform: scale(1.2);
    opacity: 0.6;
  }

  80% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.c {
    /* width: 25px; */
    /* left: 968px; */
}

.a {
    /* width: 32px; */
    /* left: 981px; */
    /* top: 494px; */
    margin: 0 -2px;
}

.s {
    /* width: 25px; */
    /* left: 998px; */
}

.c2 {
    /* width: 27px; */
    /* left: 1013px; */
    margin: 0 -5px 0 -1px;
}

.i {
    /* width: 27px; */
    /* left: 1024px; */
    margin: 0 -4px;
}

.n {
    /* width: 25px; */
    /* left: 1038px; */
    /* top: 497px; */
    margin: 0 -3px;
}

.o {
    /* width: 28px; */
    /* left: 1053px; */
    margin: 0 2px 0 0;
}

#frame-modal .modal-content {
    height: 100%;
    max-height: var(--screen-max-width);
    overflow: hidden;
}

#frame-modal .modal-body {
    padding: 0;
}

#frame-modal .modal-body iframe {
    height: 100%;
}

#header {
    position: sticky;
    top: 0;
    padding: 0;
    background-color: var(--totem-orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 40000;
    width: -webkit-fill-available;
    transition: transform 200ms ease;
    will-change: transform;
}

#sotto-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--totem-orange);
    height: 100px;
}

#header ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#menu-header,
#categorie-header,
#site-hader-bottom {
    width: calc(100% - 60px);
    box-shadow: var(--box-shadow);
    background: white;
}

#menu-header {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

#menu-header ul {
    display: flex;
    justify-content: flex-end;
}

#menu-header ul li a,
#categorie-header .categoria>a {
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    font-size: 1rem !important;
    font-family: "Outfit", sans-serif !important;
    padding: 5px 0 !important;
}

/* #menu-header ul li a:hover,
#categorie-header .categoria>a:hover,
#categorie-header .categoria>a.show {
    background-color: var(--totem-lightorange);
} */

#site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    z-index: 1;
    width: 85% !important;
    max-width: none;
}

#site-header .header-button {
    color: white;
}

/* #site-header>* {
    width: 50%;
} */

#site-header .header-logo a {
    background: none !important;
    display: block;
    width: 100px;
}

.header-logo.logo-menu-comparsa {
    position: absolute;
    top: 10px;
    left: 10px;
}

#site-header .header-logo .logo {
    height: 4rem;
    max-width: 100%;
    object-fit: contain;
}

.col-3 {
    width: 25% !important;
}

#img-logo {
    width: 6rem;
}

#site-header .header-titolo,
#site-header .header-titolo .contatti-puv {
    display: flex;
    justify-content: center;
    align-items: center;
}

#site-header .header-titolo {
    width: 150%;
}

#site-header .header-titolo .titolo-puv {
    font-size: 2rem;
    line-height: 2rem;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

#site-header .header-titolo .contatti-puv {
    margin-left: 1rem;
}

.header-link ul>li+li:before {
    padding: 0;
    content: "|";
    padding-right: 10px;
    color: white;
}

.header-link ul {
    display: flex;
}

.header-link a {
    color: white !important;
    font-weight: 200;
}

.header-link a:hover {
    background-color: transparent;
    text-decoration: underline !important;
    text-decoration-thickness: 1px !important;
}

.list-inline {
    justify-content: end;
}

#site-header .header-titolo .contatti-puv .header-button i {
    font-size: 1.25rem;
    height: 2.25rem;
    width: 2.25rem;
}

#site-header .header-titolo .contatti-puv .header-button:not(:first-child) {
    margin-left: .5rem;
}

#site-header .header-buttons {
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

#site-header .header-buttons .header-button {
    width: 3rem;
}

#site-header .header-buttons .header-button:not(:first-child) {
    margin-left: 1rem;
}

#site-header .header-buttons .carrello {
    position: relative;
}

#site-header .header-buttons .carrello .cart-counter {
    position: absolute;
    /* top: 25px; */
    top: -3px;
    /* left: 50%; */
    left: 99%;
    transform: translateX(-50%);
    background: white;
    color: var(--totem-orange);
    padding: 0 5px;
    /* border: 1px solid var(--totem-orange); */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: .75rem;
    font-weight: 700;
}

#site-hader-bottom,
#categorie-header {
    width: 100%;
    margin: auto;
    background: var(--totem-orange);
}

.modal .modal-body.elencopuv {
    display: flex;
    flex-direction: column;
}

.modal .modal-body.elencopuv a:not(:first-child) {
    margin-top: 10px;
}

.modal .modal-body.elencopuv a {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal .modal-body.elencopuv a small {
    font-size: .75rem;
    line-height: 1.25rem;
    display: block;
}

#site-hader-bottom {
    width: calc(100% - 30px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

#site-hader-bottom .titolo-puv {
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 7px;
}

#site-hader-bottom .contatti-puv {
    margin-left: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

#site-hader-bottom .contatti-puv .header-button:not(:first-child) {
    margin-left: .5rem;
}

#site-hader-bottom .contatti-puv .header-button i {
    height: 1.5rem;
    width: 1.5rem;
    font-size: .85rem;
}

#categorie-header .close-div {
    display: none;
}

#categorie-header .categorie-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    text-align: center;
}

#categorie-header .menu-header-mobile {
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.menu-header-mobile li a {
    display: block;
    padding: .75rem 1rem;
    text-transform: uppercase;
    color: var(--totem-text-gray);
}

#categorie-header .subcategorie-container-container {
    top: 100% !important;
    /* left: 30px !important; */
    /* left: 7% !important; */
    transform: none !important;
    /* width: calc(100% - 60px); */
    /* width: calc(89% - 60px); */
    width: -webkit-fill-available;
    padding: 10px;
    border: none;
    box-shadow: var(--box-shadow);
    /* border-radius: 10px; */
    border-radius: 0 !important;
    /* border-top-left-radius: 0; */
    /* border-top-right-radius: 0; */
    text-align: center;
    /* justify-content: center; */
    justify-content: space-between;
    /* animation-duration: 0.3s;
    animation-fill-mode: both;
    animation-name: slideIn; */
    z-index: 10000;
}

.contenuto-subcategorie {
    width: 85%;
    display: flex;
    margin: auto;
}

.is-hidden {
    transform: translateY(-110%) !important;
    box-shadow: var(--box-shadow) !important;
}

.at-top {
    transform: none !important;
    box-shadow: none !important;
}


@keyframes slideIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

.dropdown-menu.show {
    display: flex;
}

#categorie-header .subcategorie-container.show {
    display: flex;
}


#categorie-header .subcategorie-container {
    display: flex;
    flex-wrap: wrap;
    width: -webkit-fill-available;
}

#categorie-header .subcategorie-container .subcategoria {
    /* width: calc(100% / 4); */
    width: calc(66% / 4);
    /* padding: 10px; */
    text-align: left;
    padding-bottom: 10px;
    padding-right: 5px;
}

#categorie-header .subcategorie-container .subcategoria>a {
    font-weight: 600;
}

#categorie-header .subcategorie-container .subcategoria a {
    padding: 2px 0;
    font-size: 17px !important;
    font-weight: 700;
    color: var(--totem-orange) !important;
}

#categorie-header .subcategorie-container .subcategoria a:hover {
    background-color: transparent !important;
}

.subcategoria-titolo:hover {
    text-decoration: underline !important;
    text-decoration-thickness: 1.5px !important;
}

#categorie-header .subcategorie-container .subsubcategoria a {
    color: black !important;
    font-size: 14px !important;
    font-weight: 400;
}

.subsubcategoria {
    padding-left: 5px;
}

.subsubcategoria:hover {
    background-color: #efefef;
    border-radius: var(--general-radius);
}

#search {
    padding: 0 1rem !important;
}

.search-container button {
    color: #de1420;
    font-weight: 500;
    font-size: 24px;
    margin-left: -42px;
}

#navbar-container {
    width: 100%;
    z-index: 1000;
}

#navbar-header {
    width: 100%;
    margin: auto;
    background-color: var(--totem-orange);
}

#navbar-list {
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    font-size: 20px;
}

#navbar-list button {
    color: white;
    font-size: 1rem;
    padding: 5px 0 !important;
}

.dropdown-navbar {
    position: relative !important;
    z-index: 1000 !important;
}

#menu-mobile-bottom {
    position: fixed;
    inset: 0;
    height: 0;
    width: 100%;
    color: #de1420;
    background: var(--totem-orange);
    border-radius: 1rem 1rem 0 0;
    z-index: 10000000;
    transition: height .5s ease-in-out;
    overflow: hidden;
    align-content: center;
}

.container-mobile-bottom {
    opacity: 0;
    height: 100dvh;
    align-content: center;
    transform: translateX(0);
    transition: opacity .3s ease-out, transform 0.5s ease;
}

.scorrevole {
    height: 100dvh !important;
}

.comparsa {
    opacity: 1;
    transition: opacity 1s ease-in, transform 0.5s ease;
}

.categoria-container {
    margin: auto;
    margin-left: 0;
}

.slide-in {
    transform: translateX(0) !important;
}

.slide-off {
    transform: translateX(-100%) !important;
}

.footer-mobile {
    position: sticky;
    bottom: 0;
    width: 100%;
    background: var(--totem-orange);
}

.exit-button {
    position: absolute;
    bottom: 0.9rem;
    right: 1.2rem;
    color: white !important;
    font-size: 1.5rem !important;
}

.exit-button-menu {
    position: absolute;
    bottom: 12px;
    right: 17px;
    color: white !important;
    font-size: 1.5rem !important;
}

.back-mobile {
    position: absolute;
    bottom: 12px;
    left: 17px;
    color: white !important;
    font-size: 1.5rem !important;
}

/* .container-mobile-bottom i {
    font-size: 6rem;
    color: var(--totem-orange);
}*/


.container-mobile-bottom i {
    font-size: 2.5rem;
    color: var(--totem-orange);
}

.tic-menu,
.tic-menu-sub {
    color: var(--totem-orange) !important;
}

/* .container-mobile-bottom h4 {
    font-size: 1rem !important;
}  */

.container-mobile-bottom h4 {
    font-size: 1.75rem !important;
    color: white;
    text-align: start;
    font-weight: 300;
    margin-bottom: 15px !important;
    padding-left: 2rem;
}

.container-mobile-bottom h5 {
    font-size: 1.2rem !important;
    color: white;
    font-weight: 400;
    padding: 2px 2rem;
    margin: 0;
}

.categoria-mobile {
    display: flex !important;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid var(--totem-orange);
    background: white;
}

.categoria-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.menu-mobile-footer {
    padding-top: 10px;
    position: absolute;
    bottom: 60px;
}

.subcategoria-mobile {
    padding: 0 30px !important;
}

.subcategoria-mobile a {
    color: white !important;
    text-align: left;
    font-size: 1.75rem !important;
    font-weight: 300;
}

.subcategoria-mobile a:hover {
    background: transparent !important;
}

.subcategoria-header-mobile {
    justify-content: space-between;
    align-items: center;
}

.subsubcategoria-mobile-container {
    list-style: disc !important;
    display: none;
    margin: 0;
    padding: 0;
}

.subsubcategoria-mobile-container.show {
    display: block;
}

.subsubcategoria-mobile {
    text-align: left;
    border-top: 2px solid var(--totem-orange);
    padding-left: 1rem;
    height: 2.5rem;
    align-content: center;
}

.subsubcategoria-mobile a {
    font-weight: 400;
    font-size: 16px !important;
}


.subcategorie-nascosto {
    display: none;
    transition: opacity 0.5s 0.5s;
    padding: 0;
    font-weight: 400;
    position: absolute;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    height: -webkit-fill-available;
    width: -webkit-fill-available;
    align-content: center;
    align-self: center;
    bottom: 0;
}

.subcategorie-nascosto.show {
    display: block;
}


#menu-background,
#black-background {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 100;
}

#black-background {
    z-index: 4;
}

#menu-background.show,
#black-background.show {
    top: 0;
}

.negozio-button:not(:first-child) {
    width: 100%;
    margin-top: 15px;
}

.negozio-button {
    display: block;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.negozio-button small {
    display: block;
    font-size: 1rem;
    font-weight: 300;
}

#container-content {
    flex-grow: 1;
    padding: 20px 15px 25px 15px;
}

.frame-modal #container-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.frame-modal #img_carousel .carousel-cell img {
    max-height: calc(100vh - 125px) !important;
}

.container-content {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.homepage-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.homepage-buttons .totem-button {
    margin: 5px;
}

.volantini-container {
    display: flex;
    position: relative;
    margin-top: var(--general-padding);
}

#volantini_carousel {
    display: flex;
    flex-direction: column;
}

body.ecommerce #volantini_carousel {
    width: 100%;
}

/* body.ecommerce #volantini_carousel .carousel-cell {
    width: 50%;
} */

#carousel_promo_mobile {
    margin-top: var(--general-padding);
}

#carousel_promo,
#carousel_promo_mobile {
    border: var(--border);
    border-top-left-radius: var(--general-radius);
    border-top-right-radius: var(--general-radius);
    border-bottom: 0;
    height: 100%;
    overflow: hidden;
}

#carousel_promo_mobile .carousel-cell,
#carousel_promo .carousel-cell {
    width: 100%;
    margin: auto;
    position: relative;
}

#carousel_promo_mobile .carousel-cell img,
#carousel_promo .carousel-cell img {
    width: 100%;
}

.bannerScritteSottoPromo,
.bannerScritteSottoPromoMobile,
.bannerScritteSottoVolantino,
.bannerScritteSotto {
    font-weight: 600;
    display: flex;
}

.bannerScrittaSottoPromo,
.bannerScrittaSottoVolantino,
.bannerScrittaSotto {
    padding: 5px;
    position: relative;
    width: 100%;
    text-align: center;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    font-size: .75rem;
}

.bannerScrittaSottoPromo>span,
.bannerScrittaSottoVolantino>span,
.bannerScrittaSotto>span {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

.bannerScrittaSottoPromo:first-child,
.bannerScrittaSottoVolantino:first-child,
.bannerScrittaSotto:first-child {
    border-bottom-left-radius: var(--general-radius);
}

.bannerScrittaSottoPromo:last-child,
.bannerScrittaSottoVolantino:last-child,
.bannerScrittaSotto:last-child {
    border-bottom-right-radius: var(--general-radius);
}

.bannerScrittaSottoPromo:not(:first-child),
.bannerScrittaSottoVolantino:not(:first-child),
.bannerScrittaSotto:not(:first-child) {
    border-left: none;
}

.bannerScrittaSottoPromo::before,
.bannerScrittaSottoVolantino::before,
.bannerScrittaSotto::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--totem-orange);
    opacity: 0.1;
}

.bannerScrittaSottoPromo.selected::before,
.bannerScrittaSottoVolantino.selected::before,
.bannerScrittaSotto.selected::before {
    -webkit-animation: progressbanner 6s ease-in-out;
    -webkit-animation-fill-mode: forwards;
    -moz-animation: progressbanner 6s ease-in-out;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-duration: 6s;
    -moz-animation-duration: 6s;
}

@-webkit-keyframes progressbanner {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

@-moz-keyframes progressbanner {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}

.container_second_carousel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
}

.container_second_carousel.no-volantino {
    position: initial;
    width: 100%;
}

#second_carousel {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: calc(var(--general-padding) / -4);
}

#second_carousel>div {
    padding: calc(var(--general-padding) / 4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 50%;
}

.container_second_carousel.no-volantino #second_carousel>div {
    width: 25%;
}

#second_carousel>div .img-container {
    background: white !important;
    width: 100%;
    height: 100%;
    padding: 0;
    border: var(--border);
    border-radius: var(--general-radius);
    overflow: hidden;
    display: flex;
    align-items: center;
}

#second_carousel>div .img-container>img {
    padding: 15px;
    max-height: 100%;
    max-width: 50%;
    object-fit: contain;
}

#second_carousel>div .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

#second_carousel>div .text-container>img {
    width: 75%;
    height: 25%;
    object-fit: contain;
}

#second_carousel>div .text-container>div {
    line-height: 1rem;
    text-transform: uppercase;
    margin-top: 10px;
}

/* .first-carousel-container {
    margin-top: var(--general-padding);
} */

.first-carousel-container {
    margin-right: 0;
    margin-top: -1px;
}

#first_carousel {
    border: var(--border);
    border-top-left-radius: var(--general-radius);
    border-top-right-radius: var(--general-radius);
    border-bottom: 0;
    overflow: hidden;
}

#second2_carousel {
    border: var(--border);
    border-top-left-radius: var(--general-radius);
    border-top-right-radius: var(--general-radius);
    border-bottom: 0;
    overflow: hidden;
}

#first_carousel .carousel-cell {
    width: calc(100% / 3);
    margin: auto;
    position: relative;
}

#second2_carousel .carousel-cell {
    width: calc(100% / 3);
    margin: auto;
    position: relative;
}

#first_carousel .carousel-cell img {
    width: 100%;
}

#second2_carousel .carousel-cell img {
    width: 100%;
}

#first_carousel.nocarousel {
    display: flex;
}

#second2_carousel.nocarousel {
    display: flex;
}

#first_carousel .link_banner-product {
    padding: 1rem;
    display: flex;
    align-items: center;
    height: auto;
    aspect-ratio: 9 / 5;
    gap: 1rem;
    background: initial !important;
    color: var(--totem-text-gray);
}

#second2_carousel .link_banner-product {
    padding: 1rem;
    display: flex;
    align-items: center;
    height: auto;
    aspect-ratio: 9 / 5;
    gap: 1rem;
    background: initial !important;
    color: var(--totem-text-gray);
}

#first_carousel .link_banner-product>* {
    width: calc(50% - .5rem) !important;
}

#second2_carousel .link_banner-product>* {
    width: calc(50% - .5rem) !important;
}

#first_carousel .link_banner-product .banner-product-image {
    height: 100%;
    object-fit: contain;
}

#second2_carousel .link_banner-product .banner-product-image {
    height: 100%;
    object-fit: contain;
}

#first_carousel .link_banner-product .banner-product-info {
    width: 100%;
    text-align: initial;
    line-height: 1.25;
}

#second2_carousel .link_banner-product .banner-product-info {
    width: 100%;
    text-align: initial;
    line-height: 1.25;
}

#first_carousel .link_banner-product .banner-product-info>*:not(:first-child) {
    margin-top: .5rem;
}

#second2_carousel .link_banner-product .banner-product-info>*:not(:first-child) {
    margin-top: .5rem;
}

#first_carousel .link_banner-product .logo-marchio {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
}

#second2_carousel .link_banner-product .logo-marchio {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
}

#first_carousel .link_banner-product .nome-marchio {
    margin-right: 10px;
    max-width: 33%;
    text-align: center;
    background: black;
    color: white;
    padding: 1px 3px;
    word-break: initial;
}

#second2_carousel .link_banner-product .nome-marchio {
    margin-right: 10px;
    max-width: 33%;
    text-align: center;
    background: black;
    color: white;
    padding: 1px 3px;
    word-break: initial;
}


#first_carousel .link_banner-product .banner-product-mod {
    font-weight: bold;
    font-size: 1.25rem;
}

#second2_carousel .link_banner-product .banner-product-mod {
    font-weight: bold;
    font-size: 1.25rem;
}

#first_carousel .link_banner-product .banner-product-perzzobarrato {
    text-decoration: line-through;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    color: var(--totem-dark-gray);
}

#second2_carousel .link_banner-product .banner-product-perzzobarrato {
    text-decoration: line-through;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 600;
    color: var(--totem-dark-gray);
}

#first_carousel .link_banner-product .banner-product-prezzo {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    color: var(--totem-orange);
}

#second2_carousel .link_banner-product .banner-product-prezzo {
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    color: var(--totem-orange);
}

.banner-button {
    position: absolute;
    bottom: var(--general-padding);
    right: var(--general-padding);
    background: var(--totem-orange);
    max-width: 75%;
    z-index: 4;
}

#footer {
    background-color: var(--totem-orange);
    box-shadow: var(--box-shadow);
    z-index: 1;
    color: white;
}

#footer a {
    color: white;
}

#footer .puv_contact {
    display: flex;
    align-items: flex-start;
}

#footer .puv_contact i {
    width: 1rem;
    margin-right: .5em;
    margin-top: .25em;
}

#footer .puv_contact:not(:last-child) {
    margin-bottom: .5rem;
}

#footer ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    list-style-type: none;
    transition: var(--transition);
}

#footer .puv-title {
    font-size: 1.5rem;
}

#footer .copyright {
    margin-top: var(--general-padding);
}

.footer-bottom {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

#comparation_flag {
    position: fixed;
    top: 50%;
    right: 0;
    padding: 5px;
    background-color: white;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 600;
    border-top-right-radius: var(--general-radius);
    border-bottom-right-radius: var(--general-radius);
    writing-mode: vertical-lr;
    transform: translateX(110%) translateY(-50%) rotate(180deg);
    transition: var(--transition);
    cursor: default;
    z-index: 11;
}

#comparation_flag .row-confronta>*:not(:first-child) {
    margin-top: 10px;
}

#comparation_flag.show {
    transform: translateX(0) translateY(-50%) rotate(180deg);
}

#comparation_flag .totem-button {
    padding: 10px 3px;
}

#comparation_flag .header-button i {
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
    transform: rotate(180deg);
}

#comparation_flag .header-button {
    writing-mode: horizontal-tb;
    transform: rotate(180deg);
    flex-direction: column-reverse;
}

#comparation_flag .header-button .span-compare {
    margin-top: 0;
    margin-bottom: 4px;
}

#comparation_flag .confronta-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#comparation_flag .confront-wr {
    display: block;
    color: var(--totem-dark-gray);
    line-height: 15px;
    text-align: center;
}

.whatsapp-floating-btn {
    position: fixed;
    bottom: var(--general-padding);
    right: var(--general-padding);
    z-index: 2;
}

.whatsapp-floating-btn i {
    color: white !important;
    background: #25d366;
    animation: bounce 3s cubic-bezier(0.36, 0.07, 0.57, 0.99) infinite;
}

@keyframes bounce {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.15);
    }

    10% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.05);
    }

    30% {
        transform: scale(1);
    }
}

.whatsapp-floating-btn span {
    color: black;
    text-shadow: 0 0 5px white;
}

.homepage .homepage_hidden,
.titleContainer,
.grecaptcha-badge {
    display: none !important;
}

.homepage #categorie-header {
    box-shadow: none !important;
    width: 100%;
}

#headline h1 {
    display: none;
}

.cd-breadcrumb {
    width: 100%;
    padding-top: 10px;
    margin: 0;    
    border-radius: .25em;
}

.cd-breadcrumb::after {
    clear: both;
    content: "";
    display: table;
}

.cd-breadcrumb li {
    display: inline-block;
    float: left;
    margin: 0.5em 0;
}

.cd-breadcrumb li::after {
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}
.cd-breadcrumb li:last-of-type::after{
  display: none;
}
.cd-breadcrumb li > * {
  display: inline-block;
  font-size: 1rem;
  color: #002967;
}
.cd-breadcrumb li:last-child > * {
  color: #de1420;
  font-style: italic;
}

.cd-breadcrumb a:hover {
  color: #de1420;
}

.cd-breadcrumb li:nth-child(2) a:hover {
  cursor: auto;
  color: #002967;
}

.cd-breadcrumb.custom-separator li::after {
  content: '';
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}

#top-bar {
    border-top: var(--border);
    border-bottom: var(--border);
    background-color: var(--totem-gray);
    top: calc(var(--header-height) + calc(var(--general-padding) / 2));
}

#top-bar .pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
}

.paginazione {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-right: 10px;
}

.paginazione.titolo-volantino {
    text-transform: uppercase;
    color: var(--totem-orange);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    text-align: right;
}

.paginazione .page_info {
    text-transform: uppercase;
    margin-left: 10px;
}

.paginazione .pagination,
.header-button-oneline i {
    margin: 0;
    justify-content: center;
    align-items: center;
    color: var(--totem-orange);
    box-shadow: var(--box-shadow);
    border-radius: var(--general-radius);
    overflow: hidden;
}

.paginazione .pagination .page-item .page-link {
    box-shadow: none !important;
    cursor: pointer;
}

.paginazione .pagination .page-item:not(.active) .page-link:hover {
    background-color: var(--totem-lightorange) !important;
}

.paginazione .pagination .page-item .page-link,
.header-button-oneline i {
    color: var(--totem-secondary);
    background-color: white;
    padding: 5px 13px;
    border: 0;
    margin: 0;
    transition: all 0.2s ease;
}

.paginazione .pagination .page-item.active .page-link {
    background-color: var(--totem-secondary);
    color: white;
    border-color: var(--totem-secondary);
    box-shadow: none !important;
    font-weight: 600;
}

.page-link:hover,
.page-link:focus {
    background-color: var(--totem-lightorange);
}

.page-item.page-counter .page-link:hover,
.page-item.page-counter .page-link:focus {
    background-color: white;
}

.header-button-oneline {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-button-oneline i {
    padding: 5px 9px;
    width: auto;
}

.header-button-oneline span {
    text-transform: uppercase;
    margin-left: 10px;
}

#mappa-negozi {
    scroll-margin-top: 150px;
}

.negozi-containers {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 100px 0 50px 0;
}

.negozi-subcontainers {
    display: flex;
    gap: 200px;
}

.sezione-negozi {
    align-content: center;
    color: var(--totem-orange);
}

.sezione-negozi h4 {
    font-size: 40px !important;
    font-weight: 500;
    margin-bottom: 40px;
}

.dettagli-container {
    width: 937.5px;
    height: 625px;
    background-color: white;
    border-radius: 12px;
    display: none;
}

.mappa-img img {
    width: 937.5px;
    height: 625px;
    border-radius: 12px;
}

.dettagli-header {
    background-color: #de1420;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    color: white;
}

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

.indirizzo-negozio {
    font-size: 18px;
}

.lista-negozi {
    list-style: none;
    font-size: 22px;
    font-weight: 400;
    padding-left: 0;
}

.lista-negozi a {
    font-size: 30px !important;
}

.lista-negozi button {
    padding: 5px 10px;
    color: var(--totem-orange);
}

.lista-negozi button:hover {
    background-color: #de1420;
    border-radius: 12px;
    color: white;
}

.titolo-info {
    font-family: "Outfit", sans-serif !important;
    font-size: 32px !important;
    font-weight: 500;
    color: #de1420;
}

.titolo-info li {
    font-size: 18px;
}

.dati-info {
    list-style: none;
}

.dati-info li {
    font-size: 20px !important;
}

.dettagli-contatti p {
    font-size: 20px !important;
}

.titolo-contatti {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nome-negozio {
    font-size: 25px;
}

#titolo-prodotti,
#titolo-servizi {
    color: var(--totem-orange);
    text-align: center;
    font-size: 40px;
    font-weight: 500;
}

.servizi {
    padding: calc(50px - 1.5rem) 0;
}

.dettagli-info {
    padding: 20px;
    color: var(--totem-orange);
}

#filters {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000;
    width: 100%;
    max-width: 350px;
    height: 100%;
    background: white;
    box-shadow: var(--box-shadow);
    transform: translateX(-110%);
    transition: var(--transition);
    overflow: auto;
    display: flex;
    flex-direction: column;
}

#filters.show {
    transform: translateX(0);
}

#filters #filters_container {
    padding: var(--general-padding);
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#filters .panel-default:not(:last-child) {
    border-bottom: var(--border);
}

#filters .panel-heading {
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}

#filters .panel-heading .panel-title {
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding-right: 0.5em;
}

#filters .collapsed .panel-title::after {
    transform: rotate(0);
}

#filters .panel-heading:not(.collapsed) .panel-title::after {
    transform: rotate(180deg);
}

#filters .panel-heading .panel-title::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-left: 10px;
    transition: var(--transition);
}

#filters .filter {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

#filters #filters_container.volantino .panel-heading .panel-title::after {
    display: none;
}

#filters #filters_container.volantino .filter {
    max-height: initial !important;
}

#filters .filter .panel-body {
    padding-bottom: 10px;
}

#filters .filter .panel-body label {
    font-weight: 300;
    font-size: 0.8em;
}

#filters .filter label {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

#filters .filter label:not(:last-child) {
    margin-bottom: 3px;
}

#filters .buttons {
    position: sticky;
    bottom: 0;
    text-align: center;
    background-color: var(--totem-lightgray);
    z-index: 9999;
    width: calc(100% + 6px);
    margin-left: -3px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
}

#filters .buttons #apply_filter_container {
    border-top: var(--border);
    box-shadow: 0 -4px 5px -5px rgba(0, 0, 0, 0.2);
    padding: var(--general-padding) 0;
    width: 100%;
}

#filters #div_orderby .link-list,
#filters #div_sector .link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border: var(--border);
    border-radius: var(--general-radius);
    overflow: hidden;
}

#filters #div_orderby .link-list input,
#filters #div_sector .link-list input {
    display: none;
}

#filters #div_orderby .link-list label:not(:last-child),
#filters #div_sector .link-list label:not(:last-child) {
    border-bottom: var(--border);
}

#filters #div_orderby .link-list label,
#filters #div_sector .link-list label {
    padding: 5px 8px;
    display: inline-block;
    cursor: pointer;
    color: var(--totem-text-gray);
    text-transform: uppercase;
    margin-bottom: 0;
}

#filters #div_orderby .link-list input:checked+label,
#filters #div_sector .link-list input:checked+label {
    background-color: #0029672e;
}


#filters #categorie a {
    display: block;
    cursor: initial;
    background: none !important;
}

#filters #categorie a:not(:first-child) {
    margin-top: 5px;
}

#filters .list-item.active {
    background-color: var(--totem-lightorange);
}

.noUi-target {
    margin: 20px 25px 5px;
    background: var(--totem-gray);
    border-radius: 100rem;
    height: 15px;
}

.noUi-horizontal .noUi-tooltip {
    bottom: 100%;
}

.noUi-tooltip {
    font-size: .75rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.noUi-horizontal .noUi-handle {
    background: var(--totem-dark-gray);
    border: none;
    border-radius: 100rem;
    width: 32px;
    right: -16px;
    height: 22px;
    top: -5px;
    box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.noUi-horizontal .noUi-handle:active {
    cursor: grabbing;
}

.noUi-handle::after,
.noUi-handle::before {
    content: "";
    display: block;
    position: absolute;
    height: 10px;
    width: 2px;
    background: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.noUi-handle::before {
    transform: translate(calc(-50% - 2px), -50%);
}

.noUi-handle::after {
    transform: translate(calc(-50% + 2px), -50%);
}

.noUi-connect {
    background: var(--totem-background);
}

.rangeLabelLegend {
    font-size: .75rem;
    margin: 0 10px 0px;
    height: 15px;
}

#lista {
    flex-grow: 1;
    margin-top: calc(var(--general-padding) / 2);
    display: flex;
    flex-direction: column;
}

#lista .intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: var(--general-padding);
    padding-top: calc(var(--general-padding) / 2);
    text-align: center;
}

#lista .intro img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

#lista #container-content>.row {
    justify-content: center;
}

#lista-loading {
    display: flex;
    padding-bottom: var(--general-padding);
    justify-content: center;
    font-size: 3.5rem;
    color: var(--totem-orange);
}

.products-container {
    margin: calc(var(--general-padding) / 2 * -1);
}

.products-container .noart {
    padding: 0;
    padding-top: var(--general-padding);
    margin: 0;
}

.col-articolo {
    width: calc(80% / 4);
    padding: calc(var(--general-padding) / 2);
}

@media screen and (max-width: 1500px) {
    .col-articolo {
        width: calc(100% / 3);
    }

    #navbar-list {
        font-size: 15px;
    }

}

@media screen and (max-width: 1115px) {
    .col-articolo {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 750px) {
    .col-articolo {
        width: 100%;
    }

    .hide-on-tablet {
        display: none;
    }
}

.articolo {
    background-color: white;
    border-radius: var(--general-radius);
    height: 100%;
    position: relative;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    scale: 1;
    transition: all 0.3s ease;
}

.articolo button,
.articolo span {
    border-radius: var(--general-radius) !important;
}

.articolo:hover {
    box-shadow: 0 0 20px #0000001A;
    scale: 1.01;
}

.articolo>* {
    width: 100%;
}

.articolo>*:not(:first-child) {
    margin-top: 10px;
}

.articolo .flag-volantino-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(45deg) translateX(50%);
    transform-origin: 100% 0;
}

.articolo .flag-volantino {
    background: var(--totem-secondary);
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.65em;
    line-height: .65rem;
    padding: .5rem calc(50% - 50px);
    box-shadow: var(--box-shadow);
    margin-top: 40px;
    width: 100%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.9);
    }

    45%,
    55% {
        transform: scale(1);
    }

    100% {
        transform: scale(.9);
    }
}

.articolo .flag-volantino small {
    display: block;
    font-size: .55rem;
    line-height: .55rem;
    text-transform: uppercase;
    margin-top: 1px;
}

.articolo .marchio-modello {
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    margin: 0 0 1em;
}

.articolo.withflag .marchio-modello {
    /* max-width: calc(100% - 115px); */
}

.articolo.outlet .marchio-modello {
    max-width: calc(100% - 115px);
}

.articolo.outlet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top left,
            rgba(255, 77, 0, 0.3) 0%,
            rgba(255, 77, 0, 0.15) 20%,
            rgba(255, 77, 0, 0.05) 40%,
            transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.articolo .marchio-modello .logo-marchio {
    max-width: 33%;
    max-height: 35px;
    margin-right: 10px;
    object-fit: contain;
}

.articolo .marchio-modello .nome-marchio {
    margin-right: 10px;
    text-align: center;
    padding: 1px 3px;
    word-break: initial;
    font-size: 1rem;
    font-weight: 500;
}

.descrizione-titolo {
    padding: 5px 3px;
    word-break: initial;
    font-size: 1.2rem;
    font-weight: 400;
}

.articolo .marchio-modello .nome-descrizione {
    margin-right: 10px;
    text-align: center;
    padding: 1px 3px;
    word-break: initial;
    font-size: 1rem;
}

.articolo .marchio-modello span {
    word-break: break-word;
}

.articolo .immagine-descrizione {
    justify-items: center;
    flex-grow: 1;
    margin-bottom: 10px;
}

.articolo .immagine-descrizione>* {
    height: 225px;
}

.articolo .immagine-descrizione .immagine-prodotto {
    padding: 10px;
    display: flex;
    justify-content: center;
    max-width: 80%;
}

.articolo .immagine-descrizione .immagine-container {
    max-height: 225px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none !important;
}

.articolo .immagine-descrizione .immagine-prodotto img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.no-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.no-image>span {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: var(--border-color);
    border: var(--border);
    border-radius: 100rem;
    width: 100%;
    max-width: 150px;
    max-height: 100%;
}

#comparazione .no-image {
    height: 300px;
}

#comparazione .no-image>span {
    max-width: 300px;
    font-size: 30px;
    line-height: 36px;
}

.no-image>span::before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%;
}

.no-image>span>span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.articolo .immagine-descrizione .descrizione-prodotto {
    width: 70%;
    padding: 15px 5px;
    display: flex;
    align-items: center;
    justify-items: center;
    flex-grow: 1;
}

.articolo .immagine-descrizione .descrizione-prodotto .descrizione-prodotto-content {
    width: 100%;
    max-height: 100%;
    font-size: .775rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    line-clamp: 8;
    -webkit-box-orient: vertical;
    padding-top: 2rem;
}

.descrizione-prodotto {
    min-height: 80px;
}

.descrizione-prodotto-content {
    font-size: 14px;
}

.descrizione-prodotto-content ul {
    margin-bottom: 0;
}

.articolo .immagine-descrizione .descrizione-prodotto ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
}

.articolo .immagine-descrizione .descrizione-prodotto li {
    display: flex;
}

.articolo .immagine-descrizione .descrizione-prodotto li p {
    margin: 0;
}

.articolo .immagine-descrizione .descrizione-prodotto li p::first-letter {
    text-transform: uppercase;
}

.articolo .immagine-descrizione .descrizione-prodotto li::before {
    content: "○";
    color: var(--totem-orange);
    margin-right: 3px;
}

.articolo .info-prezzo {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
    margin-top: 0;
}

.articolo .bottoni-prodotto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    white-space: nowrap;
}

.articolo .scheda-energetica {
    display: flex;
    align-items: center;
}

.prezzi_scheda .classe_energetica,
.azioni-prodotto .classe_energetica,
.articolo .classe_energetica {
    background: none !important;
}

.prezzi_scheda .classe_energetica img,
.azioni-prodotto .classe_energetica img,
.articolo .classe_energetica img {
    height: 22px;
}

.articolo .scheda-energetica>*:not(:first-child) {
    margin-left: 5px;
}

.articolo .bottoni-prodotto>*:not(:first-child) {
    margin-top: 12px;
}

.articolo .disponibilita-prodotto span {
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 100rem;
    color: white;
    display: block;
}

.prezzi_scheda .prezzo-prodotto,
.articolo .prezzo-prodotto {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

.prezzi_scheda .prezzo-prodotto {
    align-items: center;
}

.prezzi_scheda .prezzo-pubblico,
.articolo .prezzo-pubblico {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 600;
    color: var(--totem-orange);
}

.prezzi_scheda .prezzo-barrato,
.articolo .prezzo-barrato {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.prezzi_scheda .prezzo-barrato .barrato_label,
.articolo .prezzo-barrato .barrato_label {
    font-size: 0.6em;
    font-weight: normal;
    margin-right: 0.2em;
    color: var(--totem-dark-gray);
    text-align: right;
}

.prezzi_scheda .prezzo-barrato .barrato_label button,
.articolo .prezzo-barrato .barrato_label button {
    padding: 0;
    color: var(--totem-dark-gray);
}

.prezzi_scheda .prezzo-barrato .barrato,
.articolo .prezzo-barrato .barrato {
    text-decoration: line-through;
    font-size: 1em;
    font-weight: 600;
    margin-right: 0.2em;
    color: var(--totem-dark-gray);
}

.prezzi_scheda .prezzo-barrato .consigliato,
.articolo .prezzo-barrato .consigliato {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 600;
    margin-bottom: 1px;
    color: var(--totem-dark-gray);
}

.prezzi_scheda .prezzo-barrato .sconto,
.articolo .prezzo-barrato .sconto {
    font-size: 0.7em;
    padding: 1px 5px 1px;
    color: white;
    background-color: var(--totem-orange);
    border-radius: 100rem;
}

.articolo .banners-prodotto {
    position: absolute;
    top: 5px;
    left: -10px;
    margin-top: 5px;
    z-index: 1000;
}

.articolo .banners-prodotto a {
    margin-left: 10px;
}

.articolo .banners-prodotto button {
    padding: 3px 7px;
    border-radius: 12px;
}

.articolo .banners-prodotto i {
    padding-left: 5px;
}

.promoclima_container {
    --totem-bannerpromo: var(--totem-promoclima);
}

.cashback_container {
    --totem-bannerpromo: var(--totem-cashback);
}

.bannerpromo_container {
    border: 1px solid var(--totem-bannerpromo);
    background: white !important;
    border-radius: var(--general-radius);
    color: var(--totem-bannerpromo);
    padding: 8px;
    font-size: .5rem;
    line-height: .5rem;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bannerpromo_container .bannerpromo_price {
    font-size: 1rem;
    line-height: 1rem;
}

.garanzia_container {
    border: 1px solid var(--totem-garanzia);
    background: white !important;
    border-radius: var(--general-radius);
    color: var(--totem-garanzia);
    padding: 6px;
    font-size: .75rem;
    line-height: .75rem;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garanzia_container:hover {
    background: #002967 !important;
    color: white;
}

.garanzia_container .garanzia_icon,
.bannerpromo_container .bannerpromo_icon {
    font-size: 1.2rem;
    margin-right: 3px;
}

.garanzia_container .garanzia_small_title {
    font-size: 8px;
    line-height: 8px;
    margin-top: 3px;
}

.garanzia_container .garanzia_small_title {
    color: var(--totem-text-gray);
}

.garanzia_container .garanzia_prezzo {
    font-size: 20px;
    line-height: 20px;
    padding: 8px;
    margin-left: 10px;
    margin-right: -5px;
    background: var(--totem-garanzia);
    color: white;
    border-top-left-radius: calc(var(--general-radius) / 2);
    border-bottom-left-radius: calc(var(--general-radius) / 2);
}

.articolo .azioni-prodotto {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

.button-prodotto .azioni-prodotto {
    z-index: 1;
    width: 400px;
    justify-self: center;
}

.articolo .azioni-prodotto button {
    padding: 2px 6px !important;
}

.articolo .azioni-prodotto>*:not(:first-child) {
    margin-left: 10px;
}

.articolo .bottoni-prodotto .button_aggiungi_comparazione {
    color: #002967 !important;
    border-color: #002967 !important;
}

.articolo .bottoni-prodotto .button_aggiungi_comparazione:hover {
    color: white !important;
    border-color: #002967 !important;
    background-color: #002967 !important;
}

.articolo .bottoni-prodotto .checkmark {
    border-color: #002967 !important;
}

.articolo .acquista-prodotto {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-grow: 1;
}

.button-prodotto .acquista-prodotto {
    width: 400px;
}

.articolo .acquista-prodotto>*:not(:first-child) {
    margin-left: 5px;
}

.articolo .acquista-prodotto button {
    background-color: #002967;
    border: none;
    padding: 4px 8px !important;
    color: white;
}

.articolo .acquista-prodotto button:hover {
    background-color: #002967;
    scale: 1.075;
    transition: scale 0.2s ease;
    color: white !important;
}

.info-prezzo .decimali {
    font-size: 1.25rem;
}

.prezzi_scheda .decimali {
    font-size: 1.75rem;
}

#item-immagini {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    height: 750px;
}

#main-carousel {
    width: 85%;
}

#thumbnail-carousel {
    align-content: center;
    justify-items: center;
}

#thumbnail-carousel img {
    display: block;
    max-width: 100px;
    max-height: 100px;
    justify-self: center;
}

#thumbnail-carousel .splide__slide {
    opacity: 0.5;
    align-content: center;
}

/* #thumbnail-carousel .splide__slide {
    margin-bottom: 20px !important;
} */

#thumbnail-carousel .splide__slide.is-active {
    opacity: 1;
    border: none !important;
    scale: 1.1;
    align-content: center;
}

.splide__slide.is-active {
    align-self: center;
}

.titolo-scheda {
    text-align: left;
    margin-bottom: 0 !important;
    font-weight: 500;
    font-size: 1.6rem;
}

.scheda_marketing {
    text-align: left;
    color: black;
    font-size: 1.2rem;
    font-weight: 300;
    margin-left: 20px !important;
}

.scheda_marketing ul {
    list-style: disc;
}

.scheda_marketing ul li::marker {
    font-size: 0.8rem;
}


.scheda-prodotto {
    height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.scheda-fissa {
    position: sticky;
    top: 100px;
    transition: top .2s ease;
    will-change: top;
}

.scheda-fissa.is_hidden {
    position: sticky;
    top: 20px;  
}

#caratteristiche .primo {
    font-size: 26px;
    text-align: center;
    padding: 6px;
    font-weight: 500;
}

#schede-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--general-padding);
    flex-wrap: nowrap;
}

#schede-buttons-container:not(.show) {
    display: none;
}

#schede-buttons-container .totem-button:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#schede-buttons-container .totem-button:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#schede-buttons-container .totem-button.active {
    background: var(--totem-orange) !important;
    color: white !important;
}

#scheda-tecnica .titolo_descrizione_lunga {
    text-align: center;
    padding-left: 30px;
    height: 100%;
    align-content: center;
}

#scheda-tecnica .list-group{
    border-radius: var(--general-radius);
}

.dettagli_prodotto {
    height: 100%;
    padding-top: 5px !important;   
}

.sopra,
.sotto {
    height: 100%;
}

.col-scheda {
    display: flex;
    /* justify-content: space-around; */
}

.col-prezzo {
    width: 50%;
    align-content: start;
}

.col-info {
    padding: 8px 37px;
    color: #002967;
}

.sezione-tecnica {
    display: flex;
    flex-direction: column;
}

#scheda-tecnica .titolo_descrizione_lunga>*:not(:first-child) {
    margin: 0.5em 0;
}

#scheda-tecnica .first_col .col-lg-6:first-child {

}

/* #scheda-tecnica.ha_scheda_produttore .first_col {
    flex-direction: column;
    width: 50% !important;
} */

#scheda-tecnica:not(.ha_scheda_produttore) .first_col {
    flex-direction: row;
    width: 100%;
}

/* #scheda-tecnica.ha_scheda_produttore .first_col .col-lg-6 {
    width: 100%;
} */

#scheda-tecnica.ha_scheda_produttore .first_col .col-lg-6:last-child {
    padding-left: 0;
}

/* #scheda-tecnica.ha_scheda_produttore>div>.col-lg-6 {
    padding-right: 0;
} */

/* #scheda-tecnica.ha_scheda_produttore #caratteristiche {
    margin-top: 2em;
} */

#tab-schede {
    flex-grow: 1;
}

.list-group {
    border-radius: var(--general-radius);
}

.list-group:not(:first-child):not(:first-of-type) {
    margin-top: var(--general-padding);
}

.list-group-item {
    padding: 3px 8px;
    border: var(--border);
}

.gruppo.list-group-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--totem-orange);
    width: 100% !important;
}

.productkit.list-group-item {
    text-align: center;
    background: var(--totem-background);
    color: white;
}

.list-group-item .caratteristica_name {
    color: #aaa;
    font-weight: 500;
    width: 50%;
}

.list-group-item .caratteristica_value {
    width: 100%;
}

.list-group-item.caratteristica {
    display: flex;
}

.list-group-item.caratteristica:nth-child(odd) {
  background-color: #ffffff; 
}


.list-group-item.caratteristica:nth-child(even) {
  background-color: #f9f9f9;
}

.list-group-item.caratteristica> :not(:last-child) {
    margin-right: 10px;
}

#scheda-produttore iframe {
    border-radius: var(--general-radius);
}

#scheda-tecnica .titolo_descrizione_lunga .codici {
    font-size: 0.8rem;
    text-align: center;
    color: var(--totem-dark-gray);
    margin-top: 1em;
}

#scheda-tecnica .titolo_descrizione_lunga .descrizione_modello {
    font-size: 2rem;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 500;
    text-align: left;
    margin-left: 15px;
}

#scheda-tecnica .titolo_descrizione_lunga .barcodes {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0;
}

.prezzi_scheda {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 0 !important;
    width: 400px;
    justify-self: center;
}

.prezzi_scheda .prezzo_barrato_scheda {
    text-decoration: line-through;
    font-size: 1.5rem;
    margin-right: 10px;
    color: var(--totem-dark-gray);
}

.prezzi_scheda .prezzo_pubblico_scheda {
    color: var(--totem-orange);
    font-size: 2.375rem;
    font-weight: 600;
}

#img_carousel .carousel-cell {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#img_carousel.gallery img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#scheda-tecnica #img_carousel img {
    max-height: 500px !important;
    max-width: 100%;
}

#comparazione .panel-footer,
#scheda-tecnica .panel-footer {
    margin-top: var(--general-padding);
    font-size: 0.8em;
    line-height: 1.2em;
    display: inline-block;
    margin-bottom: 50px;
    width: 50%;
    margin-left: 12px;
}

#comparazione .intestazione .caratteristica_value img {
    height: 300px;
    width: 100%;
    object-fit: contain;
}

#comparazione-container {
    overflow: auto;
    display: flex;
}

#comparazione-container .list-group {
    flex-basis: 100%;
}

#comparazione .list-group-item.caratteristica>* {
    min-width: 225px;
}

#richiestaBody {
    text-align: center;
}

#richiestaBody .modal-center {
    text-align: center;
}

#richiestaBody .intro-msg:not(.show) {
    display: none;
}

#richiestaBody .intro-msg,
#richiestaBody #mail_modal_section_contattaci {
    margin-bottom: var(--general-padding);
}

#richiestaBody .intro-msg .prezzopromo {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

#richiestaBody #contatti-msg {
    display: flex;
    justify-content: center;
    align-items: center;
}

#richiestaBody #contatti-msg *:not(:first-child) {
    margin-left: 5px;
}

#mail_modal_section_prenotazione h3 {
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 600;
}

#mail_modal_section_prenotazione label {
    display: inline-block;
    display: block;
    text-align: left;
}

#mail_modal_section_prenotazione .row {
    margin-top: -10px;
}

#mail_modal_section_prenotazione .row>* {
    margin-top: 10px;
}

#mail_modal_section_prenotazione .row>*:not(:first-child) {
    margin-top: 10px;
}

#mail_modal_section_prenotazione label.req .label-title::after {
    content: " *";
}

#mail_modal_section_prenotazione .help-block {
    margin-top: 10px;
}

.mail-modal-footer {
    margin-top: var(--general-padding);
}

#anteprima_volantino {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translate(calc(-100% + 20px), -50%);
    z-index: 1;
    box-shadow: var(--box-shadow);
    border-top-right-radius: var(--general-radius);
    border-bottom-right-radius: var(--general-radius);
    background: white;
    transition: var(--transition);
    display: flex;
    justify-content: center;
}

#anteprima_volantino.show {
    transform: translate(0, -50%);
}

#anteprima_volantino a {
    background-color: initial !important;
    padding: 5px;
    padding-right: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

#anteprima_volantino img {
    width: 150px;
    border: var(--border);
}

#anteprima_volantino a button {
    font-size: .65rem;
    padding: 1px 3px;
    white-space: nowrap;
    text-transform: uppercase;
    border: var(--border);
    border-top: none;
    font-weight: 600;
}

#anteprima_volantino>button {
    padding: 5px;
    color: var(--totem-orange);
    transition: var(--transition);
    transform: rotate(-180deg);
    font-size: 20px;
    box-shadow: none;
}

#anteprima_volantino.show>button {
    transform: rotate(0);
}

.modal .table_modal_garanzia_overflow {
    overflow: auto;
}

.modal .table_modal_garanzia {
    width: 100%;
}

.modal .table_modal_garanzia th,
.modal .table_modal_garanzia td {
    padding: 0.5em 1em;
}

.modal .table_modal_garanzia th:not(:last-child),
.modal .table_modal_garanzia td:not(:last-child) {
    border-right: var(--border);
}

.modal .table_modal_garanzia th,
.modal .table_modal_garanzia tr:not(:last-child) td {
    border-bottom: var(--border);
    ;
}

.table_modal_garanzia_container {
    border: var(--border);
    border-radius: var(--general-radius);
    width: 100%;
    min-width: max-content;
}

#banner_cover_image {
    position: relative;
    margin-bottom: var(--general-padding);
}

#banner_cover_image h1 {
    margin: 0;
    width: 100%;
    font-size: 4rem;
    font-weight: 600;
    color: var(--totem-orange);
}

.cart-product-summary {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-summary img {
    width: 100px !important;
    min-width: 100px;
    height: 100px !important;
    object-fit: contain;
    margin-right: 10px;
}

.cart-product-summary .no-image {
    width: 100px !important;
    height: 100px !important;
    margin-right: 10px;
}

.cart-product-summary .no-image>span {
    font-size: 12px;
    line-height: 14px;
}

.cart-product-summary .total-price {
    margin-top: 5px;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.cart-product-summary .total-price i {
    margin: 0 5px;
    font-size: .85rem;
    color: var(--totem-dark-gray);
}

.cart-product-summary .product-price {
    color: var(--totem-orange);
}

.cart-product-summary .total-products {
    margin-top: 5px;
}

.cart-product {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    border-bottom: var(--border);
    padding: 0 40px 20px 40px;
}

#products {
    width: fit-content;
    margin: auto;
    padding: 20px 60px;
    border: var(--border);
    border-radius: var(--general-radius);
    background: white;
}

.cart-product:not(:first-child) {
    /* margin-top: var(--general-padding); */
    padding-top: 20px;
}

.cart-product:last-of-type {
    border: none;
    padding-bottom: 0;
}

.cart-product .cart-product-image {
    margin-right: 10px;
}

.cart-product .cart-product-image>img {
    width: 165px;
    height: 165px;
    object-fit: contain;
}

.cart-product .no-image {
    width: 165px;
    height: 165px;
}

.cart-product .cart-product-info-container {
    width: 100%;
}

.cart-product .cart-product-info>* {
    margin: 0;
}

.cart-product .cart-product-info>*:not(:first-child) {
    margin-top: 5px;
}

.cart-product .cart-product-title {
    font-size: 1.25rem;
}

.cart-product .cart-product-info-general {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cart-product .cart-product-info-general .logo_marchio {
    margin-right: 5px;
    height: 35px;
    max-width: 100px;
    object-fit: contain;
}

.descrizione_modello {
    font-family: "Outfit", sans-serif !important;
}

.cart-product .cart-product-info-general .nome-marchio {
    margin-right: 5px;
    text-align: center;
    background: black;
    color: white;
    padding: 1px 5px;
}

.cart-product .cart-product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cart-product .cart-product-price>*:not(:first-child) {
    margin-left: 5px;
}

.cart-product .product-quantity {
    padding: 5px 10px;
    width: 55px;
    border-radius: 20px;
}

.cart-product .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--totem-orange);
}



.cart-product .cart-product-price i {
    font-size: .85rem;
    color: var(--totem-dark-gray);
}

.cart-product .additional-services-container {
    margin-top: 5px;
    display: flex;
    flex-direction: column;
}

.cart-product .cart-total {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.cart-product .cart-total .price {
    font-size: 1.5rem;
}

.cart-product .container-installation .price-container {
    display: inline-flex;
    align-items: center;
}

.cart-product .container-installation label {
    display: inline;
}

.cart-product .container-installation .quantity-info {
    display: inline-block;
}

.cart-product .quantity-info i,
.cart-product .cart-product-remove i {
    font-size: 1.25rem;
    height: 2rem;
    width: 2rem;
}

.cart-product .cart-product-remove i {
    color: var(--totem-red);
}

#controls .cart-total-wrapper {
    text-align: center;
    /* border: var(--border); */
    /* border-radius: var(--general-radius); */
    /* background: white; */
    width: fit-content;
    padding: 15px 25px;
    margin: 20px auto;
    font-size: 25px;
}

#controls .cart-total-wrapper>*>* {
    vertical-align: middle;
}

#controls .cart-total-wrapper .cart-total-amount {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--totem-orange);
}

#controls #total_total {
    font-size: 1.5rem;
}

#controls .cart-control-delete-wrapper-container {
    display: flex;
    justify-content: space-between;
    margin: -5px;
    margin-top: 5px;
}

#controls .cart-control-delete-wrapper-container>* {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

#controls .cart-control-delete-wrapper-container a {
    display: inline-block;
    margin: 5px;
    padding: 5px 10px;
}

#delivery-store-cap .select2,
#delivery-store-cap button {
    margin-top: 10px;
}

#modalMail {
    z-index: 10000;
}

#energyLabelModal .modal-body {
    text-align: center;
}

.details-buttons {
    display: flex;
    position: absolute;
    z-index: 1;
    left: calc(var(--general-padding) / -2);
    top: calc(var(--general-padding) / -2);
}

.details-buttons button+button {
    margin-left: var(--general-padding);
}

.list-group-item .azioni-prodotto {
    display: flex !important;
    justify-content: center !important;
}

.prezzi_scheda .pill_sconto {
    font-size: 18px !important;
    line-height: 18px !important;
    padding: 6px !important;
    margin-right: 10px;
    color: white;
    background-color: var(--totem-orange);
    border-radius: 100rem;
}

.accordion-button:focus {
    box-shadow: 0;
}

.accordion-button:not(.collapsed) {
    background-color: white !important;
    color: var(--totem-orange) !important;
}

.accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EA5B0D'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 0 !important;
}

.accordion-body>li {
    border-left: none;
    border-right: none;
}

.accordion-body>li:first-child {
    border-top: none;
}

.accordion-body>li:last-child {
    border-bottom: none;
}

.accordion-body .caratteristica_name {
    display: flex !important;
    justify-content: flex-start !important;
}

.accordion-body .caratteristica_value {
    display: flex !important;
    justify-content: flex-end !important;
    text-align: right;
}

.accordion-item:first-of-type {
    border-top-left-radius: var(--general-radius);
    border-top-right-radius: var(--general-radius);
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(var(--general-radius) - 1px);
    border-top-right-radius: calc(var(--general-radius) - 1px);
}

.accordion-item:last-of-type {
    border-bottom-right-radius: var(--general-radius);
    border-bottom-left-radius: var(--general-radius);
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(var(--general-radius) - 1px);
    border-bottom-left-radius: calc(var(--general-radius) - 1px);
}

.accordion-version {
    display: none;
}

.accordion-header {
    margin-bottom: 0 !important;
}

.list-version {
    display: block;
}

.titolo_descrizione_lunga .descrizione {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: left;
    margin-left: 15px !important;
}

.button-prodotto {
    align-items: center;
}

.azioni-secondarie {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    justify-self: center;
}


#back_button,
#back_home_button {
    position: absolute;
    z-index: 9;
    transform: translate3d(-20%, -20%, 0);
}

.div_open_scheda {
    cursor: pointer;
    z-index: 1;
}

div#buttons_settori {
    margin: -2.5px 0;
    padding: 0 10px;
    margin-top: calc(var(--general-padding) / 2 - 2.5px);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

div#buttons_settori button {
    display: inline-block;
    margin: 2.5px;
}

div#buttons_settori button.disabled {
    background-color: lightgray !important;
    color: black !important;
    border: lightgray;
    cursor: default;
}

.tooltip-inner {
    max-width: 300px;
}

.tooltip-inner img {
    max-width: 100%;
}

.loghi-pagamenti {
    width: 100%;
    max-width: 750px;
}

#menu-homepage {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 60px 10px;
}

#menu-homepage>.homepage-button {
    flex: 0 1 calc(calc(100% / 4) - calc(1rem / 4 * 3));
    min-height: 226px;
    border: var(--border);
    border-radius: var(--general-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    transition: var(--transition);
    background-color: white;
}

#menu-homepage>a.homepage-button {
    background: var(--totem-lightorange);
}

#menu-homepage>a.homepage-button:hover {
    background: #f8c6b9;
}

#menu-homepage>a.homepage-button>* {
    vertical-align: middle;
}

#menu-homepage>.homepage-button:hover {
    background-color: var(--totem-lightorange);
}

#menu-homepage>.homepage-button>i {
    color: var(--totem-secondary);
    font-size: 5rem;
}

#menu-homepage>.homepage-button>img {
    height: 7.5rem;
    width: auto;
}

#menu-homepage>.homepage-button>span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--totem-orange);
    text-transform: uppercase;
}

.tile-container {
    text-align: center;
    user-select: none;
    background: white;
    padding: 12px 0;
}

/* .tile-row {
    justify-content: space-around;
    display: flex;
    width: 60%;
    margin: auto;
} */

/* .tile-row {
    margin-bottom: 4px;
} */

.tile-row {
    display: flex;
    width: 100%;
    justify-self: center;
    gap: 12px;
}

.tile {
    position: relative;
    width: -webkit-fill-available;
    height: 25rem;
    margin: 0;
    cursor: pointer;
    display: inline-block;
    align-content: center;
    font-size: 4rem !important;
}

.tile svg {
    width: 250px;
    stroke: white;
    fill: none;
    stroke-width: 0.7px;
    stroke-miterlimit: 10;
}

.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 20%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: 2;
    transition: left 0.3s ease;
}

.shine:hover::before,
.shine:focus::before {
    animation: shine 0.85s;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

.hero-1:hover::before {
    left: 100%;
    filter: blur(0rem);
}

.titolo-card {
    font-size: 32px !important;
    font-weight: 500;
    width: fit-content;
    color: var(--totem-orange);
    letter-spacing: -2px;
}

.page-container {
    visibility: hidden;
}

.page-container img {
    width: -webkit-fill-available;
}

.page {
    cursor: pointer;
    height: 100dvh;
    width: 100vw;
    inset: 0;
    position: fixed;
    z-index: 1000000;
}

.hero-1,
.hero-2,
.hero-3,
.hero-10,
.hero-20,
.hero-30 {
    background: linear-gradient(to bottom, #F8F8F8, #d6d6d6) !important;
}

.hero-4,
.hero-5,
.hero-6,
.hero-40,
.hero-50,
.hero-60 {
    background: linear-gradient(to top, #F8F8F8, #d6d6d6) !important;
}


.hero-10 .dropdown-menu,
.hero-20 .dropdown-menu,
.hero-30 .dropdown-menu,
.hero-40 .dropdown-menu,
.hero-50 .dropdown-menu,
.hero-60 .dropdown-menu {
    background: transparent !important;
}

.hero-1 .tile-content,
.hero-2 .tile-content,
.hero-3 .tile-content,
.hero-4 .tile-content,
.hero-5 .tile-content,
.hero-6 .tile-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-1 .tile-fade,
.hero-2 .tile-fade,
.hero-3 .tile-fade,
.hero-4 .tile-fade,
.hero-5 .tile-fade,
.hero-6 .tile-fade {
    opacity: 0;
    transition: opacity 0.4 ease-in-out;
}

.hero-1 .tile-content:hover,
.hero-2 .tile-content:hover,
.hero-3 .tile-content:hover,
.hero-4 .tile-content:hover,
.hero-5 .tile-content:hover,
.hero-6 .tile-content:hover {
    transform: translateY(-10px);
    scale: 1.1;
}

.tile-content>img {
    width: 15rem;
    aspect-ratio: 1;
    object-fit: contain;
}

.card-categoria {
    position: relative !important;
    width: 100%;
    font-weight: 500;
    background: linear-gradient(to bottom, #F8F8F8, #d6d6d6) !important;
    align-self: center;
    border: none;
    height: 100%;
    align-items: center;
}

.card-categoria:hover {
    cursor: auto;
}

.page i {
    position: fixed;
    top: 50px;
    right: 50px;
    color: white;
    font-size: 30px;
    z-index: 10000000;
}

.page i:hover {
    cursor: pointer;
}

.card-categoria li.subcategoria {
    width: -webkit-fill-available !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.card-categoria .grid {
    list-style: none;
}

.card-categoria .grid-item a {
    font-size: 2.8rem !important;
    color: var(--totem-orange);
    padding-left: 15%;
    font-weight: 450;
    width: -webkit-fill-available;
    display: block;
    opacity: 0;
    transition: padding-left 0.4s ease-in-out, opacity 0.7s ease-in-out;
}

.slide-in-categoria {
    padding-left: 10% !important;
    opacity: 1 !important;
}

.card-categoria .grid-item a:hover {
    text-decoration: none !important;
}

.card-categoria.attivo .grid-item a:hover {
    padding-left: 12% !important;
}

.card-categoria.attivo .subcategorie-container:hover a:not(:hover) {
    opacity: 0.5 !important;
}

.card-categoria ul.subsubcategorie-container {
    list-style: none;
}

.card-categoria ul.subsubcategorie-container a {
    color: white;
    font-size: 15px !important;
    font-weight: 400 !important;
    display: none;
}

.card-categoria ul.subsubcategorie-container a:hover {
    color: var(--totem-orange);
    transition: none !important;
}

ul.subcategorie-container.grid {
    width: 100%;
    display: block;
}

.card-categoria ul.subcategorie-container.grid {
    width: 70%;
    display: block;
    align-self: center;
}

.img-card {
    opacity: 0;
}

.img-fade {
    opacity: 1 !important;
    transition: opacity 2.5s;
}


.center {
    position: relative;
}

.card-row {
    display: flex;
    justify-content: center;
}

.card {
    width: calc(calc(100vw - var(--scrollbar-width) - 1.5rem * 8) / 3);
    height: 250px;
    background-color: #fff;
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.4);
    border-radius: var(--general-radius);
    overflow: hidden;
    position: relative;
    margin: 1.5rem;
}

.card h3 {
    margin-top: 10px;
    text-align: center;
    color: var(--totem-orange);
}

.card p {
    font-size: 20px;
    text-align: center;
    padding: 20px 50px 10px;
}

.card .additional {
    position: absolute;
    overflow: hidden;
    z-index: 2;
    color: white;
}

@keyframes expand {
    from {
        width: 45px;
        height: 40px;
    }

    to {
        width: 100%;
        height: 100%;
    }
}

@keyframes fast {
    from {
        top: -16px;
        left: -16px;
    }

    to {
        top: 0;
        left: 0;
    }
}

@keyframes radius {
    from {
        border-radius: 50%;
    }

    to {
        border-radius: 0 5px 5px 0;
    }
}

@keyframes shrink {
    from {
        width: 100%;
        height: 100%;
    }

    to {
        width: 45px;
        height: 40px;
    }
}

@keyframes slow {
    from {
        border-radius: 0 5px 5px 0;
        top: 0;
        left: 0;
    }

    to {
        top: -23px;
        left: -42px;
        border-radius: 5px;
    }
}

.card.green .additional {
    background: var(--totem-orange);
}

.card:hover .additional {
    animation: expand 0.3s forwards, fast 0.01s forwards, radius 0.001s forwards;
}

.card:not(:hover) .additional {
    animation: shrink 0.3s forwards, slow 0.3s forwards 0.1s;
}

.triangolo {
    background: var(--totem-orange);
    width: 50px;
    height: 100px;
    transform: rotate(45deg);
    position: absolute;
    top: -48px;
    left: -15px;
    z-index: 10000;
}

.card i {
    position: absolute;
    color: white;
    top: 3px;
    left: 6px;
    z-index: 100000;
    transform: rotate(45deg);
    transition: transform 0.2s ease-in-out;
}

.card .additional .more-info {
    position: absolute;
    width: calc(calc(100vw - var(--scrollbar-width) - 1.5rem * 8) / 3);
    height: 100%;
    float: left;
    left: 0;
    text-align: center;
}


.card .additional .more-info .more-info-container {
    max-width: 450px;
    margin: auto;
}

.card .additional .more-info h1 {
    color: #fff;
    margin-bottom: 0;
}

.card.green .additional .more-info h1 {
    color: #224C36;
}

.card .more-info button {
    background: white;
    border-radius: 12px;
    padding: 0.2rem 0.8rem;
    color: var(--totem-orange);
    font-size: 1.25rem;
}

.card .general {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 0;
    text-align: center;
}

.card .general img {
    width: 125px;
    padding-top: 15px;
}

.card .general .more {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 0.9em;
}

#footer-banner {
    width: 70%;
    text-align: center;
    padding: 50px 0 100px 0;
    gap: 10px;
}

#footer-banner button {
    color: white;
    font-size: 28px;
    padding: 5px 10px;
    background-color: var(--totem-orange);
    border-radius: 12px;
}

#footer-banner button:hover {
    background-color: #de1420;
}

#recensioni_container {
    margin-top: var(--general-padding);
    border: var(--border);
    border-radius: var(--general-radius);
    overflow: hidden;
}

.recensioni_title {
    font-weight: 600;
    background: var(--totem-gray);
    border-bottom: var(--border);
    padding: .25rem .5rem;
    margin: 0 !important;
    text-transform: uppercase;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recensioni_title .google_info {
    display: flex;
    align-items: center;
}

.recensioni_title .google_info img {
    height: 1.5rem;
    margin-right: -.25rem;
}

.recensioni_title .recensioni_totali {
    font-size: .75rem;
    background: white;
    padding: .15rem .3rem;
    border-radius: var(--general-radius);
    margin-right: .5rem;

}

.recensioni_title .recensioni_totali span {
    font-weight: normal;
    color: var(--totem-dark-gray);
}

.recensioni_title .recensioni_totali i {
    color: var(--totem-secondary);
}

#recensioni_carousel .carousel-cell {
    width: 25%;
    padding: calc(var(--general-padding) / 2);
}

#recensioni_carousel .recensione-descrizione {
    font-size: .75rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

#recensioni_carousel .recensione-nome {
    color: var(--totem-orange);
    font-weight: bold;
    font-size: 1rem;
}

#recensioni_carousel .stelle {
    font-size: .75rem;
    color: var(--totem-secondary);
}

.outlet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: var(--border);
    border-radius: var(--general-radius);
    background: linear-gradient(var(--totem-orange) 0%, var(--totem-orange-secondary) 100%);
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.outlet-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 17.5rem;
    color: white;
    opacity: .15;
}

.outlet-btn span {
    background: #4c8bc8;
    padding: .5rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 3rem;
    position: relative;
}

.other-banners {
    margin-top: var(--general-padding);
    border: var(--border);
    border-radius: var(--general-radius);
    display: flex;
    gap: .25rem;
    overflow: hidden;
}

.other-banners>a {
    flex: 0 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.other-banners img {
    width: 100%;
    height: auto;
}

.puvs-container i {
    color: var(--totem-secondary);
}

.puvs-container>div:first-child .puv-title {
    font-size: 2rem;
}

.puvs-container>div:last-child .puv-title {
    font-size: 1.5rem;
}

.puvs-container>div:not(:first-child) {
    margin-top: var(--general-padding);
}

.puvs-container>div:last-child>div {
    display: flex;
    flex-wrap: wrap;
    gap: var(--general-padding);
}

.puvs-container .puv_contact {
    display: flex;
    gap: .25rem;
}

.puvs-container .puv-container {
    flex: 1 0 calc(calc(100% - var(--general-padding) * 2) / 3);
    padding: 0;
}

#news-modal .news-title-modal {
    font-size: 2.5rem;
    text-align: center;
    text-transform: uppercase;
    color: var(--totem-secondary);
}

#news-modal .news-container-modal {
    margin: auto;
    width: 22rem;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: .25rem solid var(--totem-orange);
    border-radius: 1000rem;
}

#news-modal .news-image-modal {
    width: 100%;
    margin-top: var(--general-padding);
}

#news-modal .countdown-news-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
}

#news-modal .countdown-news-modal>div {
    min-width: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 500;
    color: var(--totem-orange);
    border: 1px solid var(--totem-orange);
    padding: .5rem;
    border-radius: .5rem;
}

#news-modal .countdown-news-modal>div:first-child {
    color: white;
    background-color: var(--totem-orange);
}

#news-modal .countdown-news-modal>div>small {
    font-size: .75rem;
    font-weight: 400;
}

#news-modal .news-buttons-modal {
    margin-top: var(--general-padding);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
}

.arrow-up {
    display: none;
    position: fixed;
    z-index: 500000;
    text-align: center;
    align-content: center;
    right: 1rem !important;
    bottom: 1rem !important;
    box-shadow: none !important;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    border: .15rem solid #fff !important;
    outline: none !important;
    background: var(--totem-orange) !important;
}

.arrow-up:hover {
    transform: scale(1.05);
}

.arrow-up i {
    color: white;
    align-content: center;
    width: 2rem !important;
    height: 2rem !important;
    min-height: initial !important;
    min-width: initial !important;
    max-width: initial !important;
    max-height: initial !important;
}

.arrow-up a:hover {
    background-color: transparent;
}

.asw-widget .asw-menu-btn {
    left: 1rem !important;
    bottom: 1rem !important;
    box-shadow: none !important;
    width: 3rem;
    height: 3rem;
    border: .15rem solid #fff !important;
    outline: none !important;
    background: var(--totem-orange) !important;
}

.asw-widget .asw-menu-btn svg {
    width: 2rem !important;
    height: 2rem !important;
    min-height: initial !important;
    min-width: initial !important;
    max-width: initial !important;
    max-height: initial !important;
}

.asw-menu .asw-menu-header {
    background-color: var(--totem-orange) !important;
}

.asw-menu .asw-menu-header svg {
    fill: var(--totem-orange) !important;
}

.asw-menu .asw-btn.asw-selected,
.asw-menu .asw-btn:hover {
    border-color: var(--totem-orange) !important;
}

.asw-menu .asw-menu-content {
    height: calc(100% - 55px) !important;
    max-height: calc(100% - 55px) !important;
    overflow: auto !important;
}

.asw-menu .asw-footer {
    display: none !important;
}

.splide__arrow svg {
    fill: var(--totem-orange);
}

.splide__pagination__page {
    width: 12px;
    height: 12px;
    margin: 4px;
}

@media screen and (max-width: 1500px) {
    #menu-homepage>.homepage-button {
        flex: 0 1 calc(calc(100% / 3) - calc(1rem / 3* 2));
    }

    #first_carousel .carousel-cell {
        width: 50%;
    }

    #second2_carousel .carousel-cell {
        width: 50%;
    }

    #recensioni_carousel .carousel-cell {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 991px) {
    :root {
        --general-padding: 15px;
        --general-radius: 10px;
    }

    .desktoponly {
        display: none !important;
    }

    #navbar-header {
        display: none;
    }

    .accordion-version {
        display: block;
    }

    .list-version {
        display: none;
    }

    .no-margin-top-mobile {
        margin-top: 0 !important;
    }

    .modal .modal-dialog {
        width: calc(100% - 10px);
        height: calc(100% - 10px);
        margin: 5px auto !important;
        min-height: initial !important;
    }

    .title-header .header-button {
        margin-left: 10px;
    }

    #categorie-header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        border-radius: 0;
        background: none;
        transform: translateY(-110%);
        transition: var(--transition);
        height: 100vh;
        overflow: hidden;
    }

    #categorie-header.show {
        transform: translateY(0);
    }

    #categorie-header .categorie-header-content {
        max-height: 100%;
        background: white;
        display: flex;
        flex-direction: column;
        overflow: auto;
    }

    .menu-mobile-container {
        margin: var(--general-padding) !important;
        border: var(--border);
        border-radius: var(--general-radius);
    }

    .menu-mobile-container>li>button {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .75rem 1rem !important;
        color: var(--totem-orange) !important;
        line-height: 1.5;
        font-weight: 600;
        text-transform: uppercase;
    }

    .menu-mobile-container>li>button::after {
        content: '\f054';
        font-family: "Font Awesome 5 Free";
        color: var(--totem-secondary);
        transform: rotate(90deg);
        transition: var(--transition);
    }

    .menu-mobile-container>li.open>button::after {
        transform: rotate(-90deg);
    }

    #categorie-header .categorie-container {
        display: block;
        position: initial;
        text-align: left;
        flex-direction: column;
        height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    #categorie-header .categoria {
        width: 100%;
    }

    #categorie-header li {
        padding: 0 !important;
    }

    #categorie-header li:not(:first-child) {
        border-top: var(--border) !important;
    }

    #categorie-header .menu-mobile-container>li>ul>li {
        border-top: var(--border) !important;
    }

    #categorie-header .categoria a {
        color: var(--totem-text-gray) !important;
        padding: .75rem 1rem !important;
        line-height: 1.5;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    #categorie-header .categoria>a {
        font-weight: 300;
    }

    #categorie-header .categoria>a::after {
        content: '\f054';
        font-family: "Font Awesome 5 Free";
        color: var(--totem-secondary);
        font-weight: bold;
    }

    #categorie-header .subcategorie-container-container {
        display: block;
        top: calc(-100% - 5px) !important;
        left: 0 !important;
        width: 100%;
        padding: 0;
        border-radius: initial;
        z-index: 1;
        text-align: initial;
        max-height: 100vh;
        overflow: auto;
        animation: initial;
        transition: var(--transition);
    }

    #categorie-header .subcategorie-container-container.show {
        top: 0 !important;
    }

    #categorie-header .subcategorie-container {
        margin: var(--general-padding);
        border: var(--border);
        border-radius: var(--general-radius);
    }

    #categorie-header .subcategorie-container .subcategoria {
        width: 100%;
        padding: 5px;
    }

    #categorie-header .subcategorie-container .subcategoria:not(.notopenable)>a::after {
        content: '\f054';
        font-family: "Font Awesome 5 Free";
        color: var(--totem-secondary);
        transform: rotate(90deg);
        transition: var(--transition);
    }

    #categorie-header .subcategorie-container .subcategoria.open>a::after {
        transform: rotate(-90deg);
    }

    #categorie-header .subsubcategorie-container {
        height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    #categorie-header .subsubcategorie-container .subsubcategoria {
        border-top: var(--border) !important;
    }

    #categorie-header .subsubcategorie-container .subsubcategoria.open a {
        background-color: var(--totem-lightorange);
    }

    #site-header>* {
        width: auto;
    }

    /* #site-header .header-buttons {
        margin-left: .75rem;
    } */

    #site-header .header-logo .logo {
        height: 3rem;
    }

    #site-header .header-buttons .header-button:not(:first-child) {
        margin-left: .75rem;
    }

    #site-header .header-buttons .header-button {
        width: 2.5rem;
    }

    /* #site-header .header-buttons .carrello .cart-counter {
        top: 20px;

    } */

    .header-button i {
        font-size: 1.5rem;
        height: 2.5rem;
        width: 2.5rem;
    }

    .header-button>span {
        margin-top: 5px;
        font-size: 0.55rem;
        line-height: 0.55rem;
    }

    .title-header .title-modal {
        font-size: 1.5rem;
        margin-left: 10px;
    }

    body.homepage #container-content {
        display: flex;
        flex-direction: column;
    }

    .volantini-container {
        order: 2;
    }

    .container_second_carousel {
        position: relative;
        margin-top: var(--general-padding);
    }

    .container_second_carousel.no-volantino #second_carousel>div {
        width: 100%;
    }

    #second_carousel>div {
        height: 25%;
    }

    .volantini-container .container_second_carousel {
        order: 3;
    }

    .volantini-container #first_carousel_container {
        order: 2;
    }



    #scheda-tecnica>div>div:not(:first-child) {
        margin-top: var(--general-padding);
    }

    #scheda-tecnica .list-group-item.caratteristica>* {
        margin: 0 !important;
        justify-content: flex-start !important;
        text-align: left;
    }

    #scheda-tecnica .list-group-item.caratteristica {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center !important;
    }

    #scheda-tecnica .list-group-item .caratteristica_name {
        text-align: center;
    }

    .cart-product {
        flex-direction: column;
    }

    .cart-product .cart-product-image {
        margin: 0;
        margin-bottom: 10px;
    }

    #controls .cart-control-delete-wrapper-container {
        flex-direction: column;
        justify-content: center;
    }

    #scheda-tecnica.ha_scheda_produttore .first_col {
        width: 100% !important;
    }

    #scheda-tecnica .titolo_descrizione_lunga {
        padding-top: 1.5rem;
    }

    .prezzi_scheda {
        flex-direction: column;
    }

    .prezzi_scheda>* {
        margin-top: 0.5em
    }

    #scheda-tecnica .col-lg-6 {
        padding: 0 !important;
    }

    #comparation_flag {
        top: initial;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) translateY(110%);
        flex-direction: column-reverse;
        writing-mode: initial;
        width: max-content;
        border-radius: 0;
        border-top-right-radius: var(--general-radius);
        border-top-left-radius: var(--general-radius);
    }

    #comparation_flag .confronta-container {
        margin-bottom: 4px;
    }

    #comparation_flag.show {
        transform: translateX(-50%) translateY(0);
    }

    #comparation_flag .row-confronta>*:not(:first-child) {
        margin-top: 0;
        margin-left: 10px;
    }

    #comparation_flag .totem-button {
        padding: 3px 10px;
    }

    #comparation_flag .header-button {
        transform: rotate(0);
        flex-direction: column;
    }

    #comparation_flag .header-button i {
        transform: rotate(0);
    }

    #comparation_flag .header-button .span-compare {
        margin-top: 4px;
        margin-bottom: 0;
    }

    #comparazione .intestazione .caratteristica_value img {
        height: 150px;
    }

    #comparazione .list-group-item.caratteristica {
        display: flex;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:
            "label         label         label        "
            "featureValue0 featureValue1 featureValue2";
        column-gap: 10px;
    }

    #comparazione .list-group-item.gruppo div,
    #comparazione .list-group-item.caratteristica .caratteristica_name {
        position: sticky;
        top: 0;
        left: 9px;
        width: max-content;
        grid-area: label;
        text-align: left;
    }

    #scheda-produttore>* {
        margin-bottom: var(--general-padding);
    }

    .productkit.list-group-item {
        font-size: 1rem;
        border: none;
        margin-bottom: calc(var(--general-padding) / 4);
        border-radius: var(--general-radius);
    }

    .accordion.accordion-version:not(:last-child) {
        margin-bottom: var(--general-padding);
    }

    #menu-homepage>.homepage-button {
        flex: 0 1 calc(calc(50% - .5rem));
    }

    #recensioni_carousel .carousel-cell {
        width: 50%;
    }

    .puvs-container .puv-container {
        flex: 1 0 calc(calc(100% - var(--general-padding)) / 2);
        padding: 0;
    }

    #footer>.row:first-child>div:first-child {
        margin-bottom: var(--general-padding);
    }

    #footer>.row:first-child>div:not(:first-child) {
        padding-top: calc(var(--general-padding) / 2);
        padding-bottom: calc(var(--general-padding) / 2);
        border-top: var(--border);
    }

    #footer>.row:first-child>div:last-child {
        border-bottom: var(--border);
    }
}

@media screen and (min-width: 992px) {
    .mobileonly {
        display: none !important;
    }

    .homepage .categorie-container>.categoria>a {
        display: none !important;
    }

    .shopping-cart {
        -webkit-text-stroke: 0.75px white;
    }
}

@media print {
    .title-header .header-button {
        display: none;
    }

    .title-header .title-modal {
        text-align: center;
        margin: 0;
    }

    #header {
        display: none;
    }

    .details-buttons {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #menu-homepage {
        gap: .5rem;
    }

    #menu-homepage>.homepage-button {
        flex: 0 1 100%;
        display: block;
        padding: 3.5rem;
        min-height: initial;
    }

    #menu-homepage>.homepage-button>i {
        font-size: 1rem;
        margin-right: .5rem;
    }

    #menu-homepage>.homepage-button>img {
        height: 1.5rem;
        width: auto;
    }

    #menu-homepage>.homepage-button>span {
        font-size: 1rem;
        font-weight: 500;
    }

    #second_carousel>div,
    #first_carousel .carousel-cell {
        width: 100%;
    }

    #second_carousel>div,
    #second2_carousel .carousel-cell {
        width: 100%;
    }

    .first-carousel-container>* {
        width: 100%;
    }

    .margin-top-mobile {
        margin-top: var(--general-padding) !important;
    }

    #recensioni_carousel .carousel-cell {
        width: 100%;
        padding-right: calc(var(--general-padding) * 3);
        padding-left: calc(var(--general-padding) * 3);
    }

    .other-banners {
        flex-direction: column;
    }

    .other-banners>a {
        max-height: 7.5rem;
        overflow: hidden;
    }

    #banner_cover_image h1 {
        font-size: 2rem;
    }

    .puvs-container .puv-container {
        flex: 1 0 100%;
        padding: 0;
    }

    .puvs-container>div:first-child .puv-title {
        font-size: 1.5rem;
    }

    .puvs-container>div:last-child .puv-title {
        font-size: 1.25rem;
    }

    .container-locate {
        flex-direction: column;
    }

    .locate {
        width: 100% !important;
    }
}

@media screen and (max-width: 575px) {

    body {
        overflow-x: hidden;
        overflow-y: visible;
    }

    p,
    div,
    li {
        font-family: "Outfit", sans-serif !important;
    }

    #site-header {
        width: 100% !important;
    }

    #titolo-prodotti,
    #titolo-servizi {
        font-size: 30px !important;
        font-weight: 450;
        margin-bottom: 25px;
    }

    #header {
        width: 100%;
        top: 0;
        left: 0;
        z-index: 10000;
        transition: transform 200ms ease;
        will-change: transform;
    }

    .is-hidden {
        transform: translateY(-110%) !important;
    }

    .at-top {
        transform: none !important;
        box-shadow: var(--box-shadow);
    }

    .header-logo {
        margin-left: 0;
    }

    #img-logo {
        width: 5rem;
    }

    .search-container {
        width: 42% !important;
    }

    /* #first_carousel.img {
    width: 100px;
  } */

  .negozi-containers {
    padding: 100px 0 0 !important;
  }

  .negozi-subcontainers {
    display: block !important;
  }

  .titolo-info {
    font-family: "Outfit", sans-serif !important;
    font-size: 25px !important;
    font-weight: 500;
    color: #de1420;
  }

  .nome-negozio {
    font-size: 22px !important;
  }

    .dati-info li {
        font-size: 18px !important;
    }

  .dettagli-contatti p {
    font-size: 18px !important;
  }

  .dettagli-orari {
    margin: 0 40px 0 0 !important;
  }

  #mappa-negozi2 {
    scroll-margin-top: 20px;
  }

  .lista-negozi {
    text-align: center;
    margin-bottom: 20px;
  }

  .mappa-img img,
  .dettagli-container {
    width: 95% !important;
    height: 100% !important;
    margin: auto;
  }

  .mappa-img {
    text-align: center;
    padding: 20px 0 30px !important;
  }

  .sezione-negozi h4 {
    font-size: 35px !important;
    text-align: center;
    margin-bottom: 15px;
    padding: 0px 20px;
  }
  
  .lista-negozi a {
    font-size: 25px !important;
  }

    #footer-banner {
        width: 100%;
        padding: 0 0 20px 0;
        display: flex;
    }

    #footer-banner div {
        gap: 10px !important;
        margin: auto;
        width: 95%;
    }

    #footer-banner button {
        font-size: 18px;
    }

    #menu-background,
    #black-background {
        z-index: 0 !important;
    }

    .card-categoria .grid-item a {
        font-size: 1.75rem !important;
        padding-left: 0 !important;
    }

    .card-categoria li.subcategoria {
        padding: 0;
    }

    ul.subcategorie-container.grid {
        padding-left: 0 !important;
        width: 100% !important;
    }

    .contenuto-subcategorie {
        width: 86%;
    }

    .card-categoria.attivo .grid-item a:hover {
        padding-left: 0 !important;
    }

    .card-categoria.attivo .subcategorie-container:hover a:not(:hover) {
        opacity: 1 !important;
    }

    .scroll-hover {
        scale: 1.2;
        transform: translateY(-10px);
    }

    .page i {
        top: auto;
        bottom: 1.5rem;
        right: 2.2rem;
        font-size: 1.5rem;
    }

    .tile {
        width: -webkit-fill-available;
        height: 16rem;
        margin-bottom: 5px;
    }

    .tile-row {
        margin-bottom: 0;
        display: block;
        height: auto !important;
    }

    .titolo-card {
        font-size: 1.75rem !important;
        font-weight: 400;
    }

    .tile img {
        width: 150px;
    }

    .tile svg {
        width: 150px;
        stroke-width: 1.05px;
    }

    .titolo-card {
        font-size: 26px !important;
        font-weight: 400;
    }

    .tile-content {
        width: fit-content;
        margin: auto;
        margin-top: 10px;
    }

    .tile-container {
        padding: 12px 0 0 0;
    }

    .card-row {
        display: block;
    }

    .card {
        margin: 0;
        width: 100%;
        height: 225px;
        border-radius: 0;
        border: 0;
    }

    .card p {
        padding-top: 10px;
        font-size: 1.1rem !important;
    }

    .card .additional .more-info {
        width: 100vw;
    }

    @keyframes radius {
        from {
            border-radius: 50%;
        }

        to {
            border-radius: 0;
        }
    }

    .card.hover-touch .additional {
        animation: expand 0.3s forwards, fast 0.01s forwards, radius 0.001s forwards;
    }

    .card.hover-touch i {
        transform: rotate(-135deg);
        transition: transform 0.2s ease-in-out;
    }

    .rotate-reset {
        transform: rotate(45deg) !important;
    }

    .card:not(.hover-touch) .additional {
        animation: shrink 0.3s forwards, slow 0.3s forwards 0.1s;
    }
}

@media screen and (min-width: 992px) {
    .card:hover i {
        transform: rotate(-135deg);
    }
}

/* BLACK FRIDAY */
/*div#buttons_settori button:nth-child(even) {
    background: black;
    border-color: black;
}
div#buttons_settori button:nth-child(even):hover {
    background: #666;
}*/
/* FINE BLACK FRIDAY */

/* ORANGE CHRISTMAS */
div#buttons_settori button:nth-child(even):not(.disabled) {
    background: #df350e;
    border-color: #df350e;
}

div#buttons_settori button:nth-child(even):not(.disabled):hover {
    background: #ff5b36;
}

/* FINE ORANGE CHRISTMAS */


.container-locate {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px;
    border: var(--border);
    border-radius: var(--general-radius);
    gap: 20px;
}

.locate {
    border: var(--border);
    border-radius: var(--general-radius);
    padding: 8px;
    width: calc(50% - 10px);
    background: var(--totem-gray);
}

div.locate:hover {
    border: solid 1px var(--totem-orange);
    background: var(--totem-lightgray);
}

.locate.selected {
    border: solid 1px var(--totem-orange);
    background: var(--totem-lightgray);
    box-shadow: 0px 0px 20px 0px var(--totem-orange);
}

.b-red {
    border: solid 1px #dc3545 !important;
}

.txt-small-07 {
    font-size: 0.7em;
}

.txt-bold {
    font-weight: bold;
}

.icon {
    color: var(--totem-orange);
    margin-right: 8px;
}

.dis-flex {
    display: flex;
    margin-bottom: 8px;
    line-height: 1.2em;
}

.align-btn-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.margin-footer-btn {
    margin: 0;
}


.column-confronta {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.row-confronta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.confront-wr {
    font-size: 9px;
}


.small-filter {
    margin-bottom: 0 !important;
    margin-right: 10px;
}


.caratteristica.list-group-item.mchdescrizione> :nth-last-child(-n+2) {
    font-weight: bold;
}


.small-button {
    font-size: 0.75em;
    padding: 5px 10px;
    line-height: 1;
}

.small-info {
    scale: 0.6;

}

.color-info {
    color: var(--totem-dark-gray) !important;
}

.container-installation {
    display: flex;
    align-items: center;
    flex-direction: row;
    margin-top: 10px;

}

.container-infos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.pre-cart-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 80px;
}

.pre-cart-button {
    height: 120px;
    width: 320px;
    border-radius: var(--general-radius);
    box-shadow: 2px 2px 5px rgba(70, 69, 69, 0.3);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
    background: var(--totem-background) !important;
}

.pre-cart-button:hover {
    box-shadow: 4px 4px 10px rgba(70, 69, 69, 0.3);
    transform: scale(1.02);
}


.icons-pre {
    font-size: 45px;
    width: auto;
}

.h6-button {
    font-size: 11px !important;

}

@media (min-width: 991px) {
    .pre-cart-content {
        flex-direction: row;
        justify-content: center;
        gap: 150px;
        align-items: center;
    }

    .pre-cart-button {
        height: 125px;
    }

    .icons-pre {
        font-size: 30px;
    }

    .h6-button {
        font-size: 1.2rem !important;
    }

    .icona-cart {
        height: 50px; 
        margin-bottom: 5px;
    }

    .icona-truck {
        width: 58px;
        height: 58px;
        margin-bottom: 0px;
    }
}

.small-pre-cart {
    text-align: center;
    font-weight: bold;
    font-size: medium;
    width: 800px;
    display: block;
    justify-self: center;
}

.title-summary {
    font-weight: bold;
    color: var(--totem-orange);
    font-size: large;
}

.trova-negozi {
    transform: scale(0.7) !important;
    margin-left: -19px !important;
    margin-top: -13px !important;
}

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

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

@media (max-width: 768px) {
    .cart-product .price {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--totem-orange);
        display: block;
    }

    .info-absolute {
        margin-left: 140px;
        position: absolute;
        margin-top: 26px;
    }

}

#p-nascosto {
    display: none;
}

#bottone:focus+#p-nascosto1 {
    display: block;
}

/* Nasconde il checkbox visivamente */
#toggle-more {
    display: none;
}

/* Nasconde il testo nascosto di default */
.hidden-text {
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease;
}

/* Mostra il testo nascosto quando il checkbox è selezionato */
#toggle-more:checked+label+.hidden-text {
    display: block;
    opacity: 1;
}

.toggle-more-btn {
    margin-right: 6rem;
    margin-bottom: 2rem;
}

/* Nasconde i checkbox */
.toggle-section {
    display: none;
}

/* Nasconde il contenuto aggiuntivo di default */
.hidden-content {
    display: none;
    opacity: 0;
    transition: opacity 0.7s ease;
}

/* Mostra il contenuto quando il checkbox è selezionato */
.toggle-section:checked+label+.hidden-content {
    display: block;
    opacity: 1;
}

/* Stile per il pulsante "Scopri di più" */
.toggle-label {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    cursor: pointer;
    font-size: inherit;
    margin: 1rem 0;
}

.toggle-label:hover {
    text-decoration: none;
}

.d-none {
    display: none;
}

ol {
    list-style: none;
}

.table-blu {
    background-color: var(--totem-orange);
    color: white;
}

.disp {
    background-color: green;
    box-shadow: 0 0px 9px rgba(0, 255, 0, 0.839);
    color: white;
    font-weight: 500 !important;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem !important;
    margin: 0.3rem 0rem;
    border-radius: var(--general-radius);
    display: block;
}

.non-disponibile {
    background-color: #de1420 !important;
    box-shadow: 0 0px 9px red;
    color: white;
    font-weight: 500 !important;
    padding: 0.2rem 0.5rem;
    font-size: 0.9rem !important;
    margin: 0.3rem 0rem;
    border-radius: var(--general-radius);
    display: block;
}

span.prenotato {
    background-color: #294489;
    box-shadow: 0 0px 11px #26edffad;
    color: white;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    font-size: .7rem !important;
    margin: 0.3rem 0rem;
    border-radius: var(--general-radius);
    display: block;

}

.text-center-d {
    display: flex;
    align-items: end;
    justify-content: center;
}

.icon-empty {
    font-weight: 100 !important;
    font-size: 1rem;
}

.flag-outlet-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-28%) translateX(-10%);
    transform-origin: 100% 0;
    max-width: 80px;
    z-index: 2;
}

.flag-outlet {
    text-align: center;
    padding: .5rem calc(50% - 50px);
    margin-top: 40px;
    max-width: 100%;
}

.flag-outlet img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.4));
    animation: pulse2 3s infinite
}

@keyframes pulse2 {
    0% {
        transform: scale(.9);
    }

    45%,
    55% {
        transform: scale(1);
    }

    100% {
        transform: scale(.9);
    }
}

.flag-outlet-prenotato-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    transform: rotate(45deg) translateX(50%);
    transform-origin: 100% 0;
    z-index: 10;
}

.flag-outlet-prenotato {
    background: #294489f9;
    color: white;
    font-weight: 600;
    text-align: center;
    font-size: 0.65em;
    line-height: .65rem;
    padding: .5rem calc(50% - 50px);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
    margin-top: 40px;
    width: 100%;
}

li.gruppo.outlet {
    font-size: 28px !important;
    color: #ff4d00 !important;
}

@media screen and (max-width: 550px) {
    .flag-outlet-wrapper {
        max-width: 70px;
    }
}

@media screen and (max-width: 500px) {
    .flag-outlet-wrapper {
        max-width: 65px;
    }
}

@media screen and (max-width: 470px) {
    .flag-outlet-wrapper {
        max-width: 55px;
    }
}