/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/


/*--------------------------  FONTS  --------------------------*/

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/lato-regular-webfont.woff2') format('woff2'),
         url('assets/fonts/lato-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/lato-italic-webfont.woff2') format('woff2'),
         url('assets/fonts/lato-italic-webfont.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Lato';
    src: url('assets/fonts/lato-bold-webfont.woff2') format('woff2'),
         url('assets/fonts/lato-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Queens';
    src: url('assets/fonts/Queens_Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Queens';
    src: url('assets/fonts/Queens_Variable_Italic.woff2') format('woff2');
    font-weight: 100 900;
    font-style: italic;
}


/*--------------------------  GENERAL  --------------------------*/

:root{
	--blue: #2D2869;
    --white: #FFFFFF;
    --light-grey: #F2F2F0;
    --brown: #8B886A;
    --green: #686E37;
    --border-color: #A5A281;
    
	--font-size-paragraph-1: clamp(0.875rem, 0.845rem + 0.129vw, 1rem); 
	--font-size-paragraph-2: clamp(1.063rem, 1.047rem + 0.065vw, 1.125rem); 
    --font-size-paragraph-3: clamp(1.125rem, 1.079rem + 0.194vw, 1.313rem);
    --font-size-paragraph-4: clamp(1.313rem, 1.267rem + 0.194vw, 1.5rem);

    --line-height-paragraph-1: clamp(1.063rem, 0.987rem + 0.324vw, 1.375rem); 
	--line-height-paragraph-2: clamp(1.438rem, 1.407rem + 0.129vw, 1.563rem); 
    --line-height-paragraph-3: clamp(1.563rem, 1.502rem + 0.259vw, 1.813rem); 
    --line-height-paragraph-4: clamp(1.688rem, 1.627rem + 0.259vw, 1.938rem);

	--font-size-heading-1: clamp(1.25rem, 1.22rem + 0.129vw, 1.375rem); 
	--font-size-heading-2: clamp(1.563rem, 1.517rem + 0.194vw, 1.75rem); 
    --font-size-heading-3: clamp(1.875rem, 1.799rem + 0.324vw, 2.188rem); 
    --font-size-heading-4: clamp(2.438rem, 2.301rem + 0.583vw, 3rem);
    --font-size-heading-5: clamp(2.813rem, 2.494rem + 1.359vw, 4.125rem);
    --font-size-heading-6: clamp(3.375rem, 3.011rem + 1.553vw, 4.875rem);
    --font-size-heading-7: clamp(5.438rem, 4.861rem + 2.46vw, 7.813rem);
    --font-size-heading-8: clamp(6.875rem, 5.51rem + 5.825vw, 12.5rem);

    --line-height-heading-1: clamp(1.375rem, 1.329rem + 0.194vw, 1.563rem); 
	--line-height-heading-2: clamp(1.875rem, 1.814rem + 0.259vw, 2.125rem); 
	--line-height-heading-3: clamp(2.188rem, 2.127rem + 0.259vw, 2.438rem); 
	--line-height-heading-4: clamp(2.625rem, 2.458rem + 0.712vw, 3.313rem); 
    --line-height-heading-5: clamp(3.125rem, 2.791rem + 1.424vw, 4.5rem); 
    --line-height-heading-6: clamp(3.75rem, 3.386rem + 1.553vw, 5.25rem); 
    --line-height-heading-7: clamp(5.438rem, 4.664rem + 3.301vw, 8.625rem); 
    --line-height-heading-8: clamp(6.25rem, 4.733rem + 6.472vw, 12.5rem); 


    --font-family-lato: 'Lato', sans-serif;
    --font-family-queens: 'Queens', serif;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    --margin-container: clamp(1.25rem, 0.732rem + 2.21vw, 2.5rem);
    --width-container: 1840px;
}

body{
    font-family: var(--font-family-lato);
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-weight: var(--font-weight-regular);
    font-style: normal;
    color: var(--blue);
    background-color: var(--light-grey);
    
    /* Suavizado y nitidez */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Mejor legibilidad */
    text-rendering: optimizeLegibility;
}

a{
    color: var(--blue);
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}

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

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: var(--font-family-queens);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

p {
    margin-bottom: 20px;
}

p:last-child {
    margin-bottom: 0 !important;
}

.card,
.card-img, .card-img-top {
    border-radius: 0;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){
    max-width: none;
}

.container, 
.container-sm, 
.container-md, 
.container-lg, 
.container-xl, 
.container-xxl{
    max-width: none;
    padding-left: var(--margin-container);
    padding-right: var(--margin-container);
}

::selection {
  color: var(--light-grey);
  background-color: var(--blue);
}

.alignfull {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.is-chrome-pc .alignfull {
    margin-left: calc(50% - 50vw + 7px);
	margin-right: calc(50% - 50vw + 7px);
}

[data-aos="fade-up"] {
    transform: translate3d(0,50px,0);
}

.wp-block-column.aos-animate:nth-child(2) {
    transition-delay: 0.3s;
}

.wp-block-column.aos-animate:nth-child(3) {
    transition-delay: 0.6s;
}

.wp-block-buttons .wp-block-button__link,
.btn-primary {
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    height: clamp(3.438rem, 3.286rem + 0.647vw, 4.063rem);
    padding-left: clamp(1.25rem, 1.174rem + 0.324vw, 1.563rem);
    padding-right: clamp(1.25rem, 1.174rem + 0.324vw, 1.563rem);
    transition: all 0.15s ease-in-out;
    font-family: var(--font-family-queens);
    font-size: clamp(1.188rem, 1.172rem + 0.065vw, 1.25rem);
    font-stretch: 75%;
    text-transform: uppercase;
    line-height: clamp(3.313rem, 3.161rem + 0.647vw, 3.938rem);
    padding-top: 0;
    padding-bottom: 0;
}

.wp-block-buttons .big-button .wp-block-button__link {
    height: clamp(4.063rem, 3.956rem + 0.453vw, 4.5rem);
    padding-left: clamp(1.563rem, 1.487rem + 0.324vw, 1.875rem);
    padding-right: clamp(1.563rem, 1.487rem + 0.324vw, 1.875rem);
}

.wp-block-buttons .wp-block-button__link:hover,
.btn-primary:hover {
    text-decoration: none;
    background-color: var(--blue);
    color: var(--white);
}

.call_to_action .wp-block-columns {
    background-color: var(--blue);
    background-image: url(assets/img/bg-call-to-action.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 860px;
    padding-left: clamp(1.875rem, -0.628rem + 10.68vw, 12.188rem);
    padding-right: clamp(1.875rem, -0.628rem + 10.68vw, 12.188rem);
    align-items: center !important;
}

.call_to_action h2{
    color: var(--light-grey);
    font-size: var(--font-size-heading-6);
    line-height: var(--line-height-heading-6);
}

.call_to_action p{
    color: var(--light-grey);
    font-size: var(--font-size-paragraph-4);
    line-height: var(--line-height-paragraph-4);
    max-width: 467px;
    margin-bottom: 30px !important;
    margin-top: clamp(0rem, -1.671rem + 3.424vw, 2.438rem) !important
}

.call_to_action .wp-block-button__link{
    color: var(--light-grey);
    border-color: var(--light-grey);
}

.call_to_action .wp-block-button__link:hover{
    background-color: var(--light-grey);
    color: var(--blue);
}

.block_1.repeated .text{
    height: clamp(43.125rem, 41.305rem + 7.767vw, 50.625rem);    
    padding-left: var(--margin-container);
    padding-right: var(--margin-container);
    display: flex;
    flex-direction: column;
    justify-content: center !important;
    padding-top: clamp(2.188rem, 2.036rem + 0.647vw, 2.813rem);
    position: relative;
}

.block_1.repeated .text::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-position: top right;
    background-repeat: no-repeat;
}

.block_1.repeated .text h1{
    font-size: var(--font-size-heading-8);
    line-height: var(--line-height-heading-8);
}

.block_1.repeated .text h1 em,
.block_1.repeated .text h1 br {
    display: none;
    font-style: normal;
}

.block_1.repeated .text p{
    font-size: var(--font-size-paragraph-4);
    line-height: var(--line-height-paragraph-4);
    max-width: 643px; 
    margin-top: 20px;
}

.block_2.repeated{
    margin-top: clamp(4.75rem, 3.688rem + 4.531vw, 9.125rem);
}

.block_2.repeated .wp-block-columns{
    max-width: 1542px;
    margin: 0 auto;
    gap: clamp(3.438rem, 2.148rem + 5.502vw, 8.75rem);
}

.block_2.repeated h3{
    font-family: var(--font-family-lato);
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    margin-bottom: 16px; 
}

.block_2.repeated .block_2_1 h3{
    margin-top: clamp(0rem, -2.4rem + 4.917vw, 3.5rem);
}

.block_2.repeated .block_2_2 h3{
    margin-top: clamp(0rem, -5.571rem + 11.414vw, 8.125rem);
}

.block_2.repeated h2{
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    max-width: 670px;
    margin-bottom: 26px;
}

.block_2.repeated p{
    max-width: 576px;
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    margin-bottom: 30px;
}

.block_2.repeated .wp-block-buttons {
    margin-top: 30px !important;
}

.block_2.repeated .block_2_2 figure{
    margin-top: calc(clamp(0rem, -3rem + 6.146vw, 4.375rem) * -1);
}

.wp-block-buttons{
    margin: 0 !important;
}

.scroll-text {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}

.scroll-track {
  display: flex;
  width: max-content;
}

.scroll-inner {
  display: flex;
  animation: marquee linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

#page {
    position: relative;
}

:root :where(.is-layout-constrained) > *{
    margin-block-start: 0;
}


/*--------------------------  HEADER  --------------------------*/

#masthead {
    position: fixed;
    z-index: 3;
    width: 100%;
    transition: transform 0.8s ease;
}

body:not(.menu-open) .slideUp {
    -webkit-transform: translateY(-140px);
    transform: translateY(-140px);
}

header#masthead.sticky {
    background-color: var(--light-grey);
    border-bottom: 1px solid var(--border-color);
}

header#masthead .scroll-inner span {
    padding-right: 100px;
}

header#masthead .scroll-text {
    padding-top: clamp(0.375rem, 0.329rem + 0.194vw, 0.563rem);
    padding-bottom: clamp(0.375rem, 0.329rem + 0.194vw, 0.563rem);
    border-bottom: 1px solid;
}

header#masthead.slideUp .scroll-text,
header#masthead.sticky .scroll-text {
    display: none;
}

header#masthead .scroll-text:not(.page-id-3020) {
    border-color: var(--border-color);
}

.nav-link,
.nav-link:hover, 
.nav-link:focus {
    color: var(--blue);
}

.nav-link {
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    padding: 3px 30px 3px 0 !important;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link.show {
    color: var(--blue);
}

.navbar-nav .nav-item-contact {
    display: none;
}

.navbar {
    height: 130px;
    align-items: flex-start;
    --bs-navbar-padding-y: 0;
    padding-top: clamp(1.563rem, 1.305rem + 1.1vw, 2.625rem);
    transition: transform 0.8s ease;
}

.sticky .navbar {
    height: 105px;
    padding-top: 25px;
}

.navbar .container {
    position: relative;
    transition: transform 0.8s ease;
}

.sticky .navbar .container {
    margin-top: 10px;
}

header .navbar-nav.ms-auto {
    margin-left: 0 !important;
}

header .navbar-brand {
    padding: 0;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: inline-table;
    transition: transform 0.8s ease;
}

header.sticky .navbar-brand {
    top: -10px;
}

header .navbar-brand img {
    width: 240px;
}

header .navbar-brand.logo-vistamare-milano {

    width: clamp(14.063rem, 13.835rem + 0.971vw, 15rem);
    height: 55px;

    background-color: var(--blue); /* Cambia aquí el color que quieras */
    
    -webkit-mask-size: contain;
    mask-size: contain;
    
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    
    /* Carga tu archivo externo aquí */
    -webkit-mask-image: url('assets/img/logo/logo-vistamare-milano.svg');
    mask-image: url('assets/img/logo/logo-vistamare-milano.svg');

    -webkit-mask-position: top center;
    mask-position: top center;
}

.navbar-brand img.logo-vistamare-milano {
    display: block;
}

.navbar-brand img.logo-vistamare {
    display: none;
}

.header-contact-link {
    margin-right: 30px;
    margin-left: auto;
}

#masthead .header-actions {
    margin-right: clamp(4.688rem, 4.271rem + 0.868vw, 5.313rem); 
}

html[lang="zh-CN"] #masthead .header-actions {
    margin-right: clamp(6.563rem, 5.938rem + 1.302vw, 7.5rem); 
}

#masthead .header-actions .btn:hover {
    background: none;
}

#masthead .header-actions .cart-total {
    display: none !important;
}

#masthead .header-actions .btn {
    border: 0;
}

#masthead .header-actions .btn,
#masthead .header-actions .account-toggler {
    padding-left: clamp(0.25rem, 0.22rem + 0.129vw, 0.375rem);
    padding-right: clamp(0.25rem, 0.22rem + 0.129vw, 0.375rem);
}

#masthead .header-actions .account-toggler i {
    width: 15px;
    height: clamp(1.25rem, 1.22rem + 0.129vw, 1.375rem);
}

#masthead .header-actions .account-toggler i:before {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(assets/img/icon-user.png);
    mask-image: url(assets/img/icon-user.png);
    font-size: 0;
}

