﻿@import url('grid.css');

:root {
    --primary: #297041;
	--secondary: #be8917;
}

.primaryButton{
	display:inline-block;
	line-height:50px;
	padding-left:15px;
	padding-right:15px;
	box-sizing:border-box;
	background:var(--primary);
	color:#ffffff;
	transition:all 0.4s;
	border-left:5px solid var(--secondary);
}
.primaryButton:hover{
	background:var(--secondary);
	color:#ffffff;
}

.secondaryButton{
	display:inline-block;
	line-height:50px;
	padding-left:15px;
	padding-right:15px;
	box-sizing:border-box;
	background:var(--secondary);
	color:#ffffff;
	transition:all 0.4s;
	border-left:5px solid var(--primary);
}
.secondaryButton:hover{
	background:var(--primary);
	color:#ffffff;
}

* {
	-webkit-font-smoothing: antialiased;
}
.lineHeight100 {
	line-height: 140% !important;
}
body {
	line-height: 200%;
	background-color: #ffffff;
	background-image: url('template/bg.png');
	margin: 0;
	color: #333333;
	font-size: 14pt;
	overflow-x: hidden;
}
strong,b{
	font-weight:700;
}
body,select , input, textarea, button {
	font-family: 'Titillium Web';
	font-weight:300;
}
.pt9, .pt9 * {
	font-size: 9pt;
}
.vazir{
	font-family:Vazir,Tahoma;
}
.white {
	color: white;
}
#mobileHeader {
	display: none;
}
#mobileMenuBar {
	text-align: center;
	direction: ltr;
	box-sizing: border-box;
	position: fixed;
	top: 0;;
	left: 0;
	background: #eeeeee;
	width: 100%;
	min-height: 50px;
	padding-right: 13px;
	padding-left: 13px;
	z-index: 1998;
}
.mobileMenuTitle {
	line-height: 50px;
	display: inline-block;
	white-space: nowrap;
	color: #ffffff;
	font-size: 9pt;
}
#mobilemenu {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
	width: 220px;
	margin-right: -220px;
	background: #222222;
	direction: ltr;
	padding-top: 50px;
	box-sizing: border-box;;
	z-index: 2000;
}
.mobileMenuItem {
	font-size: 10pt;
	color: #ffffff;
	display: block;
	width: 100%;
	line-height: 35px;
	padding-right: 10px;
	border-bottom: 1px solid #555555;
}
a.mobileMenuItem:hover {
	font-size: 10pt;
	background: #555555;
	color: #ffffff;
}
.mobileSubMenuItem {
	font-size: 10pt;
	color: #ffffff;
	display: block;
	width: 100%;
	height: 35px;
	line-height: 35px;
	padding-right: 30px;
}
.mobileSubMenuItem:hover {
	font-size: 10pt;
	color: #ffffff;
}
.mobileMenuItem:before {
	font-family: 'Times New Roman';
	display: inline-block;
	content: '◆';
	font-size: 6pt;
	margin-left: 5px;
	margin-right: 5px;


}
.mobileMenuItem.changed:before {
	font-family: 'Times New Roman';
	display: inline-block;
	content: '▼';
	font-size: 6pt;
	margin-left: 5px;
}
#mobileMenuMask {
	position: fixed!important;
	top: 0!important;
	left: 0!important;
	width: 100% !important;
	height: 100% !important;
	opacity: 0.5;
	background-image: none!important;
	background-color: #000;
	z-index: 1999;
	display: none;
}
#backButton {
	width: 60px;
	height: 50px;
	position: fixed;
	top: 0;
	left: 15px;
	z-index: 2000;
	box-sizing: border-box;
	background: url('template/back.svg') no-repeat left center;
	background-size: 8px 12px;
}
#humburger {
	width: 48px;
	height: 48px;
	position: fixed;
	top: 0;
	right: 15px;
	z-index: 2002;;
	box-sizing: border-box;
}
.c-hamburger {
	display: block;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 48px;
	height: 48px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
	background: transparent;
}
.c-hamburger:focus {
	outline: none;
}
.c-hamburger span {
	display: block;
	position: absolute;
	top: 22px;
	left: 9px;
	right: 9px;
	height: 1px;
	background: var(--primary);
	border-radius: 2px;
}
.c-hamburger span::before, .c-hamburger span::after {
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	border-radius: 2px;
	height: 1px;
	background-color:var(--primary);
	content: "";
}
.c-hamburger span::before {
	top: -8px;
}
.c-hamburger span::after {
	bottom: -8px;
}
.c-hamburger--htx {
}
.c-hamburger--htx span {
	transition: background 0s 0.3s;
}
.c-hamburger--htx span::before, .c-hamburger--htx span::after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}
.c-hamburger--htx span::before {
	transition-property: top, transform;
}
.c-hamburger--htx span::after {
	transition-property: bottom, transform;
}
.c-hamburger--htx.is-active {
	background-color: transparent;
}
.c-hamburger--htx.is-active span {
	background: none;
}
.c-hamburger--htx.is-active span::before {
	top: 0;
	transform: rotate(45deg);
	background-color: #ffffff;
}
.c-hamburger--htx.is-active span::after {
	bottom: 0;
	transform: rotate(-45deg);
	background-color: #ffffff;
}
.c-hamburger--htx.is-active span::before, .c-hamburger--htx.is-active span::after {
	transition-delay: 0s, 0.3s;
}

