/*!
Theme Name: Reber Theme
Theme URI: http://underscores.me/
Author: Genoma Agency
Author URI: https://genomagency.it/
Description: Theme developed for Reber s.r.l.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: reber_theme
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

reber_theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
	/*========== Colors ==========*/
	--background-color: #f5f5f5;
	--white-color: #fff;
	--black-color: #000;
	--red-color: #e20814;
	--custom-font-color: #242424;
	--grey-color: #eee;

	/*========== Margin ==========*/
	--block-margin: 100px;

}

@media (max-width: 991px) {
	:root {
		--block-margin: 80px;
	}
}

@media (max-width: 767px) {
	:root {
		--block-margin: 50px;
	}
}

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 40px;
	margin: 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

u, ins {
	text-decoration-line: none !important;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

.btn {
	font-size: 20px;
	font-weight: 500;
	padding: 14px 50px;
	border-radius: 40px;
}

.btn.btn-primary {
	background-color: var(--red-color);
	border-color: var(--red-color);
	color: var(--white-color);
}

.btn.btn-primary.white {
	background-color: var(--white-color);
	border-color: var(--white-color);
	color: var(--red-color);
}

.btn.btn-secondary {
	background-color: var(--grey-color);
	border-color: var(--grey-color);
	color: var(--black-color);
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

:focus-visible {
	outline: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--custom-font-color);
	font-family: "Host Grotesk", sans-serif;
	font-size: 18px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: var(--red-color);
}

p {
	margin-bottom: 30px;
}

p:last-child, .single-text p:last-child {
	margin-bottom: 0;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0;
}

pre {
	background: #eee;
	font-family: "Host Grotesk", sans-serif;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

/* Elements
--------------------------------------------- */

body {
	background: var(--white-color);
}

@media (min-width: 1600px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
		max-width: 1520px;
	}
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0;
}

ol, ul {
	padding-left: 0;
	list-style: none;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: var(--black-color);
	text-decoration: unset;
	transition: all 0.3s ease;
}

a:visited {
	color: inherit;
}

a:hover,
a:focus,
a:active {
	color: var(--black-color);
}

a:focus {
	outline: unset;
}

a:hover,
a:active {
	outline: unset;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

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 {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0;
}

.site-main {
	margin-top: 70px;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	font-size: 18px;
}

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

.page-links {
	clear: both;
	margin: 0;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/* Header
--------------------------------------------- */

.site-branding {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.site-branding img {
	width: 240px;
}

.header-cont, .top-header {
	position: relative;
	z-index: 99;
}

.header-cont.fixed {
	position: fixed;
	top: 0;
	left: 0;
	background: var(--white-color);
	height: 70px;
	transition: all 0.3s ease;
	box-shadow: 0 30px 70px 0 rgba(0, 0, 0, 0.1);
}

.header-cont .primary-navigation.fixed {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1496px;
}

.white-menu:not(.fixed) #mega-menu-menu-1 > li > a {
	color: var(--white-color) !important;
}

.header-cont.fixed a {
	color: var(--black-color) !important;
}

li#mega-menu-item-454, li#mega-menu-item-4066, li#mega-menu-item-6011, li#mega-menu-item-6028 {
	display: none !important;
	opacity: 0;
	transform: translateY(-10px);
	transition: none;
}

.header-cont.fixed li#mega-menu-item-454, .header-cont.fixed li#mega-menu-item-4066, .header-cont.fixed li#mega-menu-item-6011, .header-cont.fixed li#mega-menu-item-6028  {
	display: inline-block !important;
}

.fixed #mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-item > a.mega-menu-link {
  	height: 70px;
  	line-height: 70px;
}

/* Max Mega Menu
--------------------------------------------- */

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-tabbed > ul.mega-sub-menu {
	padding: 30px;
	box-shadow: 0 30px 70px 0 rgba(0, 0, 0, 0.1) !important;
}

.menu-cucinare > a.mega-menu-link, .menu-trasformare > a.mega-menu-link, .menu-conservare > a.mega-menu-link {
	border-radius: 16px !important;
	margin-bottom: 10px !important;
	transition: all 0.3s ease !important;
}

.menu-cucinare a + ul, .menu-trasformare a + ul, .menu-conservare a + ul {
	width: calc(75% - 40px) !important;
	left: calc(25% + 40px) !important;
}

.menu-cucinare a + ul .row-interna:first-child, .menu-trasformare a + ul .row-interna:first-child, .menu-conservare a + ul .row-interna:first-child {
	margin-bottom: 10px !important;
}

.menu-cucinare a + ul .row-interna > ul, .menu-trasformare a + ul .row-interna > ul, .menu-conservare a + ul .row-interna > ul {
	display: flex !important;
	gap: 20px;
}

.menu-cucinare a + ul .row-interna > ul li, .menu-trasformare a + ul .row-interna > ul li, .menu-conservare a + ul .row-interna > ul li {
	border-radius: 40px 40px 0 40px !important;
	text-align: center !important;
	padding: 0 !important;
}

.menu-cucinare a + ul .row-interna > ul > li, .menu-trasformare a + ul .row-interna > ul > li, .menu-conservare a + ul .row-interna > ul > li {
	transition: all 0.3s ease !important;
}

