/*
	Theme Name: Briquettes
	Theme URI: https://briquettes-woodpellets.co.uk/
	Description: WordPress Theme
	Version: 1.0
	Author: Gabriel Nastase
	Author URI: http://gabrielnastase.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-family: 'Montserrat';
    font-size: 1.4rem;
	color:#422917;
    background-color: #fff;
}
/* clear */
.clear {
    clear: both;
    height: 0;
}
img {
	max-width:100%;
	vertical-align:bottom;
    height: auto;
}
a {
	color:#422917;
	text-decoration:none;
    transition: color 200ms;
}
a:hover {
	color:#623311;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
.cookie-policy main a, .privacy-policy main a {
    color: #f4ab00;
}

input, textarea  {
    background: #fff;
    padding: 8px;
    border: solid 1px #c6c6c6;
    border-radius: 10px;
    transition: all 500ms ease-out;
}
select {
   appearance: none;
    background: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    border-radius: 10px;
    padding: 8px;
    border: solid 1px #c6c6c6;
    transition: all 500ms ease-out;
    background-image: url(img/select.svg);
    background-repeat: no-repeat;
    background-position: 95% center;
    background-size: 13px;
}
input:hover, textarea:hover, select:hover {
    border: solid 1px #32373c;
}
input:focus, textarea:focus, select:focus {
    border: solid 1px #32373c;
}
input[type="checkbox"], input[type="radio"] {
    padding: auto;
}
/* Shrink */

.shrink {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.shrink:hover {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}

/* Grow */

.grow {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.grow:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

video {
    border-radius: 5px;
}

.gradient-brown {
    background: rgb(66,41,23);
    background: linear-gradient(90deg, rgba(66,41,23,0.12228641456582634) 62%, rgba(66,41,23,0) 100%);
}
.gradient-white {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.12228641456582634) 62%, rgba(255,255,255,0) 100%);
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.box-padding {
    padding: 60px;
}
.box-padding-20 {
    padding: 20px;
}
.left {
	float: left;
}
.right {
	float: right;
}
.col-50 {
	width: 50%;
	display: block;
}
.col-45 {
	width: 45%;
	display: block;
}
.col-25 {
	width: 25%;
	display: block;
}
.col-30 {
	width: 30%;
	display: block;
}
.col-70 {
	width: 70%;
	display: block;
}
.col-75 {
	width: 75%;
	display: block;
}
.col-100-sidebar {
    width: calc(100% - 335px);
}
.flex-container {
	display: flex;
}
.center {
    text-align: center;
}
.btn {
    display: inline-block;
    color: #32373c;
    padding: 7px 15px;
    background: #fff;
    border-radius: 4px;
    transition: all 300ms;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.btn:hover {
    background: #fff;
}

h1, h2, h3 {
    font-weight: 700;
}
h1 {
    font-size: 4.4rem;
}
h2 {
    font-size: 3.4rem;
    line-height: 1;
    color: #422917;
}
p {font-size: 1.6rem;}
.bigger {
    font-size: 6rem;
}
/* wrapper */
.wrapper {
	width:96%;
    max-width:1280px!important;
	margin:0 auto!important;
	position:relative;
}
.outer-wrapper {
    width:96%;
	margin:0 auto!important;
	position:relative;
}

.narrow-wrapper {
    width:96%;
    max-width:900px!important;
	margin:0 auto!important;
	position:relative;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
}

.rounded, .rounded img {
    border-radius: 20px;
}
.wp-block-cover .wp-block-cover__image-background {
    border-radius: 20px!important;
}
/* header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #422917;
    box-shadow: 0 2px 4px rgba(0,0,0,0);
    z-index: 800;
    transition: all 350ms ease-out;
    color: #fff;
}
.header a {
    color: #fff;
}
.header a:hover {
    color: #f4ab00;
}
.header .flex-container {
    justify-content: space-between;
    align-items: center;
}
/* logo */
.logo {
}
.logo .logo-img {
    max-width: 180px;
    min-width: 180px;
    display: block;
    transition: all 300ms;
}
/* nav */
.nav {
    margin-top: 0;
}
.nav-left {
    float: left;
}
.nav-right {
    float: right;
}
.nav ul li a {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}
.header .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header .nav ul li {
    display: inline-block;
    padding: 4px;
    margin: 0 0 0 25px;
    border: solid 2px transparent;
    transition: all 300ms ease-out;
    border-radius: 4px;
    position: relative;

}
.header .nav ul li:hover {
    border: solid 2px #f4ab00;
}
.header .nav ul li a:hover {color: #fff;}
.header .nav .current_page_item  {
    border: solid 2px #fff;
}
.header .nav-left li:first-child {
    margin-left: 0;
}

.nav ul li .sub-menu {
	position: absolute;
	top: 15px;
	left: 0;
	width: 220px;
	background: #fff;
	box-shadow: 0 10px 20px rgba(0,0,0,.1);
	transition: all 200ms ease-out;
	visibility: hidden;
	opacity: 0;
	border-radius: 7px;

}
.nav .menu-item-has-children:hover .sub-menu {
	top: 20px;
	visibility: visible;
	opacity: 1;
}
.nav ul li .sub-menu li {
	display: block;
	margin: 10px;
	border-bottom: none;
    border: solid 2px transparent;
    text-align: left;
}
.nav ul li .sub-menu li a {
	color: #333;
}

.header-icons {
    float: right;
    font-size: 2rem;
    margin-left: 25px;
    margin-top: 5px;
}
.header ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.header-icons ul li {
    display: inline;
    margin-left: 25px;
    position: relative;
}
.header ul li .notification-dot {
    position: absolute;
    bottom: -3px;
    right: -8px;
    color: #fff;
    background: red;
    width: 16px;
    height: 16px;
    line-height: 1.2;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;

}
/* menu btn */

#nav-icon3 {
    width: 25px;
   height: 25px;
   padding: 4px;
   border-radius: 4px;
   position: fixed;
   z-index: 99999;
   top: 10px;
   left: 2%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
    display: none;
}

 #nav-icon3 span {
  display: block;
  position: absolute;
  height: 3px;
     border-radius: 2px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/* menu  button */

#nav-icon3 span:nth-child(1) {
  top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
  top: 10px;
}

#nav-icon3 span:nth-child(4) {
  top: 20px;
}

#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}

#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.header .woocommerce-breadcrumb {
    float: left;
}
.content {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}
.content-padding-bottom {
    padding-bottom: 50px;
}
.first-item-padding {
    padding-top: 180px;
}