#desktopHeader{
	box-shadow: 0px 5px 10px 5px rgba(220,220,200,0.3);
	background:rgba(255,255,255,0.8);
}
@media all and (max-width:760px){
body {
	padding-top: 50px;
}
#mobileHeader {
	display: block;
}
#desktopHeader {
	display: none;
}
}
.rtl {
	direction: rtl;
}
.ltr {
	direction: ltr;
}
.displayNone {
	display: none;
}


.inline {
	display: inline-block;
}

.block {
	display: block;
}

.inlineBlock{display:inline-block;}
.pointer{
	cursor:pointer;
}
.alignCenter {
	text-align: center;
}
.alignRight {
	text-align: right;
}
.alignLeft {
	text-align: left;
}
.alignJustify {
	text-align: justify;
}
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
h1 {
	font-size: 24pt;
	padding: 0;
	margin: 0;
	color:var(--primary);
}
h2 {
	font-size: 16pt;
	font-weight: bold;
}
.specialbox {
	overflow: auto;
}
.specialbox p:empty {
	margin: 0;
	padding: 0;
}
.specialbox p:empty {
	margin: 0;
	padding: 0;
}
.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.max440 {
	width: 440px;
	max-width: 100%;
	box-sizing: border-box;
}
.max220 {
	width: 220px;
	max-width: 100%;
	box-sizing: border-box;
}
.full {
	direction: ltr;
	width: 98%;
	max-width: 1300px;;
	margin: auto;
}
.inner {
	width: calc(100% - 20px);
	margin-right: 10px;
	margin-left: 10px;
	box-sizing: border-box;
}
.inner * {
	max-width: 100%;
}
.box {
	
	background:#ffffff;
	border: 1px solid #eeeeee;
	border-radius:2px;
	padding:15px;
	box-sizing:border-box;
	border-radius:5px;
}
.boxShadow{
	transition:all 0.5s;
}
.boxShadow:hover{
	box-shadow:0 5px 5px 5px rgba(50,50,50,0.1);
	border:1px solid #aaaaaa;
}
table {
	border-collapse: collapse;
}
.clear {
	clear: both;
	display: block;
}
a {
	color:#0077d8;
	text-decoration: none;
	outline: none;
	transition: color 0.3s ease;
}
a:hover {
	color: var(--secondary);
}
.bordered {
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,1px 1px 0 #000;
}
.photothumb {
	border: 1px solid #888888;
	border-radius: 2px;
	vertical-align: top;
}

.galleryAnchor{
	display:inline-block;
	box-sizing:border-box;
	width:calc(25% - 10px);
	margin:5px
}

.titles {
	margin: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	font-weight: 600;
	font-size:22pt;
	color: var(--primary);
}