.menu-cucinare a + ul .row-interna > ul > li:hover, .menu-trasformare a + ul .row-interna > ul > li:hover, .menu-conservare a + ul .row-interna > ul > li:hover {
	background: #fef2f3 !important;
}

.menu-cucinare img, .menu-trasformare img, .menu-conservare img {
	width: 100px;
}

.menu-cucinare span.mega-menu-description, .menu-trasformare span.mega-menu-description, .menu-conservare span.mega-menu-description {
	display: none !important;
}

.menu-cucinare a + ul .row-interna > ul li ul li:first-child, .menu-trasformare a + ul .row-interna > ul li ul li:first-child, .menu-conservare a + ul .row-interna > ul li ul li:first-child {
	border-radius: 40px 40px 0 0 !important;
}

.menu-cucinare a + ul .row-interna > ul li ul li:last-child, .menu-trasformare a + ul .row-interna > ul li ul li:last-child, .menu-conservare a + ul .row-interna > ul li ul li:last-child {
	border-radius: 0 0 0 40px !important;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 span.mega-menu-badge {
  	margin: 0 0 0 -6px;
}

#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item > a.mega-menu-link {
  	border-radius: 20px !important;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-tabbed > ul.mega-sub-menu {
	  	padding: 20px;
	}
	
	.menu-cucinare a + ul, .menu-trasformare a + ul, .menu-conservare a + ul {
	    width: calc(75% - 30px) !important;
	    left: calc(25% + 30px) !important;
		padding: 20px !important;
	}
	
	.menu-cucinare a + ul .row-interna > ul, .menu-trasformare a + ul .row-interna > ul, .menu-conservare a + ul .row-interna > ul {
		gap: 10px;
	}
	
	.menu-cucinare a + ul .row-interna > ul li, .menu-trasformare a + ul .row-interna > ul li, .menu-conservare a + ul .row-interna > ul li {
		border-radius: 20px 20px 0 20px !important;
	}
	
	.menu-cucinare a + ul .row-interna > ul li ul li:first-child, .menu-trasformare a + ul .row-interna > ul li ul li:first-child, .menu-conservare a + ul .row-interna > ul li ul li:first-child {
		border-radius: 20px 20px 0 0 !important;
	}

	.menu-cucinare a + ul .row-interna > ul li ul li:last-child, .menu-trasformare a + ul .row-interna > ul li ul li:last-child, .menu-conservare a + ul .row-interna > ul li ul li:last-child {
		border-radius: 0 0 0 20px !important;
	}
	
	.menu-cucinare a + ul .row-interna > ul li ul li:last-child a, .menu-trasformare a + ul .row-interna > ul li ul li:last-child a, .menu-conservare a + ul .row-interna > ul li ul li:last-child a {
		margin: 0px 10px 20px 10px !important;
	}
}

/* Searchbox
--------------------------------------------- */

#modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: none;
	opacity: 0;
	transition: opacity 0.3s ease;
}

#search-modal {
	position: fixed;
  	z-index: 1001;
  	display: none;
  	transition: opacity 0.3s ease, transform 0.3s ease;
  	opacity: 0;
  	width: 100%;
  	height: 100vh;
}

#search-modal.show {
	opacity: 1;
}

#search-modal form {
  	width: 80%;
  	max-width: 900px;
  	position: absolute;
  	left: 50%;
  	top: 50%;
  	transform: translateX(-50%) translateY(-50%);
}

#modal-overlay.show {
	opacity: 1;
}

#search-modal input {
	margin-right: 10px;
  	width: calc(100% - 210px);
  	border: none;
  	border-radius: 50px;
  	padding: 16px 20px;
}

#search-modal button {
	width: 190px;
	background-color: var(--red-color);
	border-color: var(--red-color);
	color: var(--white-color);
	font-size: 20px;
	font-weight: 500;
	padding: 14px 50px;
	border-radius: 40px;
	line-height: 1.5;
}

.close-icon {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	font-size: 20px;
	cursor: pointer;
	color: var(--white-color);
	background: rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	transition: opacity 0.3s ease;
}

.close-icon.show {
	display: block;
	opacity: 1;
}

/* Footer
--------------------------------------------- */

#colophon {
	background-color: var(--grey-color);
	margin-top: 150px;
}

.footer-logo img {
	width: 190px;
	height: auto;
	margin-bottom: 40px;
}

.w-title {
	font-weight: 700;
	margin-bottom: 14px;
}

.nd-title {
	margin-top: 30px;
}

.site-info {
	margin-bottom: 50px;
}

.after-footer {
	padding-bottom: 30px;
	text-align: center;
	line-height: 1.3;
}

.powered {
	display: block;
	font-size: 14px;
	margin:10px 0 2px;
}

.credits-img {
  	display: block;
  	margin: 0 auto;
  	width: 150px;
}

.social-icons a {
  	display: inline-block;
	margin-top: 15px;
	margin-right: 5px;
}

.social-icons i {
  	font-size: 30px;
	display: inline-block;
}

