@charset "UTF-8";

:root {
	--base-font-face: 'Poppins';
	--base-font-size: 17px;
	--base-font-weight: 400;
	--heading-font-face: 'Poppins';
	--heading-font-weight: 500;
	--color-primary: rgba(120, 40, 70, 1);
	--color-secondary: rgba(250, 190, 195, 1);
	--color-text: rgba(75, 65, 70, 1);
	--color-background: rgba(245, 245, 240, 1);
	--border-radius-normal: 12px;
}

body {
	background: #222;
	color: rgba(0, 0, 0, 0.8);
	font-family: var(--base-font-face);
	font-size: var(--base-font-size);
	font-weight: var(--base-font-weight);
	text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--heading-font-face);
	font-weight: var(--heading-font-weight);
}
h1 {
	margin: 0 0 15px 0;
	border-bottom: 3px solid rgba(120, 40, 70, 0.25);
	font-size: 26px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 20px;
}
h4 {
	font-size: 18px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 18px;
}

.content-wrapper {
	background: hsl(0, 35%, 95%);
}

.h-em {
	margin: 50px 0 15px 0;
	padding: 10px 15px;
	background: rgba(0, 0, 0, 0.05);
	color: #333;
	border-radius: var(--border-radius-normal);
}


/* Breadcrumbs */
.breadcrumbs-wrapper {
	padding: 5px 0;
	font-size: 85%;
	color: #777;
}
.breadcrumbs-body {
	margin: 0 auto;
	padding: 0 15px;
	list-style-type: none;
}
.breadcrumbs-body > li {
	display: inline-block;
}
.breadcrumbs-body > li.inner:before {
	content: "»";
	padding: 0 10px;
}


/* Footer */
.footer {
	color: rgba(255, 255, 255, 0.3);
	background: rgb(80, 0, 40, 1);
}
.footer p {
	margin: 0;
}
.footer-body {
	padding: 0 15px;
}
.footer-row {
	padding: 15px 0;
	text-align: center;
}
.footer-body a {
	color: rgba(255, 255, 255, 0.6);
	transition: all ease 0.25s;
	text-decoration: none;
}
.footer-body a:hover, .footer-body a:active, .footer-body a:focus {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}
.footer-row-bottomline {
	text-align: center;
	font-size: 10px;
	color: rgba(255, 255, 255, 0.1);
	line-height: normal;
}
.footer-row-bottomline a {
	color: rgba(255, 255, 255, 0.3);
	transition: all ease 0.25s;
	text-decoration: none;
}
.footer-row-bottomline a:hover, .footer-row-bottomline a:active, .footer-row-bottomline a:focus {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
}


/* Back to top */
#back-to-top {
	display: block;
	visibility: hidden;
	position: fixed;
	bottom: -50px;
	right: 20px;
	z-index: 9999;
	width: 40px;
	height: 40px;
	font-size: 20px;
	text-align: center;
	line-height: 40px;
	background: #d21;
	color: rgba(255, 255, 255, 0.8);
	cursor: pointer;
	border: 0;
	text-decoration: none;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: var(--border-radius-max);
	opacity: 0;
	transition: all ease 0.25s;
}
#back-to-top.btt-visible {
	visibility: visible;
	bottom: 20px;
	opacity: 0.5;
}
#back-to-top.btt-visible:hover, #back-to-top.btt-visible:active, #back-to-top.btt-visible:focus {
	opacity: 1;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}


/* Site map */
.site-map-tree {
}
.site-map-tree > li > div {
	padding-bottom: 5px;
}
.site-map-tree h2, .site-map-tree h3, .site-map-tree h4, .site-map-tree h5, .site-map-tree h6 {
	margin: 0;
	padding: 0 0 5px 0;
	font-size: 20px;
	line-height: 24px;
	font-weight: bold;
	border: none;
}
.site-map-tree p {
	margin: 0;
	padding: 0;
}


