
:root {
	--rz-color-primary: #FF6F61;
	--rz-color-lighter: #ffffff;
	--rz-color-dark: #111111;
	--rz-color-darker: #1f1f1f;
	--rz-color-placeholder: #A0A0A0;
	--rz-color-hover-primary: #FF6F61;
	--rz-background-color-primary: #FF6F61;
	--rz-background-color-light: #ffffff;
	--rz-background-color-gray: #f5f5f5;
	--rz-background-color-dark: #1F1F1F;
	--rz-background-text-color-primary: #ffffff;
	--rz-border-color: #cccccc;
	--rz-border-color-primary: #FF6F61;
	--rz-border-color-light: #e2e2e2;
	--rz-border-color-lighter: #ffffff;
	--rz-border-color-gray: #cdcdcd;
	--rz-border-color-dark: #1f1f1f;
	--rz-text-color-gray: #767676;
	--rz-text-color: #525252;
	--rz-font-family-primary: 'Jost', Arial, sans-serif;
	--rz-font-family-code: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	--rz-font-family-pre: "Courier 10 Pitch", Courier, monospace;
}

@keyframes razzi-rotate {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(0.6);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes razzi-scale {
	30% {
		transform: scale(0.3);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes razzi-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@keyframes razziFadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 80px, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadein {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes bubble {
	0%, 100% {
		transform: scale(0);
	}
	50% {
		transform: scale(1);
	}
}

@keyframes anim-ripple {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	20% {
		transform: scale(1);
		opacity: .4;
	}
	to {
		transform: scale(1.2);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* 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;
	/* 1 */
	-webkit-text-size-adjust: 100%;
	/* 2 */
}

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

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

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

/**
 * 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;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/* 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;
	/* 1 */
	text-decoration: underline;
	/* 2 */
	text-decoration: underline dotted;
	/* 2 */
}

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

/**
 * 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;
	/* 1 */
	font-size: 1em;
	/* 2 */
}

/**
 * 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;
}

/* 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;
	/* 1 */
	font-size: 100%;
	/* 1 */
	line-height: 1.15;
	/* 1 */
	margin: 0;
	/* 2 */
}

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

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

/**
 * 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;
	/* 1 */
	color: inherit;
	/* 2 */
	display: table;
	/* 1 */
	max-width: 100%;
	/* 1 */
	padding: 0;
	/* 3 */
	white-space: normal;
	/* 1 */
}

/**
 * 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;
	/* 1 */
	padding: 0;
	/* 2 */
}

/**
 * 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;
	/* 1 */
	outline-offset: -2px;
	/* 2 */
}

/**
 * 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;
	/* 1 */
	font: inherit;
	/* 2 */
}

/* 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;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--rz-text-color);
	font-family: var(--rz-font-family-primary);
	font-size: 16px;
	line-height: 1.5;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	box-sizing: border-box;
}

a {
	outline: none;
	transition: .5s;
	color: var(--rz-color-dark);
	text-decoration: none;
}

a:focus, a:hover, a:active {
	outline: 0;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
	color: var(--rz-color-dark);
	line-height: 1.33;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 32px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 16px;
}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	font-size: 20px;
	line-height: 1.5;
	color: var(--rz-color-dark);
	padding: 20px 30px;
	border-left: 3px solid var(--rz-color-primary);
	margin-left: 35px;
}

blockquote p {
	margin: 0 0 10px;
}

blockquote cite {
	font-size: 14px;
	display: block;
	color: #838889;
}

blockquote cite a {
	color: inherit;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background-color: #eee;
	font-family: var(--rz-font-family-pre);
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: var(--rz-font-family-code);
	font-size: 13px;
}

code {
	padding: 2px 4px;
	color: #c7254e;
	background-color: #f9f2f4;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background-color: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

pre.wp-block-verse {
	font-family: var(--rz-font-family-pre);
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: border-box;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

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

ul,
ol {
	margin: 0 0 1.5em;
	padding-left: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

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

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

ol.razzi-custom-padding li:not(:last-child) {
	padding-bottom: 11px;
}

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

ul.razzi-check-list li {
	position: relative;
	padding-left: 19px;
}

ul.razzi-check-list li:not(:last-child) {
	margin-bottom: 8px;
}

ul.razzi-check-list li:before {
	content: "";
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 10px;
	height: 10px;
	background-repeat: no-repeat;
	background-size: 9px;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iOSIgaGVpZ2h0PSI4IiB2aWV3Qm94PSIwIDAgOSA4IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNOCAxTDMuMTg3NSA3TDEgNC4yNzI3MyIgc3Ryb2tlPSIjNTI1MjUyIiBzdHJva2Utd2lkdGg9IjEuNCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=");
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

.razzi-loading {
	position: relative;
}

.razzi-loading:before {
	content: '';
	display: block;
	border-radius: 100px;
	position: absolute;
}

.razzi-loading:before {
	background-color: var(--rz-background-color-primary);
	height: 13px;
	width: 13px;
	top: 0;
	left: 0;
	animation: razzi-scale 1s 0s cubic-bezier(0.09, 0.57, 0.49, 0.9) infinite;
}

.razziFadeInUp {
	animation-name: razziFadeInUp;
	animation-duration: 0.8s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.65, 0.8, 0.44, 0.99);
}

.razzi-gooey {
	width: 100%;
	height: 100%;
	background-color: var(--rz-background-color-light);
	display: flex;
	align-items: center;
	justify-content: center;
}

.razzi-gooey span {
	display: block;
	float: left;
	width: 10px;
	height: 10px;
	margin: 0 8px;
	background-color: var(--rz-background-color-dark);
	border-radius: 50%;
	animation: bubble 1.2s -0.6s infinite ease-out;
}

.razzi-gooey span:nth-child(2n) {
	animation-delay: -1s;
}

.razzi-gooey span:nth-child(3n) {
	animation-delay: 0s;
}

.razzi-svg-icon {
	display: inline-flex;
}

.razzi-svg-icon svg {
	vertical-align: -0.125em;
	width: 1em;
	height: 1em;
	display: inline-block;
}

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

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

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

.border-color-dark {
	border-color: var(--rz-border-color-dark) !important;
}

.razzi-scrollbar {
	overflow-y: auto;
	scrollbar-color: #1f1f1f #e2e2e278;
	scrollbar-width: thin;
}

.razzi-scrollbar::-webkit-scrollbar {
	width: 2px;
}

.razzi-scrollbar::-webkit-scrollbar-track {
	background-color: #e2e2e2;
}

.razzi-scrollbar::-webkit-scrollbar-thumb {
	background-color: #1f1f1f;
}

.primary-color {
	color: var(--rz-color-primary);
}

.image-zoom {
	overflow: hidden;
}

.image-zoom img {
	transition: transform .3s ease;
	vertical-align: middle;
}

.image-zoom:hover img {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	/* IE 9 */
	-moz-transform: scale(1.05);
	/* Firefox */
	-webkit-transform: scale(1.05);
	/* Safari and Chrome */
	-o-transform: scale(1.05);
	/* Opera */
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.razzi-tabs .tabs-nav {
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style-type: none;
}

.razzi-tabs .tabs-nav li {
	float: left;
}

.razzi-tabs .tabs-nav a {
	display: block;
}

.razzi-tabs .tabs-content {
	position: relative;
}

.razzi-tabs .tabs-panel {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	opacity: 0;
	transition: opacity 0.2s ease;
	transform: translateY(10px);
}