.social-icons i.fa-square-facebook {
  	color: #0080ff;
}

.social-icons i.fa-square-instagram {
  	color: #E1306C;
}

/* Archive
--------------------------------------------- */

.container-fluid.block {
	margin-top: -277px;
}

.container-fluid .page-content {
	margin-top: 100px;
	z-index: 2;
	position: relative;
}

.container-fluid .page-content h1 {
	color: var(--white-color);
}

.container .page-content h1 {
	color: var(--black-color);
}

.taxonomy-banner-overlay, .page-banner-overlay {
	width: 100%;
	height: 540px;
	display: flex;
	align-items: center;
	text-align: center;
	color: var(--white-color);
	position: relative;
}

.taxonomy-banner-overlay:after, .page-banner-overlay:after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.3);
}

.archive-extra {
	margin-top: 80px;
}

.page-numbers {
	font-size: 20px;
	vertical-align: middle;
}

.pagination-wrapper {
	margin-top: 60px;
	text-align: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 12px 0;
	border-radius: 12px;
	background-color: var(--grey-color);
	color: var(--custom-font-color);
	text-decoration: none;
	font-size: 16px;
	font-weight: 500;
	transition: background-color 0.3s ease;
}

.page-numbers.current {
	background-color: var(--red-color);
	color: var(--white-color);
}