#masthead .header-actions .cart-toggler i {
    width: 21px;
    height: clamp(1.188rem, 1.142rem + 0.194vw, 1.375rem);
}

#masthead .header-actions .cart-toggler .d-inline-flex {
    display: flex !important;
}

#masthead .header-actions .cart-toggler i:before {
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--blue);
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(assets/img/icon-cart.png);
    mask-image: url(assets/img/icon-cart.png);
    font-size: 0;
}

#masthead .header-actions i {
    display: block;
}

#masthead .header-actions .text-bg-danger {
    color: var(--light-grey) !important;
    background-color: var(--blue) !important;
}

.container-gtranslate_wrapper {
    position: absolute;
    right: var(--margin-container);
    top: 3px;
    z-index: 1;
}

.container-gtranslate_wrapper .gtranslate_wrapper {
    flex-direction: column;
    text-align: right;
    border: 1px solid var(--blue);
    border-radius: 15px;
    padding: 5px clamp(1.313rem, 1.227rem + 0.36vw, 1.625rem) 5px clamp(0.688rem, 0.636rem + 0.22vw, 0.875rem);
    cursor: pointer;
    font-size: var(--font-size-paragraph-1);
    line-height: var(--font-size-paragraph-1);
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.125rem, 0.108rem + 0.07vw, 0.188rem);
    background-color: var(--light-grey);
}

.container-gtranslate_wrapper .gtranslate_wrapper::after {
    content: "";
    display: block;
    width: clamp(0.531rem, 0.489rem + 0.18vw, 0.688rem);
    height: 6px;
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(assets/img/arrow-select-positive.png);
    mask-image: url(assets/img/arrow-select-positive.png);
    background-color: var(--blue);
    position: absolute;
    right: clamp(0.5rem, 0.466rem + 0.15vw, 0.625rem);
    top: 11px;
    -webkit-transition: all .3s cubic-bezier(.25,.46,.45,.94);
    transition: all .3s cubic-bezier(.25,.46,.45,.94);
}

.container-gtranslate_wrapper .gtranslate_wrapper:not(.open) a:not(.gt-current-lang) {
    display: none;
}

.container-gtranslate_wrapper a.glink {
    cursor: pointer;
}

.container-gtranslate_wrapper a.glink.gt-current-lang {
    order: -1;
    font-weight: var(--font-weight-regular);
}

.container-gtranslate_wrapper .gtranslate_wrapper.open::after {
    transform: rotate(180deg);
}

#masthead .header-actions .btn.nav-toggler {
    position: absolute;
    left: var(--margin-container);
    top: 9px;
    padding: 0;
    margin: 0 !important;
    width: 20px;
    height: 14px;
}

.nav-toggler .navbar-toggler-icon, 
.nav-toggler .navbar-toggler-icon::after, 
.nav-toggler .navbar-toggler-icon::before {
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    white-space: nowrap;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-color: var(--blue);
    background-image: none;
}

.nav-toggler .navbar-toggler-icon::after, 
.nav-toggler .navbar-toggler-icon::before {
    content: '';
}

.nav-toggler .navbar-toggler-icon::before {
    top: -5px;
    margin: 0;
}

.nav-toggler .navbar-toggler-icon::after {
    top: 7px;
    margin: 0;
}

.menu-open {
    overflow-y: hidden;
}

.menu-open .nav-toggler .navbar-toggler-icon {
    background: transparent !important;
}

.menu-open .nav-toggler .navbar-toggler-icon::after, 
.menu-open .nav-toggler .navbar-toggler-icon::before {
    background-color: var(--light-grey);
}

.menu-open .nav-toggler .navbar-toggler-icon::before {
    -webkit-transform: translateY(8px) rotateZ(-45deg);
    transform: translateY(8px) rotateZ(-45deg);
    top: -8px;
}

.menu-open .nav-toggler .navbar-toggler-icon::after {
    -webkit-transform: translateY(-8px) rotateZ(45deg);
    transform: translateY(-8px) rotateZ(45deg);
    top: 8px;
}

.menu-open #bootscore-navbar {
    display: block;
}

.menu-open #masthead {
    position: fixed !important;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: var(--blue);
    background-image: url(assets/img/bg-menu-blue.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;   
}

.menu-open #masthead,
.menu-open .nav-link, 
.menu-open .nav-link:hover, 
.menu-open .nav-link:focus,
.menu-open .navbar-nav .nav-link.active, 
.menu-open .navbar-nav .nav-link.show {
    color: var(--light-grey);
}

.menu-open header .navbar-brand.logo-vistamare-milano {
    background-color: var(--light-grey);
}

.menu-open #masthead .header-actions .text-bg-danger {
    color: var(--blue) !important;
    background-color: var(--light-grey) !important;
}

.menu-open #masthead .header-actions .cart-toggler i:before,
.menu-open #masthead .header-actions .account-toggler i:before {
    background-color: var(--light-grey);
}


/*--------------------------  FOOTER  --------------------------*/

footer .menu-legal{
    display: flex;
    flex-wrap: wrap;
}

footer .menu-legal li{
    padding-left: clamp(0.5rem, 0.354rem + 0.62vw, 0.938rem);
    padding-right: clamp(0.5rem, 0.354rem + 0.62vw, 0.938rem);
}

footer .social{
    display: flex;
}

footer .social li{
    padding-left: 4px;
}

footer .social a{
    font-size: clamp(1.688rem, 1.563rem + 0.53vw, 2.063rem);
}

footer.final-footer {
    padding-left: var(--margin-container);
    padding-right: var(--margin-container);
    padding-top: clamp(5.625rem, 4.867rem + 3.236vw, 8.75rem);
    padding-bottom: clamp(2.188rem, 2.036rem + 0.647vw, 2.813rem);
}

footer.final-footer .logo-vistamare {
    width: clamp(20.625rem, 11.902rem + 37.217vw, 56.563rem);
    height: clamp(2.813rem, 1.72rem + 4.66vw, 7.313rem);
    display: block;
    background-color: var(--blue);
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(assets/img/logo/logo-vistamare.svg);
    mask-image: url(assets/img/logo/logo-vistamare.svg);
}

footer.final-footer .menu-footer {
    font-size: var(--font-size-paragraph-4);
    line-height: var(--line-height-paragraph-4);
    margin-top: -5px;
}

footer.final-footer .menu-footer li:not(:last-child) {
    margin-bottom: 3px;
}

footer.final-footer .footer-middle h4 {
    font-family: var(--font-family-lato);
    margin-bottom: clamp(0.75rem, 0.674rem + 0.324vw, 1.063rem);
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    font-weight: var(--font-weight-bold);
    letter-spacing: 23%;
}

footer.final-footer .footer-middle {
    margin-top: clamp(3.75rem, 3.295rem + 1.942vw, 5.625rem);
}

footer.final-footer .footer-middle .wrapper-form-newsletter {
    margin-left: auto;
}

footer.final-footer .footer-middle .wrapper-form-newsletter p {
    margin-bottom: 23px;
    max-width: 440px;
}

footer.final-footer .footer-bottom {
    margin-top: clamp(3.125rem, 2.063rem + 4.531vw, 7.5rem);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

footer.final-footer .design-by {
    margin-left: clamp(3.438rem, 2.527rem + 3.883vw, 7.188rem);
}

footer.final-footer .menu-legal {
    margin: 0 auto;
}

#subscribe-form .form-control {
  color: var(--beige_1);
  padding-right: clamp(3.125rem, 2.986rem + 0.64vw, 3.75rem);
}

.subscriber_subscribed_with_acceptance {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    margin-top: 20px;
}

.subscriber_subscribed_with_acceptance a {
    text-decoration: underline;
}

.subscriber_subscribed_with_acceptance input {
    margin-right: 8px;
}

#subscribe-form .submit-wrapper {
    position: absolute;
    right: clamp(1.063rem, 1.017rem + 0.194vw, 1.25rem);
    top: clamp(0.75rem, 0.689rem + 0.259vw, 1rem);
}

#subscribe-form .submit-wrapper input {
    font-size: 0;
    border: 0;
    width: clamp(1.25rem, 1.174rem + 0.324vw, 1.563rem);
    height: clamp(1rem, 0.939rem + 0.259vw, 1.25rem);
    background-color: var(--blue);
    -webkit-mask-size: contain;
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(assets/img/arrow-positive.png);
    mask-image: url(assets/img/arrow-positive.png);
    border-radius: 0;
    padding: 0;
}

#subscribe-form .subscriber_email {
    position: relative;
}





/*--------------------------  MENÙ  --------------------------*/

.page-id-3032 .block_1.repeated .text::after{
    background-image: url(assets/img/illustrazione-di-una-spigola.jpg);
    background-size: clamp(56.25rem, 55.036rem + 5.178vw, 61.25rem);
    background-position: right clamp(4.375rem, 3.92rem + 1.942vw, 6.25rem);
}

.page-id-3032 .block_2 .wp-block-column{
    background-color: var(--white);
    padding-top: clamp(3.125rem, 2.67rem + 1.942vw, 5rem);
    padding-bottom: 50px;
    padding-left: clamp(1.875rem, 1.799rem + 0.324vw, 2.188rem);
    padding-right: clamp(1.875rem, 1.799rem + 0.324vw, 2.188rem);
    margin-bottom: 30px;
}

.page-id-3032 .block_2 .wp-block-column h3{
    text-align: center;
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
    margin-bottom: clamp(2.5rem, 2.045rem + 1.942vw, 4.375rem);
}

.page-id-3032 .menu_list:not(:last-child) {
    margin-bottom: clamp(5rem, 4.393rem + 2.589vw, 7.5rem);
}


/*--------------------------  CONTATTI  --------------------------*/

.page-id-3034 .block_1.repeated .text::after{
    background-image: url(assets/img/illustrazione-di-una-bussola.jpg);
    background-size: clamp(46.875rem, 45.358rem + 6.472vw, 53.125rem);
}

.page-id-3034 .block_2 .wp-block-columns {
    gap: clamp(3.438rem, 2.831rem + 2.589vw, 5.938rem);
}

.page-id-3034 .block_3{
    margin-top: clamp(4.688rem, 4.232rem + 1.942vw, 6.563rem);
}

.page-id-3034 .block_3 h2{
    font-size: var(--font-size-heading-7);
    line-height: var(--line-height-heading-7);
    margin-bottom: clamp(2.313rem, 2.161rem + 0.647vw, 2.938rem);
}

.page-id-3034 .block_3 h3{
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
    margin-bottom: clamp(1.25rem, 1.098rem + 0.647vw, 1.875rem);
}

.page-id-3034 .block_3 h4{
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-family: var(--font-family-lato);
    margin-bottom: 15px;
}

.page-id-3034 .block_3 .wp-block-buttons {
    margin-top: 18px !important;
}

.page-id-3034 .block_3 .wp-block-buttons .wp-block-button__link{
    height: clamp(2.813rem, 2.737rem + 0.324vw, 3.125rem);
    line-height: clamp(2.625rem, 2.534rem + 0.388vw, 3rem);
}

.page-id-3034 .block_3 .orari,
.page-id-3034 .block_3 .telefono {
    margin-top: clamp(1.875rem, 1.572rem + 1.294vw, 3.125rem);
}

.page-id-3034 .block_4{
    margin-top: clamp(4.688rem, 4.232rem + 1.942vw, 6.563rem);
}

.page-id-3034 .block_4 h2{
    font-size: var(--font-size-heading-7);
    line-height: var(--line-height-heading-7);
    margin-bottom: clamp(1.563rem, 1.411rem + 0.647vw, 2.188rem);
}

.page-id-3034 .block_4 a{
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    font-family: var(--font-family-queens);
    font-weight: var(--font-weight-medium);
}

.page-id-3034 footer.final-footer{
    padding-top: clamp(6.875rem, 4.448rem + 10.356vw, 16.875rem);
}



/*--------------------------  GASTRONOMIA  --------------------------*/

.page-id-3030 .block_1.repeated .text::after{
    background-image: url(assets/img/illustrazione-di-un-polpo.jpg);
    background-size: clamp(38.75rem, 36.93rem + 7.767vw, 46.25rem);
}

body.page-id-3030,
.page-id-3030 .product-list h3 {
    color: var(--brown);
}

.page-id-3030:not(.menu-open) .nav-link, 
.page-id-3030:not(.menu-open) .nav-link:hover, 
.page-id-3030:not(.menu-open) .nav-link:focus,
.page-id-3030:not(.menu-open) .nav-link.active{
    color: var(--brown) !important;
}

.page-id-3030:not(.menu-open) header .navbar-brand.logo-vistamare-milano{
   background-color: var(--brown) !important;
}

.page-id-3030:not(.menu-open) .header-contact-link,
.page-id-3030:not(.menu-open) .container-gtranslate_wrapper .gtranslate_wrapper{
    color: var(--brown);
}

.page-id-3030:not(.menu-open) .nav-toggler .navbar-toggler-icon, 
.page-id-3030:not(.menu-open) .nav-toggler .navbar-toggler-icon::after, 
.page-id-3030:not(.menu-open) .nav-toggler .navbar-toggler-icon::before {
    background-color: var(--brown);
}

.page-id-3030 a{
    color: var(--brown);
}

.page-id-3030:not(.menu-open) #masthead .header-actions .cart-toggler i:before,
.page-id-3030:not(.menu-open) #masthead .header-actions .account-toggler i:before,
.page-id-3030:not(.menu-open) #masthead .header-actions .text-bg-danger,
.page-id-3030:not(.menu-open) .container-gtranslate_wrapper .gtranslate_wrapper::after {
    background-color: var(--brown) !important;
}

