﻿body {
	font-family: Vazir;
	font-size: 14px;
	margin: 0;
	color: #000;
	padding-bottom: 50px;
	/*padding-top: 45px;*/
	/*background-color: #fafafc;*/
	background-color: #fff;
}

.master-sidebar {
	background-color: #fff;
	width: 75%;
	color: #fff;
	position: fixed;
	top: 0;
	z-index: 100;
	transform: translate(0%,0px);
	transition: all 0.5s ease-in-out;
	display: flex;
	flex-direction: column;
	box-shadow: 0 5px 10px rgba(0,0,0,0.5);
}

	.master-sidebar.active {
		-webkit-transform: translate(0%,0px);
		transform: translate(150%,0px);
		transition: all 0.5s ease-in-out;
	}

	.master-sidebar header {
		background-color: #232323;
		padding: 10px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}

.sidebar-overlay {
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: rgba(0, 0, 0, 0.5);
}

.btn-close-sidebar {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	background: none;
	color: rgba(0,0,0,0.3);
	font-size: 26px;
	width: 30px;
	height: 30px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-align: center;
	z-index: 2;
}

.sidebar-profile-box {
	background-color: #4d9368;
	padding: 20px 10px;
	border-bottom: 1px solid #eee;
	position: relative;
}

.sidebar-profile {
	display: flex;
	align-items: center;
}

