﻿@import url('grid.css');

:root {
	--primary: #e85a26;
	--secondary: #4b5c39;
	--darkblue:#00121B;
}

.orange{
	color: var(--primary);
}

.green{
	color: var(--secondary);
}


* {
	-webkit-font-smoothing: antialiased;
}
.lineHeight100 {
	line-height: 140% !important;
}
html{scroll-behavior: smooth;}
body {
	line-height: 150%;
	margin: 0;
	color: #333333;
	font-size: 14pt;
	overflow-x: hidden;
}
body,select , input, textarea, button {
	font-family: 'Titillium Web';
}
.pt9, .pt9 * {
	font-size: 9pt;
}
.vazir{
	font-family:Vazir,Tahoma;
}
.white , .white *, .white:hover{
	color: #ffffff;
}
#mobileHeader {
	/*display: none;*/
}
#mobileMenuBar {
	text-align: center;
	direction: ltr;
	box-sizing: border-box;
	position: fixed;
	top: 0;;
	left: 0;
	background: #cccccc;
	width: 100%;
	min-height: 50px;
	padding-right: 13px;
	padding-left: 13px;
	z-index: 1998;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.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:9pt;
	color: #ffffff;
	display: block;
	width: 100%;
	height: 35px;
	line-height: 35px;
	padding-right: 30px;
}
.mobileSubMenuItem:hover {
	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: inline-block;
	vertical-align:middle;
	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: 2px;
	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: 2px;
	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{
	background:#ffffff;
}

.mobileOnly{
	display:none;
}
.desktopOnly{
	display:block;
}
@media all and (max-width:760px){

.mobileOnly{
	display:block;
}
#mobileHeader {
	display: block;
}
#desktopHeader {
	display: none;
}
}
.rtl {
	direction: rtl;
}
.ltr {
	direction: ltr;
}
.displayNone {
	display: none;
}


.inline {
	display: inline-block;
}
.block{display: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: 18pt;
	padding: 0;
	margin: 0;
	color: var(--primary) !important;
}
h2 {
	font-size: 16pt;
	font-weight: bold;
	color: var(--primary) !important;
}
.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 {
	width: 98%;
	max-width: 1280px;;
	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;
}
table {
	border-collapse: collapse;
}
.clear {
	clear: both;
	display: block;
}
a {
	color:var(--primary);
	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:18pt;
	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: var(--primary);
	border: 1px solid #666666;
	vertical-align: middle;
	color: #ffffff;
}

.listthumb {
	width: 100%;
	vertical-align: top;
	box-sizing: border-box;
	border-radius: 10px;
	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;
}


.billboard {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height:100%;
	z-index: 3;
}
.billboard:first-of-type {
	display: block;
}

.billboardTitlesContainer {
	width: 98%;
	max-width: 1300px;
	margin:auto;
	height:100%;
	line-height:100%;
}

.title1 {
	color: var(--darkblue);
	font-size: 40pt;
	font-weight:bold;
	margin-bottom:50px;
	transform-origin: left center;
	max-width:90%;
	text-align:center;
	margin-right:auto;
	margin-left:auto;
}
.title2 {
	color: var(--darkblue);
	font-size: 28pt;
	font-weight:bold;
	margin-bottom:40px;
	transform-origin: left center;
	max-width:90%;
	text-align:center;
	box-sizing:border-box;
	margin-right:auto;
	margin-left:auto;
}

.title3 {
	transform-origin: right center;
	width:60%;
	text-align:center;
	font-size: 14pt;
	margin-right:auto;
	margin-left:auto;
}

.title3 a{
	padding-right:30px;
	padding-left:30px;
	box-sizing:border-box;
	color:var(--secondary);
	font-weight:bold;
	border-radius:10px;
	background: var(--primary);
	color:#000000;
	display:inline-block;
	min-height:40px;
	line-height:40px;
}


.billboardBulletsHolder{
	position:absolute;bottom:20px;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;
}