.page-id-3030 .container-gtranslate_wrapper .gtranslate_wrapper{
    border-color: var(--brown);
}

.page-id-3030.menu-open #masthead {
    background-color: var(--brown);
    background-image: url(assets/img/bg-menu-brown.jpg);
}

.page-id-3030 .block_3 {
    margin-top: 193px;
}

.page-id-3030 .block_3{
    margin-top: 165px;
    display: none;
}

.page-id-3030 .block_3 .wp-block-columns{
    margin-bottom: 115px;
}

.page-id-3030 .block_3 h2{
    font-size: var(--font-size-heading-7);
    line-height: var(--line-height-heading-7);
}

.page-id-3030 .block_3 p{
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    max-width: 704px;
    margin-bottom: 21px;
}

.page-id-3030 .product-list .wp-block-button__link,
.page-id-3030 .wp-block-buttons .wp-block-button__link{
    color: var(--brown);
    border-color: var(--brown);
}

.page-id-3030 .wp-block-buttons {
    margin-top: 65px !important;
}

.page-id-3030 .product-list .wp-block-button__link:hover,
.page-id-3030 .wp-block-buttons .wp-block-button__link:hover{
    color: var(--light-grey);
    background-color: var(--brown);
}

.page-id-3030 footer.final-footer .logo-vistamare, 
.page-id-3030 #subscribe-form .submit-wrapper input {
    background-color: var(--brown);
}


/*--------------------------  ENOTECA  --------------------------*/

.page-id-3026:not(.menu-open) .nav-link, 
.page-id-3026:not(.menu-open) .nav-link:hover, 
.page-id-3026:not(.menu-open) .nav-link:focus,
.page-id-3026:not(.menu-open) .nav-link.active{
    color: var(--green) !important;
}

.page-id-3026:not(.menu-open) header .navbar-brand.logo-vistamare-milano{
   background-color: var(--green) !important;
}

.page-id-3026:not(.menu-open) .header-contact-link,
.page-id-3026:not(.menu-open) .container-gtranslate_wrapper .gtranslate_wrapper{
    color: var(--green);
}

.page-id-3026 .container-gtranslate_wrapper .gtranslate_wrapper {
    border-color: var(--green);
}

.page-id-3026:not(.menu-open) .nav-toggler .navbar-toggler-icon, 
.page-id-3026:not(.menu-open) .nav-toggler .navbar-toggler-icon::after, 
.page-id-3026:not(.menu-open) .nav-toggler .navbar-toggler-icon::before {
    background-color: var(--green);
}

.page-id-3026 a{
     color: var(--green);
}

.page-id-3026:not(.menu-open) #masthead .header-actions .cart-toggler i:before,
.page-id-3026:not(.menu-open) #masthead .header-actions .account-toggler i:before,
.page-id-3026:not(.menu-open) #masthead .header-actions .text-bg-danger,
.page-id-3026:not(.menu-open) .container-gtranslate_wrapper .gtranslate_wrapper::after {
    background-color: var(--green) !important;
}

.page-id-3026.menu-open #masthead {
    background-color: var(--green);
    background-image: url(assets/img/bg-menu-green.jpg);
}

.page-id-3026 .block_1.repeated .text h3,
.page-id-3030 .block_1.repeated .text h3{
    font-family: var(--font-family-lato);
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-weight: var(--font-weight-bold);
}

.page-id-3026 .block_1.repeated p,
.page-id-3030 .block_1.repeated p{
    margin-top: 40px;
}

.page-id-3026 .block_1.repeated .text::after {
    background-image: url(assets/img/illustrazione-di-una-conchiglia.jpg);
    background-size: clamp(44.375rem, 42.555rem + 7.767vw, 51.875rem);
}

.page-id-3026 p,.page-id-3026 h2,.page-id-3026 h3,.page-id-3026 h1{
    color: var(--green);
}

.page-id-3026 h1

.page-id-3026 .block_3{
    margin-top: 193px;
}

.page-id-3026 .swiper.product-list{
    margin-top: 135px;
}

.page-id-3026 .block_3 {
    display: none;
}

.page-id-3026 .block_3 .right{
    margin-top: 45px;
}

.page-id-3026 .block_3 h2{
    font-size: var(--font-size-heading-7);
    line-height: var(--line-height-heading-7);
}

.page-id-3026 .block_3 p{
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    max-width: 795px;
}

.page-id-3026 .product-list .wp-block-button__link,
.page-id-3026 .wp-block-buttons .wp-block-button__link{
    color: var(--green);
    border-color: var(--green);
}

.page-id-3026 .wp-block-buttons .wp-block-button__link{
    margin-top: 70px;
}

.page-id-3026 .product-list .wp-block-button__link:hover,
.page-id-3026 .wp-block-buttons .wp-block-button__link:hover{
    color: var(--light-grey);
    background-color: var(--green);
}

body.page-id-3026{
    color: var(--green);
}

.page-id-3026 footer.final-footer .logo-vistamare,
.page-id-3026 #subscribe-form .submit-wrapper input{
    background-color: var(--green);
}


/*--------------------------  CHI SIAMO  --------------------------*/

.page-id-3022 .block_1.repeated .text::after{
    background-image: url(assets/img/illustrazione-di-un-ancora.jpg);
    background-size: clamp(37.188rem, 35.671rem + 6.472vw, 43.438rem);
}

.page-id-3022 .block_3{
    margin-top: clamp(4.688rem, 3.037rem + 7.042vw, 9.375rem);
}

.page-id-3022 .block_3 h3{
    font-family: var(--font-family-lato);
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    text-align: center;
    margin-bottom: 16px;
}

.page-id-3022 .block_3 h2{
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    text-align: center;
}

.page-id-3022 .block_3 .wp-block-columns{
    margin-top: clamp(2.813rem, 2.152rem + 2.817vw, 4.688rem);
    justify-content: center;
}

.page-id-3022 .block_3 .wp-block-columns .middle p, 
.page-id-3022 .block_3 .wp-block-columns .middle .wp-block-button__link{
    color: var(--green);
    border-color: var(--green);
}

.page-id-3022 .block_3 .wp-block-columns .right p,
.page-id-3022 .block_3 .wp-block-columns .right .wp-block-button__link{
    color: var(--brown);
    border-color: var(--brown);
}

.page-id-3022 .block_3 .wp-block-columns .middle .wp-block-button__link:hover{
    background-color: var(--green);
    color: var(--light-grey);
}

.page-id-3022 .block_3 .wp-block-columns .right .wp-block-button__link:hover{
    background-color: var(--brown);
    color: var(--light-grey);
}

.page-id-3022 .block_4{
    margin-top: clamp(5rem, 3.938rem + 4.531vw, 9.375rem);
}

.page-id-3022 .block_4 .block_4_1 h3{
    font-size: var(--font-size-paragraph-2) !important;
    line-height: var(--line-height-paragraph-2) !important;
    font-family: var(--font-family-lato);
    margin-bottom: 16px;
}

.page-id-3022 .block_4 .block_4_1 {
    margin-bottom: clamp(3.125rem, 2.928rem + 0.841vw, 3.938rem);
}

.page-id-3022 .block_4 .block_4_1 h2{
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
}

.page-id-3022 .block_4 .block_4_1 p{
    max-width: 750px;
    text-align: right;
    margin-left: auto;
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
}

.page-id-3022 .block_4_2 {
    overflow: visible;
}

.page-id-3022 .block_4_2 .swiper-slide {
    max-width: clamp(23.438rem, 21.845rem + 6.796vw, 30rem);
}

.page-id-3022 .block_4 .block_4_2 h3{
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    margin-top: 26px;
}

.page-id-3022 .block_5{
    margin-top: clamp(5.625rem, 4.525rem + 4.695vw, 8.75rem);
}


/*--------------------------  RISTORANTE  --------------------------*/

.page-id-3024 .block_1.repeated .text::after {
    background-image: url(assets/img/illustrazione-di-un-aragosta.jpg);
    background-size: clamp(56.25rem, 53.762rem + 10.61vw, 66.5rem);
}

.page-id-3024 .block_3{
    margin-top: clamp(6.25rem, 5.492rem + 3.236vw, 9.375rem);
}

.page-id-3024 .block_5{
    margin-top: clamp(6.25rem, 5.492rem + 3.236vw, 9.375rem);
}

.page-id-3024 .block_5 .wp-block-columns{
    margin-top: clamp(4.688rem, 3.626rem + 4.531vw, 9.063rem);
    padding-left: clamp(1.25rem, 0.947rem + 1.294vw, 2.5rem);
    padding-right: clamp(1.25rem, 0.947rem + 1.294vw, 2.5rem);
}

.page-id-3024 .block_5 .left h3{
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-family: var(--font-family-lato);
}

.page-id-3024 .block_5 .left h2{
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    margin-top: 16px;
    max-width: 643px;
}

.page-id-3024 .block_5 .left p{
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    margin-top: 25px;
    max-width: 576px;
}

.page-id-3024 .block_6{
    margin-top: clamp(5rem, 3.938rem + 4.531vw, 9.375rem);
}


/*--------------------------  FORM  --------------------------*/

.cont_input label {
    margin-bottom: 12px;
    font-weight: var(--font-weight-bold);
}

input:focus-visible,
textarea:focus-visible {
  outline: none;
}

.form-control:focus {
  box-shadow: none;
}

button, input, select, optgroup, textarea {
    color: var(--blue);
}

.form-control:focus {
    color: var(--blue);
    border: none;
    box-shadow: none;
    background-color: var(--white);
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select{
    width: 100%;
}

input[type="text"], input[type="email"], input[type="url"], 
input[type="password"], input[type="search"], input[type="number"], 
input[type="tel"], input[type="range"], input[type="date"], 
input[type="month"], input[type="week"], input[type="time"], 
input[type="datetime"], input[type="datetime-local"], 
input[type="color"], textarea, select{
    color: var(--blue);
    background-color: var(--white);
    border: none;
    font-size: var(--font-size-paragraph-2);
}

input[type="text"], input[type="email"], input[type="url"], 
input[type="password"], input[type="search"], input[type="number"], 
input[type="tel"], input[type="range"], input[type="date"], 
input[type="month"], input[type="week"], input[type="time"], 
input[type="datetime"], input[type="datetime-local"], 
input[type="color"], select{
    height: clamp(3.125rem, 2.986rem + 0.64vw, 3.75rem);
    padding: 0 clamp(0.625rem, 0.394rem + 0.77vw, 1.25rem);
    border-radius: 5px;
}

textarea {
    padding: clamp(0.625rem, 0.394rem + 0.77vw, 1.25rem);
    height: 220px;
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
     -webkit-box-shadow: 0 0 0px 1000px var(--white) inset;
}

.wpcf7-not-valid-tip {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    margin-top: 10px;
}

body .wpcf7 .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

.wpcf7 .row > * {
    padding-left: 15px;
    padding-right: 15px;
}

.wpcf7 fieldset{
    margin-bottom: 25px;
}

.wpcf7 fieldset p {
    margin-bottom: 0;
}

.wpcf7-list-item{
    margin: 0 !important;
}

.wpcf7 .cont_check p{
    display: flex;
    margin: 0;
}

.wpcf7 .cont_check label,
.wpcf7 .cont_check.accept label{
    padding-left: 7px;
    width: calc(100% - 20px);
    margin: 0;
}

.wpcf7 .privacy-text p,
.wpcf7 .accept p,
.wpcf7 .cont_check p{
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.wpcf7 .privacy-text a,
.wpcf7 .accept a,
.wpcf7 .cont_check a{
    text-decoration: underline;
}

.wpcf7 .privacy-text {
    margin-bottom: 15px;
    margin-top: 5px;
}

.wpcf7 .cont_check {
    margin-bottom: 10px;
}

.wpcf7 form .wpcf7-response-output {
    padding: 0 !important;
    border: 0 !important;
    margin: clamp(2rem, 0.857rem + 1.79vw, 3rem) 0 0 !important;
    font-weight: var(--font-weight-bold);
}

.page-id-2509 .wpcf7 form .wpcf7-response-output {
    margin-bottom: clamp(2rem, 0.857rem + 1.79vw, 3rem) 0 !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
    color: #dc3232;
}

.wpcf7 .cont_submit p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.wpcf7 .cont_submit {
    margin-top: 25px;
    margin-bottom: 0;
}

.wpcf7 input[type="submit"] {
    background: none;
    color: var(--blue);
    border: 1px solid var(--blue);
    padding: 0 20px;
    height: 65px;
    padding-left: 25px;
    padding-right: 25px;
    order: 2;
    border-radius: 50%;
    font-family: var(--font-family-queens);
    font-size: clamp(1.188rem, 1.172rem + 0.065vw, 1.25rem);
    font-stretch: 75%;
    text-transform: uppercase;
    transition: all 0.15s ease-in-out;
}

.wpcf7 input[type="submit"]:not(:disabled):hover {
    background-color: var(--blue);
    color: var(--white);
}

.wpcf7-spinner {
    margin-left: auto;
}

.wpcf7 .wpcf7-submit:disabled {
  opacity: 0.75;
}

.grecaptcha-badge {
    display: none !important;
}



/*--------------------------  HOME  --------------------------*/

.page-id-3020 header#masthead:not(.sticky) .nav-link,
.page-id-3020 header#masthead:not(.sticky) .nav-link:hover, 
.page-id-3020 header#masthead:not(.sticky) .nav-link:focus /* ,
.page-id-3020 header#masthead:not(.sticky) .scroll-text */ {
    color: var(--light-grey);
}

/* .page-id-3020 header#masthead:not(.sticky) .scroll-text {
    border-color: var(--light-grey);
} */

.page-id-3020 header#masthead:not(.sticky) .scroll-text {
    display: none;
}