.subTitle{
	color:#555555;
	font-size:10pt;
}
.clear {
	clear: both;
	display: block;
}
form {
	margin: 0;
}
input {
	outline: 0;
}
input, textarea {
	box-sizing: border-box;
}
.topmenu {
	position: relative;
	top: 0;
	left: 0;
}
.menu {
	color: #000000;
	display: inline-block;
	min-width: 140px;
}
.brief {
	color: #dddddd;
	font-size: 8pt;
	display: block;
}
.myhr {
	height: 1px;
	background: #999999;
}
.paging {
	display: inline-block;
	width: 35px;
	height: 35px;
	background: #eeeeee;
	border: 1px solid #666666;
	vertical-align: middle;
	color:#000000;
}
.pagingActive, .paging:hover {
	display: inline-block;
	width: 35px;
	height: 35px;
	line-height:35px;
	background: #1596ff;
	border: 1px solid #666666;
	vertical-align: middle;
	color: #ffffff;
}

.listthumb {
	width: 100%;
	vertical-align: top;
	box-sizing: border-box;
	border-radius: 5px;
	margin-bottom: 10px;
	border:1px solid #eeeeee;
}
.listlink {
	display: block;
	width: 100%;
	color: #000000;
}
.listlink img{transition: all 0.3s ease;}

.listlink:hover {
	color: var(--secondary);
}

.listlink:hover img{
	filter: brightness(80%) saturate(80%);
  }


.pagerinactive {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #888888;
	cursor: pointer;
	border-radius: 10px;
	margin: 0;
	padding: 0;
}
.pageractive {
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 10px;
	background: #0082c5;
	margin: 0;
	padding: 0;
}
@media all and (max-width:760px){
#mobileMenuIcon {
	display: block;
}
#topmenu {
	display: none;
}
#mobilemenu {
	display: block;
}
}
.adminGear {
	width: 14px;
	height: 14px;
	display: inline-block;
	background: url('template/admin/gear.svg') no-repeat;
	vertical-align:middle;
	background-size:contain;
	cursor:pointer;
}