@media all and (max-width:800px){

	.billboardBulletsHolder{
		bottom:-30px;
	}

	.billboardTitlesContainer {
        position: absolute;
        top: 100%;
        width: 100%;
		height:auto;
        text-align: center;
        background: linear-gradient(135deg, #70602f, #E0CDA9);
		background-image:url('template/sand.jpg');
    	
    }
	.billboardTitlesContainer td{
		padding-top:38px;
		padding-bottom:20px;
	}

	.billboardOuter {
        margin-bottom: 180px;
    }
	.title1 {
		font-size: 22pt;
		margin-bottom:30px;
		max-width:100%;
		color: var(--darkblue) !important;
	}
	.title2 {
		font-size: 16pt;
		margin-bottom:25px;
		color: var(--darkblue) !important;
	}
	.title3 {
		font-size: 10pt;
		min-height:30px;
		line-height:30px;
		color: var(--darkblue) !important;
	}

	.title3 a{
		padding-right:20px;
		padding-left:20px;
		min-height:30px;
		line-height:30px;
	}
}

@media all and (max-width:500px){
	.title1 {
		font-size: 16pt;
		margin-bottom:14px;
	}
	.title2 {
		font-size: 10pt;
		margin-bottom:10px;
	}
	.title3 {
		font-size: 9pt;
	}
}




#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: #aaaaaa;
	font-size: 10pt;
}
.treeDiv a {
	font-size: 10pt;
	color: #999999;
}
.treeDiv a:hover {
	color: var(--primary);
}
.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;
}

.round{
	border-radius:50%;
}
@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;
	margin-bottom: -140px;
	width: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center center;
}
.bigImageTitle{
	position:absolute;
	bottom:0;
	width:100%;
	
}
@media all and (max-width:760px){
.bigImage {
	height: 400px;
	position: relative;
	top: 0px;
	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%;
	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:#666666;
	margin-right:5px;
	font-size:9pt;
}
.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;
	width: calc(100% - 20px);
	margin: auto;
	border: 1px solid #aaaaaa;
	border-radius:5px;
	padding:10px;
	box-sizing:border-box;
	text-align: center;
	margin-bottom: 20px;
}
.signinA {
	display:inline-block;
	width:28px;
	height:28px;
	border-radius:50%;
	vertical-align:top;
	padding:0;margin:5px;
	text-align:center;
	margin-bottom:-4px;
	border:1px solid #ffffff;
	border-radius:50%;
}
.signinA:hover{
	background-color:var(--lightGreen);
}

.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;
	display: inline-block;
	position: relative;
	vertical-align: bottom;
	box-sizing: border-box;
}
ul.drop > li a {
	font-weight:normal;
	text-decoration: none;
	text-align: center;
	color:#ffffff;
	font-size: 11pt;
	display: block;
	box-sizing: border-box;
	line-height: 22px;
	transition: all 0.2s ease-in;
	padding-left:10px;
	padding-right:10px;
}
ul.drop > li a:hover {
	color: var(--primary);
}
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: 22px;
	position: relative;
	border-right:1px solid #444444;
	padding-right:10px;
	padding-left:10px;
	min-width:80px;
}
ul.drop > li:last-of-type {
	border-right: 0px;
}

ul.drop > li::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 14px; /* match the gap */
	background: transparent;
	pointer-events: auto;
}


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% + 11px);
	left: 0px;
	z-index: 0;
}
ul.drop ul li a {
	color: #ffffff;
	display: block;
	line-height: 40px;
	text-align: left;
	box-sizing: border-box;
	background-color: #00121B;
	font-size:10pt;
	padding-left:10px;
	min-width: 240px;
	max-width: 300px;
	white-space: nowrap;

}
ul.drop ul li a:hover {
	color:var(--primary);
	background:#002131;
	padding-left:15px;
}
ul.drop ul li{
	position:relative;
	top:0;
	left:0;
}
ul.drop ul ul {
	position: absolute;
	top:0px;
	left: 100%;
	z-index: 1;
	box-sizing:border-box;
	padding-left:15px;
	box-sizing:border-box;
}
ul.drop li:hover > ul {
	visibility: visible;
	opacity: 1;
}

ul.drop ul li span {
	position: absolute;
	left: 5px;
	top: 0px;
	font-size: 6pt;
	color: #000000;
	font-family:Tahoma;
	
}



.appInput{
	border-radius:20px;
	border:1px solid #eeeeee;
	width:100%;
	padding:10px;
	box-sizing:border-box;

}

.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:var(--secondary);
}