.page-id-3020 header#masthead:not(.sticky) .navbar-brand.logo-vistamare-milano{
    background-color: var(--light-grey);
}

.page-id-3020 header#masthead:not(.sticky) .nav-toggler .navbar-toggler-icon, 
.page-id-3020 header#masthead:not(.sticky) .nav-toggler .navbar-toggler-icon::after, 
.page-id-3020 header#masthead:not(.sticky) .nav-toggler .navbar-toggler-icon::before {
    background-color: var(--light-grey);
}

.page-id-3020 header#masthead:not(.sticky) .header-contact-link{
    color: var(--light-grey);
}

.page-id-3020 header#masthead:not(.sticky) .container-gtranslate_wrapper .gtranslate_wrapper{
    border-color: var(--light-grey);
}

.page-id-3020 header#masthead:not(.sticky) .header-actions .cart-toggler i:before,
.page-id-3020 header#masthead:not(.sticky) .header-actions .account-toggler i:before,
.page-id-3020 header#masthead:not(.sticky) .header-actions .text-bg-danger {
    background-color: var(--light-grey) !important;
}

.page-id-3020 header#masthead:not(.sticky) .header-actions .text-bg-danger {
    color: var(--blue) !important;
}

.page-id-3020 .block_1 {
    background-color: #000;
    position: relative;
}

.page-id-3020 .block_1 .scroll-text {
    position: absolute;
    bottom: clamp(3.438rem, 2.982rem + 1.942vw, 5.313rem);
    z-index: 2;
    font-size: var(--font-size-heading-8) !important;
    line-height: var(--line-height-heading-8) !important;
    font-family: var(--font-family-queens);
    font-weight: var(--font-weight-medium);
    color: var(--white);
    padding: 5px 0;
}

.page-id-3020 .block_1 .scroll-inner span {
  padding-right: clamp(9.375rem, 7.1rem + 9.71vw, 18.75rem);
}

.page-id-3020 .block_1 .swiper {
    opacity: 0.75;
}

.page-id-3020 .block_1 img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
}

.page-id-3020 .block_2{
    margin-top: clamp(5.625rem, 5.018rem + 2.589vw, 8.125rem);
}

.page-id-3020 .block_2 h1{
    font-size: var(--font-size-heading-6);
    line-height: var(--line-height-heading-6);
    padding-left: clamp(1.25rem, -1.42rem + 11.392vw, 12.25rem);
    padding-right: var(--margin-container);
    margin-bottom: 45px;
}

.page-id-3020 .block_2 .image figure {
    max-width: 805px;
}

.page-id-3020 .block_2 .text {
    padding-right: var(--margin-container);
    margin-bottom: clamp(5.625rem, 2.894rem + 11.65vw, 16.875rem);
    margin-top: 60px;
}

.page-id-3020 .block_2 .text .wp-block-group{
    max-width: 749px;
    column-count: 2;
    column-gap: 35px;
}

.page-id-3020 .block_2 .wp-block-buttons{
    margin-top: 33px !important;
}

.page-id-3020 .block_3 h2{
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    margin-bottom: 15px;
}

.page-id-3020 .block_3 h2 + p{
    font-size: var(--font-size-paragraph-4);
    line-height: var(--line-height-paragraph-4);
}

.page-id-3020 .blocks_3{
    margin-top: 25px !important;
}

.page-id-3020 .block_3 .wp-block-column.right {
    text-align: right;
    max-width: 600px;
}

.page-id-3020 .blocks_3.block_3_1{
    margin-top: 58px !important;
}

.page-id-3020 .blocks_3 .wp-block-cover{
    height: 1050px;
}

.page-id-3020 .blocks_3 figure.mobile {
    display: none;
}

.page-id-3020 .block_3 .text::after,
.page-id-3022 .block_3 .wp-block-column::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    position: absolute;
    background-position: top right;
    background-repeat: no-repeat;
    opacity: 0.75;
}

.page-id-3020 .block_3 .block_3_1 .text::after,
.page-id-3022 .block_3 .wp-block-column.left::after {
    background-image: url(assets/img/illustrazione-di-un-aragosta-home.png);
    background-size: clamp(19.375rem, 17.706rem + 7.12vw, 26.25rem);
}

.page-id-3020 .block_3 .block_3_2 .text::after,
.page-id-3022 .block_3 .wp-block-column.middle::after {
    background-image: url(assets/img/illustrazione-di-una-conchiglia-home.png);
    background-size: clamp(12.813rem, 11.751rem + 4.531vw, 17.188rem);
    top: -2px;
}

.page-id-3020 .block_3 .block_3_3 .text::after,
.page-id-3022 .block_3 .wp-block-column.right::after {
    background-image: url(assets/img/illustrazione-di-un-polpo-home.png);
    background-size: clamp(16.75rem, 14.778rem + 8.414vw, 24.875rem);
}

.page-id-3020 .block_3 .block_3_2 .text p{
    color: var(--green);
}

.page-id-3020 .block_3 .block_3_2 .text .wp-block-button__link{
    color: var(--green);
    border-color: var(--green);
}

.page-id-3020 .block_3 .block_3_2 .text .wp-block-button__link:hover{
    color: var(--light-grey) !important;
    border-color: var(--green) !important;
    background-color: var(--green);
}


.page-id-3020 .block_3 .block_3_3 .text p{
    color: var(--brown);
}

.page-id-3020 .block_3 .block_3_3 .text .wp-block-button__link{
    color: var(--brown);
    border-color: var(--brown);
}

.page-id-3020 .block_3 .block_3_3 .text .wp-block-button__link:hover{
    color: var(--light-grey) !important;
    border-color: var(--brown) !important;
    background-color: var(--brown);
}

.page-id-3020 .blocks_3 .text,
.page-id-3022 .block_3 .wp-block-column{
    max-width: 524px;
    background-color: var(--white);
    padding: clamp(3.75rem, 3.295rem + 1.942vw, 5.625rem) clamp(1.875rem, 1.344rem + 2.265vw, 4.063rem);
    position: relative;
    text-align: center;
}

.page-id-3020 .blocks_3 .text figure,
.page-id-3022 .block_3 .wp-block-column figure{
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.page-id-3020 .blocks_3 .text figure img {
    max-width: clamp(15rem, 14.09rem + 3.883vw, 18.75rem);
}

.page-id-3022 .block_3 .wp-block-column figure img {
    max-width: clamp(15rem, 14.09rem + 3.883vw, 18.75rem);
    width: 100%;
}

.page-id-3020 .blocks_3 .text p,
.page-id-3022 .block_3 .wp-block-column p{
    color: var(--blue);
    margin-top: clamp(3.125rem, 2.822rem + 1.294vw, 4.375rem);
    z-index: 1;
    position: relative;
}

.page-id-3020 .blocks_3 .wp-block-cover__inner-container{
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.page-id-3020 .blocks_3 .avviso-apertura {
    width: 100%;
    position: absolute;
    bottom: 10px;
    font-weight: var(--font-weight-bold);
    color: var(--light-grey);
}

.page-id-3020 .blocks_3 .avviso-apertura.mobile {
    display: none;
}

.page-id-3020 .blocks_3 .text .wp-block-buttons,
.page-id-3022 .block_3 .wp-block-buttons {
    margin-top: clamp(2.188rem, 1.657rem + 2.265vw, 4.375rem) !important;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
}

.page-id-3020 .block_4{
    margin-top: clamp(5.625rem, 4.411rem + 5.178vw, 10.625rem);
}

.page-id-3020 .block_4 .text .wp-block-group{
    max-width: 596px;
}

.page-id-3020 .block_4 .text h2{
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    margin-bottom: 25px;
}

.page-id-3020 .block_4 .text p{
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    margin-bottom: 30px;
}

.page-id-3020 .block_4 .text .wp-block-buttons {
    margin-top: 30px !important;
}

.page-id-3020 .block_5{
    margin-top: 165px;
}

.page-id-3020 .block_5 h2{
    font-size: var(--font-size-heading-7);
    line-height: var(--line-height-heading-7);
}

.page-id-3020 .block_5 p{
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
    max-width: 801px;
    margin-bottom: 21px;
}

.page-id-3020 .block_5 .wp-block-columns{
    margin-bottom: 115px;
}

.page-id-3020 .block_5 .wp-block-buttons{
    margin-top: 65px !important;
}

.page-id-3020 .block_5 .wp-block-button__link:hover{
    background-color: var(--blue);
    color: var(--light-grey);
}

.page-id-3020 .block_6{
    margin-top: clamp(5.625rem, 4.411rem + 5.178vw, 10.625rem);
} 


/*--------------------------  POPUP  --------------------------*/

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    visibility: hidden;
    opacity: 0;
    display: block;
    transition: all 0.1s ease-out;
    padding: 0;
    z-index: 999999;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal .close-btn {
    position: absolute;
    top: clamp(0.5rem, 0.318rem + 0.777vw, 1.25rem);
    right: clamp(0.5rem, 0.318rem + 0.777vw, 1.25rem);
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey);
    padding: 14px;
    border-radius: 50%;
}

.modal .close-btn::before, .modal .close-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--blue);
    transform-origin: center;
    transition: all 0.3s ease;
}

.modal .close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal .close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    visibility: hidden;
    opacity: 0;
    z-index: 99999;
    transition: right 0.2s ease-out;
}

.overlay.show {
    visibility: visible;
    opacity: 1;
}

.notification.modal {
    max-width: 720px;
    height: auto;
    padding: 50px clamp(1.563rem, 0.576rem + 4.207vw, 5.625rem);
    width: calc(100% - 20px);
    text-align: center;
    background-image: url(assets/img/bg-popup.jpg);
    background-size: cover;
    background-position: center;
}

.notification.modal .content {
    background-color: var(--light-grey);
    padding: clamp(3.125rem, 2.518rem + 2.589vw, 5.625rem) clamp(1.875rem, 1.42rem + 1.942vw, 3.75rem);
}

.notification.modal h6 {
    font-family: var(--font-family-lato);
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.notification.modal h5 {
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
    margin-bottom: clamp(1.25rem, 1.022rem + 0.971vw, 2.188rem);
}

.notification.modal p {
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
}


/*--------------------------  TAKE AWAY  --------------------------*/

#offcanvas-cart.showing,
#offcanvas-cart.hiding {
    height: auto;
}

.offcanvas-header {
    padding-top: 25px;
    padding-bottom: 25px;
}

.offcanvas-header,
.offcanvas-body,
#offcanvas-cart .woocommerce-mini-cart {
    padding-left: 25px;
    padding-right: 25px;
}

.offcanvas-body {
    padding-top: 10px;
    padding-bottom: 30px;
}

.offcanvas-title {
    color: var(--blue);
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
}

.offcanvas {
    background-color: var(--light-grey);
    color: var(--blue);
}

#offcanvas-cart .item-image {
    display: none;
}

#offcanvas-cart .woocommerce-mini-cart-item {
    background: none;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    border-bottom: 0;
    border-top: 1px solid var(--border-color);
}

#offcanvas-cart .item-name {
    width: 75%;
}

#offcanvas-cart .cart-product-title.h6,
#offcanvas-cart .woocommerce-Price-amount {
    font-family: var(--font-family-lato);
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    color: var(--blue);
}

.input-text.qty {
    background: none;
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    color: var(--blue);
    height: auto;
    padding: 0;
    width: 30px;
}

.quantity .input-group {
    display: flex;
    align-items: center;
}

button.input-group-text.plus,
button.input-group-text.minus {
    background: none;
    border: 0;
    border-radius: 0;
    padding: 0 6px;
    color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 14px;
    height: 14px;
    font-size: 0;
}

button.input-group-text.plus::after,
button.input-group-text.plus::before,
button.input-group-text.minus::after {
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background-color: var(--blue);
    position: absolute;
}

button.input-group-text.plus::after {
    transform: rotate(90deg);
}

#offcanvas-cart button.input-group-text.plus,
#offcanvas-cart button.input-group-text.minus {
    width: 9px;
    height: 9px;
}

#offcanvas-cart button.input-group-text.plus::after,
#offcanvas-cart button.input-group-text.plus::before,
#offcanvas-cart button.input-group-text.minus::after {
    width: 9px;
    height: 1px;
}

#offcanvas-cart .quantity .input-group {
    width: 70px;
}

#offcanvas-cart .quantity {
    margin-top: 20px;
}

#offcanvas-cart .quantity .qty {
    width: 40px;
    font-size: var(--font-size-paragraph-1) !important;
}

.list-group-item {
    color: var(--blue);
}

#offcanvas-cart span.quantity {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.woocommerce-mini-cart-item a.remove.remove_from_cart_button,
.woocommerce-mini-cart-item a.remove.remove_from_cart_button:hover {
    color: var(--blue) !important;
}

#offcanvas-cart .bootscore-custom-render-total.h6.mb-4 {
    margin-bottom: 8px !important;
}

.woocommerce-mini-cart__total.h5 {
    font-family: var(--font-family-lato);
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-weight: var(--font-weight-bold);
    padding-bottom: 20px;
}

#offcanvas-cart .cart-footer {
    background-color: var(--light-grey) !important;
    border-top: 1px solid var(--border-color);
    padding-top: 20px !important;
    padding-bottom: 25px !important;
}