.full-width-bg-img  {
	width: 100%;
	position: relative;
    background-attachment: fixed;
	background-size: cover;
    background-position: center;
}
.page-header {
	width: 100%;
	color: #fff;
    position: relative;
   padding: 160px 0 120px 0;
}
.page-header .outer-wrapper {
    position: relative;
}

.page-header input {
    min-width: 300px;
    box-shadow: 0 5px 8px rgba(0,0,0,.2);
}
.page-header button {
     background: none;
    color: #fff;
    border-radius: 4px;
    padding: 6px 14px;
    border: solid 3px #fff;
    font-weight: 700;
    border-radius: 4px;
    transition: all 500ms ease-out;
}
.box {
    padding: 35px;
}

.has-sidebar {
    width: calc( 100% - 320px );
    float: right;
}
/* sidebar */
.sidebar {
    width: 300px;
    float: left;
    border-radius: 20px;
    overflow: auto;
}

.sidebar::-webkit-scrollbar {
    display: none;
}


.sidebar h3 {
    color: #f4ab00;
}

.sidebar .dark h3 {color: #fff;}
.sidebar .not-home {
    display: none;
}
/* footer */

.footer {
    position: relative;
    z-index: 0;
    width: 100%;
    background: #f3f1ee;
    padding: 80px 0 30px 0;
}
.footer .flex-container  {
    justify-content: space-between;
}

.footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer h3 {
    color: #f4ab00;
}
.footer i {
    font-size: 2.2rem;
    margin-right: 10px;
}
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f4ab00;
    display: flex;
    z-index: 790;
    padding: 10px 0 16px 0;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    visibility: hidden;
}
.mobile-bottom-menu .item {
    margin: 0 20px;
}
.mobile-bottom-menu .item img {
    max-width: 30px;
    margin: 0 auto;
    margin-bottom: 5px;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.intro {
    background: #f4ab00;
    color: #422917;
    padding-top: 160px;
    padding-bottom: 20px;
}
.intro .flex-container {
    justify-content: space-between;
    flex-wrap: wrap;
}
.intro .filters {
    width: 38%;
    border-radius: 20px;
}
.intro .filters input {
    background: #fff;
    border: solid 3px #422917;
    border-radius: 10px;
    width: calc( 100% - 100px );
}
.intro .filters input:hover, .intro .filters input:focus {
    border: solid 3px #f4ab00;
}
.intro .filters button {
    border: none;
    background: #422917;
    color: #fff;
    font-weight: 700;
    padding: 8px;
    border-radius: 10px;
    border: solid 3px #422917;;
    width: 70px;
}
.intro .filters .all-beers {
    width: calc( 100% - 22px );
    margin-top: 25px;
}
.intro .filters ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-top: 20px;
    display: flex;
}
.intro .filters ul li {
    text-align: center;
    flex-basis: 25%;
}
.intro .filters ul li img {
    max-width: 80%;
    padding: 9% 20%;
    border-radius: 10px;
    margin-bottom: 7px;
    width: 100%;
}
.slider {
    max-width: 60%;
    background:#422917;
    border-radius: 20px;
    margin-bottom: -50px;
}
.slider .item {
    position: relative;
    padding: 20px;
    border-radius: 20px;
    padding-bottom: 0;
}
.slider .slide-content {
    color: #fff;
    padding-top: 20px;
}
.slider .wp-block-columns {
    margin: 0;
}
.slider img {
    border-radius: 15px;
}
.slider .item .overlay {
    top: auto;
    bottom: 20px;
    left: 20px;
    width: 100%;
    height: auto;
}