.signinOptionsActive{
	background:var(--primary);
	color:#000000;
}
.signinOptionsActive:hover{
	color:#000000;
}
.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: var(--primary);
	color:#000000;
	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;
	padding-top:0px;
	padding-bottom:0px;
	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:#444444;line-height:100%;}
footer a:hover{color:#000000;}
footer li::marker{color:#444444}
footer p{margin:0}
footer ul{margin:0;}
footer{
	padding-top:20px;
}


.textShadowBlack{
	text-shadow: 
    1px 0 black,   /* Right shadow */
   -1px 0 black,   /* Left shadow */
    0 1px black,   /* Bottom shadow */
    0 -1px black;
}

.textShadowWhite{
	text-shadow: 
    1px 0 white,   /* Right shadow */
   -1px 0 white,   /* Left shadow */
    0 1px white,   /* Bottom shadow */
    0 -1px white;
}

.desktopPadding{    
	padding-left:20px;
    padding-right:20px;
}

@media (max-width: 800px) {
	.desktopPadding{    
		padding-left:0;
		padding-right:0;
	}
}


/*Quick links*/


.quickText{display:block;width:100%;height:100%;}

#backToTop {
float:right;
margin-right:20px;
  width: 35px;
  height: 35px;
  background: url('template/arrow-up.svg') no-repeat center;
  background-size:contain;
  cursor: pointer;
  animation: shakeUpDown 1.5s ease-in-out infinite;
}

@keyframes shakeUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}


@media (max-width: 800px) {
#backToTop{display:none}
}


#searchField{
	width:70%;
	height:35px;
	border-radius:5px;
	border:1px solid var(--darkGreen);
	background: var(--lightGreen);
	padding:3px;
	padding-right:10px;
	border-radius:30px;
	font-size:9pt;

}

.mce-content-body{padding:20px;}



/*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;
}

.owlLink{
	display:block;border:1px solid #efefef;box-sizing:border-box;text-align:center;font-size:11pt;height:100%;border-top-right-radius:8px;border-top-left-radius:8px;
}


#passwordWrapper {
	width: 100%;
	display:none;
	margin:auto;
}

.wow{
	display:inline-block;
	width:20px;
	height:20px;
	line-height:20px;
	border-radius:50%;
	background:#ff0000;
	color:#ffffff;
}

.radius{border-radius:8px;}
.radiusTop{
	border-top-right-radius:8px;
	border-top-left-radius:8px;
}


/* Bottom Meny styles */

footer{min-height:50px}

#bottomMenu{
    display:none;
    background:#dfdfdf;
    padding-top:5px;
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    z-index:200;
    box-shadow:0px -3px 10px 3px rgba(0,0,0,0.2);
    border-top-right-radius:10px;
    border-top-left-radius:10px;
}
@media (max-width: 800px) {
    #bottomMenu{display:block}
    footer{min-height:150px;}
}


#bottomMenu a{
    color:#004d8e;
    font-size:9pt;
    display:inline-block;
}

#bottomMenu img{
    height:30px;
    vertical-align:top;
    margin-bottom:2px;
}

.legend-text {
	display: flex;
	align-items: center;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #333;
}

.legend-text::before,
.legend-text::after {
	content: "";
	flex: 1;
	height: 1px;
	background-color: #333;
	margin: 0 10px;
}

.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.svg');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;}
#copyright{
	background:var(--darkblue);

}
#copyright * {color:#ffffff;line-height:80px;}

.whatsapp-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: url('template/whatsapp.svg') no-repeat center center / cover;
    border-radius: 50%;
    box-shadow: -5px -5px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    animation: myshake 4s ease-in-out infinite;
    animation-delay: 0s;


}

/* Shake (rotate) animation */
@keyframes myshake {
    0%, 100% { transform: rotate(0deg); }
    3% { transform: rotate(-15deg); }
    6% { transform: rotate(15deg); }
    9% { transform: rotate(-10deg); }
    15% { transform: rotate(10deg); }
	18% { transform: rotate(0deg); }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-icon {
        width: 45px;
        height: 45px;
        right: 10px;
        bottom: 10px;
    }
}

.icon-box {
  position: relative;
}