.pagination-wrapper .nav-links {
	background-color: unset;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.archive-extra-content {
	margin-top: 50px;
}

/* Blog
--------------------------------------------- */

.blog-row div:last-child {
	margin-bottom: 0 !important;
}

.blog-post-cont, .single-post-cont {
	max-width: 900px;
}

.blog-post-cont .entry-content {
	margin-bottom: 50px;
}

.blog-main-title {
	margin-bottom: 100px;
}

.main_post_container {
	margin-bottom: 100px;
	height: 550px;
}

.main_post {
	position: relative;
	height: 550px;
}

.post-first-date-container {
	position: absolute;
	bottom: 0;
	left: 25%;
	transform: translateX(-50%);
	font-size: 16px;
	text-align: center;
	border-radius: 40px;
	padding: 10px 40px;
	margin-bottom: -22px;
	background-color: var(--white-color);
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

.first_post {
	display: flex;
	flex-direction: column;
	align-content: center;
	justify-content: center;
}

.cat-container {
	margin-bottom: 40px;
}

.cat-list {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.cat-list li {
	
}

a.cat-list-item {
	background-color: var(--grey-color);
}

a.category-link {
	font-weight: bold;
}

.article-blog {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.related-products {
	margin-bottom: 90px;
}

.related-product-box {
	border: 2px solid var(--grey-color);
	border-radius: 40px 40px 0 40px;
}

.related-thumb img {
	width: 120px;
	height: 120px;
}

.related-title a {
	font-size: 18px;
	font-weight: 600;
}

.related_main_title {
	margin-left: 40px;
	font-size: 24px !important;
	font-weight: 600 !important;
}

/* Catalog
--------------------------------------------- */

.catalog-element {
	position: relative;
	display: flex;
	flex-direction: column;
	border: 2px solid var(--grey-color);
	border-radius: 40px 40px 0 40px;
	padding: 25px;
	transition: all 0.5s ease;
	height: 100%;
}

.catalog-element:hover {
	border-color: #fff;
	box-shadow: 0 30px 70px 0 rgba(0, 0, 0, 0.1);
}

.catalog-element .catalog-header h5 {
	color: var(--black-color) !important;
	font-size: 18px;
	transition: all 0.3s ease;
	line-height: 1.3;
}

.catalog-element:hover .catalog-header h5 {
	color: var(--red-color) !important;
}

.catalog-img {
	display: flex;
	flex-direction: column;
	justify-content: center;
  	align-items: center;
	position: relative;
}

.online-buy {
	position: absolute;
	font-size: 15px;
	padding: 4px 22px;
	border-radius: 40px;
	background-color: #FEF2F3;
	bottom: 0;
	text-align: center;
}

span.online-only {
	position: absolute;
	right: 0;
	top: 0;
	text-align: center;
	background-color: #53c62f;
	color: white;
	border-radius: 50%;
	font-size: 15px;
	line-height: 1.2;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
}

.catalog-code {
	font-size: 16px;
	text-align: center;
	opacity: 0.5;
	margin-bottom: 10px;
	display: block;
}

.catalog-header {
	margin-top: 20px;
	text-align: center;
}

.catalog-code {
	font-size: 16px;
	text-align: center;
	opacity: 0.5;
	margin-bottom: 10px;
	display: block;
}

/* Catalog - single product page
--------------------------------------------- */

h1.single-entry-title {
	text-align: center;
	color: var(--custom-font-color);
}

.glide__slide {
	height: auto;
}

.glide__slide > div.col-12, .glide__slide > div.col-12 > div {
	height: 100%;
}

.glide__slide img {
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.glide__bullets {
	display: none;
	text-align: center;
}

button.glide__bullet {
	border-radius: 50%;
	height: 12px;
	width: 12px;
	padding: 0;
	border: unset;
}

button.glide__bullet.glide__bullet--active {
	background-color: var(--red-color);
}

.image-container {
    position: relative;
	text-align: center;
	padding: 50px;
}

.image-container .online-only {
	left: 0;
}

span.table_header {
	display: block;
	font-weight: 600;
	margin-bottom: 20px;
}

.main-striped-table {
	margin-bottom: 0;
}

.main-striped-table + .buy-container {
	margin-top: 20px;
}

tr {
	border-style: hidden;
	font-size: 16px;
}

th {
	font-weight: normal;
	padding: 12px 0 12px 20px !important;
}

td {
	text-align: right;
	font-weight: 500;
	padding: 12px 20px 12px 0 !important;
}

.table-striped > tbody > tr:nth-of-type(odd) > th:first-child {
	background-color: var(--grey-color) !important;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	overflow: hidden;
}

.table-striped > tbody > tr:nth-of-type(odd) > td:last-child {
	background-color: var(--grey-color) !important;
	border-top-right-radius: 8px;
	overflow: hidden;
}

.online-notes {
	color: #1c7400;
	margin: 25px 0;
	padding: 20px;
	border: 1px solid #53c62f;
	border-radius: 12px;
	font-size: 16px;
	background: rgba(83, 148, 97, 0.1);
	display: block;
}

.extra-row {
	display: none;
}

.toggle-extra-rows {
	margin: 20px 0 0 10px;
	padding: 0;
	border: none;
	outline: none;
	background-color: var(--white-color);
	color: var(--red-color);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.toggle-extra-rows .toggle-icon {
	width: 30px;
	height: 30px;
	padding: 10px;
	border-radius: 50%;
	background-color: var(--red-color);
	color: var(--white-color);
	font-size: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.product-extra h4 {
	margin-bottom: 20px;
}

.product-information p {
	padding-left: 40px;
}

.product-information ul, .entry-content ul {
	margin-bottom: 20px;
}

.product-information ul:last-child, .entry-content ul:last-child {
	margin-bottom: 0;
}

.product-information ul li,
.product-information ol li,
.entry-content ul li {
	position: relative;
	padding-left: 40px;
	list-style: none;
}

.product-information ul li:before,
.product-information ol li:before,
.entry-content ul li:before {
	content: "chevron_right";
	font-family: "Material Symbols Outlined", serif;
	font-size: 24px;
	color: var(--red-color);
	position: absolute;
	top: -4px;
	left: -6px;
}

.product-download {
	background-color: rgba(226, 8, 20, 0.05);
	padding: 30px 40px;
	border-radius: 40px 40px 0 40px;
}

.product-download .material-symbols-outlined {
	color: var(--red-color);
	margin-right: 15px;
}

.product-download p {
	font-weight: 500;
	margin-bottom: 20px;
	display: flex;
}

.product-download p:last-child {
	margin-bottom: 0;
}

.extra-rows-wrapper.collapsed {
	max-height: 0;
}

.extra-rows-wrapper.expanded {
	max-height: 1000px;
}

.extra-rows-wrapper {
	overflow: hidden;
	transition: max-height 0.4s ease;
	max-height: 0;
}

/* Product breadcrumbs
--------------------------------------------- */

#breadcrumbs {
	text-align: center;
	margin-bottom: 10px;
}

/* Product accordion
--------------------------------------------- */

.accordion, .accordion-item, .accordion-button, .accordion-collapse {
	border: none !important;
	box-shadow: none;
}

.accordion {
	width: 100%;
}

.accordion-body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 24px 30px 20px;
}

#accordionPurchase .accordion-body {
	padding: 24px 20px 0;
	gap: 15px;
}

.accordion-button, .accordion-button:not(.collapsed) {
	background-color: var(--grey-color);
	color: var(--custom-font-color);
	border-radius: 8px !important;
	box-shadow: none;
	padding: 25px 50px 25px 30px;
	line-height: 1.2;
}

#accordionPurchase .accordion-button, #accordionPurchase .accordion-button:not(.collapsed) {
	padding: 1rem 1.25rem;
}

.accordion-button::after {
	filter: none;
	position: absolute;
  	right: 20px;
}

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

.price .amount bdi {
	font-size: 24px;
	font-weight: 600;
	margin-right: 10px;
}

.price del {
	opacity: 0.5;
	margin-right: 15px;
}

.price del bdi {
	font-size: 18px !important;
	font-weight: 400 !important;
}

.discount-badge {
	font-size: 16px;
	color: var(--white-color);
	background-color: #53c62f;
	padding: 5px 20px;
	border-radius: 40px;
}

.quantity-wrapper {
	border-radius: 8px;
	border: solid 2px #ddd;
	padding: 8px;
	margin-right: 20px;
	max-width: 181px;
}

.qty-btn {
	background: none;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	user-select: none;
}

.qty-input {
	height: 40px;
	max-width: 70px;
	font-size: 1rem;
	-webkit-appearance: none;
	-moz-appearance: textfield;
}

#collapsePurchase .btn-primary {
	flex-grow: 1;
	padding-left: 20px;
	padding-right: 20px;
}

#collapsePurchase .btn-primary i {
	margin-right: 10px;
	font-size: 16px;
}

#headingPurchase .accordion-button {
  	background: #fff;
  	border: 2px solid #eee !important;
	border-radius: 16px !important;
}