.adminDelete {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/delete.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminGrayDelete {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/delete-gray.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminArchive {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/archive.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminAdd {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/add.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminSub {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/sub.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminEdit {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/edit.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminUp {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/up.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminVisible {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/visible.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminHidden {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/hidden.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
.adminUpload {
	width: 25px;
	height: 25px;
	display: inline-block;
	background: url('template/admin/upload.png') no-repeat;
	background-size:contain;
	cursor:pointer;
}
@media print{
}



.billboardText{
	display:none;
}
@media all and (max-width:760px){
.billboardOuter {
	height:auto;
}
}
.billboardHolder {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	z-index:1;
}

#billboardPlaceHolder{
	background:url('template/wait.svg') no-repeat center center;
	display:flex;
	width:100%;
	position:absolute;
	top:0;left:0;bottom:0;
	z-index:70;
	background-color:#eeeeee;
}

.billboard {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 3;
	display:none;
}

.billboardPlaceHolder{
	background:url('template/wait.svg') no-repeat center center;display:flex;width:100%;position:absolute;top:0;left:0;bottom:0;z-index:70;
}

.billboardTitlesContainer {
	display: flex;
	flex-direction: column;
	align-items: center;            /* Center items horizontally */
	min-height: 100%;              /* Ensure the container takes the full height */
	justify-content: center;        /* Center the divs vertically */
	align-items: stretch;
	width: 98%;
	max-width: 1300px;
	margin:auto;
}

.title1 {
	padding-right:40px;
	padding-left:40px;
	color: var(--primary);
	font-size: 40pt;
	font-weight:bold;
	padding-bottom:20px;
	transform-origin: 0px 0px;
}
.title2 {
	padding-right:40px;
	padding-left:40px;
	color: var(--primary);
	font-size: 28pt;
	font-weight:bold;
	padding-bottom:20px;
	transform-origin: 0px 0px;
}
.title3 {
	padding-right:40px;
	padding-left:40px;
	font-size: 14pt;
	font-weight:bold;
	transform-origin: 0px 0px
}

.title3 span{	
	color:var(--secondary);
	display:inline-block;
	background:#ffffff;
	padding:10px;
	padding-left:30px;
	padding-right:30px;
	border-radius:50px;
	box-shadow:0px 2px 2px 2px rgba(50,50,50,0.4);
	transition:all 0.4s;
}

.title3 span:hover{
	box-shadow:0px 4px 4px 4px rgba(50,50,50,0.4);
}

.billboardbulletsHolder{
	position:absolute;
	bottom:10px;
	left:0px;
	text-align:left;
	width:100%;
	z-index:5;
	text-align:center;
}

.billboardbullet {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background-color: #ffffff;
	cursor: pointer;
	border: 1px solid #888888;
	box-sizing: border-box;
	margin:3px;
	vertical-align: middle;
}

@media all and (max-width:780px){
	.title1 {
		font-size: 30pt;
		padding-bottom:15px;
	}
	.title2 {
		font-size: 18pt;
		padding-bottom:15px;
	}
	.title3 {
		font-size: 12pt;
	}

	.billboardOuter{
		margin-bottom:37px;
	}
	.billboardbulletsHolder{
		bottom:-37px;
		background:rgba(100,100,100,0.5);
	}

	.title3 span{
		padding:0px;
		padding-left:15px;
		padding-right:15px;
	}
}

@media all and (max-width:500px){
	.title1 {
		font-size: 20pt;
		padding-bottom:0px;
	}
	.title2 {
		font-size: 12pt;
		padding-bottom:10px;
	}
	.title3 {
		font-size: 10pt;
	}
}




@media all and (max-width:1000px){
.billboardTitle {
	font-size: 18pt;
}
.billboardSubTitle {
	font-size: 16pt;
}

}
@media all and (max-width:500px){
.billboardHolder {
	padding-top: 100%;
}

}
.membersLink {
	font-size: 9pt;
	min-width: 90px;
	padding: 5px;
	border-radius: 15px;
	background: #ffffff;
	border: 1px solid #aaaaaa;
	text-align: center;
	display: inline-block;
}
.membersMenu {
	background: #ffffff;
	border-radius: 5px;
	font-size: 9pt;
	display: inline-block;
	padding: 10px;
	margin: 5px;
	text-align: center;
	border: 1px solid #aaaaaa;
	margin-bottom: 0;
	margin-top: 0;
}
#rainbow {
	width: 200px;
	margin: auto;
	background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
	background-size: 180% 180%;
	-webkit-animation: rainbow 6s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite;
	-z-animation: rainbow 6s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite;
	-o-animation: rainbow 6s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite;
	animation: rainbow 6s cubic-bezier(0.645, 0.045, 0.355, 1.000) infinite;
}
@-webkit-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-moz-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@-o-keyframes rainbow {
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
@keyframes rainbow { 
    0%{background-position:0% 82%}
    50%{background-position:100% 19%}
    100%{background-position:0% 82%}
}
.treeDiv {
	margin-top: 5px;
	font-size: 10pt;
	padding-left: 10px;
	padding-right: 10px;
	box-sizing: border-box;
	color: #cccccc;
	font-size: 8pt;
}
.treeDiv a {
	font-size: 10pt;
	color: #999999;
}
.treeDiv a:hover {
	color: #ff8800;
}
.addnew {
	border-radius: 20px;
	color: #000000;
	display: inline-block;
	padding: 10px;
	line-height: 35px;
	background: #eeeeee;
	border: 1px solid #555555;
}
.gradient {
	position: relative;
	z-index: 2;
	height: 140px;
	background: rgba(0,0,0,0.8);
	background: linear-gradient(0deg, rgba(0,0,0,0) 80%, rgba(0,0,0,0.8) 100%);
}
.filterDiv {
	width: 20%;
	float: left;
	box-sizing: border-box;
}
.resultDiv {
	width: calc(80% - 20px);
	margin-left:20px;
	float: right;
	min-height: 200px;
	box-sizing: border-box;
}
.filterBox {
	padding: 10px;
	border: 1px solid #ffffff;
	margin-bottom: 10px;
	background: #f0eae6;
	box-sizing: border-box;
	border-radius:4px;
}
.filterBoxHeader {
	cursor: pointer;
	display: block;
	color: #333333;
}
.filterDash {
	height: 1px;
	background: #025f50;
	margin-top: 5px;
	margin-bottom: 10px;
}
#filtersTitleMobile {
	display: none;
	cursor: pointer;
	text-align: center;
	color: #ffffff;
}
.filterBoxAdmin {
	padding: 10px;
	border: 1px solid #999999;
	margin-bottom: 10px;
	background: #222222;
	box-sizing: border-box;
	display: inline-block;
	margin: 3px;
}
.closeFilters {
	display: none;
	background: #f0eae6;
	text-align: center;
	color: #000000;
	cursor: pointer;
}
.rotate180 {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	transition: 300ms ease all;
}
@media all and (max-width:760px){
.filterDiv {
	display: none;
	overflow: auto;
	position: fixed;
	width: 100%;
	height: 100%;
	float: none;
	padding-top: 10px;
	background: rgba(0,0,0,0.95);
}
#filterList {
	width: 100%;
	max-width: 300px;
	text-align: left;
	padding-top: 10px;
	margin: auto;
}
.filterBox {
	width: 100%;
	float: none;
	box-sizing: border-box;
}
.resultDiv {
	width: 100%;
	float: none;
	padding-top:80px;
	margin-left:0;
}
#filtersTitleDesktop {
	display: none;
}
#filtersTitleMobile {
	display: block;
	position: fixed;
	top: 55px;
	width: calc(100% - 12px);
	left: 6px;
}
#filterListMobileStat {
	width: 250px;
	direction: ltr;
	margin: auto;
}
.closeFilters {
	display: block;
}
.closeFilters:hover {
	background: #E8CFB5;
	color: #000000;
}
}
h3 {
	margin: 0;
	padding: 0;
}
.wait {
	display: block;
	height: 100px;
	width: 100%;
	background: url('template/wait.svg') no-repeat center center;
	background-size: auto 90px;
}
.bigImage {
	position: relative;
	z-index:-1;
	top: -140px;
	width: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center center;
	margin-bottom:-140px;
}
.bigImageTitle{
	position:relative;
	z-index:2;
	top:-90px;
	width:100%;
}
@media all and (max-width:760px){
.bigImage {
	min-height: 300px;
	top: 0px;
	margin-bottom: 0;
}

.bigImageTitle{
	position:static;
	top:0;
	width:100%;
	margin-bottom:0;
}
}
.lightbar {
	border-bottom: 1px solid #999999;
}
.treeArrow {
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url('template/tree-arrow.png') no-repeat center;
	background-size: cover;
	vertical-align: middle;
	margin-left: 5px;
	margin-right: 5px;
}
.orderTable {
	width: 100%;
	box-sizing: border-box;
}
.orderTable tr {
	border-bottom: 1px solid #aaaaaa;
}
.orderTable td {
	padding: 5px;
}
.orderTable tr:hover {
	background: rgba(100,100,100,0.05);
}
.basket {
	width: 75px;
	text-align: center;
	border: 1px solid #aaaaaa;
	height: 25px;
	box-sizing: border-box;
	vertical-align: middle;
	border-radius:4px;
}
.basketIcon {
	vertical-align: middle;
	display: inline-block;
	width: 24px;
	height: 24px;
	background-image: url('template/basket.svg');
	background-size: 20px 20px;
	background-position: center center;
	background-color: #ffffff;
	border-radius: 12px;
}
.reBasket {
	line-height: 22px;
	vertical-align: middle;
	height: 24px;
	display: inline-block;
	width: 24px;
	text-align: center;
	cursor: pointer;
	background: #888888;
	color: #ffffff;
	border-radius:50%;
}
.reBasket:hover {
	background: #444444;
	color: #ffffff;
}

.linkFP{
	width:200px;
	height:200px;
	display:inline-block;
	border:1px solid #eeeeee;
	border-radius:50%;
	line-height:100% !important;
	background:rgba(255,255,255,0.7);
	box-shadow: 3px 10px 10px #888888;
	margin-bottom:20px;
}
.linkFP:hover{
	box-shadow: 3px 10px 20px #888888;
}

.unavailable {
	position: relative;
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	display: block;
}
.unavailable::after {
	display: inline-block;
	width: 60px;
	height: 60px;
	background: url('template/unavailable.png') no-repeat center center;
	background-size: contain;
	position: absolute;
	top: -1px;
	left: -1px;
	content: '';
}
.priceFilterDiv {
	white-space: nowrap;
	display: inline-block;
	margin: 4px;
	padding: 5px;
	border: 1px solid #bbbbbb;
	box-sizing: border-box;
}
.trash {
	display: inline-block;
	width: 15px;
	height: 20px;
	background: url('template/trash.svg');
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
}
.basketCol1 {
	flex: 0 0 44%;
	text-align: left;
	padding-right: 10px;
	padding-left: 10px;
	box-sizing: border-box;
}
.basketCol2 {
	flex: 0 0 18%;;
	text-align: center;
	box-sizing: border-box;
	border: 0px solid #ff0000;
}
.basketCol3 {
	flex: 0 0 10%;;
	text-align: center;
	box-sizing: border-box;
	border: 0px solid #ff0000;
}
.basketCol4 {
	flex: 0 0 18%;;
	text-align: center;
	box-sizing: border-box;
	border: 0px solid #ff0000;
}
.basketCol5 {
	flex: 0 0 10%;;
	text-align: center;
	box-sizing: border-box;
	border: 0px solid #ff0000;
}
#basketHeaderRow {
	color: #7a7a7a;
	font-weight: 300;
	font-size: 12pt;
	border: 1px solid #efefef;
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
	line-height: 40px;
}
.rowCurrency{
	color:#aaaaaa;
	font-style:italic;
	margin-right:5px;
}
.orderRow {
	padding:10px;
	border: 1px solid #efefef;
	box-sizing: border-box;
	align-items: center;
	color: #555555;
	font-size: 12pt;
	margin-bottom:5px;

}
.mobileTitle {
	display: none;
}
@media all and (max-width:768px){
.mobileTitle {
	display: inline;
}
#basketHeaderRow, #basketTabs {
	display: none;
}
.orderRow {
	width: 100%;
	padding: 10px;
	border-top: 1px solid #efefef;
	margin-top: 5px;
	margin-bottom: 5px;
}
.basketCol1 {
	flex: 0 0 100%;
	text-align: left;
}
.basketCol2 {
	flex: 0 0 100%;
	text-align: left;
}
.basketCol3 {
	flex: 0 0 100%;
	text-align: left;
}
.basketCol4 {
	flex: 0 0 100%;
	text-align: left;
}
.basketCol5 {
	flex: 0 0 100%;
	text-align: right;
}
.basketRight {
	flex: 0 0 100%;
}
.basketLeft {
	flex: 0 0 100%;
}
}
.membersItems {
	display: block;
	line-height: 100px;
	width: calc(100% - 20px);
	margin: auto;
	border: 1px dotted #aaaaaa;
	text-align: center;
	margin-bottom: 20px;
}
.signinA {
	display: inline-block;
}
.signinA img {
	border-radius: 50%;
	vertical-align: middle;
	width: 35px;
	margin:3px;
}
.signinA .small {
	border-radius: 50%;
	vertical-align: middle;
	width: 30px;
}
.basketCounter {
	display: none;
	position: absolute;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	background: #ff0000;
	font-size: 8pt;
	text-align: center;
	line-height: 19px;
	color: #ffffff;
	position:absolute;
	top:-5px;
	right:-3px	
}
ul.drop {
	z-index: 597;
	margin: auto;
	direction: ltr;
	display: inline-block;
	position: relative;
	vertical-align: bottom;
	box-sizing: border-box;
}
ul.drop > li a {
	text-decoration: none;
	text-align: center;
	color:var(--primary);
	font-size: 12pt;
	padding-right: 10px;
	padding-left: 10px;

	display: block;
	box-sizing: border-box;
	line-height: 45px;
	transition: all 0.2s ease-in;
}
ul.drop > li a:hover {
	color: var(--secondary);
}
ul.drop li a span {
	display: inline-block;
	font-size: 5pt;
	vertical-align:bottom;
	padding-left:10px
}
ul.drop, ul.drop li, ul.drop ul {
	list-style: none;
	padding: 0;
}
ul.drop > li {
	display: inline-block;
	vertical-align: bottom;
	text-align: center;
	box-sizing: border-box;
	min-height: 45px;
	position: relative;
}
ul.drop > li:last-of-type {
	border-left: 0px;
}
ul.drop > li.hover, ul.drop > li:hover {
	position: relative;
	z-index: 599;
	cursor: default;
}
ul.drop ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + 1px);
	left: 0px;
	z-index: 0;
}
ul.drop ul li a {
	color: var(--primary);
	display: block;
	line-height: 40px;
	text-align: left;
	box-sizing: border-box;
	background-color: #eeeeee;
}
ul.drop ul li a:hover {
	color:var(--secondary);
	padding-left:5px;
}
ul.drop ul li{
	position:relative;
	top:0;
	left:0;
}
ul.drop ul ul {
	position: absolute;
	top:-3px;
	left: 100%;
	z-index: 1;
	box-sizing:border-box;
	padding-left:15px;
}
ul.drop li:hover > ul {
	visibility: visible;
	opacity: 1;
}