.razzi-tabs .tabs-panel.active {
	position: relative;
	z-index: 2;
	opacity: 1;
	top: 0;
	transform: translateY(0);
	transition: all 0.2s ease;
	transition-delay: 0.1s;
}

.hidden {
	display: none !important;
	visibility: hidden !important;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
}

caption,
td,
th {
	padding: 0;
	font-weight: normal;
	text-align: left;
}

table,
th,
td {
	border: 1px solid var(--rz-border-color-gray);
}

th {
	border-width: 0 1px 1px 0;
}

td {
	border-width: 0 1px 1px 0;
}

th,
td {
	padding: 10px;
}

thead th {
	font-weight: 500;
}

table.large-padding thead th, table.large-padding thead td {
	padding: 12px 30px;
}

table.large-padding th,
table.large-padding td {
	padding: 18px 30px;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	font-weight: 500;
	font-size: 16px;
	line-height: 50px;
	display: inline-block;
	background-color: var(--rz-background-color-dark);
	color: var(--rz-color-lighter);
	padding: 0 37px;
	text-align: center;
	transition: ease .3s;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	border: none;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
	outline: none;
}

.razzi-button {
	font-weight: 500;
	font-size: 16px;
	line-height: 50px;
	display: inline-block;
	background-color: var(--rz-background-color-dark);
	color: var(--rz-color-lighter);
	padding: 0 37px;
	text-align: center;
	transition: ease .3s;
	white-space: nowrap;
	text-decoration: none;
}

.razzi-button .razzi-svg-icon {
	vertical-align: middle;
	margin-left: 10px;
	font-size: 13px;
	transition: ease .3s;
	display: inline-block;
	/*rtl:raw:
			transform: rotateY(180deg);
		*/
}

.razzi-button.button-smaller {
	font-size: 15px;
	line-height: 42px;
	padding: 0 25px;
}

.razzi-button.button-medium {
	line-height: 46px;
	padding: 0 31px;
}

.razzi-button.button-larger {
	line-height: 54px;
	padding: 0 43px;
}

.razzi-button.button-big {
	line-height: 70px;
	display: block;
}

.razzi-button.button-outline, .razzi-button.button-normal {
	color: var(--rz-color-dark);
	background-color: transparent;
}

.razzi-button.button-outline .razzi-svg-icon, .razzi-button.button-normal .razzi-svg-icon {
	color: inherit;
}

.razzi-button.button-outline {
	border: 1px solid;
}

.razzi-button.button-normal {
	padding: 0;
	line-height: inherit;
}

.razzi-button:not(.button-outline):not(.button-normal).button-light {
	background-color: var(--rz-background-color-light);
	color: var(--rz-color-dark);
}

.razzi-button:not(.button-outline):not(.button-normal).button-light .razzi-svg-icon {
	color: var(--rz-color-dark);
}

.razzi-button:hover .razzi-svg-icon {
	transform: translateX(3px);
	/*rtl:raw:
				transform: translateX(-3px) rotateY(180deg);
			*/
}

.btn-primary:not(.button-outline):not(.button-normal) {
	background-color: var(--rz-background-color-primary);
	color: var(--rz-background-text-color-primary);
}

.btn-primary.button-outline {
	border-color: var(--rz-border-color-primary);
}

.razzi-button--underlined {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4375;
	background-color: transparent;
	color: var(--rz-color-dark);
	padding: 0 15px 3px;
	display: inline-block;
	position: relative;
}

.razzi-button--underlined:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	border-bottom: 1px solid;
	transform-origin: left center;
	transition: all .2s ease-in-out;
	transition-property: transform;
}

.razzi-button--underlined:hover {
	color: var(--rz-color-dark);
}

.razzi-button--underlined:hover:after {
	transform-origin: right center;
	transform: scaleX(0);
}

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: var(--rz-color-dark);
	border: 1px solid var(--rz-border-color);
	box-sizing: border-box;
	padding: 12px 15px;
	font-size: 16px;
	transition: all .1s ease-in-out;
	outline: none;
}

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: var(--rz-color-dark);
	border-color: var(--rz-color-darker);
	outline: none;
}

select {
	border: 1px solid var(--rz-border-color);
	padding: 12px 25px;
	color: var(--rz-color-dark);
	cursor: pointer;
	-moz-appearance: none;
	/* Firefox */
	-webkit-appearance: none;
	/* Safari and Chrome */
	appearance: none;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNSIgdmlld0JveD0iMCAwIDEwIDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBkPSJNNC41MDQ5NSA0LjgyMDExTDAuMjA1MjQxIDEuMDQ4NTZDLTAuMDY4NDEzNyAwLjgwODY0NiAtMC4wNjg0MTM3IDAuNDE5NjYzIDAuMjA1MjQxIDAuMTc5ODY0QzAuNDc4NjUyIC0wLjA1OTk1NDcgMC45MjIwOTggLTAuMDU5OTU0NyAxLjE5NTQ5IDAuMTc5ODY0TDUuMDAwMDcgMy41MTcxTDguODA0NTIgMC4xNzk5NjFDOS4wNzgwNSAtMC4wNTk4NTc3IDkuNTIxNDUgLTAuMDU5ODU3NyA5Ljc5NDg2IDAuMTc5OTYxQzEwLjA2ODQgMC40MTk3OCAxMC4wNjg0IDAuODA4NzQzIDkuNzk0ODYgMS4wNDg2Nkw1LjQ5NTA4IDQuODIwMkM1LjM1ODMxIDQuOTQwMTEgNS4xNzkyNSA1IDUuMDAwMDkgNUM0LjgyMDg1IDUgNC42NDE2NSA0Ljk0IDQuNTA0OTUgNC44MjAxMVoiIGZpbGw9IiM3Njc2NzYiLz4NCjwvc3ZnPg0K);
	background-repeat: no-repeat;
	background-position: calc(100% - 20px) 50%;
	transition: .1s;
	padding-right: 40px;
}

select:focus {
	border-color: var(--rz-border-color-darker);
	outline: none;
	background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNSIgdmlld0JveD0iMCAwIDEwIDUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+DQo8cGF0aCBkPSJNNC41MDQ5NSA0LjgyMDExTDAuMjA1MjQxIDEuMDQ4NTZDLTAuMDY4NDEzNyAwLjgwODY0NiAtMC4wNjg0MTM3IDAuNDE5NjYzIDAuMjA1MjQxIDAuMTc5ODY0QzAuNDc4NjUyIC0wLjA1OTk1NDcgMC45MjIwOTggLTAuMDU5OTU0NyAxLjE5NTQ5IDAuMTc5ODY0TDUuMDAwMDcgMy41MTcxTDguODA0NTIgMC4xNzk5NjFDOS4wNzgwNSAtMC4wNTk4NTc3IDkuNTIxNDUgLTAuMDU5ODU3NyA5Ljc5NDg2IDAuMTc5OTYxQzEwLjA2ODQgMC40MTk3OCAxMC4wNjg0IDAuODA4NzQzIDkuNzk0ODYgMS4wNDg2Nkw1LjQ5NTA4IDQuODIwMkM1LjM1ODMxIDQuOTQwMTEgNS4xNzkyNSA1IDUuMDAwMDkgNUM0LjgyMDg1IDUgNC42NDE2NSA0Ljk0IDQuNTA0OTUgNC44MjAxMVoiIGZpbGw9IiMxZjFmMWYiLz4NCjwvc3ZnPg0K");
}