.reassurance {
  	display: flex;
  	justify-content: center;
  	gap: 20px;
	margin-top: 10px;
}

.reassurance span {
  	font-size: 16px;
  	display: flex;
  	align-items: center;
}

.reassurance span i {
  	color: #53c62f;
	margin-right: 8px;
}

.payment-ico {
  	height: auto;
  	max-width: 400px;
  	margin: 0 auto;
}


/* Accessories and optional slider
--------------------------------------------- */

.accessories-slider .banner-title, .optional-slider .banner-title {
	margin: 0 auto 40px;
}

.slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 1;
	width: 50px;
	height: 50px;
	transform: translatey(-50%);
	border-radius: 12px;
	transition: all .2s ease-in-out;
	padding: 0 !important;
	color: var(--black-color);
	background-color: var(--grey-color);
	border: 0;
	outline: 0;
	left: -25px;
}

.slider__arrow--next {
	left: unset;
	right: -25px;
}

/* Centers
--------------------------------------------- */

form#region-filter-form, form#catalog-filters {
	margin-bottom: 60px;
	display: flex;
	flex-wrap: wrap;
}

select#region-parent, select#region-child, select#region-subzone, select#product-filter, select#ecommerce-filter, select#destination-filter {
	min-width: 230px;
	height: 60px;
	border-radius: 40px;
	background-color: var(--grey-color);
	border: none;
	padding-left: 30px;
	padding-right: 0;
	margin-right: 20px;
}

#region-parent, #region-child, #region-subzone, #ecommerce-filter, #destination-filter, #product-filter  {
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 96 960 960' width='24'><path d='M480 696 280 496l56-56 144 144 144-144 56 56-200 200Z'/></svg>");
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 30px;
	cursor: pointer;
}

.center-info {
	padding: 30px;
	border-radius: 40px 40px 0 40px;
	border: 2px solid #EEE;
	display: flex;
	flex-direction: column;
	transition: all 0.5s ease;
	height: 100%;
}

.center-info:hover {
	border-color: #fff;
	box-shadow: 0 30px 70px 0 rgba(0, 0, 0, 0.1);
}

/* Contact form CF7
--------------------------------------------- */

.cf-rbr {
	margin-bottom: 25px;
}