.slider .item .overlay h2 {
    margin: 0;
}
.slider .box {
    padding-top: 60px;
}
.slider .box-bianco {
    background: rgba(255,255,255,.9);
    color: #2c393b;
    max-width: 400px;
    position: relative;
}
.slider .owl-nav {
    display: none;
}

.slider .owl-dots {
    position: relative;
    z-index: 800;
    bottom: 20px;
}

.carousel .owl-nav {
    position: relative;
    font-size: 2.2rem;
    text-align: center;
    padding: 20px 0;
}
.carousel .owl-prev {
    display: inline;
    margin: 15px;
}
.carousel .owl-next {
    display: inline;
    margin: 15px;
}
.carousel .item {
    padding-bottom: 10px;
}
.carousel .item img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.dark {
    background-color: #32373c;
    color: #fff;
}
.dark a {
    color: #fff;
}
.dark a:hover {
    color: #f39200;
}
.darker {
    background: #24272b;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background: none;
}
.woocommerce-message {
    border-top-color: #f39200;
}
.woocommerce-info {
    border-top-color: #009149;
}
.woocommerce-message .button {
   border: none!important;
    background: #f39200!important;
    color: #fff!important;
}

.loop-block {
    margin-bottom: 20px;
}
.loop-text {
    padding-left: 20px;
}
.loop-thumb img {
    width: 100%;
    border-radius: 20px;
}

.contatti input, .contatti textarea {
    width: 95%;
    margin-bottom: 5px;
}
.contatti input[type="checkbox"], .contatti input[type="radio"] {
    width: auto;
}
.contatti hr {
    max-width: 80px;
    opacity: .3;
    margin: 15px 0;
}
.wpcf7-submit {
    max-width: 120px;
    color: #fff;
    font-weight: bold;
    border: none;
    background: #f39200;
    padding: 10px:
}
.wpcf7-submit:hover {
    background: #ffa215;
    border: none;
}
.leaf {
    position: relative;
    z-index: 200;
    margin-top: -150px;
}
.bg-leaf {
    background-image: url(img/leaf.jpg);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-attachment: fixed;
}
.wrap-right {
    padding-left: 25%;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	WOOCOMMERCE
\*------------------------------------*/
.add_to_cart_button:after, .wc-block-grid__product-add-to-cart .add_to_cart_button:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f07a";
    font-weight: 900;
    float: right;
    margin-left: 10px;
}
.wc-block-grid__product-add-to-cart .add_to_cart_button:after {
    margin-top: 3px;
}
.wc-block-grid__product-add-to-cart .add_to_cart_button {
    width: 100%;
    display: block;
    text-align: left;
}
.wc-block-grid__product .wc-block-grid__product-add-to-cart, .wc-block-grid__product .wc-block-grid__product-onsale, .wc-block-grid__product .wc-block-grid__product-price, .wc-block-grid__product .wc-block-grid__product-rating {
    margin-bottom: 0;
    margin-top: 15px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    padding: 15px;
    border-radius: 20px;
    border: solid 1px #f2f2f2;
    margin-top: 60px;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 10px auto 5px auto;
}
.woocommerce ul.products li.product .formato-gradazione {
    display: block;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0;
}
.woocommerce ul.products li.product .colore {
    display: block;
    width: 22px;
    height: 30px;
    float: right;
    margin-top: -10px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}
