body{
	text-align: right;
}

h1.underline::after, h2.underline::after{
    content: '';
    width: 55px;
    height: 2px;
    background: #222;
    margin: 10px auto;
    display: block;
}
/**/

#header{
	text-align: center;
}
#header .container{
	background:var(--color1);
	color:#fff;
	font-size: 16px;
    line-height: 30px;
}
#header .container>div{
	display:flex;
	padding:5px;
	margin: auto;
	transition:0.3s;
}
@media only screen and (min-width: 820px) {
	#header .container>div{
		max-width:800px;
	}
}
@media only screen and (min-width: 1020px) {
	#header .container>div{
		max-width:1000px;
	}
}

#header .container>div .flex{
	flex:1;
}

.hide_mobile{
	margin-inline-end: 5px;
}
@media only screen and (max-width: 700px) {
	#header .hide_mobile,#header .container a.hide_mobile{
		display:none;
	}
}

#header a{
    display: inline-block;
	position: relative;
	padding: 0px 10px;
    color: #fff;
	text-decoration: none;
    transition: 0.2s;
	direction: ltr;
}
#header a:hover{
	transform: scale(1.2);
}

#header icon{
	vertical-align: middle;
}

/**/
#menu{
    position: relative;
	z-index: 2;
	height: 0px;
}
nav{
	font-weight: bold;
}
/*@media only screen and (min-width: 701px) {
	#menu{
		height: 0px;
	}
}*/
#menu nav{
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	height: 50px;
	background: var(--menu-mobile-background);
	box-shadow: 0 10px 10px -10px #00000080;
}
#menu nav.sticky{
	position: fixed;
    width: 100%;
    top: 0px;
}
@media only screen and (min-width: 700px) {
	#menu nav{
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		backdrop-filter: saturate(180%) blur(20px);
	}
}
#menu nav>ul{
	flex:1;
}
@media only screen and (min-width: 820px) {
	#menu nav>ul{
		max-width:800px;
	}
}
@media only screen and (min-width: 1020px) {
	#menu nav>ul{
		max-width:1000px;
	}
}

.menu_only{
	margin:0px 10px;
	vertical-align: text-bottom;
}
@media only screen and (min-width: 701px) {
	.menu_only{
		display:none;
	}
}

#menu .logo a{
	text-align: center;
	direction: ltr;
}
#menu .logo a img,#menu .mobileMenu a img{
	height: 30px;
	padding:0px;
	vertical-align:bottom;
    transition: 0.3s;
	/*filter: grayscale(100%) brightness(500%);*/
}
#menu .logo a:hover img,#menu .mobileMenu a:hover img{
	filter: none;
}
#menu .mobileMenu a{
	margin:auto;
}

/**/
.page-title{
	height: 300px;
	display: flex;
	padding-top: 30px;
	/*border-bottom: solid 10px #124bd3;*/
	align-items: center;
	justify-content: center;
	color: #fff;
	text-shadow: 0 0 5px #000;
	background-color: #222;
	background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
	transition-duration: 0.3s;
}
.page-title h1{
	color: #fff;
}
@media only screen and (max-width: 700px) {
	.page-title{
		height: 150px;
	}
}


/**/
#content{
	min-height: 800px;
	font-size: 18px;
    color: #222;
}

/**/
.summary{
	display: inline-block;
    padding: 15px;
	border-radius: 3px;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    position: relative;
}
.summary::before {
    content: " ";
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    box-shadow: 0px 0px 40px #00000011 inset;
	z-index: -1;
}
.summary a {
    display: block;
	padding: 5px 10px;
    color: var(--color1);
    text-decoration: underline;
}
.summary a:hover {
    text-decoration: none;
}

/**/
#content .page-image{
	float: none;
	margin: auto;
	display: block;
}
@media only screen and (min-width: 550px) {
	#content .page-image{
		float: right;
	}
}

/**/
#content .container{
	margin: auto;
	padding:15px;
	transition:0.3s;
}
@media only screen and (min-width: 820px) {
	#content .container{
		max-width:800px;
	}
}
@media only screen and (min-width: 1020px) {
	#content .container{
		max-width:1000px;
	}
}
.container h1, .container h2{
	text-align: center;
}

#content .no-page-image{
    margin-top: 50px;
}

#content img{
	max-width:100%;
}

/**/
#footer{
	line-height:22px;
}
#footer div.logo{
    text-align: center;
}
#footer .logo a{
	font-family: 'Source Sans Pro', sans-serif!important;
	font-size:22px;
}
#footer .logo a:hover{
	text-decoration: none;
}
#footer .logo a img{
	vertical-align:middle;
	height: 80px;
    filter: grayscale(100%) brightness(500%);
	opacity: 0.7;
    transition: 0.2s;
}
#footer .logo a:hover img{
    filter: none;
	opacity: 1;
}
#footer .logo p{
	color:#aaa;
}