input.wpcf7-form-control, textarea.form-control {
	border-radius: 40px;
  	padding: 14px 20px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.btn-block.btn.btn-primary.btn-lg {
	text-decoration: none;
	padding: 18px 50px;
	border-radius: 40px;
	background-color: var(--red-color);
	color: var(--white-color);
	font-weight: 600;
	border: unset;
	min-width: 192px;
}
/*
.wpcf7-spinner {
	position: absolute;
  	left: 84px;
  	top: 17px;
}

.wpcf7-spinner:after {
	content: '';
  	background: rgba(0, 0, 0, 0.7);
  	width: 192px;
  	height: 56px;
  	left: 0;
  	top: -8px;
  	position: absolute;
}
*/
/* BLOCKS
--------------------------------------------- */

/* Global
--------------------------------------------- */

.block {
	margin-bottom: var(--block-margin);
}

.site-main .block:last-child {
	margin-bottom: 0;
}

/* Blocks - Slider
--------------------------------------------- */

.slider-fullscreen {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

/* Blocks - Text
--------------------------------------------- */

.banner-title {
	font-size: 40px;
	margin-bottom: 20px;
}

.banner-title:last-child {
	margin-bottom: 0;
}

.side-col .single-text {
	padding: 0 14%;
}

.row-shadow .single-text {
	padding: 80px 14% 80px 8%;
}

.single-text-content {
	position: relative;
	padding-left: 45px;
}

.single-text p:before {
	content: "chevron_right";
	font-family: "Material Symbols Outlined", serif;
	font-size: 30px;
	font-variation-settings: 'wght' 700;
	color: var(--red-color);
	position: absolute;
	left: 0;
	top: 0;
	margin-left: -8px;
	margin-top: -8px;
}

.single-text p:not(:first-child):before {
	display: none;
}

.single-text p + a  {
	display: inline-block;
	margin-bottom: 40px;
}

.single-column.single-text p:last-child {
	margin-bottom: 0;
}

.single-text a:last-child {
	margin-bottom: 0;
}

.responsive-banner {
	position: relative;
	width: 100%;
	padding-top: 30%;
	border-radius: 40px 40px 0 40px;
	margin-top: 40px;
}

.responsive-banner a {
	position: absolute;
	top: 50%;
	text-decoration: none;
	padding: 18px 50px;
	border-radius: 40px;
}

a.banner-link {
	font-size: 20px;
	font-weight: bold;
	padding: 18px 50px;
	border-radius: 40px;
	margin-top: 40px;
}

.responsive-banner.left a {
	left: 11%;
	right: auto;
	transform: translateY(-50%);
}

.responsive-banner.right a {
	right: 11%;
	left: auto;
	transform: translateY(-50%);
}

/* Blocks - Lines
--------------------------------------------- */

.col-12:has(+ .col-line) {
	margin-bottom: 40px;
}

.col-line {
	display: flex;
}

.line-element {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	border-radius: 40px 40px 0 40px;
	background-color: rgba(226, 8, 20, 0.05);
	text-align: center;
	transition: background 0.3s ease;
	margin-bottom: 30px;
}

.line-element:hover {
	background-color: rgba(226, 8, 20, 0.1);
}

.line-element div:first-child {
	margin-bottom: 10px;
}

.line-element img {
  max-width: 100%;
  height: auto;
  width: 130px;
}

.block-lines-title h4 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  padding: 0 20px 20px;
  word-break: break-word;
}

/* Blocks - Text and images
--------------------------------------------- */

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

.row-shadow {
	border-radius: 40px 40px 0 40px;
	box-shadow: 0 30px 70px 0 rgba(0, 0, 0, 0.1);
	padding: 40px;
}

.row-shadow.right-side {
	border-radius: 40px 40px 40px 0;
}

.txt-img-row .single-text {
	padding: 40px;
	margin-bottom: 0;
}

.txt-img-row  .single-text p + a {
	margin-bottom: 0;
}

.side-image {
	height: 100%;
	min-height: 450px;
	border-radius: 40px 40px 0 40px;
}

.side-image.right-side {
	border-radius: 40px 40px 40px 0;
}

/* Blocks - Reviews
--------------------------------------------- */

.reviews_slider {
	margin-top: 30px;
}

li.glide__slide.review_content {
	display: flex;
	align-items: start;
}

.review_element {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 50px 10%;
	background: rgba(226, 8, 20, 0.05);
	border-radius: 40px 40px 0 40px;
	max-width: 90%;
	margin: 0 auto;
}

.review_element span {
	margin-top: auto;
}

img.review_logo {
	height: 40px;
	margin: 0 0 30px;
}

/* Blocks - Column
--------------------------------------------- */

.col-12.intro + .col-12 {
	margin-top: 100px;
}

.column-img {
	margin-bottom: 30px;
	text-align: center;
	background: rgba(226, 8, 20, 0.05);
	padding: 40px 20px;
	border-radius: 40px 40px 0 40px;
}

.single-column img {
	max-width: 200px;
}

.single-column .banner-title {
	font-size: 30px;
}

/* Blocks - Accordion
--------------------------------------------- */

div#faqAccordion {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

button.accordion-button.collapsed:focus {
	box-shadow: none;
}

button.accordion-button {
	font-size: 20px;
}

.accordion-body {
	font-size: 18px;
}

/* Blocks - Blog
--------------------------------------------- */

.row:has(+ .blog-row) {
	margin-bottom: 40px;
}

.blog-row .post-title {
	margin-bottom: 10px;
}

.blog-row .post-title a {
	color: var(--red-color);
}

.post-thumbnail {
	width: 100%;
	height: 310px;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 40px 40px 0 40px;
}

.post-meta {
	margin-top: -21px;
	text-align: center;
}

.post-date {
	display: inline-block;
	font-size: 16px;
	text-align: center;
	border-radius: 40px;
	padding: 10px 40px;
	margin-bottom: 25px;
	background-color: var(--white-color);
	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
}

.blog-block-title a {
	font-size: 24px;
	color: var(--red-color);
	margin-bottom: 10px;
}

.post-categories, a.category-link {
	font-size: 16px;
	margin-bottom: 20px;
}

.post-categories span {
	font-weight: 600;
}

/* Blog
--------------------------------------------- */

.blog-post-cont {
	display: flex;
	justify-content: center;
}

.blog-post-cont .blog_post_img {
	width: 100%;
	height: 550px;
	border-radius: 40px 40px 0 40px;
	position: relative;
}

.first_post_img {
	border-radius: 40px 40px 0 40px;
}

.blog-post-cont .blog-date {
	text-align: center;
  	position: relative;
	margin-top: -23px;
	margin-bottom: 40px;
}

.blog-post-cont .blog-date span {
	background: #fff;
  	padding: 10px 40px;
  	font-weight: 500;
  	border-radius: 40px;
  	box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
	display: inline-block;
}

.blog-post-cont .blog-title {
	margin-bottom: 10px;
	text-align: center;
}

.blog-post-cont .blog-categories-container {
	text-align: center;
	margin-bottom: 50px;
	margin-top: 10px;
}

.blog-post-cont .blog-categories-container span {
	font-weight: 400;
	margin-right: 5px;
	font-size: 18px;

}

.blog-post-cont .blog-categories-container a {
	font-weight: 700;
	font-size: 18px;
}

.blog-post-cont .blog-categories-container a::after {
	content: ", ";
}

.blog-post-cont .blog-categories-container a:last-child::after {
	content: "";
}

.single-post-cont h4 {
	color: var(--red-color);
	display: block;
	margin-left: 40px;
	margin-bottom: 20px;
}

.nav-previous .nav-title::before,
.nav-next .nav-title::after {
	font-family: "Material Symbols Outlined", serif;
	font-size: 20px;
	font-variation-settings: 'wght' 700;
	color: var(--red-color);
	position: absolute;
	margin-top: -2px;
	font-weight: 400;
}

.nav-previous .nav-title::before {
	content: "chevron_left";
	margin-left: -20px;
}

.nav-next .nav-title::after {
	content: "chevron_right";
}

/* Social Share
--------------------------------------------- */

.social-box {
	text-align: center;
	margin-bottom: 50px;
	display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    text-align: center;
    width: 100%;
    justify-content: center;
}

.social_button {
	width: 40px;
	height: 40px;
	margin-right: 20px;
	color: var(--white-color);
	background-color: var(--custom-font-color);
	padding: 10px;
	border-radius: 5px;
	line-height: 1px;
}

.social_button:hover {
	color: var(--red-color);
}

.social_button:last-child {
	margin-right: 0;
}

i.fab::before {
	line-height: 1.2;
}

@media screen and (max-width: 1599px) {
	.header-cont .primary-navigation.fixed {
		width: 1296px;
	}
}

@media screen and (max-width: 1399px) {
	
	.header-cont .primary-navigation.fixed {
		width: 1116px;
	}
	
}

@media screen and (max-width: 1199px) {
	
	.header-cont .primary-navigation.fixed {
		width: 936px;
	}
	
	.responsive-banner {
		padding-top: 40%;
	}
	
}

@media screen and (min-width: 1200px) {

	.single-text {
		padding: 0 11%;
	}
	
}

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

	.header-cont .primary-navigation.fixed {
		width: 696px;
	}

	.content-container .row {
		display: flex;
		flex-direction: column-reverse;
	}


	.side-image {
		min-height: 350px;
	}
	
	.product-information {
	  	margin-bottom: var(--block-margin);
	}
	
	select#region-parent, select#region-child, select#region-subzone, select#product-filter, select#ecommerce-filter, select#destination-filter {
		min-width: 220px;
		height: 50px;
		padding-left: 25px;
		margin-right: 15px;
		margin-bottom: 15px;
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {

	#region-filter-form button {
		padding: 0px 50px;
  		height: 50px;
  		line-height: 50px;
	}
	
	.catalog-img {
		padding: 20px;
	}

	
}