.woocommerce ul.products li.product .Bianca {
    background-image: url(img/bicchiere-bianca.svg);
}
.woocommerce ul.products li.product .Bionda {
    background-image: url(img/bicchiere-bionda.svg);
}
.woocommerce ul.products li.product .Ambrata {
    background-image: url(img/bicchiere-ambrata.svg);
}
.woocommerce ul.products li.product .Scura {
    background-image: url(img/bicchiere-scura.svg);
}
.woocommerce ul.products li.product .price {
    font-weight: 700;
    color: #f4ab00!important;
    text-align: center;
}
.woocommerce ul.products li.product .button {
    display: none;
}
.wc-block-grid__product {
    text-align: left;
    padding: 15px;
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(255,255,255,1) 62%, rgba(255,255,255,0) 100%);
    border: none;
    margin-top: 80px;
}

.wc-block-grid__product img {
    border-radius: 10px;
    height: auto;
    margin-top: -60px;
}
.block-products-4-full .wc-block-grid__product {
    margin-top: 100px;
}
.block-products-4-full .wc-block-grid__product img {
    margin-top: -80px;
}
.wc-block-grid__product-rating {display: none;}
.woocommerce div.product div.images img {
    border-radius: 20px;
}

.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button {
    background: #f4ab00;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.4rem;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: all 200ms;
}
.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover {
    border: none;
    background: #fff;
}
.dark .woocommerce #respond input#submit, .dark .woocommerce a.button, .dark .woocommerce button.button, .dark .woocommerce input.button {
     background: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.4rem;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}
.woocommerce span.onsale {
    background: #d73a2d;
    color: #fff;
    border: none;
    font-weight: 700;
    border-radius: 3px;
    padding: 7px;
    line-height: 1;
    min-height: auto;
    margin: 0;
    font-size: 11px;
}

.woocommerce ul.products li.product .price {
    color: #32373c;
    padding: 0;
    z-index: 60;
    line-height: 1;
}


.woocommerce ul.products li.product  .woocommerce-product-details__short-description {
    display: none;
}
.woocommerce ul.products li.product .add_to_cart_button {
    width: 100%;
}

.woocommerce ul.products li.product .add_to_cart_button:hover {
    background: #fff;
}
.dark .woocommerce ul.products li.product .add_to_cart_button:hover {
    border: solid 2px #fff;
    background: none;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
    border: none;
    background-color: #f4ab00;
    padding: 13px;
    margin-left: 10px;
    transition: all 300ms;
}
.woocommerce .quantity .qty {
    padding: 10px;
    border-radius: 10px;
}
.woocommerce table.shop_table {
    border-radius: 10px;
    border: none;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
    background-color: #422917;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
    color: #32373c;
}
.woocommerce div.product .woocommerce-tabs {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    border: ;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: ;
    border-radius: 4px;
    margin-right: 4px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
    border: ;
}
.woocommerce nav.woocommerce-pagination ul {border: none;}
.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li {
    border-radius: 3px;
    border: solid 1px #f2f2f2;
}
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    border-radius: 4px;
}
.woocommerce-tabs table td {
    border-bottom: solid 1px #cfcbc9;
    padding: 10px 0;
}
.editor-styles-wrapper .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-onsale, .wc-block-grid__product-onsale {
    float: right;
    margin-top: -3px;
    border: none;
    background: #d73a2d;
    color: #fff;
}
.sidebar .woocommerce .button {
    border: none;
    background: #f4ab00;
    color: #fff;
    border-radius: 10px;
}
.sidebar .woocommerce .button:hover {
    background: #32373c;
    color: #fff;
    border: none;
}
.sidebar .button {
    background: #7e8289;
    color: #fff;
    padding: 8px 10px;
    width: 100%;
    display: block;
    margin-top: 10px;
    cursor: pointer;
    transition: all 350ms ease-out;
    border-radius: 4px;
}