/* Handles both ::before and ::after for left/right placement */
.icon-box::before,
.icon-box::after {
  content: "";
  display: block;
  position: absolute;
  top: var(--icon-top, 0);
  width: var(--icon-size, 20px);
  height: var(--icon-size, 20px);
  background-image: var(--icon-bg);
  background-color: var(--debug-bg, transparent);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

/* Only one side is set at a time by JS */
.icon-box::before {
  left: var(--icon-left);
}

.icon-box::after {
  right: var(--icon-right);
}

/* Specific icon classes as fallback */
.icon-stork.has-left-icon::before {
  background-image: url('./template/icons/stork.svg') !important;
  top: var(--icon-top, 0) !important;
}

.icon-stork.has-right-icon::after {
  background-image: url('./template/icons/stork.svg') !important;
  top: var(--icon-top, 0) !important;
}

/* High specificity rule for proper positioning */
.icon-box.icon-stork.has-left-icon::before {
  top: var(--icon-top, 0) !important;
}

.icon-box.icon-stork.has-right-icon::after {
  top: var(--icon-top, 0) !important;
}

/* Car icon rules */
.icon-car.has-left-icon::before {
  background-image: url('./template/icons/car.svg') !important;
  top: var(--icon-top, 0) !important;
}

.icon-car.has-right-icon::after {
  background-image: url('./template/icons/car.svg') !important;
  top: var(--icon-top, 0) !important;
}

.icon-box.icon-car.has-left-icon::before {
  top: var(--icon-top, 0) !important;
}

.icon-box.icon-car.has-right-icon::after {
  top: var(--icon-top, 0) !important;
}

/* Hide unwanted pseudo-elements */
.icon-box.has-left-icon:not(.has-right-icon)::after {
  display: none !important;
}

.icon-box.has-right-icon:not(.has-left-icon)::before {
  display: none !important;
}

.greenLine{
	border-top:1px solid var(--secondary);
}

.topTitle{
	background:#ffffff;
	display:inline-block;
	margin:auto;
	color:var(--primary);
	font-size:14pt;
	position:relative;
	top:-30px;
	padding-right:20px;
	padding-left:20px;
	letter-spacing:1px;
}

.citySearchTitle{
	border-top-left-radius:20px;
	border-bottom-left-radius:20px;
	padding-left:30px;
	padding-right:30px;
	background:#ededed;
	height:40px;
	line-height:40px;
	color:var(--primary);
	display:inline-block;
	vertical-align:middle;
	font-size:12pt;
	min-width:60px;
}
.citySearchSelect{
	border:none;
	background:#dadada;
	color:#000000;
	height:40px;
	font-size:12pt;
	outline:none;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	display:inline-block;
	line-height:40px;
	vertical-align:middle

}

.fakeSelect{
  position:relative;
  display:inline-block;
  min-width:200px;
}

.fakeSelect .label{
  box-sizing:border-box;
  cursor:pointer;
}

.fakeSelect .items{
  position:absolute;
  left:0;
  right:0;
  top:100%;
  border:1px solid #ccc;
  background:#fff;
  display:none;
  z-index:999;
}

.fakeSelect:focus-within .items{
  display:block;
}

.fakeSelect .items a{
  display:block;
  padding:8px;
  text-decoration:none;
  color:#333;
}

.fakeSelect .items a:hover{
  background:#eee;
}

.categHolder{
	background:var(--secondary);padding-top:80px;padding-bottom:80px;
	color:#ffffff;
}
.categHolder a{
	color:#ffffff
}

.category{
	text-align: center;
}




.membersMenu {
	background: #cccccc;
	border-radius: 35px;
	height:70px;
	display: flex;
	align-items: center;
	justify-content: center;
	position:fixed;
	bottom:20px;
	width:360px;
	max-width:100%;
	left:calc(50% - 180px);
	z-index:1000;
	box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.6);
}

.membersMenu span{
	display:inline-block;
	width:35px;
	height:35px;
	background-size:contain;
	vertical-align: top;
}


.menuProfile{
	background: url('template/icons/profile.svg') no-repeat center center;
}
.menuListings{
	background: url('template/icons/listings.svg') no-repeat center center;
}
.menuBookings{
	background: url('template/icons/bookings.svg') no-repeat center center;
}

.menuBp{
	background: url('template/icons/bp.svg') no-repeat center center;
}

.menuInbox{
	background: url('template/icons/inbox.svg') no-repeat center center;
}