@media only screen and (min-width: 992px) {

	.right {
		order: 2;
	}
	
	#mega-menu-wrap-menu-1 #mega-menu-menu-1 > li.mega-menu-tabbed > ul.mega-sub-menu {
	  padding: 30px;
	}
	
	.catalog-img {
		padding: 30px;
	}
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

	.quantity-wrapper {
	  	max-width: 151px;
	}
	.qty-input {
 		max-width: 36px;
	}
	#collapsePurchase .btn-primary {
		font-size: 18px;
		height: 60px;
	}
	
}

@media screen and (max-width: 767px) {
	
	.site-main {
	  	margin-top: 130px;
	}
	
	.container-fluid.block {
	  	margin-top: -130px;
	}
	
	.container:not(.center-container), .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	    padding-right: var(--bs-gutter-x,1.5rem);
	    padding-left: var(--bs-gutter-x,1.5rem);
	}
	
	.container-fluid .page-content {
	  	margin-top: 0;
	}
	
	header .container {
		max-width: 100%;
	}
	
	.site-branding {
		justify-content: start;
		margin-bottom: 0;
		position: fixed;
	}
	
	.site-branding img {
	    width: 140px;
	}
	
	.header-cont.fixed {
  		display: none;
	}
	
	#colophon {
	 	margin-top: 80px;
	}
	
	.footer-logo img {
		width: 140px;
	}
	
	.rmp_menu_trigger {
		margin-right: 24px !important;
		box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.2);
	}
	
	.rmp-menu-open + .site:before {
	  	content: "";
	  	position: fixed;
	  	top: 0;
	  	left: 0;
	  	width: 100%;
	  	height: 100%;
	  	background-color: rgba(0, 0, 0, 0.5);
	  	z-index: 997;
	  	transition: background-color 0.3s ease-out;
	}
	
	#rmp-menu-wrap-1862 .rmp-menu-item-link {
		padding-right: 0;
	}
	
	#rmp-menu-wrap-1862 .cucinare-mobile > a, #rmp-menu-wrap-1862 .trasformare-mobile > a, #rmp-menu-wrap-1862 .conservare-mobile > a {
		border-radius: 15px;
		height: 50px !important;
		line-height: 50px !important;
	}
	
	.wpml-ls-item > a + ul li a {
		border-radius: 15px;
		height: 50px !important;
		line-height: 50px !important;
		margin-bottom: 10px;
	  }
	
	#rmp-menu-wrap-1862 .cucinare-mobile > a, #rmp-menu-wrap-1862 .trasformare-mobile > a {
		margin-bottom: 10px;
	}
	
	#rmp-menu-wrap-1862 .cucinare-mobile > a + ul, #rmp-menu-wrap-1862 .trasformare-mobile > a + ul, #rmp-menu-wrap-1862 .conservare-mobile > a + ul {
		margin-bottom: 10px;
	}
	
	#rmp-menu-wrap-1862 .conservare-mobile > a + ul {
		margin-top: 10px;
	}
	
	.rmp-submenu-depth-2 li a {
		background: transparent !important;
    	font-weight: 400 !important;
	}
	
	#rmp-menu-wrap-1862 .cucinare-mobile.current-menu-item > a, #rmp-menu-wrap-1862 .trasformare-mobile.current-menu-item > a, #rmp-menu-wrap-1862 .conservare-mobile.current-menu-item > a,
	.rmp-submenu-depth-2 li.current-menu-item a {
		color: #e20814 !important;
	}
	
	.taxonomy-banner-overlay, .page-banner-overlay {
  		height: 340px;
	}

	.btn.btn-primary {
		font-size: 18px;
		padding: 12px 26px;
	}
	
	.line-element div:first-child {
	  	margin-bottom: 0;
	}
	
	.block-lines-title h4 {
	  	font-size: 16px;
	  	padding: 0 15px 20px;
	}

	.responsive-banner {
		padding-top: 50%;
		border-radius: 30px 30px 0 30px;
	}

	.responsive-banner.left a {
		left: 5%;
		position: relative;
	}

	.responsive-banner.right a {
		right: 5%;
	}

	.banner-title {
		font-size: 26px;
	}
	
	.row-shadow {
		padding: 30px !important;
	}

	.row-shadow .single-text {
		padding: 30px 0 0 0;
	}
	
	.line-element {
		margin-bottom: 20px;
	}

	.blog-row .post-excerpt {
		margin-bottom: 40px;
	}

	.blog-row > .col-12:last-of-type .post-excerpt {
		margin-bottom: 0;
	}

	.side-image {
		min-height: 250px;
		border-radius: 20px 20px 0 20px;
	}
	
	.column-img {
		border-radius: 30px 30px 0 30px;
	}

	h1 {
		font-size: 30px;
	}

	#breadcrumbs {
		font-size: 14px;
		margin-bottom: 5px;
	}
	
	.blog-post-cont .blog_post_img, .post-thumbnail {
		height: 250px;
	}
	
	form#region-filter-form > div, select#region-parent, select#region-child, select#region-subzone, #region-filter-form button {
	  	width: 100%;
	}
	
	.catalog-element {
	  	border-radius: 30px 30px 0 30px;
	  	padding: 15px;
	}
	
	.catalog-code {
	  	font-size: 14px;
	  	margin-bottom: 5px;
	}
	
	.catalog-header {
	  	margin-top: 15px;
	}
	
	.catalog-element .catalog-header h5 {
	  	font-size: 16px;
	  	word-break: break-all;
	}
	
	span.online-only {
  		font-size: 12px;
  		width: 50px;
  		height: 50px;
		right: -5px;
  		top: -5px;
	}
	
	.catalog-img a img {
		padding: 10px;
	 }
	
	.online-buy {
  		font-size: 11px;
  		padding: 4px 15px;
		position: relative;
		font-weight: 500;
	}
	
	.center-info {
  		padding: 30px;
  		border-radius: 30px 30px 0 30px;
	}
	
	.center-info h4 {
	  	font-size: 20px;
	}
	
	.review_element {
		padding: 40px 50px;
  		border-radius: 30px 30px 0 30px;
		max-width: 100%;
	}
	
	.slider__arrow {
		display: none;
	}
	
	.glide__bullets {
		display: block;
		margin-top: 20px;
	}
	
	.image-container {
		padding: 30px;
	}
	
	form.cart div.d-flex {
		flex-wrap: wrap;
	}
	
	.quantity-wrapper {
  		padding: 4px 10px;
  		max-width: 100%;
		width: 100%;
		margin-bottom: 20px;
    	margin-right: 0;
		justify-content: space-between;
	}
	
	.qty-input {
  		max-width: 46px;
	}
	
	.reassurance {
	  	gap: 10px;
	  	flex-wrap: inherit;
	}
	
	.payment-ico {
	  	max-width: 100%;
	}
	
	.product-download {
	  	padding: 30px 30px;
	  	border-radius: 30px 30px 0 30px;
	}
	
	select#region-parent, select#region-child, select#region-subzone, select#product-filter, select#ecommerce-filter, select#destination-filter {
		width: 100%;
		height: 50px;
		padding-left: 25px;
		margin-right: 0;
		margin-bottom: 15px;
	}
	
	select#region-parent:last-child, select#region-child:last-child, select#region-subzone:last-child, select#product-filter:last-child, select#ecommerce-filter:last-child, select#destination-filter:last-child {
		margin-bottom: 0;
	}
	
	form#region-filter-form > div {
		margin-bottom: 15px;
	}
	
	form#region-filter-form > div:last-child {
		margin-bottom: 0;
	}
	
	.accordion-button, .accordion-button:not(.collapsed) {
		padding: 20px 60px 20px 25px;
		font-size: 18px !important;
	}
	
	.accordion-body {
		padding: 20px;
	}
	
	#accordionPurchase .accordion-body {
		padding: 24px 10px 0;
	}
	
	.accessories-slider .banner-title, .optional-slider .banner-title {
  		margin: 0 auto 20px;
	}	
}