/* Detail-table */
.detail-table {
	width: auto;
	border-collapse: collapse;
	margin-bottom: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	font-size: 16px;
}
.detail-table > tr, .detail-table > tbody > tr {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.detail-table > tr:nth-child(odd), .detail-table > tbody > tr:nth-child(odd) {
	background: rgba(0, 0, 0, 0.05);
}
.detail-table td, .detail-table th {
	padding: 5px 5px;
}
.detail-table th {
	vertical-align: bottom;
}
.detail-table td {
	vertical-align: top;
}
.detail-table-icon-16, .detail-table-icon-24, .detail-table-icon-36, .detail-table-icon-48, .detail-table-icon-60 {
	display: block;
	height: auto;
}
.detail-table-icon-16 {
	width: 16px;
}
.detail-table-icon-24 {
	width: 24px;
}
.detail-table-icon-36 {
	width: 36px;
}
.detail-table-icon-48 {
	width: 48px;
}
.detail-table-icon-60 {
	width: 60px;
}


/* Cookie consent preferences */
#cookie-consent-preferences {
	position: fixed;
	z-index: 99;
	left: 0;
	bottom: 0;
	padding: 0;
}
#cookie-consent-preferences button {
	border: none;
	padding: 0;
	margin: 0;
	width: 32px;
	height: 32px;
	font-size: 16px;
	border-top-right-radius: 5px;
	background: #eee;
	color: #777;
}
#cookie-consent-preferences button:hover, #cookie-consent-preferences button:active, #cookie-consent-preferences button:focus {
	transition: all ease 0.25s;
	background: ddd;
	color: #333;
}

.panel, .floating-wrapper, .lithea-page-content {
	background: var(--floating-wrapper-background);
	border: var(--floating-wrapper-border);
	border-radius: var(--border-radius-normal);
	box-shadow: var(--floating-wrapper-shadow);
}
.floating-wrapper, .lithea-page-content {
	padding: var(--floating-wrapper-padding);
}
.floating-wrapper + .floating-wrapper {
	margin-top: var(--floating-wrapper-margin);
}
.modal-body {
	border-radius: var(--border-radius-normal);
}
.form-control {
	border-radius: var(--border-radius-small);
	padding: 0 14px;
	border-color: hsl(212, 15%, 85%);
}
textarea.form-control {
	padding: 8px 14px;
	border-radius: 17px;
}
.form-hint-block {
	padding-left: 10px;
}
.btn, .form-control, .input-group-addon {
	border-radius: var(--border-radius-max);
	transition: all ease 0.25s;
}
.btn {
	padding-left: 17px;
	padding-right: 17px;
}
.modal-content, .panel, legend {
	border-radius: var(--border-radius-normal);
}
.modal-header, .panel-heading {
	border-top-left-radius: var(--border-radius-normal);
	border-top-right-radius: var(--border-radius-normal);
}
.modal-footer, .panel-footer {
	border-bottom-left-radius: var(--border-radius-normal);
	border-bottom-right-radius: var(--border-radius-normal);
}
.panel-heading {
	padding: var(--floating-wrapper-padding);
	border-bottom: 1px solid #ddd;
}
.panel-default > .panel-heading, .panel-default > .panel-footer {
	padding: var(--floating-wrapper-padding);
	background: #fff;
}

/* Account */
.field-fmregister-captcha > img {
	display: inline-block;
	padding-bottom: 5px;
}
.login-logo {
	margin: 15px auto;
	max-width: 250px;
}
.account-page-wrapper {
	padding: 30px 15px 15px 15px;
	background: #fff;
}
.nav-tabs > li > a.account-nav-tab {
	display: flex;
	gap: 5px;
}
.account-nav-icon {
}
.account-nav-label {
	font-weight: normal;
}
@media (max-width: 639px) {
	.account-nav-label {
		display: none;
	}
}


/* Homepage */
.lithea-page-home {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	box-shadow: none;
}
.content-body--home {
	padding: 0;
}


/* Pages */
.content-wrapper--page {
	/* background: #fff; */
}
.content-wrapper--home > .body-width-limiter {
	max-width: unset;
}

/* Banners */
.banner-container-page-top {
	padding: 15px;
}
.internal-banner-container {
	border-radius: var(--border-radius-normal);
	box-shadow: var(--floating-wrapper-shadow);
	overflow: hidden;
}

/* Select2 */
.select2-container--bootstrap .select2-selection {
	border-radius: 17px;
	padding: 0 17px;
	line-height: 34px;
}
.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
	border-radius: 17px;
	padding: 0 17px;
	height: 34px;
}
.select2-dropdown--below {
	border-bottom-left-radius: 17px;
	border-bottom-right-radius: 17px;
}
.select2-dropdown--above {
	border-top-left-radius: 17px;
	border-top-right-radius: 17px;
}
.select2-container--bootstrap .select2-results > .select2-results__options {
	max-height: 278px;
}
.select2-container--bootstrap .select2-results__option {
	padding: 4px 17px;
}