ul.drop ul li span {
	position: absolute;
	right: 5px;
	top: 0px;
	font-size: 6pt;
	color: #000000;
	font-family:Tahoma;
	
}
ul.drop li ul li a {
	min-width: 200px;
	max-width: 300px;
	text-align: left;
	white-space: nowrap;
}

ul.drop li ul li a:hover {
	padding-left:15px;
}


.appInput{
	border-radius:5px;
	border:1px solid #eeeeee;
	width:100%;
	padding:10px;
}

.signinOptions{
	display:inline-block;
	width:80px;
	margin-right:10px;
	border:1px solid #999999;
	border-radius:8px;
	padding-left:10px;
	padding-right:10px;
	text-align:center;
	font-size:10pt;
	color:#444444;
	cursor:pointer;
}

.signinOptions:hover:not(.signinOptionsActive){
	color:#444444;
	background:#e9f5ff;
}

.signinOptionsActive{
	background:#0071d0;
	color:#ffffff;
}
.signinOptionsActive:hover{
	color:#ffffff;
}
.signinOptions span{
	color:#ffffff;
	margin-left:-15px;
}

.progress {
	display: none;
	position: relative;
	width: 400px;
	border: 1px solid #ddd;
	padding: 1px;
	border-radius: 3px;
	margin: auto;
}
.bar {
	background-color: #B4F5B4;
	width: 0%;
	height: 20px;
	border-radius: 3px;
}
.percent {
	position: absolute;
	display: inline-block;
	top: 0px;
	left: 48%;
}

