/* region global-nav */
section#global-nav nav {
	font-family: var(--default-font);
	z-index: 1;
}

.global-nav__nav-grid {
	display: grid;
	grid-template-columns: repeat(40, 1fr);
	grid-template-rows: 1fr;
	grid-auto-flow: column;
	align-self: center;
}

section#global-nav nav li {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.global-nav__collapsible-bar__anchor {
	color: var(--nav-font-color);
	padding: 20px 10px 5px 10px;
	line-height: 19px;
	font-weight: 600;
	letter-spacing: -0.5px;
	text-decoration: none;
}

html[dir='ltr'] .global-nav__collapsible-bar__anchor {
	padding: 14px 10px 5px 10px;
}

.global-nav__collapsible-bar__anchor.active {
	color: var(--nav-font-color-hover);
}

.global-nav__collapsible-bar__anchor:hover {
	color: var(--nav-font-color-hover);
}

.global-nav__btn-holder {
	align-self: center;
	align-content: center;
	grid-column: 29 / 39;
	grid-row: 1;
	display: flex;
	justify-content: end;
}

.global-nav__btn-holder > * {
	align-self: center;
	margin-right: 10px;
}

.global-nav__logo-typography {
	display: none !important;
}

.global-nav__shop-cart-toggle > i {
	position: relative;
}

.global-nav__shop-cart-toggle > i > img {
	position: relative;
	z-index: 0;
}

img.global-nav__shop-cart-toggle__img_cart {
	display: block;
	cursor: pointer;
}

img.global-nav__shop-cart-toggle__img_cart--light {
	display: none;
	cursor: pointer;
}

.global-nav__shop-cart-toggle > i > span.badge {
	font-family: var(--default-font);
	font-style: normal;
	background-color: #C80540;
	width: 20px;
	display: inline-block;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
	z-index: 1;
	top: 14px;
	left: 20px;
}

@-moz-document url-prefix() {
	.global-nav__shop-cart-toggle > i > span.badge {
		top: 13px;
		left: -12px;
	}
}

.global-nav__hamburger-toggle {
	display: none;
	cursor: pointer;
}

.global-nav__collapsible-bar__logo {
	margin-left: 15px;
	place-self: center;
	width: 160px;
	cursor: pointer;
}

.global-nav__collapsible-bar__logo > img {
	max-width: 100%;
	height: auto;
}

.global-nav__logo-typography img {
	width: auto;
	height: 38px;
	cursor: pointer;
	margin: 0 auto;
	max-width: 180px;
}

.global-nav__collapsible-bar {
	grid-column: 1 / 25;
	margin-top: 15px;
	font-size: 16px;
	grid-row: 1;
}

html[dir='rtl'] .global-nav__collapsible-bar {
	padding-left: 0;
}

html[dir='ltr'] .global-nav__collapsible-bar {
	padding-right: 0;
}

.offcanvas-start {
	z-index: 10000000000;
	max-width: 75vw;
	animation: all ease-in-out 1s;
}

.offcanvas hr {
	/*margin: 0 0 30px;*/
}

.offcanvas .a_account-btn {
	color: var(--btn-primary-color);
	font-weight: bold;
	/*margin-bottom: 50px;*/
}

.offcanvas .a_shop-btn {
	color: var(--btn-special-color);
	font-weight: bold;
	/*margin-bottom: 50px;*/
}

.offcanvas-header {
	margin-bottom: 10px;
}

.offcanvas-body {
	overflow-x: hidden;
	overflow-y: auto;
	padding: 0;
	font-weight: 600;
	font-size: 18px;
	font-family: var(--default-font);
	line-height: 19px;
	letter-spacing: -0.5px;
	text-transform: none;
	text-decoration: none;
}

.offcanvas-body a {
	color: var(--nav-font-color);
	display: block;
	font-weight: 300;
	text-decoration: none;
	text-align: start;
	width: 400px;
	margin-bottom: 25px;
	margin-top: 25px;
	margin-right: 30px;
}

html[dir="ltr"] .offcanvas-body a {
	margin-right: unset;
	margin-left: 30px;
}