.sidebar .button:hover {
    background: #60646b;
    color: #fff;
}
.sidebar .button i {
    float: right;
}
.sidebar .quantity {
    color: #a3a3a3;
    font-size: 1.2rem;
}
.sidebar .wc-forward:after {
    content: "\f07a";
    font-family: 'Font Awesome 5 Free';
    float: right;
}
.sidebar .checkout:after {
    content: "\f09d";
    font-family: 'Font Awesome 5 Free';
    float: right;
}
.sidebar .button {width: 100%;}
.sidebar .woocommerce-product-search input {
    width: calc( 100% - 90px );
}
.sidebar .woocommerce-product-search button {
    width: 60px;
    border: none;
    background: #f4ab00;
    color: #fff;
    font-weight: bold;
    padding: 7px 0;
    border-radius: 10px;
}
.woocommerce-cart .sidebar {
    display: none;
}

.woocommerce ul.cart_list li dl dd, .woocommerce ul.product_list_widget li dl dd {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
}
.woocommerce ul.cart_list li dl dd, .woocommerce ul.product_list_widget li dl dd p {
    margin-top: 0;
}
.woocommerce ul.cart_list li dl dt, .woocommerce ul.product_list_widget li dl dt {
    display: block;
    font-size: 1.2rem;
    margin: 0;
    padding: 0;
}

.woocommerce td.product-name .wc-item-meta p, .woocommerce td.product-name .wc-item-meta:last-child, .woocommerce td.product-name dl.variation p, .woocommerce td.product-name dl.variation:last-child {
    display: inline;
}

.woocommerce-MyAccount-navigation-link--downloads {display: none;}
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-MyAccount-navigation ul li {
    display: block;
    padding: 7px;
    border-radius: 8px;
    background: #fff;
    border: solid 1px #ccc;
    margin-bottom: 5px;
}
.all-cat-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(126,130,137,.97);
    display: none;
    z-index: 100;
    color: #fff;
    overflow-y: auto;
}
.all-cat-container::-webkit-scrollbar {
    display: none;
}
.all-cat-container a {
    color: #fff;
}
.all-cat-container a:hover {
    color: #f39200;
}
.all-categories {
    list-style: square;
    padding: 20px;
    margin: 2%;
    width: 96%;
    border-top: solid 1px rgba(255,255,255,.1);
    font-weight: 700;
    display: block;
}

.all-categories::-webkit-scrollbar {
    display: none;
}
.all-categories li {
    display: block;
    padding: 4px;
    margin-bottom: 3px;
}
.all-categories li ul {
    padding-left: 10px;
    border-left: solid 2px rgba(255,255,255,.15);
}

.all-categories li ul li {
    background: none;
}

#closeCat {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    display: none;
    z-index: 300;
    color: #fff;
}

.tawcvs-swatches .swatch-image {
    width: 50px!important;
    height: 50px!important;
    margin: 3px;
}
.tawcvs-swatches .swatch-image img {
    width: 100%;
    height: 100%;
}
.radio-image-label {
    display: none;
}

.tc-active label {
    border: solid 4px #f39200;
}

.cpf-section-height-0 {
    height: 0;
}
.toggle-sidebar {
    display: none;
}
.home-slider {
    margin-top: 10px;
    position: relative;
    padding-bottom: 50px;
}
.home-slider img {
    border-radius: 5px;
}
.home-slider .text-slider {
    max-width: 1065px;
    margin-left: 215px;
}
.home-slider .slider-controls {
    position: absolute;
    top: 0;
    left: 0;

}
.home-slider .slider-controls ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
.home-slider .slider-controls ol li {
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    cursor: pointer;
    background: #9aacb7;
    color: #fff;
    border-radius: 5px;
    padding: 20px 10px;
    font-size: 1rem;
    font-weight: bold;
    width: 205px;
    margin-bottom: 10px;
}
.home-slider .slider-controls ol .flex-active {
    background: #d73a2d;
}
.owl-carousel .owl-stage-outer {
    border-radius: 5px;
}
.wp-block-image img {
    border-radius: 20px!important;
}

.wc-block-grid__products .wp-block-button__link {
    border-radius: 7px;
    padding: 10px 14px;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: #f4ab00;
    color: #fff!important;
    text-transform: uppercase;
    justify-content: space-between!important;
}
.wc-block-grid__products .wp-block-button__link:hover {
    color: #32373c;
}