textarea {
	padding: 15px;
	height: 150px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/


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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.clearfix:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 40px;
	padding: 23px;
	border: 1px solid var(--rz-border-color-light);
	/* Make sure select elements fit in widgets. */
}

.widget.filled {
	border-width: 0;
}

.widget select {
	width: 100%;
}

.widget ul,
.widget ol {
	margin-bottom: 0;
}

.widget:not(.widget_block) ul {
	list-style: none;
	padding-left: 0;
}

.widget:not(.widget_block) ul ul {
	padding-left: 15px;
}

.widget ol {
	padding-left: 16px;
}

.widget:not(.widget_block) li {
	padding: 7px 0;
}

.widget > ul > li:first-child {
	padding-top: 0;
}

.widget > ul > li:last-child {
	padding-bottom: 0;
}

.widget .tagcloud {
	margin: -4px -2px;
}

.widget .tagcloud a {
	border: 1px solid var(--rz-border-color-gray);
	display: inline-block;
	padding: 9px 21px;
	font-size: 14px !important;
	color: var(--rz-text-color);
	margin: 4px 2px;
}

.widget .tagcloud a:hover {
	border-color: var(--rz-border-color-dark);
}

.widget.widget_block > * {
	margin-top: 0;
}

.widget-title,
.widgettitle {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1;
	margin: 0 0 20px;
	padding: 0 0 13px;
	border-bottom: 2px solid;
}

.search-form {
	position: relative;
	color: var(--rz-color-darker);
}

.search-form:after {
	content: "";
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTQiIHZpZXdCb3g9IjAgMCAxNCAxNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMi42MzAzNiA4LjU2OTUyQzEuODM2NTYgNy43Nzc4MiAxLjM5OTc2IDYuNzIyMjIgMS4zOTk3NiA1LjYwMDEyQzEuMzk5NzYgNC40NzgwMiAxLjgzNjU2IDMuNDIzODIgMi42MzAzNiAyLjYzMDcyQzMuNDIzNDYgMS44MzY5MiA0LjQ3ODM2IDEuNDAwMTIgNS41OTk3NiAxLjQwMDEyQzYuNzIxODYgMS40MDAxMiA3Ljc3NjA2IDEuODM2OTIgOC41NjkxNiAyLjYzMTQyQzkuMzYyOTYgMy40MjM4MiA5Ljc5OTc2IDQuNDc4MDIgOS43OTk3NiA1LjYwMDEyQzkuNzk5NzYgNi43MjIyMiA5LjM2Mjk2IDcuNzc3ODIgOC41NjkxNiA4LjU3MDIyQzcuNzc2MDYgOS4zNjMzMiA2LjcyMTg2IDkuODAwMTIgNS41OTk3NiA5LjgwMDEyQzQuNDc4MzYgOS44MDAxMiAzLjQyMzQ2IDkuMzYzMzIgMi42MzAzNiA4LjU2OTUyWk0xMy43NTkgMTIuODA1MkwxMC4wMDQ5IDkuMDUxMTJDMTAuNzc3IDguMDcwNDIgMTEuMTk5OCA2Ljg2ODUyIDExLjE5OTggNS42MDAxMkMxMS4xOTk4IDQuMTA0MjIgMTAuNjE3NCAyLjY5NzkyIDkuNTU4OTYgMS42NDA5MkM4LjUwMTk2IDAuNTgzMjIyIDcuMDk1NjYgMC4wMDAxMjIwNyA1LjU5OTc2IDAuMDAwMTIyMDdDNC4xMDM4NiAwLjAwMDEyMjA3IDIuNjk4MjYgMC41ODMyMjIgMS42NDA1NiAxLjY0MDkyQzAuNTgyODU2IDIuNjk3OTIgLTAuMDAwMjQ0MTQxIDQuMTA0MjIgLTAuMDAwMjQ0MTQxIDUuNjAwMTJDLTAuMDAwMjQ0MTQxIDcuMDk2NzIgMC41ODI4NTYgOC41MDIzMiAxLjY0MDU2IDkuNTYwMDJDMi42OTgyNiAxMC42MTc3IDQuMTAzODYgMTEuMjAwMSA1LjU5OTc2IDExLjIwMDFDNi44NTA2NiAxMS4yMDAxIDguMDM1NzYgMTAuNzg3OCA5LjAxMDE2IDEwLjAzNkwxMi43NjkyIDEzLjc5NUwxMy43NTkgMTIuODA1MloiIGZpbGw9IiMxMTExMTEiLz4NCjwvc3ZnPg0K);
	position: absolute;
	top: 50%;
	right: 17px;
	transform: translateY(-50%);
	font-size: 18px;
	width: 14px;
	height: 14px;
	background-repeat: no-repeat;
}

.search-form label {
	margin-bottom: 0;
}

.search-form .screen-reader-text, .search-form .site-branding .site-title, .site-branding .search-form .site-title,
.search-form .site-branding .site-description, .site-branding .search-form .site-description {
	display: none;
}

.search-form label {
	width: 100%;
}

.search-form .search-field {
	width: 100%;
}

.search-form .search-submit {
	background-color: transparent;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	border: none;
	text-indent: -9999px;
	z-index: 10;
	box-shadow: none;
	outline: 0;
}

.search-form .search-submit:hover, .search-form .search-submit:focus {
	background-color: transparent;
}

.widget_nav_menu li,
.widget_pages li {
	padding: 5px 0;
}

.widget_nav_menu li:last-child,
.widget_pages li:last-child {
	padding-bottom: 0;
}

.widget_archive ul,
.widget_categories ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget_archive ul ul,
.widget_categories ul ul {
	padding-left: 20px;
	margin-top: 10px;
	border-top: 1px solid var(--rz-border-color-light);
}

.widget_archive ul ul li:last-child,
.widget_categories ul ul li:last-child {
	padding-bottom: 0;
}

.widget_archive li,
.widget_categories li {
	padding: 10px 0;
	border-bottom: 1px solid var(--rz-border-color-light);
}

.widget_archive li:last-child,
.widget_categories li:last-child {
	border-bottom: 0;
}

.widget_archive li .posts-count,
.widget_categories li .posts-count {
	font-size: 12px;
	color: #838889;
	float: right;
	margin-top: 5px;
}