.woocommerce-shop .block_1.repeated .text::after,
.tax-product_cat .block_1.repeated .text::after {
    background-image: url(assets/img/illustrazione-di-un-granchio.jpg);
    background-size: 980px;
}

.tax-product_cat .block_1.repeated .text h2{
    font-size: var(--font-size-heading-8);
    line-height: var(--line-height-heading-8);
}

.tax-product_cat h1 {
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    margin-bottom: 30px;
}

.woocommerce-shop .col-lg-9 .mb-4,
.tax-product_cat main .col-lg-9 .mb-4 {
    display: flex;
    align-items: center;
    margin-bottom: 0 !important;
}

.woocommerce .woocommerce-result-count {
    margin: 0;
}

.woocommerce-shop footer.final-footer,
.tax-product_cat footer.final-footer {
    padding-top: 160px;
}

.wc-category-menu{
    border-bottom: 1px solid var(--border-color);
    max-width: 355px;
}

.wc-category-menu .category-item > a{
    font-family: var(--font-family-queens);
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    display: block;
    font-weight: var(--font-weight-medium);
    width: calc(100% - 50px);
}

.wc-category-menu .category-item > a:hover{
    text-decoration: none;
}

.wc-category-menu .category-item{
    border-top: 1px solid var(--border-color);
    position: relative;
    padding-bottom: 13px;
    padding-top: 13px;
}

.wc-category-menu .subcategories{
    margin-top: 22px;
    margin-bottom: 15px;
}

.wc-category-menu .subcategories li:not(:last-child){
    margin-bottom: 8px;
}

.wc-category-menu .subcategories li a{
    font-size: var(--font-size-paragraph-3);
    line-height: var(--line-height-paragraph-3);
}

.wc-category-menu .subcategories li a:hover{
    text-decoration: none;
}

.wc-category-menu .toggle-subcats{
    position: absolute;
    right: 0;
    top: 26px;
    background-image: url(assets/img/plus.png);
    height: 14px;  
    width: 14px;  
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 0;
    cursor: pointer;
    transition: transform 0.15s ease-in-out;
}

.wc-category-menu .open .toggle-subcats {
    transform: rotate(45deg);
}

.woocommerce .card h2.woocommerce-loop-product__title,
.product-list h3{
    font-size: var(--font-size-heading-2);
    line-height: var(--line-height-heading-2);
    color: var(--blue);
    margin-top: 4px;
}

.woocommerce .add-to-cart-container a,
.product-list .wp-block-button__link {
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    height: 50px;
    width: 110px;
    padding: 0 18px;
    text-transform: uppercase;
    line-height: 36px;
    transition: all 0.15s ease-in-out;
    font-family: var(--font-family-queens);
    font-size: var(--font-size-paragraph-3);
    font-stretch: 75%;
}

.woocommerce .add-to-cart-container a {
    line-height: 47px;
}

.woocommerce .add-to-cart-container a.loading {
    background-color: var(--blue);
}

.spinner-border-sm {
    border: 1px solid var(--blue);
    border-right-color: transparent;
}

.woocommerce .add-to-cart-container a.loading .spinner-border-sm {
    border-color: var(--light-grey);
    border-right-color: transparent;
}



.woocommerce .card .card-body .add-to-cart-container.mt-auto,
.product-list .product-item-bottom .add_to_cart_button {
    margin-top: 0 !important;
    margin-left: auto;
}

.woocommerce .add-to-cart-container a:not(.ajax_add_to_cart), 
.product-list .wp-block-button__link:not(.ajax_add_to_cart) {
    display: none !important;
}

.woocommerce .add-to-cart-container a:hover{
    background-color: var(--blue);
    color: var(--light-grey);
}

.product-list .text-center{
    text-align: left !important;
}

.product-list .text-center .card-body,
.product-list .product-item-bottom, 
.single-product .product-item-bottom {
    display: flex;
    padding: 0;
    margin-top: 22px;
    width: 100%;
}

.product-list .text-center.card{
    background-color: transparent;
    border: 0;
}

.woocommerce .card .card-body a.woocommerce-LoopProduct-link.woocommerce-loop-product__link,
.product-list .product-item-bottom .name-product-link{
    width: calc(100% - 140px);
}

.swiper.product-list .product-item {
    max-width: 480px;
}

.swiper.product-list {
    overflow: visible;
    z-index: 0;
}

.product-list .product-item {
    margin-top: 45px;
}

.product-list.swiper .product-item {
    margin-top: 0;
}

.product-list .product-item-bottom a{
    text-decoration: none;
}

.products .add-to-cart-container a.btn:not(.add_to_cart_button) {
    display: none !important;
}

.lmp_load_more_button .lmp_button {
    background: none !important;
    color: var(--blue) !important;
    font-size: var(--font-size-paragraph-3) !important;
    font-weight: var(--font-weight-bold);
}

body .lmp_load_more_button.br_lmp_button_settings .lmp_button:hover {
    background: none !important;
    color: var(--blue) !important;
}

.lmp_products_loading, 
.lmp_load_more_button {
    margin-top: 50px;
}

.lmp_products_loading + .lmp_load_more_button {
    margin-top: 10px;
}

.single-product #content {
    padding-top: 240px;
}

.single-product .wrapper-product-images,
.single-product .summary {
    max-width: 765px;
    width: 100% !important;
}

.single-product .summary .wrapper-summary {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.single-product .product-category {
    text-transform: uppercase;
    margin-bottom: 7px;
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.single-product h1.product_title {
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
}

.single-product .product-allergens {
    margin-top: 11px;
    margin-bottom: 0;
}

.single-product div.product p.price {
    color: var(--blue);
    margin-top: 58px;
    margin-bottom: 135px;
}

.single-product .summary .woocommerce-Price-amount {
    display: block;
    font-family: var(--font-family-queens);
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    font-weight: var(--font-weight-medium);
}

.single-product .summary .iva-compresa {
    display: block;
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.woocommerce div.product form.cart div.quantity {
    margin-right: 45px;
}

.single-product .summary .quantity .qty {
    width: 70px;
}

.single-product .summary .quantity .input-group {
    width: 100px;
}

.woocommerce div.product form.cart .button {
    flex-grow: 0;
}

.single-product div.product .summary form.cart {
    display: inline-flex;
    align-items: center;
    margin-top: 45px;
    margin-bottom: 50px;
    width: 100%;
}

.single-product .summary form.cart .button.single_add_to_cart_button {
    text-decoration: none;
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    padding: 0 30px;
    text-transform: uppercase;
    line-height: 36px;
    transition: all 0.15s ease-in-out;
    font-family: var(--font-family-queens);
    font-size: var(--font-size-paragraph-3);
    font-stretch: 75%;
    height: 65px;
}

.single-product .summary form.cart .button.single_add_to_cart_button:hover {
    background-color: var(--blue);
    color: var(--light-grey);
}


.single-product .product {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    float: none;
    width: auto;
    margin-left: 30px;
}

.single-product .related.products {
    margin-top: 155px;
}

.single-product .related.products h2:not(.woocommerce-loop-product__title) {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
}

.single-product #content .col-lg-9 {
    width: 100%;
}

.single-product .wc-order-steps {
    display: flex;
    gap: 55px;
    align-items: center;
    background: #E3E3DE;
    padding: 0 25px;
    height: clamp(3.125rem, 2.746rem + 1.62vw, 4.688rem);
}

.single-product .wc-step {
    display: flex;
    gap: 12px;
    align-items: center;
    flex: 1 1 0;
    position: relative;
}

.single-product .wc-step.wc-step--one img {
    width: 19px;
}

.single-product .wc-step.wc-step--two img {
    width: 26px;
}

.single-product .wc-step.wc-step--three img {
    width: 25px;
}

.single-product .wc-step-text {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.single-product .wc-step:not(:last-child)::after {
    content: "";
    display: block;
    width: 65px;
    height: 65px;
    border-top: 10px solid var(--light-grey);
    border-right: 10px solid var(--light-grey);
    transform: rotate(45deg);
    position: absolute;
    right: -23px;
}

.single-product footer.final-footer {
    padding-top: 205px;
}


/*--------------------------  TESTI LEGALI  --------------------------*/

.page-template-page-legal-texts main {
    /* Attivare quando c'è il testo scorrevole */
    padding-top: clamp(2.188rem, 2.036rem + 0.647vw, 2.813rem);
    margin-top: clamp(7.5rem, 6.59rem + 3.88vw, 11.25rem);
}

.page-template-page-legal-texts h1 {
    font-size: var(--font-size-heading-5);
    line-height: var(--line-height-heading-5);
    margin-bottom: clamp(1.563rem, 1.411rem + 0.65vw, 2.188rem);
}

.page-template-page-legal-texts main .container {
    max-width: 1500px;
    margin-left: 0;
}

.page-template-page-legal-texts h2,
#cmplz-document h2,
.editor-styles-wrapper .cmplz-unlinked-mode h2 {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    margin-bottom: 15px;
}

.page-template-page-legal-texts h2:not(:first-child),
#cmplz-document h2:not(:first-child),
.editor-styles-wrapper .cmplz-unlinked-mode h2:not(:first-child) {
    margin-top: 35px;
}

.page-template-page-legal-texts h3:not(:first-child),
#cmplz-document h3:not(:first-child),
.editor-styles-wrapper .cmplz-unlinked-mode h3:not(:first-child) {
    font-size: var(--font-size-heading-2);
    line-height: var(--line-height-heading-2);
    margin-bottom: 10px;
}

.page-template-page-legal-texts h3,
#cmplz-document h3,
.editor-styles-wrapper .cmplz-unlinked-mode h3{
    margin-top: 25px;
}

#cmplz-document, .editor-styles-wrapper .cmplz-unlinked-mode {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    max-width: none;
}

#cmplz-document .cmplz-subtitle, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-subtitle {
    margin-top: 0;
}

#cmplz-document p, #cmplz-document li, #cmplz-document td, .editor-styles-wrapper .cmplz-unlinked-mode p, .editor-styles-wrapper .cmplz-unlinked-mode li, .editor-styles-wrapper .cmplz-unlinked-mode td {
     font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

#cmplz-document h2, #cmplz-document h3, .editor-styles-wrapper .cmplz-unlinked-mode h2, .editor-styles-wrapper .cmplz-unlinked-mode h3 {
    padding-bottom: 0;
}

.cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    font-weight: var(--font-weight-bold) !important;
}

.cmplz-categories .cmplz-category {
    background: none;
    border: 1px solid var(--blue);
    border-radius: 6px;
}

.cmplz-categories .cmplz-category .cmplz-category-header .cmplz-category-title {
    font-weight: var(--font-weight-bold) !important;
}

.cmplz-cookiebanner .cmplz-categories.cmplz-fade-in {
    margin-top: 20px;
}

.cmplz-divider.cmplz-divider-header {
    display: none;
}

#cmplz-cookies-overview .cmplz-dropdown, #cmplz-document .cmplz-dropdown, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown {
  background: none;
  border: 1px solid var(--blue);
  margin-bottom: 10px;
  border-radius: 6px;
}

#cmplz-cookies-overview .cmplz-dropdown summary div h3, #cmplz-document .cmplz-dropdown summary div h3, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown summary div h3 {
    font-family: var(--font-family-lato);
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

#cmplz-cookies-overview .cmplz-dropdown h4, #cmplz-document .cmplz-dropdown h4, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown h4,
#cmplz-cookies-overview .cmplz-dropdown h5, #cmplz-document .cmplz-dropdown h5, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown h5 {
    font-family: var(--font-family-lato);
    font-weight: var(--font-weight-bold);
}

#cmplz-cookies-overview .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose, #cmplz-document .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown.cmplz-dropdown-cookiepolicy .cookies-per-purpose {
  margin-left: 20px;
  margin-right: 20px;
}

#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose div, #cmplz-document .cmplz-dropdown .cookies-per-purpose div, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose div {
  background: none !important;
  border: 1px solid var(--blue);
}

#cmplz-cookies-overview .cmplz-dropdown .cookies-per-purpose, #cmplz-document .cmplz-dropdown .cookies-per-purpose, .editor-styles-wrapper .cmplz-unlinked-mode .cmplz-dropdown .cookies-per-purpose {
  border: 0;
  background: none;
}


/*--------------------------  MENU  --------------------------*/

.page-id-2160 h1 {
    text-align: center;
    font-size: var(--font-size-heading-7);
    line-height: var(--line-height-heading-7);
    margin-bottom: clamp(2.313rem, 1.888rem + 1.81vw, 4.063rem);
}


.page-id-2160 main {
    /* Attivare quando c'è il testo scorrevole */
    padding-top: clamp(2.188rem, 2.036rem + 0.647vw, 2.813rem);
    margin-top: clamp(6.875rem, 6.041rem + 3.56vw, 10.313rem);
}

.page-id-2160 main .container {
    max-width: 1500px;
}

.page-id-2160 .wp-block-columns {
    gap: clamp(2.5rem, 2.33rem + 0.73vw, 3.125rem);
    margin-bottom: 0;
}

.menu_list h2 {
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
    margin-bottom: clamp(1.125rem, 1.057rem + 0.29vw, 1.375rem);
}

.menu_list .title-accordion {
    font-size: var(--font-size-heading-2);
    line-height: var(--line-height-heading-2);
    font-family: var(--font-family-queens);
    font-weight: var(--font-weight-medium);
}

.accordion-toggle {
  display: flex;
  align-items: baseline;
}