.menuSignout{
	background: url('template/icons/signout.svg') no-repeat center center;
}


.membersMenu a{
	line-height:20px;
	font-size:9pt;
	color:#000000;
	text-align:center;
	display:block;
}
.membersMenu a:hover{
	color:var(--primary);
}

.oragnge{color:var(--primary);}
.orange:hover{color:var(--primary);}

.orangeButton{
	background:var(--primary);
	color:#ffffff;
	padding-left:20px;
	padding-right:20px;
	border-radius:50px;
	text-align:center;
	outline:0;
	display:inline-block;
	line-height:40px;
	height:40px;
	border:0;
	cursor:pointer;
}
.orangeButton:hover{
	background:darkorange;
	color:#ffffff;
}

.dashboardIcon{
	display:inline-block;
	width: 20px;
	height:20px;
	background-size:contain;
	vertical-align: middle;
	margin-right:10px;
}


.greenButton{
	background:var(--secondary);
	color:#ffffff;
	padding-left:30px;
	padding-right:30px;
	border-radius:50px;
	text-align:center;
	outline:0;
	display:inline-block;
	line-height:40px;
	height:40px;
	border:0;
	cursor:pointer;
}

.greenButton:hover{
	color:#eeeeee;
}

.lightButton,lightButton:hover{
	background:#eeeeee;
	color:var(--primary);
	padding-left:30px;
	padding-right:30px;
	border-radius:50px;
	text-align:center;
	outline:0;
	display:inline-block;
	line-height:45px;
	height:50px;
	border:0;
	cursor:pointer;
	min-width:150px;
}

.greenDiv{
	background:var(--secondary);
}

.orangeDiv{
	background:var(--primary);
}

.addButton{
	background:green;
	color:#ffffff;
	padding-left:15px;
	padding-right:15px;
	border-radius:50px;
	text-align:center;
	outline:0;
	display:inline-block;
	line-height:30px;
	height:30px;
	border:0;
	cursor:pointer;
	min-width:150px;
	line-height:40px;
	height:40px;
}

.addButton:hover{
	background:darkgreen;
	color:#ffffff;
}

.addButtonOrange{
	background:var(--primary);
	color:#ffffff;
	padding-left:15px;
	padding-right:15px;
	border-radius:50px;
	text-align:center;
	outline:0;
	display:inline-block;
	line-height:30px;
	height:30px;
	border:0;
	cursor:pointer;
	min-width:150px;
	line-height:40px;
	height:40px;
}

.greenDivider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.greenDivider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--secondary);
  transform: translateY(-50%);
  z-index: 1;
}

.greenDivider span {
  position: relative;
  padding: 0 10px;
  background-color: #fff;
  z-index: 2;
  font-size: 16px;
}

.photoChooser{
	border: 1px solid #cccccc;
	border-radius: 4px;
	padding: 20px;
	text-align: center;
	color: #666666;
}

.listingTitle{
	font-weight:bold;
	color:var(--primary);
}


.shortHr{
	border: 0;
	border-top: 1px solid var(--secondary);
	width: 50px;
	margin: 20px auto;
}

.camera-orange{
	display:inline-block;
	width: 38px;
	height:38px;
	background-size:70% 70%;
	background-repeat: no-repeat;
	background-position: center center;
	vertical-align: middle;
	background-image: url('template/icons/camera-orange.svg');
	border-radius:50%;
	background-color:#b2b2b2;
}

.camera-white{
	display:inline-block;
	width: 38px;
	height:38px;
	background-repeat: no-repeat;
	vertical-align: middle;
	background-image: url('template/icons/camera-white.svg');
	background-size:70% 70%;
	background-position: center center;
	border-radius:50%;
	background-color: var(--primary);
}

.rentLend{
	display:inline-block;
	background:#e3e3e3;
	color:white;
	padding:10px;
	border-radius:50px;
	text-align:center;
	min-width:120px;
}
.rentLend.active{
	background:var(--primary);
	color:#ffffff;
}

.diagonal-green {
  background: linear-gradient(
    to bottom right,
    transparent calc(50% - 1px),
    var(--secondary) 50%,
    transparent calc(50% + 1px)
  );
  height: 20px;
  width: 15px;
  display:inline-block;
  margin-left:10px;
  margin-right:10px;

}