.listItem{
	height:calc(100% - 20px);
	margin-bottom:20px;
}

.call2Act{
	border-radius:10px;
	border:1px solid #eeeeee;
	text-align:center;
	padding-left:20px;
	padding-right:20px;
	display:inline-block;
	background:#c6b08c;
	color:#ffffff;
	font-size:11pt;
}

.contactGdarient{
position:relative;width:100%;height:180px;top:0;left:0;
background: -moz-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
background: linear-gradient(0deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.linkout{
	display:inline-block;
	width:22px;
	height:22px;
	background:url('template/linkout.svg');
	background-size:contain;
	background-repeat:no-repeat;
	vertical-align:middle;margin-left:15px;
	float:right;
}

.exploreNow{
	display:inline-block;
	border:1px dashed #aaaaaa;
	padding:10px;
	width:200px;
	text-align:center;
	background:#efefef;
}

.galleryLoader{
	position:absolute;
	width:100%;
	height:100%;
	top:0;left:0;	
	z-index:2;
	background:url('template/wait.svg');
	background-repeat:no-repeat;
	background-position:center center;
	display:none;
	background-color:rgba(255,255,255,0.8)
	
}

.alertParent{
	position:fixed;height:100%;top:0;left:0;z-index:10000;width:1px;
}

#alert{
	position:fixed;
	top:10px;
	right:10px;
	background-color:#FFFFCC;
	border: 1px solid #aaaaaa;
	padding: 0px;
	box-sizing:border-box;
	box-shadow: 5px 10px 10px rgba(200,200,200,0.5);
	border-radius:5px;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
	line-height:100%;
	width:270px;
	overflow:visible;
	z-index:99999;
	font-size:10pt;
	line-height:150%;	
}

#alert .close{
	position:absolute;top:10px;right:10px;cursor:pointer;
}
.openAlert{
	text-align:center;
	cursor:pointer;
	background:#FFCC99;
	font-family:tahoma;
	font-size:10pt;
	color:#ffffff;
	display:none;
}
.closeAlert{
	display:inline-block;
	width:22px;
	height:22px;
	border-radius:50%;
	border:1px solid #ff0000;
	text-align:center;
	line-height:22px;
	font-size:8pt;
	color:#ffffff;
	position:absolute;
	left:calc(100% - 11px);top:-11px;
	background:#ff0000;
	margin-bottom:-22px;
	cursor:pointer;
}
.closeAlert:hover{
	color:#ffffff;
}