.wp-block-cover h3 {
    font-size: 2.6rem;
}
.cards-home {
    margin-top: 30px;
}
.cards-home .wp-block-column {
    background: #fff;
    padding: 10px 20px;
    box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
    border-radius: 5px;
}
.cards-home h3 {
    font-size: 2.8rem:
}
.cards-home p {
    height: 90px;
}

.super-sconti .wc-block-grid__product {
    padding-top: 9px;
    border-radius: 10px;
    color: #fff;
    background: #d73a2d;
}
.super-sconti .wc-block-grid__product .price {
    font-size: 2.4rem;
    font-weight: bold;
    color: yellow;
}
.super-sconti .wc-block-grid__product a {
    color: #fff;
}

.super-sconti .wc-block-grid__product {
    margin-right: 5px;
}
.theme-twentytwenty .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .theme-twentytwenty .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product, .wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .wc-block-grid.has-5-columns.alignfull .wc-block-grid__product {
    font-size: 1.4rem;
}

.icone-home img {
    max-width: 75px;
}
.boxes-home {
    margin-top: 35px;
}
.wp-block-coblocks-posts__item a {
    font-weight: 700;
    font-size: 2.6rem;
}
.wp-block-coblocks-posts__item .wp-block-coblocks-posts__image a {border-radius: 20px;}

.wp-block-gallery .blocks-gallery-item img {
    border-radius: 20px;
}

/*------------------------------------*\
    WOOF
\*------------------------------------*/
.woof_list {
    padding: 0;
}

.woof_list li {
    transition: all 200ms;
    margin: 0 3px 4px 3px !important;
    padding: 5px 10px!important;
    background: #fff;
    border-radius: 10px;
    border: solid 1px #ccc;
    display: block;
}
.woof_list li input {
    width: auto;
}
.woof_childs_list {
	padding: 0;
}
.woof_childs_list li {
	border: none;
	padding: 0!important;
}

/*------------------------------------*\
    SINGLE PRODUCT FEATURES
\*------------------------------------*/
.features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: 1.2rem;
}
.features li img {
    width: 40px;
    height: 40px;
    display: block;
    margin: 5px auto;
}

.gusto {
    position: relative;
    margin: 30px 0;
    width: 100%;
    background-image: url(img/scala.svg);
    background-size: 100%;
    height: 40px;
    background-repeat: no-repeat;
    background-position: top center;

}
.gusto .dolce {
    position: absolute;
    left: 0;
    bottom: 0;
}
.gusto .amaro {
     position: absolute;
    right: 0;
    bottom: 0;
}
.gusto .indicatore {
    position: absolute;
    top: -25px;
    width: 8%;
    padding: 1.4%;
    left: 0;
}
.gusto .gusto-2 {
    left: 12%;
}
.gusto .gusto-3 {
    left: 22%;
}
.gusto .gusto-4 {
    left: 32%;
}
.gusto .gusto-5 {
    left: 42%;
}
.gusto .gusto-6 {
    left: 52%;
}
.gusto .gusto-7 {
    left: 62%;
}
.gusto .gusto-8 {
    left: 72%;
}
.gusto .gusto-9 {
    left: 82%;
}
.gusto .gusto-10 {
    left: 92%;
}
.parametri-birra {
    display: none;
}
.ha-cat-birra {
    display: block;
}

.avwp-av button.yes {
    background: #f4ab00!important;
}
.avwp-av {
    border-radius: 20px;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1100px) {
    .header .nav ul li {
        margin: 0 0 0 10px;
    }
    h2 {font-size: 3rem;    }
    h1 {font-size: 3.4rem;}
    .filters h2 {
        margin-top: 0;
    }
    .intro .filters ul li img {
        margin-bottom: 0;
        padding: 5% 15%;
    }
    .slider .slide-content h2, .slider .slide-content h3 {
        margin: 0;
    }
    .slider {
        margin-bottom: -30px;
    }
    .footer {font-size: 1.2rem;}
}