.sidebar-avatar-box {
	height: 50px;
	width: 50px;
	overflow: hidden;
	border-radius: 30px;
	margin-left: 10px;
}

	.sidebar-avatar-box img {
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

.sidebar-user {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: right;
}

.sidebar-username {
	color: #fff;
	font-family: Vazir-M;
	font-size: 16px;
}

.sidebar-rolename {
	color: #bcdcc8;
}

.sidebar-btn-logout {
	background-color: #fff;
	padding:10px ;
	border: none;
	outline: none;
	border-top:1px solid #eee;
	display: flex;
	align-items: center;
	color: #ff1744;
	font-size: 14px;
	width:100%;
}

	.sidebar-btn-logout i {
		height: 26px;
		width: 26px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
	}

.sidebar-menu-container {
	overflow: auto;
}

	.sidebar-menu-container > li > a {
		padding: 12px 15px;
		color: #000;
		display: block;
		font-size: 14px;
	}

		.sidebar-menu-container > li > a > i {
			vertical-align: middle;
			margin-left: 10px;
			font-size: 16px;
			position: relative;
		}

		.sidebar-menu-container > li > a > .fa-users-add::after {
			content: "";
			position: absolute;
			left: -8px;
			top: -7px;
			color: #000;
			font-size: 14px;
			font-weight: bold;
		}

.page-header {
	background-color: #4d9368;
	padding: 0 10px;
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: Vazir-M;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 16px;
	z-index:2;
}

	.page-header a {
		color: #fff;
		font-size: 24px;
		outline: none !important;
		text-decoration: none !important;
	}

a, .btn {
	outline: none !important;
}

button {
	outline: none !important;
	background: none;
	border: none;
}

ul, ol {
	padding: 0;
}

.dir-ltr {
	direction: ltr;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Vazir;
}

a, button, input[type=button] {
	outline: none !important;
	text-decoration: none !important;
}

.img-contain {
	height: 100%;
	width: 100%;
	object-fit: contain;
}

.img-cover {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.vm {
	font-family: Vazir-M;
}

.vb {
	font-family: Vazir-B;
}
/************** public **************/
.dir-ltr {
	direction: ltr;
}

.dir-rtl {
	direction: rtl;
}

.tahoma {
	font-family: Tahoma !important;
}

.vazir-m {
	font-family: Vazir-M !important;
}

.text-white {
	color: #fff;
}

.text-black {
	color: #000;
}

.text-red {
	color: #f00;
}

.text-green {
	color: #339933;
}

.text-blue {
	color: #00f;
}

.text-gray {
	color: #999;
}

.text-orange {
	color: #ff8400;
}
/***************************/

.modal-content {
	border-radius: 15px;
}

.modal-dialog-center {
	margin: 0;
	position: absolute;
	width: 95%;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) !important;
}



.modal-text-alert {
	margin-bottom: 40px;
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	font-family: Vazir-M;
}

.modal-btn-box {
	text-align: center;
}

	.modal-btn-box .btn, .modal-btn-box .btn:focus {
		width: 100px;
		height: 40px;
		box-shadow: none;
		font-size: 14px;
		border-radius: 15px;
		margin: 0 10px;
		outline: none !important;
	}

	.modal-btn-box .btn-submit {
		background-color: #00c853;
		border-color: #00c853;
	}

	.modal-btn-box .btn-cancel, .modal-btn-box .btn-cancel:hover, .modal-btn-box .btn-cancel:focus {
		background-color: #ff1744;
		border-color: #ff1744;
		color: #fff;
	}

.modal:nth-of-type(even) {
	z-index: 1052 !important;
}

.modal-backdrop.show:nth-of-type(even) {
	z-index: 1051 !important;
}

.site-container {
	max-width: 480px;
	margin: auto;
	/*width: 100%;
	overflow: auto;
	position: relative;
	display: flex;
	flex-direction: column;*/
}

.ajaxloading {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

	.ajaxloading img {
		width: 50px;
		height: 50px;
	}

.header-box {
	background-color: #0263ca;
	padding: 0 5px;
	z-index: 99;
	position: fixed;
	top: 0;
	width: 100%;
}

.sticky {
	/*max-width: 480px;*/
}

.header-top {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	overflow: hidden;
	background-color: #eb153f;
}

	.header-top a {
		text-align: center;
		display: block;
		overflow: hidden;
		height: 35px;
		padding: 2px 0;
		flex: 1;
	}

.header-username {
	flex: 1;
	justify-content: flex-start;
	display: flex;
	align-items: center;
	padding-right: 10px;
	color: #fff;
	font-family: Vazir-M;
	font-size: 10px;
}

	.header-username i {
		margin-left: 5px;
	}

.signout-container {
	flex: 1;
	justify-content: flex-end;
	display: flex;
	align-items: center;
	padding-left: 10px;
	color: #fff;
}



.header-top a img {
	height: 100%;
	object-fit: contain;
}

.header-row {
	display: flex;
	padding: 0 5px;
	z-index: 99;
}

.header-right {
	height: 45px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex: 5;
	overflow: hidden;
}

.header-left {
	height: 45px;
	flex: 4;
	display: flex;
	flex-direction: row;
	list-style: none;
	justify-content: space-between;
	margin-bottom: 0;
}

	.header-left li {
		width: 33.33%;
		position: relative;
	}

		.header-left li a {
			color: #fff;
			display: block;
			text-align: center;
			line-height: 45px;
			font-size: 20px;
		}

		.header-left li span:not(.basket-count) {
			color: #fff;
			display: block;
			text-align: center;
			line-height: 45px;
			font-size: 20px;
			cursor: pointer;
		}

		.header-left li .fa-cart {
			font-size: 24px;
		}

.basket-count {
	position: absolute;
	right: 16px;
	top: 2px;
	background-color: #ff1744;
	height: 16px;
	width: 16px;
	border-radius: 6px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title-box {
	color: #fff;
	font-size: 13px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 88%;
	height: 30px;
	line-height: 29px;
}

.icon-box {
	color: #fff;
	font-size: 20px;
	height: 30px;
	width: 40px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	line-height: 1;
}

	.icon-box:empty {
		width: 10px;
	}

	.icon-box a {
		color: #fff;
		font-size: 22px;
	}

	.icon-box img {
		height: 30px;
		vertical-align: middle;
	}

.row {
	/*margin: 0 !important;*/
}

*[class^="col-"] {
	/*padding: 0 !important;*/
}

.btn, .btn:focus {
	outline: none !important;
	/*font-size: 12px;*/
}

.btn-success {
	background-color: #00c853;
	border-color: #00c853;
}

	.btn-success:hover {
		background-color: #03bb4f;
		border-color: #03bb4f;
	}

.btn-danger {
	background-color: #ff1744;
	border-color: #ff1744;
}

	.btn-danger:hover {
		background-color: #e61c43;
		border-color: #e61c43;
	}

.btn-info {
	background-color: #00d6f3;
	border-color: #00d6f3;
}

	.btn-info:hover {
		background-color: #03c5e0;
		border-color: #03c5e0;
	}

.btn-primary {
	background-color: #007bff;
	border-color: #007bff;
}

	.btn-primary:hover {
		background-color: #0270e6;
		border-color: #0270e6;
	}

.btn-fit {
	width: 100%;
}








.popUpIos {
	font-size: 15px;
	width: 100%;
	position: fixed;
	top: 0px;
	padding: 30px 20px;
	background: #efefef;
	z-index: 99999;
	text-align: center;
	overflow: scroll;
}

	.popUpIos img {
		vertical-align: middle;
	}

	.popUpIos > div {
		width: 100%;
		padding: 10px 10px;
		margin-top: 10px;
		background: white;
		border-radius: 5px;
		text-align: right;
	}
/***************************************/
footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	max-width: 480px;
	margin: auto;
	right: 0;
	left: 0;
	height: 60px;
	background-color: #fff;
	z-index: 90;
	/*box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);*/
}

	footer ul {
		display: flex;
		justify-content: space-between;
		align-items: center;
		list-style: none;
		position: relative;
		background-color: #deede4;
	}
	.wave-wrap {
	position: absolute;
	width: 0;
	height: 33px;
	margin-bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

	.wave-wrap #wave {
		position: absolute;
		width: 100px;
		left: 50%;
		transform: translateX(-50.6%);
		top: -35px;
		z-index: 1;
	}

		.wave-wrap #wave .path {
			fill: #deede4;
		}
		footer ul li {
			width: 20%;
			position: relative;
			z-index: 2;
		}

			footer ul li a, footer ul li a:focus, footer ul li a:hover {
				height: 60px;
				display: flex;
				flex-direction: column;
				justify-content: center;
				align-items: center;
				color: rgba(0,0,0,0.5);
				font-size: 13px;
				text-decoration: none !important;
				outline: none !important;
				padding-top: 5px;
			}

			footer ul li.active a {
				color: #000;
			}

			footer ul li img {
				height: 24px;
				margin-bottom: 5px;
			}

			footer ul li i {
				font-size: 20px;
				line-height: 1;
				margin-bottom: 3px;
				padding: 5px 15px;
				border-radius: 30px;
			}

			footer ul li.active a i {
				background-color: #bcdcc8;
			}

			footer ul li i.fa-ticket1 {
				font-weight: bold;
			}

			footer ul li .ion {
				font-size: 24px;
				margin-bottom: 5px;
			}

			footer ul li.add {
				background-color: #4d9368;
				color: #fff !important;
				height: 55px;
				width: 55px;
				border-radius: 70px;
				display: flex;
				justify-content: center;
				align-items: center;
				position: absolute;
				top: -13px;
				left: 50%;
				transform: translateX(-50%);
				z-index: 3;
				box-shadow: 0 2px 5px 0 rgba(0,0,0,0.3);
			}

				footer ul li.add a {
					color: #fff;
					padding: 0;
				}

					footer ul li.add a i {
						font-size: 38px;
						margin-bottom: 0;
						background-color: #4d9368;
						padding: 0;
					}



.price-for-you {
	height: 35px;
	line-height: 35px;
	overflow: hidden;
	clear: both;
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 5px 10px 0 10px;
	border-top: 1px solid #31a1a3;
	margin-top: 10px;
	align-items: center;
}

	.price-for-you .title {
		font-size: 11px;
		color: #000;
	}

	.price-for-you .value {
		font-size: 15px;
		color: #ff1744;
		font-family: Vazir-M;
	}

	.price-for-you .toman {
		font-size: 11px;
		margin-right: 3px;
	}

.btn_iconic {
	font-family: fontello;
	height: 34px;
	font-size: 18px;
	line-height: 34px;
	padding: 0 12px;
	border-radius: 0 0 4px 4px !important;
}

#MessageModal .modal-dialog {
	width: calc(100% - 20px);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	margin: 0;
}

.modal-msg-text {
	font-size: 14px;
	line-height: 28px;
	padding: 0 5px;
	text-align: center;
}

.btn-message-modal {
	display: block;
	width: 100px;
	margin: 15px auto 0 auto;
	cursor: pointer;
	background-color: #fff;
	color: #198754;
	border-color: #198754;
}

	.btn-message-modal:hover, .btn-message-modal:active, .btn-message-modal:focus {
		background-color: #198754;
		border-color: #198754;
		color: #fff;
	}

.shadow-box {
	border: 1px solid #ebeced;
	-ms-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
	-ms-box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.1);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#loadingFull {
	background: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0px;
	z-index: 9999999;
	text-align: center;
	display: none;
}

	#loadingFull img {
		position: absolute;
		top: 50%;
		left: 50%;
		height: 75px;
		transform: translate(-50%,-50%);
	}