.details{
	width:100%;border:1px solid #dddddd;border-collapse:collapse;
}
.details td{
	padding:8px;
}


.blackStroke{
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.gotoBasket{
	width:150px;
	text-align:center;
	height:40px;
}

.wrapper{
	display: flex;
    flex-direction: column;
    min-height: 100vh;
	direction:ltr;
}

main {
    flex: 1;
}

fieldset{
	border:1px dotted #999999;
	padding-top:20px;
	padding-bottom:20px;
}
legend{
	padding-left:10px;
	padding-right:10px;
	color:#999999;
	font-weight:bold;
}


.divider {
	margin: auto;
	width: 100%;
	height: 20px; /* Set height of the divider */
	position: relative;
	overflow: hidden; /* Ensure any overflow is hidden */
}

.divider:after {
	content: '';
	display: block;
	margin: -25px auto 0; /* Adjust the margin for the shadow effect */
	width: 100%;
	height: 25px;
	border-radius: 125px/12px; /* Keep the rounded corners */
	box-shadow: 0 0 8px #2d3075; /* Shadow effect */
}


.jqueryTooltip {
	position: absolute;
	background-color: #333;
	color: #fff;
	padding: 5px;
	border-radius: 3px;
	z-index: 1000;
	display: none;
	font-size: 12px;
}
.jqueryTooltip::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #333 transparent transparent transparent;
}