.accordion-toggle:hover {
    text-decoration: none;
}

.accordion-toggle .toggle-icon {
  position: relative;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform 0.3s;
  margin-left: auto;
}

.accordion-toggle.active .toggle-icon {
  transform: rotate(45deg);
}

.accordion-toggle .toggle-icon::before, .accordion-toggle .toggle-icon::after {
  content: '';
  position: absolute;
  background-color: var(--blue);
  transition: all 0.3s;
}

.accordion-toggle .toggle-icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
}

.accordion-toggle .toggle-icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  transform: translateX(-50%);
}   

.menu_list:not(:last-child) {
    margin-bottom: clamp(2.5rem, 2.33rem + 0.73vw, 3.125rem);
}

.menu_list .custom-accordion {
    padding-top: 8px;
    padding-bottom: 10px;
    border-top: 1px solid var(--brown);
}

.menu_list .custom-accordion:last-child {
    border-bottom: 1px solid var(--brown);
}

.menu_list .product-item {
    display: flex;
    margin-top: 20px;
}

.menu_list .product-item .left {
    margin-right: clamp(0.938rem, 0.786rem + 0.65vw, 1.563rem);
}

.menu_list .product-item .right {
    margin-left: auto;
    width: clamp(6.25rem, 5.795rem + 1.94vw, 8.125rem);
    text-align: right;
}

.menu_list .product-item .product-price {
    margin-bottom: 0;
}

.menu_list .product-item .product-price span {
    padding-left: 4px;
}

.menu_list .left-top span {
    display: inline-block;
    margin-right: 10px;
}

.menu_list .product-title {
    font-weight: var(--font-weight-bold);
}

.menu_list .product-description p {
    margin: 0;
}

.menu_list .product-description,
.menu_list .product-brand-origin{
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    margin-top: 4px;
}

.menu_list .product-format,
.menu_list .product-alcohol-content {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.menu_list .product-allergens,
.single-product .product-allergens a {
    font-size: var(--font-size-paragraph-1);
    display: inline-block;
    min-height: clamp(1.125rem, 1.091rem + 0.15vw, 1.25rem);
    border: 1px solid var(--blue);
    border-radius: 20px;
    line-height: clamp(0.938rem, 0.886rem + 0.22vw, 1.125rem);
    padding: 0 7px;
}

.menu_list .product-allergens:hover,
.single-product .product-allergens a:hover {
    text-decoration: none;
}

.menu_list .accordion-content {
    margin-bottom: 20px;
}

.page-id-2160 .footer-menu p {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.page-id-2160 .footer-menu a {
    text-decoration: underline;
}

.page-id-2160 footer {
    margin-top: clamp(3.125rem, 2.784rem + 1.45vw, 4.375rem);
}


/*--------------------------  MY ACCOUNT  / PROCESSO ACQUISTO --------------------------*/

.woocommerce-account #content {
    padding-top: clamp(8rem, 6.756rem + 5.31vw, 13.125rem) !important;
    padding-bottom: 0 !important;
    min-height: 650px;
}

.woocommerce-account:not(.woocommerce-lost-password) main > .entry-header h1 {
    display: none;
}

.woocommerce-account #post-32 .entry-content > h1 {
    display: none;
}

.woocommerce-account h1{
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
}

.woocommerce-account h2 {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
}

.woocommerce-account .woocommerce-MyAccount-content {
    max-width: 890px;
}

.woocommerce-account .woocommerce-order-details h2{
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-table--order-details {
    margin-bottom: 25px !important;
}

.woocommerce-account .entry-content .woocommerce .entry-header{
    margin-bottom: clamp(1.375rem, 1.329rem + 0.19vw, 1.563rem);
}

.woocommerce-account .addresses .title .edit{
    float: none;
    background-color: transparent;
    color: var(--blue);
    height: 50px;
    line-height: 48px;
    padding-left: 25px;
    padding-right: 25px;
    font-family: var(--font-family-queens);
    font-size: 20px;
    font-stretch: 75%;
    text-transform: uppercase;
    min-width: 150px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    transition: 0.15s ease-in-out;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper, 
.woocommerce-account .woocommerce-address-fields__field-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.woocommerce-checkout #order_comments_field textarea {
    height: 200px;
}

.woocommerce-checkout #order_review {
    margin-top: 15px;
    margin-bottom: clamp(1.875rem, 1.42rem + 1.94vw, 3.75rem);
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment, #add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    background: none;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.woocommerce-checkout #payment {
    margin-top: clamp(0.938rem, 0.71rem + 0.97vw, 1.875rem);
}

#billing_first_name_field, #billing_last_name_field, #billing_phone_field, #billing_email_field, #orddd-lite-checkout-fields .form-row {
    width: calc(50% - 16px);
}

#orddd-lite-checkout-fields .form-row span.select2 {
    display: none;
}

.woocommerce form .form-row select {
    background-image: var(--bs-form-select-bg-img);
}

.woocommerce form .form-row.woocommerce-validated input.input-text:focus, .woocommerce form .form-row.woocommerce-validated textarea:focus, .woocommerce form .form-row.woocommerce-validated select:focus {
    box-shadow: none; 
}

#orddd-lite-checkout-fields #e_deliverydate {
    background-image: url(assets/img/icn-calendar.svg) !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 18px) center !important;
    background-size: clamp(1.438rem, 1.362rem + 0.32vw, 1.75rem) !important;
}

#orddd-lite-checkout-fields .form-row select#orddd_lite_time_slot {
    height: 60px;
    padding: 15px;
    border: 0;
    background-image: url(assets/img/icn-clock.svg), var(--bs-form-select-bg-img);
    background-repeat: no-repeat;
    background-position: center right 45px, center right 15px;
    background-size: clamp(1.5rem, 1.424rem + 0.32vw, 1.813rem), 15px;
}

#orddd-lite-checkout-fields {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 75px;
}

.woocommerce div.product form.cart .button, 
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button, 
.woocommerce button.button.alt, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button {
    color: var(--blue);
    background: none;
    border-color: var(--blue);
    border-radius: 50%;
    padding-left: 25px;
    padding-right: 25px;
    width: 100%;
    max-width: 380px;
}

.woocommerce div.product form.cart .button:hover, 
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, 
.woocommerce button.button.alt:hover, 
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover {
    color: var(--light-grey);
    background-color: var(--blue);
    border-color: var(--blue);
}

.wpmc-nav-wrapper.wpmc-no-back-to-cart {
    justify-content: center;
    margin-top: 65px;
}

#orddd-lite-checkout-fields h3 {
    order: -1;
    width: 100%;
}

.alert-icon::before, .woocommerce-error::before, .woocommerce-info::before, .woocommerce-noreviews::before, .woocommerce-message::before, .woocommerce-thankyou-order-details::before, .wc-stripe-error::before {
    top: 27px;
}

.alert, .must-log-in, .woocommerce-error, .woocommerce-info, .woocommerce-noreviews, .woocommerce-message, .woocommerce-thankyou-order-details, .wc-stripe-error {
    margin-bottom: 40px;
}

/* Cambiar el color de fondo semitransparente del bloqueador */
.blockUI.blockOverlay, 
.blockUI.blockOverlay {
    background-color: #ffffff !important; /* Fondo blanco o el color que prefieras */
    opacity: 0.7 !important; /* Ajusta la transparencia */
}

/* Cambiar el color del icono de carga (spinner) */
.blockUI.blockOverlay::before, 
.blockUI.blockOverlay::before {
    color: var(--blue) !important; /* Cambia el color del icono de carga */
}

.toast {
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
}

.bg-body-tertiary {
    background-color: var(--light-grey) !important;
}

#billing_email_field {
    margin-left: auto;
}

#billing_country_field, #billing_address_1_field, #billing_address_2_field, #billing_state_field, #intestazione_gift_card_1_field {
    width: 100%;
}

#billing_postcode_field {
    width: calc(33.3333% - 16px);
}

#billing_city_field {
    width: calc(66.6666% - 16px);
}

.woocommerce-account .addresses .title .edit:hover {
    background-color: var(--blue);
    color: var(--white);
}

.woocommerce-account .woocommerce-order-details {
    margin-top: clamp(2.188rem, 2.036rem + 0.65vw, 2.813rem);
}

.woocommerce form .col-md-6 {
    width: 50% !important;
}

.woocommerce form .row .form-row,
.woocommerce form.row .form-row {
    padding: 0 10px;
}

.woocommerce form .row {
    margin-right: -10px;
    margin-left: -10px;
}

.woocommerce form.checkout_coupon, 
.woocommerce form.login, 
.woocommerce form.register{
	border: none;
	padding: 0;
}

.woocommerce-account-login main {
    margin-top: clamp(7.5rem, 6.029rem + 6.27vw, 12.5rem);
}

.woocommerce-account-login.woocommerce-account .entry-content .woocommerce {
    display: block;
}

.woocommerce-account-login article {
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}

.woocommerce-account-login .woocommerce form.login {
    margin-bottom: 0;
}

.woocommerce-account-login .col2-set .col-2 {
    float: none;
}

#customer_login {
    display: flex;
    max-width: 995px;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(0rem, -0.758rem + 3.24vw, 3.125rem) 0;
    flex-wrap: nowrap;
}

.offcanvas #customer_login {
    padding: 0;
    display: block;
}

.woocommerce .col2-set .col-1 {
    margin-right: clamp(2.5rem, 0.357rem + 4.39vw, 5.625rem);
}

.woocommerce .col2-set .col-1, 
.woocommerce .col2-set .col-2 {
    width: calc(50% - (clamp(2.5rem, 0.357rem + 4.39vw, 5.625rem) / 2));
}

.woocommerce form .form-row .required {
    visibility: hidden;
}

#customer_login h2{
	font-size: var(--font-size-heading-3);
	line-height: var(--line-height-heading-3);
}

.offcanvas #customer_login h2{
	font-size: var(--font-size-heading-2);
	line-height: var(--line-height-heading-2);
    color: var(--blue);
}

.woocommerce form .form-row label{
	font-size: var(--font-size-paragraph-2);
	line-height: var(--line-height-paragraph-2);
    font-weight: var(--font-weight-bold);
    margin-bottom: clamp(0.688rem, 0.642rem + 0.19vw, 0.875rem);
}

.woocommerce form .form-row label.woocommerce-form-login__rememberme{
	font-size: 15px;
	line-height: 20px;
    margin-bottom: 0;
}

.woocommerce form .form-row{
    float: none;
	margin: 25px 0 0;
    padding: 0;
}

.woocommerce form .form-row.wrapper-remember{
	margin-top: 20px;
}

.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea{
	border: none;
	background-color: var(--white) !important;
    color: var(--blue);
	padding: 15px;
    border-radius: 5px !important;
    font-size: var(--font-size-paragraph-2);
}

.woocommerce form .form-row .input-text, 
.woocommerce form .form-row select {
    font-size: var(--font-size-paragraph-2);
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: var(--white) !important;
}

.woocommerce form .form-row input.input-text:-webkit-autofill,
.woocommerce form .form-row textarea:-webkit-autofill{
	background-color: var(--white)  !important;
}

.woocommerce form .form-row input.input-text:focus, 
.woocommerce form .form-row textarea:focus, 
.woocommerce-cart table.cart td.actions .coupon .input-text:focus {
    color: var(--blue);
    background-color: var(--white);
    box-shadow: none;
}

.woocommerce form .form-row.woocommerce-invalid input.input-text:focus, 
.woocommerce form .form-row.woocommerce-invalid textarea:focus, 
.woocommerce form .form-row.woocommerce-invalid select:focus {
    box-shadow: none;
}

.woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated textarea, .woocommerce form .form-row.woocommerce-validated select {
    border: 0;
}

.woocommerce .form-row {
	display: block;
}

.woocommerce form .show-password-input, 
.woocommerce-page form .show-password-input{
	top: 16px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
	margin-top: 20px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce button.button.woocommerce-form-register__submit {
    height: 50px;
    line-height: 48px;
}

.offcanvas .woocommerce .u-columns .u-column1.col-1, 
.offcanvas .woocommerce .u-columns .u-column2.col-2 {
    margin: 0;
    padding: 0;
}

.offcanvas .woocommerce .u-columns .u-column2.col-2 {
    margin-top: 50px;
}

.woocommerce-form-login .woocommerce-LostPassword {
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    margin-top: 25px;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    height: 65px;
    padding-left: 25px;
    padding-right: 25px;
    transition: all 0.15s ease-in-out;
    font-family: var(--font-family-queens);
    font-size: 20px;
    font-stretch: 75%;
    text-transform: uppercase;
    line-height: 63px;
    padding-top: 0;
    padding-bottom: 0;
    min-width: 150px;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover{
	background: var(--blue);
    color: var(--white);
}

.woocommerce-form-register p {
    font-size: 15px;
    line-height: 20px;
    margin-top: 10px;
}

.woocommerce form.login, 
.woocommerce form.register{
    margin-bottom: 0;
}

.woocommerce form .form-row .input-text, 
.woocommerce-page form .form-row .input-text{
	height: clamp(3.125rem, 2.973rem + 0.65vw, 3.75rem);
}

.woocommerce .order-again {
    margin: 20px 0 50px !important;
}

.woocommerce-LostPassword{
	font-size: 17px;
	line-height: 20px;
	margin-top: 25px;
}

.woocommerce-privacy-policy-text a{
	text-decoration: underline;
}

.page-template-my-account-php h1{
	font-size: 36px;
	line-height: 43px;
	margin-bottom: 15px;
}

.page-template-my-account-php #footer-widget{
	margin-top: 120px!important;
}

.page-template-my-account-php #content,
.woocommerce-cart #content,
.woocommerce-checkout #content{
	padding-top: 205px !important;
}