/**/
#footer .haanoot {
    display: block!important;
    min-width: 100%!important;
    border: none!important;
    margin: 30px 0 0!important;
    text-align: center;
    box-sizing: border-box;
}
#footer .haanoot a {
    text-align: center;
    font-size: 10px;
    padding: 5px 0 0;
}

.center{
	text-align:center;
}

/**/
.products{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	width: 100%;
	justify-content: center;
}

.products a{
	position: relative;
	display: flex;
	flex: 1;
	flex-direction: column;
    min-width: 150px;
    max-width: 300px;
	margin: 5px;
    border-radius: 3px;
    background: #fff;
    object-fit: cover;
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 30%);
	text-decoration: none;
    color: #333;
    transition: 0.2s;
}
.products a:hover {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 20%);
}
.products a>*{
	display: block;
}
.products a img{
	width: 100%;
    border-radius: 3px 3px 0px 0px;
    object-fit: cover;
}
.products a h2{
	margin: 0px;
	padding: 10px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}
.products a p{
	margin: 0px;
    padding: 10px;
}

.products .price{
	margin: 5px;
    padding: 10px;
    background: #f57400;
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    border-radius: 5px;
    color: #fff;
}
/**/
.product_images{
    display: block;
	width: 100%;
	min-width: 300px;
	max-width: 400px;
    padding: 10px;
	padding-bottom: 25px;
    box-shadow: 0 5px 20px -5px rgb(0 0 0 / 33%);
	box-sizing: border-box;
}
@media only screen and (min-width: 700px) {
	.product_images{
		float: left;
	}
}


.product_images carousel{
	display: none;
	
}
.product_images_thumbnails{
	width: 100%;
	height: 400px;
}

.product_images_thumbnails .product_image img{
	width: 100%;
	max-width: 100%;
	height: 400px;
    object-fit: cover;
}

.product_images_thumbnails.owl-theme .owl-nav{
	position: absolute;
    display: flex;
    width: 100%;
    height: 0px;
    margin: 0px;
    justify-content: space-between;
}
.product_images_thumbnails.owl-theme .owl-nav button, .product_images_thumbnails.owl-theme .owl-nav [class*=owl-]{
	position: relative;
    top: -220px;
    width: 40px;
    height: 40px;
    background: #ffffff!important;
    border-radius: 5px;
    display: block;
    cursor: pointer;
    margin: 0px;
    font-size: 30px!important;
    line-height: 30px!important;
    color: #000!important;
    transition: 0.2s;
    box-shadow: 0 1px 5px #00000052;
}
.product_images_thumbnails.owl-theme .owl-nav button:hover, .product_images_thumbnails.owl-theme .owl-nav [class*=owl-]:hover{
	transform: scale(1.1);
}


.product_images_full.owl-carousel.owl-loaded {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    background: #000000c4;
	z-index: 500;
}
.product_images_full .owl-stage-outer, .product_images_full .owl-stage, .product_images_full .owl-item{
    height: 100%;
}
.product_image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.product_images_full .product_image img{
	width: 100%;
	object-fit: contain;
    max-height: 100%;
}

.product_images_full.owl-theme .owl-nav{
	position: absolute;
    display: flex;
    width: 100%;
    height: 0px;
    margin: 0px;
    justify-content: space-between;
}
.product_images_full.owl-theme .owl-nav button, .product_images_full.owl-theme .owl-nav [class*=owl-]{
	position: relative;
    top: -50vh;
    width: 50px;
    height: 50px;
    background: #ffb300!important;
    border-radius: 25px;
    display: block;
    cursor: pointer;
    margin: 0px 10px;
    /* border: solid 4px #00713d9c!important; */
    font-size: 30px!important;
    line-height: 30px!important;
    color: #000!important;
    transition: 0.2s;
    box-shadow: 0 1px 5px #000;
}
.product_images_full.owl-theme .owl-nav button:hover, .product_images_full.owl-theme .owl-nav [class*=owl-]:hover{
	transform: scale(1.2);
}

.product_images_close{
	position: fixed;
    z-index: 501;
    left: 20px;
    top: 20px;
    border: none;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    font-size: 36px;
    color: #000;
    background: #ffb300;
    line-height: 40px;
    transition: 0.2s;
    margin: 0px;
    padding: 0px;
    box-sizing: content-box;
    cursor: pointer;
    box-shadow: 0 1px 5px #000;
}
.product_images_close:hover{
	transform: scale(1.2);
}
/**/
haanoot-express-order{
	display: block;
    margin: 0px;
    max-width: 500px;
}
@media only screen and (min-width: 700px) {
	haanoot-express-order{
		float: right;
	}
}
/**/
.product_description{
	clear:both;
}
.product_description iframe {
    display: block;
    width: 100%;
    height: 56vw;
	max-height: 563px;
    margin: auto;
}
.product_description img{
	display: block;
	max-width:100%;
	margin:10px auto;
}

/**/
.reassurance{
	background: #061163;
}
.reassurance .container{
	padding-bottom: 0px!important;
}
.reassurance img{
	display: block;
}