.razzi-widget__social-links .social-links {
	margin-left: -7.5px;
	margin-right: -7.5px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.razzi-widget__social-links .social-links a.social {
	padding: 0 7.5px;
	font-size: 20px;
	color: var(--rz-color-darker);
}

.razzi-widget__social-links .social-links a.social:hover {
	color: var(--rz-color-primary);
}

.razzi-widget__social-links .social-links a.social.facebook {
	margin-top: -3px;
}

.widget_calendar,
.wp-block-calendar {
	background-color: #fafafa;
	border: 1px solid #ccc;
	padding: 21px 19px 12px;
}

.widget_calendar .wp-block-calendar,
.widget_calendar .calendar_wrap,
.wp-block-calendar .wp-block-calendar,
.wp-block-calendar .calendar_wrap {
	position: relative;
}

.widget_calendar .wp-calendar-table,
.wp-block-calendar .wp-calendar-table {
	margin-bottom: 5px;
	border: none;
}

.widget_calendar caption,
.wp-block-calendar caption {
	margin-bottom: 15px;
	font-weight: 600;
	padding: 0 6px;
	text-align: center;
}

.widget_calendar thead, .widget_calendar tbody,
.wp-block-calendar thead,
.wp-block-calendar tbody {
	border: none;
	margin-left: -.25em;
	margin-right: -.25em;
}

.widget_calendar thead th, .widget_calendar thead td, .widget_calendar tbody th, .widget_calendar tbody td,
.wp-block-calendar thead th,
.wp-block-calendar thead td,
.wp-block-calendar tbody th,
.wp-block-calendar tbody td {
	background: transparent;
	border: 0;
	text-align: center;
	line-height: 2;
	vertical-align: middle;
	word-break: normal;
}

.widget_calendar thead th,
.wp-block-calendar thead th {
	visibility: hidden;
	position: relative;
	font-size: 14px;
	color: #999;
}

.widget_calendar thead th:after,
.wp-block-calendar thead th:after {
	content: '';
	visibility: visible;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.widget_calendar thead th[title="Monday"]:after,
.wp-block-calendar thead th[title="Monday"]:after {
	content: 'Mo';
}

.widget_calendar thead th[title="Tuesday"]:after,
.wp-block-calendar thead th[title="Tuesday"]:after {
	content: 'Tu';
}

.widget_calendar thead th[title="Wednesday"]:after,
.wp-block-calendar thead th[title="Wednesday"]:after {
	content: 'We';
}

.widget_calendar thead th[title="Thursday"]:after,
.wp-block-calendar thead th[title="Thursday"]:after {
	content: 'Th';
}

.widget_calendar thead th[title="Friday"]:after,
.wp-block-calendar thead th[title="Friday"]:after {
	content: 'Fr';
}

.widget_calendar thead th[title="Saturday"]:after,
.wp-block-calendar thead th[title="Saturday"]:after {
	content: 'Sa';
}

.widget_calendar thead th[title="Sunday"]:after,
.wp-block-calendar thead th[title="Sunday"]:after {
	content: 'Su';
}

.widget_calendar tbody td,
.wp-block-calendar tbody td {
	font-size: 14px;
	color: #000;
}

.widget_calendar tbody #today,
.wp-block-calendar tbody #today {
	position: relative;
	z-index: 9;
	color: var(--rz-background-text-color-primary);
}

.widget_calendar tbody #today:after,
.wp-block-calendar tbody #today:after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
	height: 28px;
	background-color: var(--rz-background-color-primary);
	border-radius: 50%;
	z-index: -1;
}

.widget_calendar tbody .old,
.wp-block-calendar tbody .old {
	color: #999;
}

.widget_calendar .wp-calendar-nav a,
.wp-block-calendar .wp-calendar-nav a {
	color: #000;
	text-decoration: none;
}

.widget_calendar .wp-calendar-nav a:hover,
.wp-block-calendar .wp-calendar-nav a:hover {
	color: var(--rz-background-color-primary);
}

.single-post .entry-content .wp-block-calendar {
	margin-top: 20px;
}

.wp-block-page-list {
	margin: 0;
	padding: 0;
}

.wp-block-page-list li {
	list-style: none;
	padding: 7px 0;
}

.wp-block-page-list li:last-child {
	padding-bottom: 0;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# 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 embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* 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;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.site-content {
	padding-top: 80px;
	padding-bottom: 80px;
}

.site-content:after {
	clear: both;
	display: block;
	content: "";
}

.site-content.no-top-spacing {
	padding-top: 0 !important;
}

.site-content.no-bottom-spacing {
	padding-bottom: 0 !important;
}

.site-content .razzi-bottom-no-spacing {
	margin-bottom: 0;
}

.page:not(.elementor-page) .site-content {
	display: flex;
}

.page.full-content:not(.elementor-page) .site-content {
	max-width: 1200px;
	float: none;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
	display: block;
}

.page .site {
	max-width: 100%;
	margin: 0 auto;
}

.razzi-container {
	max-width: 1903px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
}

.razzi-container-wide {
	max-width: 1903px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 100px;
	padding-right: 100px;
}

.container {
	margin-right: auto;
	margin-left: auto;
	padding-left: 0;
	padding-right: 0;
}

.container > :not(.mega-menu-container).container {
	width: 100%;
}

@media (min-width: 992px) {
	.single-post .site-content > .container {
		width: 970px;
	}
}

@media (min-width: 1200px) {
	.container,
	.single-post .site-content > .container {
		width: 1170px;
	}
}

.container-fluid {
	margin-right: auto;
	margin-left: auto;
}