.woocommerce-orders .woocommerce-message .woocommerce-Button,
.woocommerce-orders .woocommerce-info a {
    display: none;
}

.woocommerce table.shop_table{
	border: 0;
    margin: 0;
    border-collapse: collapse;
}

.woocommerce table.shop_table_responsive tr td::before, 
.woocommerce-page table.shop_table_responsive tr td::before {
    font-weight: var(--font-weight-bold);
}

#add_payment_method #payment div.payment_box, 
.woocommerce-cart #payment div.payment_box, 
.woocommerce-checkout #payment div.payment_box {
    font-size: var(--font-size-text-2);
    line-height: var(--line-height-text-2);
    color: var(--blue);
    margin: 0;
}

#add_payment_method #payment div.payment_box::before, 
.woocommerce-cart #payment div.payment_box::before, 
.woocommerce-checkout #payment div.payment_box::before {
    display: none;
}

.woocommerce-checkout #payment ul.payment_methods {
    border: 0;
}

.woocommerce form .form-row label.woocommerce-form__label-for-checkbox {
    font-weight: var(--font-weight-regular);
}

.woocommerce form .form-row label.woocommerce-form__label-for-checkbox a {
    text-decoration: underline;
}

.woocommerce form .form-row.woocommerce-validated .woocommerce-terms-and-conditions-checkbox-text {
    color: var(--blue);
}

.woocommerce form .form-row.woocommerce-validated input#terms {
    border-color: var(--blue);
    background-color: var(--blue);
}

.woocommerce form .form-row .input-checkbox {
    margin: 0.15em 0 0 0;
}

.woocommerce form .form-row.woocommerce-validated input#terms:focus {
    box-shadow: none;
}

.woocommerce-terms-and-conditions {
    background: var(--white);
}

.woocommerce .woocommerce-terms-and-conditions h2, .woocommerce-page .woocommerce-terms-and-condition h2 {
    margin: 20px 0 10px;
    font-size: var(--font-size-title-1);
    line-height: var(--line-height-title-1);
}

.woocommerce-checkout .wpmc-nav-wrapper button.button#wpmc-prev {
    border-radius: 0;
    background: none !important;
    height: auto;
    margin-top: clamp(1.25rem, 1.098rem + 0.65vw, 1.875rem);
    order: 2;
    border: 0;
    font-family: var(--font-family-lato);
    text-transform: none;
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    margin: 0;
    padding: 0;
}

.woocommerce-checkout #payment #place_order {
    float: none;
    margin-top: 55px;
    margin-bottom: -40px !important;
}

.woocommerce-checkout #payment .place-order {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.woocommerce-checkout .wpmc-nav-wrapper button.button#wpmc-prev:hover {
    color: var(--blue);
}

.woocommerce table.shop_table_responsive tr:nth-child(2n) td, 
.woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
  background:none;
}

.wc_payment_method label {
    margin: 0;
    font-weight: var(--font-weight-bold);
}

.wc-stripe-elements-field,
.wc-stripe-iban-element-field {
    border: 0 !important;
    background-color: #efefef !important;
    height: 50px;
    padding: 16px !important;
}

.woocommerce table.shop_table thead th{
	font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-weight: var(--font-weight-bold);
    border-top: 0;
    border-bottom: 2px solid var(--border-color);
    padding: 14px 10px;
}

.woocommerce table.shop_table th {
	line-height: var(--line-height-paragraph-2);
}

.woocommerce table.shop_table td{
	border-top: 0;
	border-bottom: 1px solid var(--border-color);
	padding: 14px 10px;
}

.woocommerce table.shop_table tbody th {
    border-bottom: 1px solid var(--border-color);
}

.woocommerce table.woocommerce-checkout-review-order-table tbody tr:last-child td{
	border-bottom: 0;
}

.woocommerce table.shop_table td.actions,
.woocommerce table.shop_table tr.order-total td {
    border: 0;
}

.woocommerce table.my_account_orders .button {
	padding: 0;
    border: 0;
    font-weight: var(--font-weight-medium);
    background: none;
    color: var(--black);
    height: auto;
    font-size: var(--font-size-paragraph-2) ;
    line-height: var(--line-height-paragraph-2);
    padding: 0 !important;
    font-family: var(--font-family-lato);
    text-align: left;
    text-transform: none;
    font-weight: var(--font-weight-regular);
}

.woocommerce table.my_account_orders .button:hover {
    text-decoration: underline;
    background: none;
    color: var(--blue);
}

.woocommerce table.shop_table tbody th, 
.woocommerce table.shop_table tfoot td, 
.woocommerce table.shop_table tfoot th {
    font-weight: var(--font-weight-regular);
}

.woocommerce table.my_account_orders td[data-title="Pedido"] a br {
    display: none;
}

.woocommerce table.my_account_orders td[data-title="Pedido"] a span {
    padding-right: 5px;
}

.woocommerce table.my_account_orders .button.invoice {
    display: none;
}

.woocommerce table.my_account_orders {
  font-size: var(--font-size-paragraph-2);
  line-height: var(--line-height-paragraph-2);
}

tr.order_item td.product-name .ywcars_button_refund {
  font-size: var(--font-size-paragraph-2) !important;
  margin-top: 10px;
}

tr.order_item td.product-name .ywcars_button_refund:disabled,
tr.order_item td.product-name .ywcars_button_refund:disabled:hover,
.ywcars_button_refund_container .ywcars_button_refund:disabled,
.ywcars_button_refund_container .ywcars_button_refund:disabled:hover {
  background-color: #d4d4d4;
  height: auto;
  display: none;
}

mark, ins {
  background: none;
}

.woocommerce table.shop_table td{
	font-size: var(--font-size-paragraph-2);
	line-height: var(--line-height-paragraph-2);
}

.woocommerce-MyAccount-content h3{
	font-size: 27px;
	line-height: 32px;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
    max-width: 240px;
}

.woocommerce-MyAccount-navigation .list-group {
    border-radius: 0;
}

.woocommerce-MyAccount-navigation .list-group-item {
    background: none;
    border: 0;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid var(--border-color);
}

.woocommerce-MyAccount-navigation .list-group-item:nth-child(4),
.woocommerce-MyAccount-navigation .list-group-item:nth-child(5) {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation .list-group-item:hover {
    background: none;
    color: var(--blue);
}

.woocommerce-MyAccount-navigation .list-group-item:nth-child(5){
	background-image: url("assets/img/icn-logout.png");
	background-repeat: no-repeat;
	background-position: 0 8px;
    background-size: 15px;
    padding-left: 24px;	
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 15px;
}

.mark, 
mark{
	background: none;
	font-weight: var(--font-weight-medium) !important;
}

.woocommerce table.shop_table.order_details tbody tr:last-child td{
    border-bottom: 0;
}

.woocommerce table.shop_table tfoot tr:first-child th,
.woocommerce table.shop_table tfoot tr:first-child td,
.woocommerce table.shop_table tfoot tr:last-child th,
.woocommerce table.shop_table tfoot tr:last-child td{
	border-top: 2px solid var(--border-color);
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td{
	font-weight: 400;
	border-top: 1px solid var(--border-color);
	border-bottom: 0;
    vertical-align: middle;
}

.woocommerce table.shop_table tfoot tr:last-child th,
.woocommerce table.shop_table tfoot tr:last-child td{
	font-weight: var(--font-weight-bold);
}

.woocommerce table.shop_table .product-name strong{
	font-weight: 400;
}

.woocommerce .woocommerce-customer-details address{
	border: 0;
}

.woocommerce .woocommerce-customer-details address p {
    margin: 0;
}

.woocommerce-account .woocommerce-Addresses{
    margin-top: clamp(2.5rem, 2.316rem + 0.78vw, 3.125rem);
}

.woocommerce-account .woocommerce-Addresses h2{
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    margin-bottom: 20px;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address {
    position: relative;
    padding-bottom: 60px;
}

.woocommerce-account .woocommerce-Addresses .woocommerce-Address.u-column2 {
    display: none;
}

.woocommerce-account.woocommerce-edit-address .entry-content .woocommerce .entry-header {
    margin-bottom: clamp(1.25rem, 0.974rem + 1.18vw, 2.188rem);
}

.woocommerce-account .woocommerce-Address a{
    padding: 0 25px;
    position: absolute;
    bottom: 0;
    text-align: center;
    background-color: var(--orange);
    color: var(--beige_1);
    border-radius: 40px;
    line-height: 57px;
    width: 135px;
    height: 54px;
    overflow: hidden;
    line-height: 51px;
}

.woocommerce-account .woocommerce-Address a:hover {
    text-decoration: none;
    background-color: var(--black);
}

.woocommerce .woocommerce-customer-details{
	margin-bottom: 0;
    margin-top: 50px !important;
}

.woocommerce .woocommerce-customer-details h2{
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    margin-bottom: 20px;
}

.woocommerce-account .addresses .title h3{
    margin: 20px 0 10px;
}

.woocommerce form .form-row select.country_select,
.woocommerce form .form-row select.state_select {
	border: 0;
    background-color: var(--white);
    height: 60px;
    padding-top: 8px;
    border-radius: 5px !important;
}

.woocommerce-address-fields button.button{
	float: right;
	margin-top: 30px;
}

.woocommerce button.button:hover{
	text-decoration: none;
}

.woocommerce-MyAccount-content span em{
	font-size: 15px;
	line-height: 18px;
	font-style: normal;
	display: inline-block;
	margin-top: 13px;
}

.woocommerce-EditAccountForm {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-EditAccountForm fieldset{
	margin-top: 50px;
	width: 100%;
}

.woocommerce-EditAccountForm .woocommerce-form-row {
    width: 100%;
}

.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last{
    width: calc(50% - 10px) !important;
    margin-top: 12px !important;
}

.woocommerce-EditAccountForm .form-row-last{
    margin-left: auto !important;
}

.woocommerce-EditAccountForm #account_display_name_description em {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
}

.woocommerce-MyAccount-content legend {
    font-family: var(--font-family-queens);
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    margin-bottom: 25px;
    font-weight: var(--font-weight-medium);
}

.woocommerce form .show-password-input {
    margin-top: 12px;
    margin-right: 5px;
}

.woocommerce-password-strength {
    font-weight: var(--font-weight-medium);
}

.woocommerce-EditAccountForm p:last-child {
    margin-left: auto;
    margin-top: 30px;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
    line-height: 1.4;
    color: var(--orange);
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: none;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
    display: block;
}

.woocommerce form .form-row label.woocommerce-form-login__rememberme {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    font-weight: var(--font-weight-regular);
}

.woocommerce form .form-row label.woocommerce-form-login__rememberme span {
    padding-left: 3px;
}

.woocommerce-form-register p {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    margin-top: 26px;
}

#customer_login .u-column1.col-6 {
    padding-left: 0;
}

#customer_login .u-column2.col-6 {
    padding-right: 0;
}

h2.entry-title{
	border-bottom: none;
}

.comment-body h5{
	font-size: 15px;
	line-height: 20px;
}

.comment-body cite{
	font-style: normal;
	
}

.comment-body .comment-content{
	font-size: 17px;
	line-height: 23px;
}

#respond .comment-form-cookies-consent{
	margin-top: 20px;
}

.page-template-my-account-php.woocommerce-lost-password #footer-widget {
    margin-top: 0!important;
}

.woocommerce-lost-password #content .container {
    max-width: 630px;
}

.woocommerce-lost-password  form .form-row-first,
.woocommerce-lost-password  form .form-row-last{
    width: 100%;
}

.page-template-my-account-php.woocommerce-lost-password #content {
    padding-top: 215px;
    min-height: 0;
    padding-bottom: 180px;
}

.woocommerce-lost-password h1 {
    margin-bottom: clamp(1.25rem, 0.974rem + 1.18vw, 2.188rem);
}

.woocommerce-lost-password main {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    padding-top: clamp(0rem, -0.607rem + 2.59vw, 2.5rem);
}

span.ywcars_current_status.ywcars-new {
  background: none !important;
}

.ywcars_message_shop_manager {
  margin-left: 0 !important;
}

span.ywcars_update_messages {
    display: none !important;
}

.ywcars_line_separator {
  height: 0 !important;
}

.ywcars_refund_info_message_body {
    font-size: var(--font-size-paragraph-2) !important;
	line-height: var(--line-height-paragraph-2) !important;
}

.ywcars_reduced_text_size span {
    font-size: var(--font-size-paragraph-2) !important;
	line-height: var(--line-height-paragraph-2) !important;
    font-weight: var(--font-weight-medium);
}

table.ywcars_refund_info tbody, table.ywcars_refund_info tr, table.ywcars_refund_info td {
    border: 1px solid var(--grey);
    font-size: var(--font-size-paragraph-2) !important;
	line-height: var(--line-height-paragraph-2) !important;
}

.ywcars_reduced_text_size {
    font-size: var(--font-size-paragraph-2) !important;
	line-height: var(--line-height-paragraph-2) !important;
}

.ywcars_refund_info_block_title {
  margin-bottom: 20px !important;
  font-weight: var(--font-weight-regular) !important;
  text-transform: none !important;
}

.my_account_orders td[data-title="Producto"] a br {
    display: none;
}

.my_account_orders td[data-title="Producto"] a span {
    padding-right: 5px;
}