footer a{color:#ffffff;line-height:100%;font-size:10pt;}
footer p{margin:0}


.textShadowBlack{
	text-shadow: 
    1px 0 black,   /* Right shadow */
   -1px 0 black,   /* Left shadow */
    0 1px black,   /* Bottom shadow */
    0 -1px black;
}

.textShadowWhite{
    text-shadow: 0 0 25px rgba(255,255,255,0.7);
	color:var(--primary);
}


.desktopPadding{    
	padding-left:20px;
    padding-right:20px;
}

@media (max-width: 800px) {
	.desktopPadding{    
		padding-left:0;
		padding-right:0;
	}
}


.contentBody p:first-of-type {
	margin-top: 0;
}

/*Owl///////*/

.owl-carousel .owl-stage { display: flex; }
.owl-nav .owl-prev, .owl-nav .owl-next {
    position: absolute;
    top: 0;
    height:100%;
	width:50px;
	margin:0;
	border-radius:0;
	background-color:rgba(255,255,255,1);
	margin:0;
	color:#000000;
}


.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover{
	background-color:rgba(255,255,255,1);
	color:#000000;
}

.owl-theme .owl-nav [class*=owl-],.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev{
	background-color:rgba(255,255,255,1);
	margin:0;
	color:#000000;
}

.owl-theme .owl-nav [class*=owl-]:hover,.owl-carousel .owl-nav button.owl-next:hover,.owl-carousel .owl-nav button.owl-prev:hover{
	background-color:rgba(255,255,255,1);
	color:#000000;
}

/* Left arrow */
.owl-nav .owl-prev {
    right: -50px;
}

/* Right arrow */
.owl-nav .owl-next {
    left: -50px;
}



.moving-background {
background-image: url('template/movingbg.jpg');
background-repeat: repeat-x;
background-size: auto 100%;
animation: moveBackground 250s linear infinite;
}

@keyframes moveBackground {
from {
	background-position: 0 0;
}
to {
	background-position: 100% 0;
}
}

@media (max-width: 780px) {
	.moving-background {
		animation: moveBackground 30s linear infinite;
	}
}

.lastPosts-order-2{
order:2;
}
.lastPosts-order-1{
order:1;
}

@media (max-width: 780px) {
	.lastPosts-order-2{
	order:1;
	}
	.lastPosts-order-1{
	order:1;
	}
}


#messageOverlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 9999;
}

.messageOverlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
}


.keywordSearch{position:absolute;top:0;left:0;border:1px solid #aaaaaa;border-radius:50px;height:45px;padding:10px;padding-right:45px;box-sizing:border-box;width:100%;font-size:16pt;z-index:1}
.iconSearch{display:inline-block;background:url('template/search.png');background-size:100% 100%;border:0;vertical-align:middle;width:43px;font-size:9pt;height:43px;box-sizing:border-box;position:absolute;right:1px;top:1px;z-index:2;border-radius:50px;}
.fixedBgPins{position:relative;top:0px;left:11px;height:30px;margin-bottom:-20px;text-align:center;z-index:10}


.lastTail{color:#444444}
@media (max-width: 780px) {
	.lastTail{display:none;}
}