@media (max-width: 767px) {
	.hidden-xs {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hidden-sm {
		display: none !important;
	}
}

@media (min-width: 992px) and (max-width: 1199px) {
	.hidden-md {
		display: none !important;
	}
}

@media (min-width: 1200px) {
	.hidden-lg {
		display: none !important;
	}
}

.single-post .site-content {
	padding-top: 30px;
}

.single-product .site-content {
	padding-top: 0;
}

.razzi-catalog-page .site-content {
	padding-top: 60px;
}

.razzi-blog-page .page-header + .site-content {
	padding-top: 5px;
}

.razzi-blog-page:not(.full-content) .page-header + .site-content {
	padding-top: 20px;
}

.razzi-boxed-layout .site {
	max-width: 1200px;
	margin: 0 auto;
	background-color: #fff;
}

.razzi-boxed-layout .site-header {
	max-width: 1200px;
	margin: 0 auto;
}

.site-header__border {
	border-bottom: 1px solid var(--rz-border-color-light);
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header__title {
	font-size: 32px;
	margin: 0;
	padding: 42px 0 19px;
	text-align: center;
}

.page-header__hide-breadcrumb .site-breadcrumb {
	display: none;
}

.page-header__hide-title .page-header__title {
	display: none;
}

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

.blog-wrapper.sticky .entry-title {
	position: relative;
	padding-left: 25px;
}

.blog-wrapper.sticky .entry-title:before {
	content: "";
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIg0KCSB2aWV3Qm94PSIwIDAgNDkzLjM1MyA0OTMuMzUzIiA+DQoJPHBhdGggZD0iTTYyLjM4NCwzOC4xMTRjLTcuMTM4LTcuMTMzLTE1Ljc1Mi0xMC43MDYtMjUuODM3LTEwLjcwNmMtMTAuMDg5LDAtMTguNzAyLDMuNTc2LTI1Ljg0MSwxMC43MDYNCgkJQzMuNTcxLDQ1LjI1MywwLDUzLjg2NywwLDYzLjk1NUMwLDc3LjY1OCw2LjA4OCw4OC4xMjgsMTguMjcxLDk1LjM2djM2MS40NWMwLDIuNDc1LDAuOTAyLDQuNjE3LDIuNzE0LDYuNDI0DQoJCWMxLjgwNywxLjgwNywzLjk0OSwyLjcxLDYuNDIzLDIuNzFoMTguMjcxYzIuNDc0LDAsNC42MTUtMC44OTYsNi40MjMtMi43MWMxLjgwOS0xLjgwNywyLjcxMi0zLjk0OSwyLjcxMi02LjQyNFY5NS4zNg0KCQljMTIuMTg1LTcuMjM2LDE4LjI3MS0xNy43MDMsMTguMjcxLTMxLjQwNUM3My4wODUsNTMuODcsNjkuNTE4LDQ1LjI1Nyw2Mi4zODQsMzguMTE0eiIvPg0KCTxwYXRoIGQ9Ik00ODcuOTMyLDY5LjM4NWMtMy42Mi0zLjYxNy03LjkwNS01LjQyNi0xMi44NTQtNS40MjZjLTIuNDcxLDAtNy42NTksMS45OTctMTUuNTU4LDUuOTk2DQoJCWMtNy44OTcsMy45OTktMTYuMjc1LDguNDctMjUuMTI1LDEzLjQxOGMtOC44NDMsNC45NDktMTkuMzIxLDkuNDE5LTMxLjQwMSwxMy40MThjLTEyLjA4NywzLjk5OS0yMy4yNzEsNS45OTYtMzMuNTQ0LDUuOTk2DQoJCWMtOS41MjEsMC0xNy44OTUtMS44MDktMjUuMTMzLTUuNDI0Yy0yMy45ODItMTEuMjMxLTQ0LjgxNi0xOS42MDctNjIuNTIyLTI1LjEyN2MtMTcuNy01LjUxOS0zNi43MzItOC4yNzctNTcuMDk5LTguMjc3DQoJCWMtMzUuMjE0LDAtNzUuMjc5LDExLjQxOC0xMjAuMTk3LDM0LjI1OGMtMTEuMDQzLDUuNTItMTguNTYsOS42MTMtMjIuNTU3LDEyLjI3N2MtNS45MDIsNC4zOC04Ljg1NCw5LjYxMS04Ljg1NCwxNS43MDN2MjExLjg0Mg0KCQljMCw0Ljk0OCwxLjgxMiw5LjIzNiw1LjQyOSwxMi44NDdjMy42MTIsMy42Miw3Ljg5OCw1LjQyOCwxMi44NDcsNS40MjhjMy4wNDQsMCw2LjE4LTAuODU1LDkuNDE5LTIuNTY3DQoJCWM1MS43NzItMjcuNzkxLDk1LjkzLTQxLjY4NSwxMzIuNDc1LTQxLjY4NWMxMy44OTMsMCwyNy40NTQsMi4wOTQsNDAuNjc4LDYuMjc5YzEzLjIyOSw0LjE4OCwyNC4yMjIsOC43NTgsMzIuOTc2LDEzLjcwMg0KCQljOC43NjEsNC45NDgsMTkuMDgyLDkuNTIxLDMwLjk3OCwxMy43MDljMTEuOTAyLDQuMTc5LDIzLjY1NCw2LjI3NiwzNS4yNjIsNi4yNzZjMjkuMzE0LDAsNjQuNDMzLTExLjAzNiwxMDUuMzUyLTMzLjExOQ0KCQljNS4xNDQtMi42NjMsOC44OTctNS4yNzcsMTEuMjc2LTcuODQ4YzIuMzgxLTIuNTY5LDMuNTcyLTYuMjMxLDMuNTcyLTEwLjk5NVY4Mi4yMjZDNDkzLjM1Myw3Ny4yNzksNDkxLjU0Niw3Myw0ODcuOTMyLDY5LjM4NXoiDQoJCQkvPg0KPC9zdmc+DQo=");
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 18px;
	width: 14px;
	height: 14px;
	background-repeat: no-repeat;
}

.single-post .post-wrapper .entry-content {
	font-size: 18px;
}

.single-post .entry-header {
	margin-bottom: 70px;
}

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

.page-links {
	clear: both;
	margin: 1.5em 0 0;
	width: 100%;
	display: inline-block;
}

.page-links .post-page-numbers {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	padding: 9px 20px;
	text-decoration: none;
	border-bottom: 1px solid var(--rz-border-color-light);
	margin: -3px;
	color: #909090;
}

.page-links .post-page-numbers.current {
	border-color: var(--rz-border-color-primary);
	color: var(--rz-color-primary);
}

.page-links .post-page-numbers:first-child {
	margin-left: 20px;
}

.entry-title {
	margin: 0 0 13px;
}

.post-wrapper .entry-title {
	font-size: 48px;
}

.entry-meta {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	color: var(--rz-text-color-gray);
}

.entry-meta a {
	color: var(--rz-text-color-gray);
}

.entry-meta a:hover {
	color: var(--rz-text-color);
}

.entry-meta .meta {
	margin-right: 5px;
}

.entry-meta .meta-date:before {
	content: '/';
	display: inline-block;
	margin-right: 5px;
}

.entry-meta .meta-author {
	text-transform: capitalize;
}

.entry-footer {
	clear: both;
}

.razzi-post__tag {
	margin-left: -2px;
	margin-right: -2px;
	padding-top: 30px;
}

.razzi-post__tag a {
	border: 1px solid var(--rz-border-color-gray);
	display: inline-block;
	padding: 9px 21px;
	font-size: 14px;
	color: var(--rz-text-color);
	margin: 4px 2px;
}

.razzi-post__tag a:hover {
	border-color: var(--rz-border-color-dark);
}

.razzi-post__socials-share {
	margin-top: 18.5px;
	margin-left: -7.5px;
	margin-right: -7.5px;
}

.razzi-post__socials-share a {
	display: inline-flex;
	align-items: center;
	padding: 15px 32px;
	color: var(--rz-color-lighter);
	margin: 7.5px;
}

.razzi-post__socials-share .after-text {
	margin-left: 15px;
}

.razzi-post__socials-share .social-share-link {
	background-color: #666;
}

.razzi-post__socials-share .social-share-link svg {
	font-size: 19px;
}

.razzi-post__socials-share .social-share-link.facebook {
	background-color: #475A96;
}

.razzi-post__socials-share .social-share-link.twitter {
	background-color: #49B2E8;
}

.razzi-post__socials-share .social-share-link.googleplus {
	background-color: #D74047;
}

.razzi-post__socials-share .social-share-link.tumblr {
	background-color: #001833;
}

.razzi-post__socials-share .social-share-link.pinterest {
	background-color: #df0022;
}

.razzi-post__socials-share .social-share-link.linkedin {
	background-color: #0270ad;
}

.razzi-post__socials-share .social-share-link.reddit {
	background-color: #f74301;
}

.razzi-post__socials-share .social-share-link.stumbleupon {
	background-color: #eb4823;
}

.razzi-post__socials-share .social-share-link.telegram {
	background-color: #33a8db;
}

.razzi-post__socials-share .social-share-link.pocket {
	background-color: #e63e51;
}

.razzi-post__socials-share .social-share-link.email {
	background-color: #d75147;
}

.post-wrapper {
	margin-bottom: 80px;
}

.post-wrapper .post-thumbnail {
	margin-top: 70px;
}

.blog-wrapper {
	margin-bottom: 53px;
}

.blog-wrapper .entry-header {
	margin-bottom: 20px;
	display: block;
	position: relative;
}

.blog-wrapper .entry-header .blog-date {
	position: absolute;
	left: 0;
	top: 20px;
	background-color: var(--rz-background-color-light);
	color: var(--rz-color-dark);
	font-size: 11px;
	font-weight: 500;
	padding: 3px 15px;
	text-transform: uppercase;
}

.blog-wrapper .entry-header .entry-title,
.blog-wrapper .entry-header .razzi-button {
	font-weight: 600;
}

.blog-wrapper .entry-summary {
	margin-top: 0;
}

.blog-wrapper .entry-content {
	margin: 0 0 17px;
}

.blog-wrapper .entry-content p {
	margin: 0;
}

.blog-wrapper--grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.blog-wrapper--grid .blog-wrapper {
	width: 50%;
	padding: 0 15px;
}

.full-content .blog-wrapper--grid.blog-columns--2 {
	margin: 0 -25px;
}

.full-content .blog-wrapper--grid.blog-columns--2 .blog-wrapper {
	padding: 0 25px;
}

.blog-columns--3 .blog-wrapper {
	width: 33.33%;
}

.blog-wrapper--listing .blog-wrapper {
	display: flex;
	align-items: flex-start;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--rz-border-color-light);
}

.blog-wrapper--listing a.post-thumbnail {
	display: flex;
}

.blog-wrapper--listing .entry-header {
	flex: none;
	max-width: 40%;
	margin: 0 40px 0 0;
}

.razzi-posts__found {
	text-align: center;
	margin-top: 11px;
	margin-bottom: 30px;
}

.razzi-posts__found-inner {
	display: inline-block;
	padding: 10px 50px;
	border-bottom: 2px solid var(--rz-border-color-light);
	position: relative;
	color: #767676;
	font-size: 15px;
}

.razzi-posts__found-inner .count-bar {
	position: absolute;
	bottom: -2px;
	left: 0;
	background-color: var(--rz-background-color-dark);
	height: 2px;
}

.razzi-posts__taxs-list {
	margin-bottom: 51px;
	text-align: center;
}

.razzi-posts__taxs-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow-x: auto;
	overflow-y: hidden;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.razzi-posts__taxs-list ul li {
	display: inline-block;
	padding: 0 17px 10px;
}

.razzi-posts__taxs-list ul li a {
	font-weight: 500;
	position: relative;
}

.razzi-posts__taxs-list ul li a:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 0;
	border-bottom: 1px solid var(--rz-color-primary);
	transition: width .4s;
}