.ywcars_refund_info_add_mesage .ywcars_block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#ywcars_send_message {
    order: 1;
    margin-top: 30px;
}

.ywcars_message_shop_manager .ywcars_refund_info_message_author {
    background: none;
    color: var(--black);
}

.woocommerce-checkout #content.container {
    max-width: 1570px;
}

.wpmc-tabs-wrapper {
    width: 100%;
    display: block;
    margin: 0 auto;
}

.wpmc-tab-item.wpmc-login .wpmc-tab-number {
    background-image: url(assets/img/icn-payment.svg) !important;
}

.wpmc-tab-item.wpmc-billing .wpmc-tab-number {
    background-image: url(assets/img/icn-user.svg) !important;
}

.wpmc-tab-item.wpmc-review .wpmc-tab-number {
    background-image: url(assets/img/icn-payment.svg) !important;
}

.wpmc-tab-number {
    margin-top: 0 !important;
    border: 0 !important;
    font-size: 0 !important;
    border-radius: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important;
}

.wpmc-tab-item .wpmc-tab-number, 
.wpmc-tab-item .wpmc-tab-text {
    opacity: 0.25;
}

.wpmc-tab-item.current .wpmc-tab-number, 
.wpmc-tab-item.current .wpmc-tab-text {
    opacity: 1;
}

.wpmc-tab-item.current {
    background-color: var(--beige_3);
}

.wpmc-tabs-wrapper .wpmc-tabs-list {
    display: flex !important;
    overflow: hidden;
    background: #EAEAE7 !important;
    border-radius: var(--border-radius);
}

.wpmc-steps-wrapper {
    margin-top: clamp(2.5rem, 2.045rem + 1.94vw, 4.375rem);
}

.woocommerce-checkout h1 {
    font-size: var(--font-size-heading-4);
    line-height: var(--line-height-heading-4);
    margin-bottom: clamp(1.875rem, 1.647rem + 0.97vw, 2.813rem);
}

.woocommerce-checkout h3 {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
}

.woocommerce-order-received .woocommerce-table--order-details {
    margin-bottom: 20px !important;
}

.woocommerce-thankyou-order-details {
    color: var(--blue);
    padding: 0;
    border-radius: 0;
    border: 0;
    background: none;
    margin-top: 40px !important;
    margin-bottom: 60px !important;
}

.woocommerce-thankyou-order-details::before {
    display: none !important;
}

.woocommerce-order-details h2 {
    font-size: var(--font-size-heading-3);
    line-height: var(--line-height-heading-3);
    margin-bottom: 20px;
}

.woocommerce ul.order_details li {
    font-size: var(--font-size-paragraph-1);
    line-height: var(--line-height-paragraph-1);
    font-weight: var(--font-weight-bold);
}

.woocommerce ul.order_details li strong {
    font-size: var(--font-size-paragraph-2);
    line-height: var(--line-height-paragraph-2);
    font-weight: var(--font-weight-regular);
}

.woocommerce .woocommerce-customer-details address {
    background: none;
    padding: 0;
    border-radius: 0;
}

.wpmc-tabs-wrapper .wpmc-tab-item:before {
    display: none !important;
}

.wpmc-tabs-wrapper .wpmc-tab-item {
    padding-bottom: 0 !important;
    margin: 0;
    height: clamp(3.125rem, 2.67rem + 1.94vw, 5rem);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--blue) !important;
    float: none !important;
}

.wpmc-tabs-wrapper .wpmc-tab-text {
    font-size: var(--font-size-paragraph-2) !important;
    text-transform: none !important;
    width: auto !important;
    padding-top: 0 !important;
    margin-left: 13px;
    letter-spacing: 0 !important;
}

.wpmc-tabs-wrapper .wpmc-tab-item:not(:last-child):after {
    content: "";
    display: block;
    width: 70px;
    height: 70px;
    border-top: 10px solid var(--light-grey);
    border-right: 10px solid var(--light-grey);
    position: absolute;
    right: -32px;
    transform: rotate(45deg);
    z-index: 1;
}


/*--------------------------  RESPONSIVE  --------------------------*/

@media (max-width: 1700px) {

    .navbar-nav .nav-item-contact {
        display: block;
    }

    #bootscore-navbar {
        display: none;
    }

    .header-contact-link {
        display: none;
    }

    #masthead .header-actions {
        margin-left: auto;
    }

    #bootscore-navbar {
        text-align: center;
        position: absolute;
        left: var(--margin-container);
        right: var(--margin-container);
        top: clamp(6.875rem, 6.167rem + 3.019vw, 9.375rem);
    }

    #bootscore-navbar li:not(:last-child) {
        margin-bottom: 8px;
    }

    .nav-link {
        font-family: var(--font-family-queens);
        font-size: var(--font-size-heading-5);
        line-height: var(--line-height-heading-5);
        padding: 0 !important;
    }

    .nav-link:hover {
        text-decoration: none;
    }

    .menu-open header#masthead .scroll-text:not(.page-id-3020) {
        border-color: var(--light-grey);
    }

    #masthead .header-actions .btn.nav-toggler {
        display: block !important;
    }

}


@media (max-width: 1600px) {

}


@media (max-width: 1440px) {

    footer.final-footer .menu-legal {
        width: calc(100% - clamp(3.125rem, 2.367rem + 3.236vw, 6.25rem));
        margin-left: 0;
        margin-top: 10px;
    }

    footer.final-footer .menu-legal li {
        padding-left: 0;
        padding-right: calc(clamp(0.5rem, 0.354rem + 0.62vw, 0.938rem) * 2);
    }

    .page-id-3020 .block_3 .wp-block-column.right {
        text-align: left;
    }

    .block_2.repeated .wp-block-columns.block_2_2 {
        margin-top: clamp(4.375rem, 3.715rem + 2.817vw, 6.25rem);
    }

    .page-id-3022 .block_4 .block_4_1 p {
        text-align: left;
    }

    .page-id-3026 .block_1.repeated .text h3, .page-id-3030 .block_1.repeated .text h3 {
        margin-top: 15px;
    }

}


@media (max-width: 1280px) {

    .page-id-3020 .block_2 .text .wp-block-group {
        column-count: 1;
    }

}


@media (max-width: 1024px) {

    /* html {
        overflow: hidden;
    }

    body {
        overflow-x: hidden;
    } */

    #page {
        overflow-x: hidden;
    }

    #masthead {
        position: absolute;
    }

    .page-id-3020 .block_2 h1 br {
        display: none;
    }

    .block_1.repeated .text::after {
        left: calc(var(--margin-container) * -1);
        width: calc(100% + (var(--margin-container) * 2));
    }

    .page-id-3032 .block_2 .wp-block-columns {
        flex-direction: column;
    }

    .page-id-3032 .block_2 .wp-block-columns:not(:first-child) {
        margin-top: 24px;
    }

    .page-id-3032 .block_2 .wp-block-column {
        margin-bottom: 0;
    }

}


@media (max-width: 991px) {

    footer .wrapper-logo {
        margin-bottom: 60px;
    }

    footer.final-footer .footer-middle .wrapper-form-newsletter {
        margin-top: 40px;
    }

    .page-id-3022 .block_3 .wp-block-columns {
        flex-direction: column;
    }

    .page-id-3020 .blocks_3 .text, .page-id-3022 .block_3 .wp-block-column {
        max-width: none;
    }

}


@media (max-width: 781px) {

    .wp-block-column.aos-animate:nth-child(2),
    .wp-block-column.aos-animate:nth-child(3) {
        transition-delay: 0s;
    }

    :root :where(.is-layout-flex) {
        gap: clamp(1.563rem, 1.411rem + 0.647vw, 2.188rem);
    }
    
    footer {
        flex-direction: column;
    }

    footer .right {
        margin-top: 15px;
    }

    .accordion-toggle .toggle-icon {
        width: 14px;
        height: 14px;
    }

    .call_to_action .wp-block-columns {
        display: block;
        height: auto;
        padding-top: 140px;
        padding-bottom: 140px;
    }

    .call_to_action h2 {
        text-align: center;
        margin-bottom: 30px !important;
    }

    .call_to_action p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .call_to_action .wp-block-buttons {
        justify-content: center;
    }

    .page-id-3020 .block_2 .text {
        padding-left: var(--margin-container);
    }

    .page-id-3020 .block_2 .text {
        margin-top: -50px;
    }

    .page-id-3020 .block_4 .image {
        margin-top: 35px;
    }

    .block_2.repeated .block_2_1 .image {
        order: 2;
    }

    .page-id-3034 .block_3 .wp-block-columns {
        gap: 50px;
    }

}


@media (max-width: 768px) {

    #masthead .header-actions {
        margin-right: 0 !important;
    }

    .container-gtranslate_wrapper {
        display: none;
        position: fixed;
        right: var(--margin-container);
        left: var(--margin-container);
        top: auto;
        bottom: 30px;
    }

    .menu-open .container-gtranslate_wrapper {
        display: block;
    }

    .container-gtranslate_wrapper .gtranslate_wrapper {
        background: none;
        border-radius: 0;
        border: 0;
    }

    .menu-open .container-gtranslate_wrapper {
        display: block;
    }
    
    .container-gtranslate_wrapper a.glink {
        color: var(--light-grey);
    }

    .container-gtranslate_wrapper .gtranslate_wrapper {
        padding: 0;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .container-gtranslate_wrapper .gtranslate_wrapper:not(.open) a:not(.gt-current-lang) {
        display: block;
    }

    .container-gtranslate_wrapper a.glink.gt-current-lang {
        order: 0;
    }

    footer.final-footer .design-by {
        margin-left: 0;
        width: 100%;
        margin-top: 10px;
    }

    .page-id-3020 .blocks_3 .wp-block-cover {
        height: auto;
        padding: 0;
    }

    .page-id-3020 .blocks_3 .wp-block-cover img.wp-block-cover__image-background {
        display: none;
    }

    .page-id-3020 .blocks_3 .text, .page-id-3022 .block_3 .wp-block-column {
        max-width: none;
    }

    .page-id-3020 .block_3 .block_3_2 .avviso-apertura {
        color: var(--green);
    }

    .page-id-3020 .block_3 .block_3_3 .avviso-apertura {
        color: var(--brown);
    }

    .page-id-3020 .blocks_3 .avviso-apertura.desktop {
        display: none;
    }

    .page-id-3020 .blocks_3 .avviso-apertura.mobile {
        display: block;
        position: static;
        margin-bottom: -25px;
    }

    .page-id-3020 .blocks_3 figure.mobile {
        display: block;
        margin-bottom: 25px;
    }

    .page-id-3020 .blocks_3 figure.mobile img,
    .page-id-3020 .block_4 .image img,
    .block_1.repeated img,
    .page-id-3024 .block_3 img,
    .page-id-3024 .block_5 img {
        height: 530px;
        object-fit: cover;
    }

    .page-id-3022 .block_4 .block_4_1 h2 br {
        display: none;
    }

    .block_1.repeated .text h1 br {
        display: block;
    }

    .block_1.repeated .text h1 em {
        display: inline;
    }

}


@media (max-width: 575px) {

    footer.final-footer .footer-middle .col:not(:first-child) h4 {
        margin-top: 35px;
    }

    .page-id-3022 .block_3 h2 br {
        display: none;
    }

}


@media (max-width: 480px) {

    header .navbar-brand.logo-vistamare-milano {
        -webkit-mask-image: url(assets/img/logo/logo-vistamare.svg);
        mask-image: url(assets/img/logo/logo-vistamare.svg);
    }

    header .navbar-brand {
        position: static;
        margin: 0;
    }

    #masthead .header-actions .btn.nav-toggler {
        position: relative;
        left: auto;
        margin-left: 8px !important;
        top: 3px;
    }

    .navbar {
        height: auto;
    }

    .nav-link {
        font-size: var(--font-size-heading-4);
        line-height: var(--line-height-heading-4);
    }

    header .navbar-brand.logo-vistamare-milano {
        width: clamp(13.125rem, 9.775rem + 14.293vw, 14.063rem);
        height: clamp(1.688rem, 1.02rem + 2.85vw, 1.875rem);
        mask-position: left center;
    }

    footer.final-footer .footer-bottom {
        align-items: flex-end;
    }

    .page-id-2160 h1 {
        text-align: left;
    }

    .page-id-3020 .block_1 img {
        height: calc(100vh - 3rem);
    }

    .block_1.repeated .text h1 {
        margin-top: 25px;
    }

    .block_1.repeated .text::after{
        opacity: 0.8;
    }

    .page-id-3022 .block_1.repeated .text::after{
        background-position-x: right -40px;
    }

    .page-id-3024 .block_1.repeated .text::after {
        background-position-x: right -300px;
    }

    .page-id-3026 .block_1.repeated .text::after {
        background-position-x: right -240px;
    }

    .page-id-3030 .block_1.repeated .text::after {
        background-position-x: right -100px;
    }

    .page-id-3032 .block_1.repeated .text::after {
        background-position-x: right -430px;
    }

    .page-id-3034 .block_1.repeated .text::after {
        background-position-x: right -290px;
    }

    .wpcf7 input[type="submit"] {
        margin-right: auto;
        margin-left: -24px;
    }

    .wpcf7-spinner {
        margin-left: 0;
        margin-right: auto;
    }

    .wpcf7 form .wpcf7-response-output {
        text-align: center;
    }

    .page-id-3020 .block_2 h1 {
        font-size: var(--font-size-heading-5);
        line-height: var(--line-height-heading-5);
    }

}