.offcanvas-body li {
	list-style-type: none;
	width: 400px;
	cursor: pointer;
}

.offcanvas-body li:hover, .offcanvas-body li:focus {
	background-color: #d3d3d3;
}

.offcanvas-end {
	max-width: 75vw;
	animation: all ease-in-out 1s;
}

.offcanvas-body .shop-canvas-container {
	position: absolute;
	display: flex;
	justify-content: center;
	margin: 10px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.offcanvas-body .shop-canvas__empty-background {
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 95%;
	text-align: center;
}

.offcanvas-body .shop-canvas__empty-background img {
	opacity: 0.7;
	min-width: 200px;
}

.offcanvas-body .shop-canvas__empty-background h2 {
	font-family: var(--default-font);
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
	letter-spacing: 0;
	padding: 0 0 0 0;
	border-radius: 0 0 0 0;
	max-width: 680px;
	margin-top: -5px;
	margin-bottom: 20px;
}

@media only screen and (max-width: 1313px) {
	.global-nav__shop-cart-toggle > i > span.badge {
		top: 15px;
		left: -5px;
	}

	.global-nav__btn-holder .global-nav__shop-cart-toggle, .global-nav__btn-holder .global-nav__shop-cart-toggle i {
		margin-right: 0;
	}
}

@supports (-moz-appearance:none) {
	@media only screen and (max-width: 1313px) {
		.global-nav__shop-cart-toggle > i > span.badge {
			top: 30px;
			left: -35px;
		}
	}
}


@media only screen and (max-width: 1125px) {
	.global-nav__collapsible-bar {
		display: none !important;
	}

	.global-nav__hamburger-toggle {
		display: block;
		align-self: center;
		grid-column: 2 / 3;
	}

	.global-nav__hamburger-toggle__img_hamburger {
		display: block;
	}

	.global-nav__hamburger-toggle__img_hamburger--light {
		display: none;
	}

	.global-nav__account-btn, .global-nav__shop-btn {
		display: none !important;
	}

	.global-nav__logo-typography img {
		width: auto;
		height: 38px;
		max-width: 180px;
	}

	.global-nav__logo-typography {
		display: block !important;
		font-family: var(--default-font);
		font-size: 28px;
		text-align: center;
		font-weight: 600;
		color: #08416E;
		line-height: 60px;
		letter-spacing: -1.1px;
		padding: 0 0 0 0;
		border-radius: 0 0 0 0;
		min-width: 160px;
		grid-column: 16 / 26;
		grid-row: 1;
		place-self: center;
	}
}

@media only screen and (max-width: 768px) {
	.div_nav-logo {
		grid-column: 17 / 25;
	}

	.global-nav__btn-holder-right {
		align-self: center;
		align-content: center;
		grid-column: 3 / 16;
		display: flex;
		justify-content: end;
	}

	.global-nav__btn-holder {
		align-self: center;
		align-content: center;
		grid-column: 32 / 39;
		display: flex;
	}
}

@media only screen and (max-width: 550px) {
	.global-nav__nav-grid {
		display: grid;
		grid-template-columns: 1fr 2fr 6fr 2fr 1fr;
	}

	.global-nav__btn-holder {
		grid-column: 4;
	}

	.global-nav__animated-headline {
		min-width: 240px;
	}

	.global-nav__logo-typography,
	.global-nav__animated-headline,
	h3.global-nav__fixed-headline {
		grid-column: 3;
	}

	.global-nav__hamburger-toggle {
		grid-column: 2;
	}

	.global-nav__btn-holder {
		font-size: 12px;
	}
}

@media only screen and (max-width: 480px) {
	img.global-nav__shop-cart-toggle__img_cart--light {
		width: 35px;
		aspect-ratio: 1 / 1;
		display: block;
	}

	.global-nav__hamburger-toggle__img_hamburger--light {
		width: 30px;
		aspect-ratio: 1 / 1;
	}
}

/* endregion */

/* region global-footer */
footer#global-footer {
	display: block;
	position: absolute;
	width: 100vw;
	background-image: linear-gradient(252deg, #0e79b6 0%, #174773 100%);
	margin-top: 120px;
	padding: 30px 0 0;
	overflow-x: hidden;
	overflow-y: hidden;
}

.global-footer__first-container {
	text-align: justify;
	place-content: center;
	display: flex;
	flex-direction: column;
	width: 60vw;
	max-width: 1000px;
	margin: 0 auto 10px;
}

.global-footer__first-container img {
	max-width: 680px;
	margin: 0 auto 10px;
	max-height: 60px;
}

.global-footer__first-container h3 {
	margin-top: 10px;
	margin-bottom: 20px;
	text-align: center;
	font-family: Aviny, Bungee, serif;
	color: #fff;
	font-size: 42px;
	font-weight: 300;
	line-height: 48px;
	direction: var(--default-direction);
	unicode-bidi: embed;
}

.global-footer__first-container p {
	margin: 0 auto;
	font-family: var(--default-font);
	color: #fff;
	font-size: 16px;
	font-weight: 300;
	line-height: 36px;
	direction: var(--default-direction);
	unicode-bidi: embed;
	text-align: center;
}

@property --dl-btn-color1 {
	syntax: '<color>';
	initial-value: white;
	inherits: false;
}

@property --dl-btn-color2 {
	syntax: '<color>';
	initial-value: white;
	inherits: false;
}

@-moz-document url-prefix() {
	:root {
		--dl-btn-color1: white;
		--dl-btn-color2: white;
	}
}

.global-footer__download-btn-holder .play-store, .global-footer__download-btn-holder .apple-store {
	--dl-btn-color1: white;
	--dl-btn-color2: white;
	background: white;
	box-shadow: 0px 0px 24px 1px rgba(121, 160, 190, 0.24);
	border-radius: 22.5px 22.5px 22.5px 22.5px;
	place-content: center;
	margin-right: 1em;
	margin-left: 1em;

	cursor: pointer;

	background: linear-gradient(to right, var(--dl-btn-color1) 0%, var(--dl-btn-color2) 100%);
	transition: --dl-btn-color1 0.5s linear, --dl-btn-color2 0.5s linear;
}

.global-footer__download-btn-holder .play-store:hover > img, .global-footer__download-btn-holder .apple-store:hover > img {
	/*	filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(70deg) brightness(99%) contrast(107%);*/
	filter: brightness(0) invert(1);
}


.global-footer__download-btn-holder .play-store:hover, .global-footer__download-btn-holder .apple-store:hover {
	--dl-btn-color1: #4e9ce3;
	--dl-btn-color2: #7dabde;
}

.global-footer__download-btn-holder .play-store img, .global-footer__download-btn-holder .apple-store img {
	height: 60px;
	width: 200px;
	margin: 20px 30px 20px 30px;
}

@media only screen and (max-width: 820px) {
	.global-footer__download-btn-holder .play-store img, .global-footer__download-btn-holder .apple-store img {
		height: 50px;
		width: 166px;
	}
}


.global-footer__contact-container {
	display: flex;
	flex-direction: column;
	margin: 0 var(--section-margin) 0 var(--section-margin);
	line-height: 35px;
	margin-bottom: 30px;
}

.global-footer__contact-container a {
	text-decoration: none;
	margin-top: 15px;
	display: flex;
}

.global-footer__contact-container .a {
	text-decoration: none;
	margin-top: 15px;
	display: flex;
}

.global-footer__contact-container a i {
	margin-left: 15px;
}

html[dir='ltr'] .global-footer__contact-container a i {
	margin-left: 0;
	margin-right: 15px;
}

.global-footer__contact-container .a i {
	margin-left: 15px;
}

html[dir='ltr'] .global-footer__contact-container .a i {
	margin-left: 0;
	margin-right: 15px;
}

.global-footer__contact-container a i img {
	width: 30px;
	height: 30px;
	margin: 0 auto;
}

.global-footer__contact-container .a i img {
	width: 30px;
	height: 30px;
	margin: 0 auto;
}

.global-footer__contact-container h2,
.global-footer__social-container h2 {
	color: white;
	font-family: var(--default-font);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0;
	padding: 0 0 0 0;
	border-radius: 0 0 0 0;
	text-align: right;
}

html[dir='ltr'] .global-footer__contact-container h2,
html[dir='ltr'] .global-footer__social-container h2 {
	text-align: left;
}

.global-footer__contact-container p {
	display: inline-block;
	font-family: var(--default-font);
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	line-height: 23px;
	direction: var(--default-direction);
	unicode-bidi: embed;
	text-align: justify;
	margin: auto 0;
}

.global-footer__contact-container p > a {
	display: inline-block;
	font-family: var(--default-font);
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	line-height: 23px;
	direction: var(--default-direction);
	unicode-bidi: embed;
	text-align: justify;
	margin: auto 0;
}

@media only screen and (max-width: 1080px) {
	.global-footer__social-container {
		margin-top: 2em;
		justify-content: center;
	}
}

.global-footer__social-container {
	height: auto;
	display: flex;
	margin: 0 var(--section-margin) 0 var(--section-margin);
	line-height: 35px;
	margin-bottom: 30px;
	min-width: 300px;
}

.global-footer__social-container__icons > a {
	text-decoration: none;
	background-color: transparent;
	border-radius: 10px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.global-footer__social-container__icons > a:hover {
	background-color: white;
}

.global-footer__social-container__icons > a > img {
	margin: auto;
	width: 30px;
	height: 30px;
}

.global-footer__social-container__icons > a:hover > img {
	filter: invert(33%) sepia(99%) saturate(852%) hue-rotate(170deg) brightness(91%) contrast(91%);
}

.global-footer__social-container__icons > span {
	width: 10px;
	aspect-ratio: 1 / 1;
	display: block;
}

.right-and-policy-footer {
	text-align: center;
	text-decoration: none;
	color: white;
	background-color: transparent;
	width: unset;
	margin: 0 var(--section-margin) 20px var(--section-margin);
	font-size: 14px;
	font-weight: 300;
}

.right-and-policy-footer > p:first-of-type {
	margin-left: 20px;
}

html[dir='ltr'] .right-and-policy-footer > p:first-of-type {
	margin-left: 0;
	margin-right: 20px;
}

.right-and-policy-footer a {
	color: white;
	background-color: transparent;
	border-bottom: 1px solid white;
	cursor: pointer;
	text-decoration: none;
}
.right-and-policy-footer span {
	margin-left: 5px;
	margin-right: 7px;
	font-size: 14px;
	font-weight: 600;
}

@media only screen and (min-width: 1000px) {
	.right-and-policy-footer {
		display: flex;
		justify-content: center;
	}
}

@media only screen and (max-width: 500px) {
	.right-and-policy-footer > p:first-of-type {
		margin-left: unset;
	}

	.right-and-policy-footer {
		width: calc(100vw - 80px - calc(var(--section-margin) / 2));
	}
}
/* endregion */

/* region shapes */
.home-shapes {
	pointer-events: none;
	opacity: 0.3;
	/*display: none;*/
}

@media only screen and (max-device-width: 1024px) {
	.home-shapes {
		display: none;
	}
}

.home-footer-shape_1 {
	max-width: 240px;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 1%;
}

.home-footer-shape_2 {
	display: none;
	max-width: 240px;
	z-index: 0;
	position: absolute;
	top: 70px;
	right: 5%;
}

.home-footer-shape_3 {
	display: none;
	max-width: 240px;
	z-index: 0;
	position: absolute;
	top: 220px;
	left: 10%;
}

.home-footer-shape_4 {
	max-width: 240px;
	z-index: 0;
	position: absolute;
	top: 0;
	right: 2%;
}

@media only screen and (max-width: 800px) {
	.home-footer-shape_4 {
		display: none;
	}
	.home-footer-shape_1 {
		display: none;
	}
}

/* endregion */


/* region sweetalert2 */
.round-popup-class .swal2-popup {
	padding-bottom: 0 !important;
	border-radius: 30px !important;
	min-height: 200px !important;
	max-width: 330px !important;
}

.round-popup-class .swal2-actions {
	width: 100% !important;
	height: 50px !important;
}

.round-popup-class .swal2-actions .swal2-confirm {
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 0 0 30px 30px !important;
	background-color: var(--btn-primary-color) !important;
}
/* endregion */
