@charset "utf-8";
/* CSS Document */

@font-face {
	font-family: "Sahel";
	src: url("../fonts/Sahel.ttf") format("truetype");
}

@font-face {
	font-family: "Roya";
	src: url("../fonts/B Roya.ttf") format("truetype");
}

body {
	margin-bottom: 50px;
}

.LoadingSymbol {
	position: fixed;
	float: right;
	width: 100%;
	height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
	display: none;
  z-index: 999;
}
.LoadingSymbol > img {
  position: absolute;
  top: 50%;
  left: 50%;
	width: 150px;
	height: 150px;
	transform: translate(-50%, -50%);
	display: block;
}

.persian-font {
	font-family: "Sahel";
}

.persian-font2 {
	font-family: "Roya";
}

.navbar-inverse {
	border-bottom: 1px solid #50280A;
	background-color: rgba(50, 25, 5, 0.8);
	backdrop-filter: saturate(180%) blur(20px);
	z-index: 9999;
}

.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {
	border-bottom: 1px solid #50280A;
	background-color: rgba(50, 25, 5, 0.8);
	backdrop-filter: saturate(180%) blur(20px);
	color: #c7ab90;
	z-index: 9999;
}

@supports (-webkit-backdrop-filter: saturate(180%) blur(20px)) or (backdrop-filter: saturate(180%) blur(20px)) {
	#GlobalNav {
		background: rgba(50, 25, 5, 0.9);
		-webkit-backdrop-filter: saturate(180%) blur(20px);
		backdrop-filter: saturate(180%) blur(20px)
	}
}

.nav, .navbar-nav {
	transition: 0.5s;
}

.navbar-inverse .navbar-nav>li>a {
	color: #c7ab90;
	transition: 0.3s;
}

.navbar-inverse .navbar-nav>li>a:hover {
	background-color: rgba(50, 25, 5, 0.8);
	color: #c7ab90;
}

footer {
	position: relative;
	float: right;
	clear: right;
	width: 100%;
	height: 50px;
	border-top: 1px solid #50280A;
	padding: 10px;
	background-color: rgba(50, 25, 5, 0.9);
	line-height: 30px;
	color: #c7ab90;
}

.footer-fixed-bottom {
	position: fixed;
	bottom: 0;
	margin-top: 0;
}

.content {
	position: relative;
	float: right;
}

.mainpage-fullsize-content {
	padding: 0 0 12px 0;
}

.mainpage-halfsize-content-right {
	padding: 0 12px 12px 12px;
}

.mainpage-halfsize-content-left {
	padding: 0 12px 12px 12px;
}


/*--------------------------- online store ---------------------------*/

.product-card {
	padding: 1vw;
	background-color: #ffffff;
	border: 1px solid white;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.OnlineStoreSection {
		margin: 0;
		padding: 0;
	}
	.product-card>.card-body>h2 {
		font-size: 5.5vw;
	}
	
	.product-card>.card-body>h3 {
		font-size: 4vw;
	}
	.OSCardBttn {
		font-size: 3vw;
	}
 }
@media (min-width: 768px) and (max-width: 992px) { 
	.product-card>.card-body>h2 {
		font-size: 4vw;
	}
	
	.product-card>.card-body>h3 {
		font-size: 2.5vw;
	}
	.OSCardBttn {
		font-size: 1.5vw;
	}
 }
@media (min-width: 992px) and (max-width: 1200px) { 
	.product-card>.card-body>h2 {
		font-size: 4vw;
	}
	
	.product-card>.card-body>h3 {
		font-size: 2.5vw;
	}
	.OSCardBttn {
		font-size: 1.5vw;
	}
 }
@media (min-width: 1200px) { 
	.product-card>.card-body>h2 {
		font-size: 26px;
	}
	
	.product-card>.card-body>h3 {
		font-size: 20px;
	}
	.OSCardBttn {
		font-size: 16px;
	}
 }