@media only screen and (max-width:900px) {


    .header-icons {
        margin-bottom: 2px;
        float: none;
        text-align: right;
    }
    .logo .logo-img {
    max-width: 140px;
    min-width: 140px;
    margin-left: 40px;
    
}
    .nav {
        float: none;
        display: none;
    }
    .nav-left {
        padding-top: 120px;
    }
    .nav-right {
        padding-top: 0;
        margin-top: 0;
    }
    .header .clear {
        display: none;
    }

    .header .nav ul li {
        display: block;
        margin: 0;
        margin: 7px 0;
    }
    .header {
        padding: 7px 0 7px 0!important;
    }
    .nav ul li .sub-menu {
        position: relative;
        top: 0!important;
        left: 0;
        width: 100%;
        box-shadow: none;
        transition: all 200ms ease-out;
        visibility: visible;
        opacity: 1;
        border-radius: 4px;
    }

    #nav-icon3 {
        display: block;
    }

    .sidebar {
        position: fixed!important;
        top: auto!important;
        bottom: -490px;
        left: 0!important;
        width: 100%;
        height: 500px;
        z-index: 9990;
        transition: all 300ms ease-in;
        background: #fff;
        box-shadow: -5px -7px 50px rgb(0 0 0 / 13%);
    }
    .toggle-sidebar {
        display: block;
        position: fixed;
        bottom: 7px;
        right: 2%;
        z-index: 900;
        text-align: center;
        background-color: #422917;
        color: #fff;
        width: 35px;
        height: 35px;
        cursor: pointer;
        padding: 7px 0;
        border-radius: 4px;
        box-shadow: 1px 2px 3px rgba(0,0,0,.12);
        transition: all 350ms ease-in;
    }
    .sidebar-open-toggler {
        bottom: 495px;
        transform: rotate(180deg);
        padding-top: 10px;
    }
    .sidebar-open {
        bottom: 0;
    }
    .mobile-bottom-menu-shop {
        visibility: visible;
        z-index: 700;
    }
    .has-sidebar {
        width: 100%;
        float: none;
    }

    .page-header {
        padding: 100px 0 30px 0;
    }
    .col-50 {
        width: 100%;
    }
    .full-width-bg-img {
        background-size: contain;
    }
    .box {
        padding: 10px;
    }
    .slider .box {
        padding-top: 20px;
    }

    .footer {
        font-size: 1.2rem;
    }
    .woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
        float: none;
    }
    .woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
        float: none;
        width: 100%;
    }
    .woocommerce .woocommerce-ordering select {
        width: 100%;
    }
    .page-header input {width: 200px!important;}

    .loop-block h3, .loop-block h2 {margin-top: 0;}

    .footer .flex-container {
        display: block;
    }
    .footer .col-45 {
        width: 100%;
    }
    .content {
        padding: 30px 0;
    }
    .first-item-padding {
        padding-top: 150px;
    }
    .footer {
        padding: 30px 0;
    }
    .footer .chi-siamo img {max-width: 60px;}

}

@media only screen and (max-width:780px) {
    .intro .flex-container {
        display: block;
    }
    .slider {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .intro .filters {
        width: 100%;
        margin-bottom: -35px;
    }
    .icone-home img {
        max-width: 55px;
        margin-top: 20px;
    }
    .boxes-home {
        justify-content: space-between;
    }
    .boxes-home .wp-block-column {
        flex-basis: 32%!important;
        margin: 0!important;
    }
    .contatti .cols-contatti {
        display: block;
    }
    .contatti .cols-contatti .wp-block-column {
        margin: 15px 0;
    }
    .contatti .cols-contatti .wp-block-column:first-child {
        padding-top: 40px;
    }
    .slider .wp-block-buttons.is-content-justification-right {
        justify-content: flex-start;
        margin-top: 15px;
    }


}

@media only screen and (max-width:600px) {
    .footer {
        text-align: center;
    }
    .footer .chi-siamo img {display: none;}
    .boxes-home .wp-block-column {
        flex-basis: 100%!important;
        margin: 10px 0!important;
    }
    .reverse {
        flex-direction: column-reverse;
    }
    .woocommerce ul.products li.product .woocommerce-loop-category__title, .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product h3 {
        margin-top: 0;
    }
    .woocommerce ul.products li.product .colore {
        width: 18px;
        height: 28px;
    }
    .woocommerce-breadcrumb, .woocommerce-result-count, .woocommerce-products-header__title {
        text-align: center;
    }

}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}


table {
    background-color: #fff;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