/* Phone number input */
.pni-search-input-group {
	padding: 4px;
	background: #fff;
}
.pni-search-wrapper input {
	height: 30px;
	padding: 0px 15px;
	border: 1px solid #ccc;
	border-right: none;
	border-radius: 15px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.pni-search-wrapper .input-group-addon {
	/* It is an anchor */
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 15px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.pages-slide-container {
	position: relative;
	width: 100%;
	height: 900px;
	overflow: hidden;
}
.pages-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.pages-slider-overlay {
	position: absolute;
	top: 0;
	background: rgba(0,0,0,0.4);
	width: 100%;
	height: 900px;
	z-index: 9;
}
.content-wrapper--page .pages-slider-overlay,
.content-wrapper--search .pages-slider-overlay,
.content-wrapper--support .pages-slider-overlay,
.content-wrapper--products .pages-slider-overlay {
	height: 300px;
}

.content-wrapper--page .pages-slide-container,
.content-wrapper--search .pages-slide-container,
.content-wrapper--support .pages-slide-container,
.content-wrapper--products .pages-slide-container {
	height: 300px;
}
.content-wrapper--home > .pages-slide-container {
	display: none;
}
.default-button {
	display: block;
	width: fit-content;
	padding: 10px 20px;
	margin: 20px;
	color: rgba(255,255,255,0.8);
	background: var(--color-primary);
	border-radius: var(--border-radius-small);
	transition: all ease 0.25s;
}
.default-button:hover, .default-button:active, .default-button:focus {
	letter-spacing: 0.5px;
	color: rgba(255,255,255,1);
	background: var(--color-primary);
	text-decoration: none;
}

/* Animations */

.animation-below {
	animation-name: section-below;
	animation-duration: 1s;
}
.animation-below-hp-h1 {
	animation-name: section-below-hp-h1;
	animation-duration: 1s;
}
@keyframes section-below {
	0% {
		transform: translateY(3%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}
@keyframes section-below-hp-h1 {
	0% {
		transform: translateY(5%);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 0.9;
	}
}

/* Owl carousel */
.slider-wrapper {
	width: 50%;
	padding: 25px 50px;
	overflow: hidden;
}
.owl-stage-outer {
}
.owl-nav {
	top: 0;
}
.owl-nav a {
	display: block;
	position: absolute;
	top: 50%;
	width: 50px;
	height: 50px;
	line-height: 50px;
	transform: translateY(-50%);
	font-size: 54px;
	color: var(--color-primary);
	opacity: 0.5;
	text-decoration: none;
	transition: all ease 0.25s;
	text-align: center;
}
.owl-nav a:hover, .owl-nav a:active, .owl-nav a:focus {
	opacity: 0.75;
	color: var(--color-primary);
	text-decoration: none;
}
.owl-nav a.owl-prev {
	left: -50px;
}
.owl-nav a.owl-next {
	right: -50px;
}
.owl-nav .icesym {
	position: static;
}
.owl-stage {
	padding: 20px 0;
}
.owl-item .item {
	padding: 0 10px;
}
.owl-item .item a {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}
.owl-dots {
	display: flex;
	justify-content: center;
	margin: 25px 0;
}
.owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: rgba(120, 40, 70, 0.5);
	display: block;
	transition: opacity .2s ease;
	border-radius: 30px;
}

.owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
	background: rgba(120, 40, 70, 1);
}

/* Pages main sections */
.pages-main-section {
	min-height: 300px;
	padding: 50px 0;
	background: var(--color-background);
}
.pages-main-section h2 {
	display: inline-block;
	padding-bottom: 5px;
	color: var(--color-primary);
}

.pages-main-section-pink {
	background: hsl(0, 35%, 95%);
}

.pages-main-section-purple {
	background: var(--color-primary);
	color: var(--color-background);
}
.pages-main-section-heading-light {
	display: block !important;
	margin: 25px 0;
	text-align: center;
	color: var(--color-background) !important;
}
.pages-main-section-background-image {
    background-image: url('../img/pastry-shop-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.5);
	background-blend-mode: multiply;
}

/* Media queries */
@media (max-width: 760px) {
.content-wrapper--page .pages-slider-overlay,
.content-wrapper--page .pages-slide-container,
.content-wrapper--products .pages-slider-overlay,
.content-wrapper--products .pages-slide-container {
	height: 180px;
}