.razzi-posts__taxs-list ul li a.selected, .razzi-posts__taxs-list ul li a:hover {
	color: var(--rz-color-primary);
}

.razzi-posts__taxs-list ul li a.selected:after, .razzi-posts__taxs-list ul li a:hover:after {
	width: 100%;
	left: 0;
}

.razzi-posts__taxs-list ul li:first-child {
	padding-left: 0;
}

.razzi-posts__taxs-list ul li:last-child {
	padding-right: 0;
}

.razzi-posts__taxs-list ul::-webkit-scrollbar {
	display: none;
}

body:not(.full-content) .razzi-posts__taxs-list ul {
	justify-content: start;
}

.razzi-posts__wrapper {
	position: relative;
}

.razzi-posts__loading {
	position: absolute;
	top: 0;
	left: 0;
	bottom: -50px;
	right: 0;
	z-index: 998;
	background-color: var(--rz-background-color-light);
	display: none;
	text-align: center;
}

.razzi-posts__loading .razzi-loading {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.razzi-posts__loading.show {
	display: block;
}

.razzi-posts__related {
	margin-bottom: 50px;
}

.razzi-posts__related .related-title {
	margin: 0 0 57px;
}

.razzi-posts__related .blog-wrapper {
	margin-bottom: 0;
}

.razzi-posts__related .blog-wrapper .entry-header {
	margin-bottom: 15px;
}

.razzi-posts__related .blog-wrapper .entry-content,
.razzi-posts__related .blog-wrapper .razzi-button {
	display: none;
}

.razzi-posts__related .blog-wrapper .entry-title {
	margin-bottom: 15px;
	font-size: 20px;
}

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

.bypostauthor {
	display: block;
}

.comments-title {
	font-size: 32px;
	color: var(--rz-color-darker);
	padding: 30px 0 0;
	margin: 0;
	text-align: center;
}

.comments-title.has-comments {
	padding-bottom: 10px;
}

.comment-list {
	margin: 37px 0 0 0;
	padding: 0;
	list-style: none;
	border-bottom: 1px solid var(--rz-border-color-light);
}

.comment-list .children {
	list-style: none;
	padding-left: 0;
	margin-left: 90px;
}

.comment-list > li:first-child .comment-body {
	border: none;
	padding-top: 0;
}

.comment-list .comment-body {
	padding: 30px 0 35px;
	border-top: 1px solid var(--rz-border-color-light);
}

.comment-list .depth-5 .children {
	margin-left: 0;
}

.comment-list .comment-meta {
	position: relative;
	padding-left: 60px;
}

.comment-list .comment-meta:before, .comment-list .comment-meta:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.comment-list .comment-meta:after {
	clear: both;
}

.comment-list .avatar {
	border-radius: 50%;
	position: absolute;
	left: 0;
}

.comment-list .comment-author {
	float: left;
}

.comment-list .comment-author .says {
	display: none;
}

.comment-list .comment-metadata {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.comment-list .comment-metadata a {
	font-size: 14px;
	color: var(--rz-text-color-gray);
}

.comment-list .comment-metadata a:hover {
	color: var(--rz-color-dark);
}

.comment-list .comment-metadata .fn {
	font-weight: 500;
	text-transform: capitalize;
	font-style: initial;
	color: var(--rz-color-dark);
}

.comment-list .comment-metadata .fn a {
	font-size: inherit;
	color: inherit;
}

.comment-list .comment-metadata .edit-link {
	margin-left: 10px;
}

.comment-list .comment-meta ~ .comment-content {
	margin-left: 90px;
}

.comment-list .comment-content {
	font-size: 16px;
	padding: 5px 0 0;
}

.comment-list .comment-content p:first-child {
	margin-top: 0;
}

.comment-list .comment-content p:last-child {
	margin-bottom: 0;
}

.comment-list .comment-content ul {
	margin-bottom: 1em;
}

.comment-list .comment-content img {
	display: block;
	margin: 10px 0;
}

.comment-list .reply {
	margin-top: 10px;
	margin-left: -4px;
	margin-right: -4px;
}

.comment-list .comment-edit-link,
.comment-list .comment-reply-link {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	padding: 0 4px;
}

.comment-list .comment-reply-link {
	display: inline-block;
}

.comment-respond {
	font-size: 16px;
	margin: 40px auto 0;
}

.comment-respond .comment-reply-title {
	margin: 0 0 20px;
	text-align: center;
	font-size: 24px;
}

.comment-respond .comment-reply-title small {
	float: right;
}

.comment-respond .comment-form {
	margin-left: -15px;
	margin-right: -15px;
	text-align: center;
}

.comment-respond .comment-form > p {
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 0 20px;
}

.comment-respond .comment-form textarea,
.comment-respond .comment-form input[type=text],
.comment-respond .comment-form input[type=email] {
	width: 100%;
	display: block;
}

.comment-respond .comment-form .comment-notes {
	margin-bottom: 32px;
}

.comment-respond .comment-form-author,
.comment-respond .comment-form-email {
	width: 50%;
	float: left;
}

.comment-respond .form-submit {
	clear: both;
}

.comment-awaiting-moderation {
	display: block;
}

p.no-comments {
	margin-top: 35px;
	padding: 10px 20px;
	color: var(--rz-background-text-color-primary);
	background-color: var(--rz-background-color-primary);
}

.comments-area .page-numbers {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	padding: 7px 20px;
	text-decoration: none;
	margin: 30px -3px;
	color: #909090;
	border-bottom: 1px solid var(--rz-border-color-light);
}

.comments-area .page-numbers.prev, .comments-area .page-numbers.next {
	border-bottom: none;
	margin-left: 0;
	margin-right: 0;
}

.comments-area .page-numbers.prev {
	padding-left: 0;
}

.comments-area .page-numbers.next {
	padding-right: 0;
}

.comments-area .page-numbers.current {
	border-color: var(--rz-border-color-primary);
	color: var(--rz-color-primary);
}

.page .comments-area {
	margin-top: 100px;
}

/*--------------------------------------------------------------
# Default
--------------------------------------------------------------*/
.wp-block-table td,
.wp-block-table th {
	padding: 10px 20px;
	border-color: var(--rz-border-color-gray);
}

p:empty:before {
	display: none;
}

.wp-block-button {
	margin-bottom: 25px;
}

.wp-block-button .wp-block-button__link {
	cursor: pointer;
	display: inline-block;
	margin: 0;
	padding: 12px 25px;
	line-height: 1.5;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	overflow-wrap: break-word;
	color: #fff;
}

.wp-block-button .wp-block-button__link:hover {
	text-decoration: none !important;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	border: 1px solid;
	color: var(--rz-color-dark);
}

.wp-block-button.is-style-outline .wp-block-button__link:not(.has-background), .wp-block-button.is-style-outline .wp-block-button__link:focus:not(.has-background), .wp-block-button.is-style-outline .wp-block-button__link:active:not(.has-background) {
	background: transparent;
}

.wp-block-button.is-style-squared .wp-block-button__link {
	border-radius: 0;
}

.wp-block-button:not(.is-style-outline) {
	color: #fff;
}

blockquote cite,
blockquote .wp-block-quote__citation,
.wp-block-quote cite {
	margin-top: 26px;
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote {
	padding: 20px 30px;
	border-left: 3px solid var(--rz-color-primary);
}

.wp-block-quote.has-text-align-right {
	padding: 20px 30px;
	border-right: 3px solid var(--rz-color-primary);
}

.wp-block-quote cite {
	font-style: italic;
	color: #838889;
	font-size: 14px;
}

.wp-block-pullquote p {
	font-size: 28px;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
	font-size: 32px;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large .wp-block-quote__citation,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large .wp-block-quote__citation {
	font-size: 18px;
	text-align: left;
}

hr.wp-block-separator {
	background-color: #bbb;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

.wp-block-pullquote:not(.is-style-solid-color) {
	background-color: #f7f7f7;
}

.wp-block-pullquote {
	background-color: #f7f7f7;
	border-left: none;
	font-size: 20px;
	padding: 0;
	color: var(--rz-color-dark);
}

.wp-block-pullquote blockquote {
	border: none;
	margin: 0;
	padding: 40px 30px;
}

.wp-block-pullquote cite {
	color: #838889;
	text-transform: capitalize;
	font-size: 14px;
	font-style: italic;
}

.wp-block-pullquote.alignleft {
	text-align: left;
}

.wp-block-pullquote.alignright {
	text-align: right;
}

.wp-block-pullquote.aligncenter {
	text-align: center;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	background-color: transparent;
	max-width: 100%;
	padding: 40px 30px;
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
	font-style: italic;
}

.wp-block-pullquote.is-style-solid-color blockquote {
	background-color: transparent;
	max-width: 100%;
}

.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p,
.wp-block-pullquote.alignleft blockquote > .editor-rich-text p,
.wp-block-pullquote.alignright blockquote > .editor-rich-text p {
	font-size: 20px;
}

.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote__citation {
	margin-top: 1em;
}

.wp-block-pullquote .wp-block-pullquote__citation {
	color: #40464d;
}

.wp-block-code {
	color: var(--rz-color-darker);
}

.wp-block-code code {
	background: transparent;
}

.has-large-font-size {
	font-size: 36px;
}

figure.is-resized {
	margin-top: 0;
	margin-bottom: 0;
}

figure.alignleft, figure.alignright {
	margin-top: 0;
}

img.alignright {
	clear: both;
}

.aligncenter {
	text-align: center;
}

.wp-block-archives {
	margin-bottom: 35px;
}

.wp-block-archives,
ul.wp-block-categories {
	overflow: hidden;
	padding: 0;
}

.wp-block-archives li,
ul.wp-block-categories li {
	padding: 7px 0;
	clear: both;
	list-style: none;
}

.wp-block-archives li:last-child,
ul.wp-block-categories li:last-child {
	padding-bottom: 0;
}

.wp-block-archives li a,
ul.wp-block-categories li a {
	text-decoration: none;
}

ul.wp-block-latest-posts {
	list-style: none;
	margin: 0 0 1em;
	padding: 0;
}

ul.wp-block-latest-posts ul {
	list-style: none;
}

ul.wp-block-latest-posts li {
	padding: 5px 0;
	margin-bottom: 0;
}

ul.wp-block-latest-posts li:last-child {
	padding-bottom: 0;
}

ul.wp-block-latest-posts li a {
	color: var(--rz-color-dark);
	text-decoration: none;
}

ul.wp-block-latest-posts li a:hover {
	color: var(--rz-color-darker);
}

.wp-block-latest-posts.is-grid li a {
	text-decoration: none;
}

.wp-block-search .wp-block-search__label {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 5px;
	display: block;
	color: var(--rz-color-dark);
}

.wp-block-search .wp-block-search__input {
	border: 1px solid var(--rz-border-color);
}

.wp-block-search .wp-block-search__button {
	background-color: var(--rz-background-color-dark);
	color: var(--rz-color-lighter);
	padding: 0 15px;
	border: none;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button {
	padding: 0 15px;
}

.wp-block-latest-comments__comment {
	margin-bottom: 0;
}

.wp-block-tag-cloud {
	margin-left: -2px;
	margin-right: -2px;
}

.wp-block-tag-cloud a {
	border: 1px solid var(--rz-border-color-gray);
	display: inline-block;
	padding: 9px 21px;
	font-size: 14px !important;
	color: var(--rz-text-color);
	margin: 4px 2px;
	text-decoration: none;
}

.wp-block-tag-cloud a:hover {
	border-color: var(--rz-color-dark);
	text-decoration: none !important;
}



ol.wp-block-latest-comments {
	padding-left: 0;
}

.wp-block-cover-image.has-background-dim::before, .wp-block-cover.has-background-dim::before {
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 1;
}

.wp-block-cover {
	margin-bottom: 32px;
}

.wp-block-cover:last-child {
	margin-bottom: 0;
}

.wp-block-cover p:not(.has-text-color) {
	color: #fff;
}

.wp-block-columns .wp-block-column > *:first-child {
	margin-top: 0;
}


.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper:before {
	padding-top: 56.25%;
}

.wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
	color: #555d66;
	font-size: 13px;
	text-align: center;
}

.wp-block-group.has-background {
	margin-bottom: 50px;
}

pre.wp-block-verse {
	white-space: pre-wrap;
}

@media only screen and (min-width: 1200px) {
	body:not(.full-content) .wp-block-gallery .blocks-gallery-item figcaption {
		display: none;
	}
	body.full-content .site-content .entry-content > *.alignwide {
		max-width: 1170px;
		width: 1170px;
		margin-left: calc(-1170px/2 + 100%/2);
		margin-right: calc(-1170px/2 + 100%/2);
	}
	.page.full-content:not(.elementor-page) .site-content article > *.alignwide {
		max-width: 1380px;
		margin-left: calc(-1380px/2 + 100%/2);
		margin-right: calc(-1380px/2 + 100%/2);
	}
}

@media only screen and (min-width: 768px) {
	body.full-content .site-content .entry-content > *.alignfull,
	body.full-content .site-content .entry-content > *.alignwide {
		width: -webkit-fill-available;
		max-width: 1000%;
	}
	body.full-content .site-content .entry-content > *.alignfull {
		margin-right: calc(50% - 50vw + 9px);
		margin-left: calc(50% - 50vw + 8px);
	}
	.page.full-content:not(.elementor-page) .site-content article > *.alignfull {
		width: -webkit-fill-available;
		max-width: 1000%;
		margin-right: calc(50% - 50vw + 9px);
		margin-left: calc(50% - 50vw + 8px);
	}
}

/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
.error404 .site-content {
	padding: 110px 15px;
}

.error404 .content-area {
	width: 100%;
}

.error404 .error-404 {
	max-width: 440px;
	margin: auto;
	text-align: center;
}

.error404 .error-404 .page-title {
	font-size: 36px;
	margin: 0 0 19px;
}

.error404 .error-404 .page-content {
	margin: 0 0 37px;
	font-size: 18px;
	line-height: 1.5;
}

.error404 .error-404 .razzi-button {
	padding: 0 34px;
}

.error404 .error-404__svg {
	margin-bottom: 27px;
}

.error404 .error-404__svg svg {
	width: 54px;
	height: 54px;
}

.maintenance-page #site-header,
.maintenance-page .site-header,
.maintenance-page #topbar-mobile,
.maintenance-page #site-footer {
	display: none;
}

.maintenance-page .site-content {
	padding: 0 15px;
}

.razzi-brands-shortcode__items {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}

.razzi-brands-shortcode__item {
	text-align: center;
	padding: 0 12px;
	margin-bottom: 30px;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 992px) {
	body:not(.full-content) .widget-area {
		width: 31.25%;
	}
	body:not(.full-content) .content-area {
		width: 68.75%;
	}
	body.content-sidebar .content-area {
		padding-right: 15px;
		float: left;
	}
	body.content-sidebar .primary-sidebar {
		padding-left: 15px;
		float: right;
	}
	body.sidebar-content .content-area {
		padding-left: 15px;
		float: right;
	}
	body.sidebar-content .primary-sidebar {
		padding-right: 15px;
		float: left;
	}
	.site-footer .col-5 {
		width: 20%;
	}
}

@media (max-width: 1199px) and (min-width: 992px) {
	.header-v9 .main-navigation .nav-menu > li {
		padding: 0 14px;
	}
}

@media (max-width: 1199px) {
	.razzi-container,
	.razzi-container-wide,
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.header-v6 .site-footer .razzi-container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.page-header .featured-image {
		background-position: center;
	}
	.header-account .account-links {
		display: none;
	}
	.header-cart .mini-cart-content {
		display: none;
	}
	.header-v11 .site-header .header-search.search-form-type .search-field {
		min-width: 370px;
	}
}

@media (min-width: 1220px) {
	.razzi-boxed-layout .site-footer {
		width: 1170px;
		margin-left: auto;
		margin-right: auto;
	}
	.single-post.full-content .entry-footer,
	.single-post.full-content .entry-header {
		text-align: center;
	}
	.single-post.full-content .post-wrapper .entry-content,
	.single-post.full-content .comments-area {
		max-width: 780px;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	body.full-content .entry-content .rz-alignwide {
		max-width: 1170px;
		width: 1170px;
		margin-left: calc(-1170px/2 + 100%/2);
		margin-right: calc(-1170px/2 + 100%/2);
	}
}

@media (min-width: 1200px) {
	.razzi-slides-elementor .swiper-pagination.container {
		max-width: 1170px;
	}
}

@media (max-width: 1024px) {
	.comment-list .children {
		margin-left: 50px;
	}
}

@media (max-width: 991px) {
	.header-v6 #page {
		padding-left: 0;
	}
	.sidebar-content .primary-sidebar {
		margin-top: 60px;
	}
	.single-post .entry-header {
		margin-bottom: 30px;
	}
	.post-wrapper .post-thumbnail {
		margin-top: 30px;
	}
	.razzi-map__has-tab {
		flex-wrap: wrap;
		margin-top: 0;
	}
	.razzi-map__has-tab .razzi-map__table {
		max-width: 100%;
		flex-basis: 100%;
		overflow-x: auto;
		margin-right: 0;
	}
	.razzi-map__has-tab .mapboxgl-ctrl-top-right {
		transform: none;
	}
	.razzi-map .mapboxgl-ctrl-top-right {
		top: 10px;
	}
	.razzi-map .box-item {
		padding: 30px 15px;
	}
	.razzi-map .box-item:first-child {
		padding-top: 0;
	}
	.razzi-map .map-title {
		margin-bottom: 5px;
	}
	.razzi-catalog-page .content-area {
		width: 100%;
	}
	.razzi-catalog-page.sidebar-content .content-area,
	.razzi-catalog-page.sidebar-content .catalog-sidebar, .razzi-catalog-page.content-sidebar .content-area,
	.razzi-catalog-page.content-sidebar .catalog-sidebar {
		width: 100%;
	}
	.blog-wrapper--grid .blog-wrapper {
		width: 50%;
	}
	.full-content .blog-wrapper--grid.blog-columns--2 {
		margin: 0 -15px;
	}
	.full-content .blog-wrapper--grid.blog-columns--2 .blog-wrapper {
		padding: 0 15px;
	}
	.razzi-history-back {
		font-size: 24px;
		line-height: 1;
		color: var(--rz-header-color-dark);
	}
	.razzi-history-back .razzi-svg-icon {
		display: block;
	}
	.razzi-products-list-widget li {
		width: 50%;
	}
}

@media (max-width: 782px) {

}

@media (max-width: 767px) {
	.comment-list .children {
		margin-left: 0;
	}
	.comment .comment-metadata {
		display: block;
		padding-left: 0;
		margin-bottom: 20px;
	}
	.comment .comment-metadata .fn {
		display: block;
	}
	.comment .avatar {
		max-width: 50px;
	}
	.comment-list .comment-meta ~ .comment-content {
		margin-left: 70px;
	}
	.blog-wrapper--listing .blog-wrapper {
		display: block;
	}
	.blog-wrapper--listing .entry-header {
		margin-bottom: 30px;
		margin-right: 0;
		max-width: 100%;
	}
	.razzi-posts__list {
		max-width: 540px;
		margin-left: auto;
		margin-right: auto;
	}
	.razzi-posts__list .blog-wrapper {
		width: 100%;
		padding-left: 0;
		padding-right: 0;
	}
	.razzi-posts__taxs-list {
		max-width: 540px;
		margin-left: auto;
		margin-right: auto;
	}
	.post-wrapper .entry-title {
		font-size: 28px;
	}
	.single-post .site-content {
		padding-top: 10px;
	}
	.razzi-post__socials-share .after-text {
		display: none;
	}
	.razzi-post__socials-share a {
		padding-left: 25px;
		padding-right: 25px;
	}
	.blog-sidebar {
		max-width: 540px;
		margin-left: auto;
		margin-right: auto;
		margin-top: 70px;
	}
	table.large-padding thead th,
	table.large-padding thead td,
	table.large-padding th,
	table.large-padding td {
		padding: 10px;
	}
}

@media (max-width: 600px) {
	.admin-bar.header-sticky .site-header.minimized {
		top: 0;
	}
	.admin-bar.sticky-minimized .rz-modal {
		top: 0;
	}
	.admin-bar .rz-modal {
		top: 0;
		height: 100%;
	}
	.admin-bar .rz-modal.quick-view-modal {
		top: 0;
	}
	.razzi-products-deal-3 ul.products li.product .product-inner {
		flex-direction: column;
	}
	.razzi-products-deal-3 ul.products li.product .product-thumbnail,
	.razzi-products-deal-3 ul.products li.product .product-summary {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.razzi-products-list-widget li {
		width: 100%;
	}
}

@media (max-width: 375px) {

}
