
/*======map animation====*/
.mobile-map-animation-padding{
	padding-top:130px;
}
.map-animation-section{
	position:relative;
	z-index:2;
}

.map-animation-left {
	width: 100%;
	position: relative;
}
.map-animation-block{
	position:relative;
}
.map-marker-block {
//	position: absolute;
	width: 100%;
	max-width: 900px;
	margin: 0px auto;
//	left: 50%;
//	top: 40px;
//	transform: translateX(-50%);
//	-webkit-transform: translateX(-50%);
}
.map-marker-position {
	position: absolute;
}

.map-marker {
	position: relative;
}

.user-hand img {
	position: absolute;
	left:50%;
	margin-left:-58px;
	bottom: -120px;
	width: 116px;
	
	transform-origin: bottom center;
	-webkit-transform-origin: bottom center;
	-webkit-animation: moveIt 3.5s ease-in-out forwards infinite;
	animation: moveIt 3.5s ease-in-out forwards infinite;
}

@media only screen and (max-width:768px) {
	.user-hand img {
		bottom: -70px;
		width: 100px;
		margin-left:-50px;
	}
}




/*==========Moveing Animation=========*/

@keyframes moveIt {
	0%,
	100% {
		transform: rotate(5deg);
	}
	50% {
		transform: rotate(-5deg);
	}
}


/*==========Moveing Animation END=========*/


.map-animation-right {
	width: 40%;
	margin-left: 15px;
	float: right;
}

.map-marker-block .map-bg {
	width: 100%
}



.scale-75 {
	-ms-transform: scale(0.7);
	/* IE 9 */
	-webkit-transform: scale(0.7);
	/* Safari */
	transform: scale(0.7);
	/* Standard syntax */
}

.scale-50 {
	-ms-transform: scale(0.5);
	/* IE 9 */
	-webkit-transform: scale(0.5);
	/* Safari */
	transform: scale(0.5);
	/* Standard syntax */
}

.position-1 {
	z-index: 10;
	left: 50%;
	top: 15%;
}

.position-2 {
	z-index: 9;
	left: 25%;
	top: 30%;
}

.position-3 {
	z-index: 8;
	right: 25%;
	top: 30%;
}

.position-4 {
	z-index: 7;
	left: 40%;
	top: 6%;
}

.position-5 {
	z-index: 6;
	left: 30%;
	top: 20%;
}

.position-6 {
	z-index: 5;
	right: 40%;
	top: -5%;
}

.position-7 {
	z-index: 4;
	right: 30%;
	top: -10%;
}


@media only screen and (max-width:991px) {
	.position-4,
	.position-6 {
		top: 8%;
	}
	.position-5,
	.position-7 {
		top: 10%;
	}
}



/*Ipad Animation 2*/
.map-animation-ipad .map-marker-block {
	position: relative;
	margin: 0px auto;
	z-index: 1;
	top:0px;
}

.map-animation-ipad .map-animation-right {
	width: 100%;
	float: none;
	margin-bottom: 50px;
	text-align: center;
}

.map-animation-ipad .map-animation-right .wt-icon-box-wraper {
	display: inline-block;
}

.map-animation-ipad .map-animation-left{
	width: 100%;
	float: none;
	text-align: center;
}

@media only screen and (max-width: 767px){
.map-animation-ipad .map-animation-left {
    padding-bottom: 0px;
}
}


.map-animation-ipad .position-1{
	z-index: 10;
	left: 50%;
	top: 35%;
}

.map-animation-ipad .position-2{
	z-index: 9;
	left: 42%;
	top: 66%;
}

.map-animation-ipad .position-3{
	z-index: 8;
	right: 25%;
	top: 32%;
}

.map-animation-ipad .position-4{
	z-index: 7;
	left: 35%;
	top: 38%;
}

.map-animation-ipad .position-5{
	z-index: 6;
	left: 15%;
	top: 44%;
}

.map-animation-ipad .position-6{
	z-index: 5;
	right: 55%;
	top: 15%;
}

.map-animation-ipad .position-7{
	z-index: 4;
	right: 34%;
	top: 15%;
}


@media only screen and (max-width:600px) {
	.map-animation-ipad .map-animation-right {
		text-align: left;
	}
}

/*=========up down Animation=========*/

.vert-move1 {
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 1s infinite alternate;
}

@-webkit-keyframes mover {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-10px);
	}
}

@keyframes mover {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-10px);
	}
}

.vert-move2 {
	-webkit-animation: mover2 1s infinite alternate;
	animation: mover2 1s infinite alternate;
}

@-webkit-keyframes mover2 {
	0% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}

@keyframes mover2 {
	0% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}



/*=========MAP PIN =============*/

.map-pin {
	width: 80px;
	height: 80px;
	border-radius: 50% 50% 50% 0;
	position: absolute;
	z-index: 1;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 0%;
	top: 0%;
	margin: -20px 0 0 -20px;
	-webkit-animation-name: bounce;
	-moz-animation-name: bounce;
	-o-animation-name: bounce;
	-ms-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: both;
	-o-animation-fill-mode: both;
	-ms-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-duration: 1s;
	-moz-animation-duration: 1s;
	-o-animation-duration: 1s;
	-ms-animation-duration: 1s;
	animation-duration: 1s;
}

.map-pin img {
	position: absolute;
	z-index: 1;
	width: 55%;
	left: 23%;
	top: 23%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.map-pin:after {
	content: '';
	width: 80%;
	height: 80%;
	margin: 8px 0 0 8px;
	background: #fff;
	position: absolute;
	border-radius: 50%;
	left: 0px;
}

.pin-pulse {
	background: rgba(37, 54, 65, 0.2);
	border-radius: 50%;
	height: 14px;
	width: 14px;
	position: absolute;
	left: 25px;
	top: 58px;
	margin: 11px 0px 0px -12px;
	-webkit-transform: rotateX(55deg);
	-moz-transform: rotateX(55deg);
	-o-transform: rotateX(55deg);
	-ms-transform: rotateX(55deg);
	transform: rotateX(55deg);
	z-index: 0;
}

.pin-pulse:after {
	content: "";
	border-radius: 50%;
	height: 40px;
	width: 40px;
	position: absolute;
	left: 0px;
	margin: -13px 0 0 -13px;
	-webkit-animation: pulsate 1s ease-out;
	-moz-animation: pulsate 1s ease-out;
	-o-animation: pulsate 1s ease-out;
	-ms-animation: pulsate 1s ease-out;
	animation: pulsate 1s ease-out;
	-webkit-animation-iteration-count: infinite;
	-moz-animation-iteration-count: infinite;
	-o-animation-iteration-count: infinite;
	-ms-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-webkit-box-shadow: 0 0 1px 2px #253641;
	box-shadow: 0 0 1px 2px #253641;
	-webkit-animation-delay: 1.1s;
	-moz-animation-delay: 1.1s;
	-o-animation-delay: 1.1s;
	-ms-animation-delay: 1.1s;
	animation-delay: 1.1s;
}

@-moz-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@-webkit-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@-o-keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@keyframes pulsate {
	0% {
		-webkit-transform: scale(0.1, 0.1);
		-moz-transform: scale(0.1, 0.1);
		-o-transform: scale(0.1, 0.1);
		-ms-transform: scale(0.1, 0.1);
		transform: scale(0.1, 0.1);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
	50% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
	}
	100% {
		-webkit-transform: scale(1.2, 1.2);
		-moz-transform: scale(1.2, 1.2);
		-o-transform: scale(1.2, 1.2);
		-ms-transform: scale(1.2, 1.2);
		transform: scale(1.2, 1.2);
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
	}
}

@-moz-keyframes bounce {
	0% {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-2000px) rotate(-45deg);
		-moz-transform: translateY(-2000px) rotate(-45deg);
		-o-transform: translateY(-2000px) rotate(-45deg);
		-ms-transform: translateY(-2000px) rotate(-45deg);
		transform: translateY(-2000px) rotate(-45deg);
	}
	60% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
		-webkit-transform: translateY(30px) rotate(-45deg);
		-moz-transform: translateY(30px) rotate(-45deg);
		-o-transform: translateY(30px) rotate(-45deg);
		-ms-transform: translateY(30px) rotate(-45deg);
		transform: translateY(30px) rotate(-45deg);
	}
	80% {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		-moz-transform: translateY(-10px) rotate(-45deg);
		-o-transform: translateY(-10px) rotate(-45deg);
		-ms-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		-moz-transform: translateY(0) rotate(-45deg);
		-o-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@-webkit-keyframes bounce {
	0% {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-2000px) rotate(-45deg);
		-moz-transform: translateY(-2000px) rotate(-45deg);
		-o-transform: translateY(-2000px) rotate(-45deg);
		-ms-transform: translateY(-2000px) rotate(-45deg);
		transform: translateY(-2000px) rotate(-45deg);
	}
	60% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
		-webkit-transform: translateY(30px) rotate(-45deg);
		-moz-transform: translateY(30px) rotate(-45deg);
		-o-transform: translateY(30px) rotate(-45deg);
		-ms-transform: translateY(30px) rotate(-45deg);
		transform: translateY(30px) rotate(-45deg);
	}
	80% {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		-moz-transform: translateY(-10px) rotate(-45deg);
		-o-transform: translateY(-10px) rotate(-45deg);
		-ms-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		-moz-transform: translateY(0) rotate(-45deg);
		-o-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@-o-keyframes bounce {
	0% {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-2000px) rotate(-45deg);
		-moz-transform: translateY(-2000px) rotate(-45deg);
		-o-transform: translateY(-2000px) rotate(-45deg);
		-ms-transform: translateY(-2000px) rotate(-45deg);
		transform: translateY(-2000px) rotate(-45deg);
	}
	60% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
		-webkit-transform: translateY(30px) rotate(-45deg);
		-moz-transform: translateY(30px) rotate(-45deg);
		-o-transform: translateY(30px) rotate(-45deg);
		-ms-transform: translateY(30px) rotate(-45deg);
		transform: translateY(30px) rotate(-45deg);
	}
	80% {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		-moz-transform: translateY(-10px) rotate(-45deg);
		-o-transform: translateY(-10px) rotate(-45deg);
		-ms-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		-moz-transform: translateY(0) rotate(-45deg);
		-o-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@keyframes bounce {
	0% {
		opacity: 0;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
		filter: alpha(opacity=0);
		-webkit-transform: translateY(-2000px) rotate(-45deg);
		-moz-transform: translateY(-2000px) rotate(-45deg);
		-o-transform: translateY(-2000px) rotate(-45deg);
		-ms-transform: translateY(-2000px) rotate(-45deg);
		transform: translateY(-2000px) rotate(-45deg);
	}
	60% {
		opacity: 1;
		-ms-filter: none;
		filter: none;
		-webkit-transform: translateY(30px) rotate(-45deg);
		-moz-transform: translateY(30px) rotate(-45deg);
		-o-transform: translateY(30px) rotate(-45deg);
		-ms-transform: translateY(30px) rotate(-45deg);
		transform: translateY(30px) rotate(-45deg);
	}
	80% {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		-moz-transform: translateY(-10px) rotate(-45deg);
		-o-transform: translateY(-10px) rotate(-45deg);
		-ms-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}
	100% {
		-webkit-transform: translateY(0) rotate(-45deg);
		-moz-transform: translateY(0) rotate(-45deg);
		-o-transform: translateY(0) rotate(-45deg);
		-ms-transform: translateY(0) rotate(-45deg);
		transform: translateY(0) rotate(-45deg);
	}
}

@media only screen and (max-width:991px) {
.map-pin {
	margin: -40px 0 0 -20px;
}
.pin-pulse{
	top:40px;
}	
.mobile-map-animation-padding {
    padding-top: 80px;
}
.info-video-title .wt-tilte{
	margin-bottom:50px;
}
	
}

@media only screen and (max-width:767px) {
	.map-animation-left {
		padding-bottom: 100px;
	}
	.map-pin {
		width: 60px;
		height: 60px;
	}
	.map-pin::after {
		width: 75%;
		height: 75%;
	}
	.pin-pulse {
		left: 14px;
		top: 15px;
	}
	
	.position-5 {
		left: 15%;
	}
	
.map-marker-block {
	top: 10px;
}	
}
@media only screen and (max-width:576px) {
	.map-marker-block {
		position:inherit;
		top:inherit;
	}
	.map-animation-section{
		padding-bottom:30px;
	}		
}

@media only screen and (max-width:420px) {
	.map-pin {
		width: 45px;
		height: 45px;
	}
	.map-pin::after {
		width: 65%;
		height: 65%;
	}
	.pin-pulse {
		left: 7px;
		top: 0px;
	}
}


/*====multiline-animation====*/

.multi-line-animation {
	width: 100%;
	bottom: 0px;
	height: 100vh;
	position: absolute;
	z-index: 0;
}

.multi-line-one,
.multi-line-two,
.multi-line-three,
.multi-line-four {
	position: absolute;
	bottom: 0px;
	height: 100vh;
	width: 4px;
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	z-index: 20;
}

.multi-line-one {
	left: 20%;
}

.multi-line-two {
	left: 40%;
}

.multi-line-three {
	left: 60%;
}

.multi-line-four {
	left: 80%;
}

@media only screen and ( max-width:991px) {
	.multi-line-animation {
		display: none;
	}
}

.animation-block1 {
	animation-duration: 10s;
	animation-iteration-count: infinite;
	height: 80px;
	margin: 0px 0px 0px -2px;
	transform-origin: bottom;
	width: 3px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0f1221+51,0f1221+100,000000+100&0+0,1+50,0+100 */
	background: -moz-linear-gradient(top, rgba(77, 183, 254, 0) 0%, rgba(77, 183, 254, 1) 50%, rgba(77, 183, 254, 0.98) 51%, rgba(0, 0, 0, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(77, 183, 254, 0) 0%, rgba(77, 183, 254, 1) 50%, rgba(77, 183, 254, 0.98) 51%, rgba(0, 0, 0, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(77, 183, 254, 0) 0%, rgba(77, 183, 254, 1) 50%, rgba(77, 183, 254, 0.98) 51%, rgba(0, 0, 0, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000f1221', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
}

.bounce-1 {
	animation-name: bounce-1;
	animation-timing-function: linear;
}

@keyframes bounce-1 {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(100vh);
	}
	100% {
		transform: translateY(0);
	}
}

.animation-block2 {
	animation-duration: 20s;
	animation-iteration-count: infinite;
	height: 80px;
	margin: 0px 0px 0px -2px;
	transform-origin: bottom;
	width: 3px;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0f1221+51,0f1221+100,000000+100&0+0,1+50,0+100 */
	background: -moz-linear-gradient(top, rgba(77, 183, 254, 0) 0%, rgba(77, 183, 254, 1) 50%, rgba(77, 183, 254, 0.98) 51%, rgba(0, 0, 0, 0) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(77, 183, 254, 0) 0%, rgba(77, 183, 254, 1) 50%, rgba(77, 183, 254, 0.98) 51%, rgba(0, 0, 0, 0) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(77, 183, 254, 0) 0%, rgba(77, 183, 254, 1) 50%, rgba(77, 183, 254, 0.98) 51%, rgba(0, 0, 0, 0) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000f1221', endColorstr='#00000000', GradientType=0);
	/* IE6-9 */
}

.bounce-2 {
	animation-name: bounce-2;
	animation-timing-function: linear;
}

@keyframes bounce-2 {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(100vh);
	}
	100% {
		transform: translateY(0);
	}
}


/*====multiline-animation End====*/


/*====News Letter Background animation=====*/

.area {
	position: relative;
}

.circles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.circles li {
	position: absolute;
	display: block;
	list-style: none;
	width: 20px;
	height: 20px;
	background: rgba(255, 255, 255, 0.2);
	animation: animate 25s linear infinite;
	bottom: -150px;
}

.circles li:nth-child(1) {
	left: 25%;
	width: 80px;
	height: 80px;
	animation-delay: 0s;
}

.circles li:nth-child(2) {
	left: 10%;
	width: 20px;
	height: 20px;
	animation-delay: 2s;
	animation-duration: 12s;
}

.circles li:nth-child(3) {
	left: 70%;
	width: 20px;
	height: 20px;
	animation-delay: 4s;
}

.circles li:nth-child(4) {
	left: 40%;
	width: 60px;
	height: 60px;
	animation-delay: 0s;
	animation-duration: 18s;
}

.circles li:nth-child(5) {
	left: 65%;
	width: 20px;
	height: 20px;
	animation-delay: 0s;
}

.circles li:nth-child(6) {
	left: 75%;
	width: 110px;
	height: 110px;
	animation-delay: 3s;
}

.circles li:nth-child(7) {
	left: 35%;
	width: 150px;
	height: 150px;
	animation-delay: 7s;
}

.circles li:nth-child(8) {
	left: 50%;
	width: 25px;
	height: 25px;
	animation-delay: 15s;
	animation-duration: 45s;
}

.circles li:nth-child(9) {
	left: 20%;
	width: 15px;
	height: 15px;
	animation-delay: 2s;
	animation-duration: 35s;
}

.circles li:nth-child(10) {
	left: 85%;
	width: 150px;
	height: 150px;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}
	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

.bg-icon-animation-outer {
	position: relative;
}

.bg-icon-animation {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bg-icon-animation li {
	position: absolute;
	display: block;
	list-style: none;
	animation: animate_icon 25s linear infinite;
	bottom: -150px;
}

.bg-icon-animation li i {
	font-size: 52px;
	opacity: 0.5
}

.bg-icon-animation li:nth-child(1) {
	left: 5%;
	animation-delay: 0s;
}

.bg-icon-animation li:nth-child(2) {
	left: 10%;
	animation-delay: 2s;
	animation-duration: 12s;
}

.bg-icon-animation li:nth-child(3) {
	left: 15%;
	animation-delay: 4s;
}

.bg-icon-animation li:nth-child(4) {
	left: 20%;
	animation-delay: 0s;
	animation-duration: 18s;
}

.bg-icon-animation li:nth-child(5) {
	left: 25%;
	animation-delay: 0s;
}

.bg-icon-animation li:nth-child(6) {
	left: 30%;
	animation-delay: 3s;
}

.bg-icon-animation li:nth-child(7) {
	left: 35%;
	animation-delay: 7s;
}

.bg-icon-animation li:nth-child(8) {
	left: 40%;
	animation-delay: 15s;
	animation-duration: 45s;
}

.bg-icon-animation li:nth-child(9) {
	left: 45%;
	animation-delay: 2s;
	animation-duration: 35s;
}

.bg-icon-animation li:nth-child(10) {
	left: 50%;
	animation-delay: 0s;
	animation-duration: 11s;
}

.bg-icon-animation li:nth-child(11) {
	left: 55%;
	animation-delay: 0s;
}

.bg-icon-animation li:nth-child(12) {
	left: 60%;
	animation-delay: 2s;
	animation-duration: 12s;
}

.bg-icon-animation li:nth-child(13) {
	left: 65%;
	animation-delay: 4s;
}

.bg-icon-animation li:nth-child(14) {
	left: 70%;
	animation-delay: 0s;
	animation-duration: 18s;
}

.bg-icon-animation li:nth-child(15) {
	left: 75%;
	animation-delay: 0s;
}

.bg-icon-animation li:nth-child(16) {
	left: 80%;
	animation-delay: 3s;
}

.bg-icon-animation li:nth-child(17) {
	left: 85%;
	animation-delay: 7s;
}

.bg-icon-animation li:nth-child(18) {
	left: 90%;
	animation-delay: 15s;
	animation-duration: 45s;
}

.bg-icon-animation li:nth-child(19) {
	left: 95%;
	animation-delay: 2s;
	animation-duration: 35s;
}

.bg-icon-animation li:nth-child(20) {
	left: 100%;
	animation-delay: 0s;
	animation-duration: 11s;
}

@keyframes animate_icon {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}
	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

@media only screen and (max-width:640px) {
	.bg-icon-animation li i {
		font-size: 32px;
	}
}


/*======== page-notfound =======*/

.page-notfound {
	display: table;
	width: 100%;
	text-align: center;
	padding: 100px 0px;
	max-width: 520px;
	margin: auto;
}

.page-notfound strong {
	font-size: 150px;
	line-height: 150px;
	font-weight: 900;
	color:#f96b39;
}

@media only screen and (max-width:640px) {
	.page-notfound strong {
		font-size: 80px;
		line-height: 80px;
	}
	.page-notfound h4 {
		font-size: 18px;
	}
}


/*----coming soon----*/

.coming-s-bg {
	height: 100vh;
	display: table;
	width: 100%;
}

.coming-soon-content {
	display: table-cell;
	vertical-align: middle;
	color: #fff;
	position: relative;
	z-index: 1;
}

.countdown-container {
	position: relative;
}

.clock-item{
	width:100px;
	display:inline-block;
}

.clock-item .inner {
	height: 0px;
	padding-bottom: 100%;
	position: relative;
	width: 100%;
}

.clock-canvas {
	background-color: rgba(255, 255, 255, .1);
	border-radius: 50%;
	height: 0px;
	padding-bottom: 100%;
}

.countdown-container .text {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	text-align: center;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

.countdown-container .text .val {
	font-size: 24px;
	margin-bottom:5px;
}

.countdown-container .text .type-time {
	font-size: 14px;
	margin: 0px;
}



.c-newsletter{
	max-width:520px;
	margin:0px auto;
}

/*====Event Countdown====*/

.singlelist-countdown.countdown-container {
	position: relative;
}

.singlelist-countdown .clock-item .inner {
	height: 0px;
	padding-bottom: 100%;
	position: relative;
	width: 100%;
}

.singlelist-countdown .clock-canvas {
	background-color: rgba(255, 255, 255, .1);
	border-radius: 50%;
	height: 0px;
	padding-bottom: 100%;
}

.singlelist-countdown.countdown-container .text {
	color: #000;
	font-size: 30px;
	font-weight: bold;
	position: absolute;
	top: 100%;
	text-align: center;
	text-shadow: none;
	width: 100%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

.singlelist-countdown.countdown-container .text .val {
	font-size: 16px;
}

.singlelist-countdown.countdown-container .text .type-time {
	font-size: 12px;
	margin: 0px;
}

@media only screen and (max-width: 640px) {
	.countdown-container .text .val {
		font-size: 20px;
		margin-bottom: 0px;
	}
	.countdown-container .text .type-time {
		font-size: 14px;
		margin: 0px;
	}
}

@media only screen and (max-width: 540px) {
	.countdown-time-value.clock-item.col-xs-3 {
		width: 50%;
		margin-bottom: 30px;
	}
	.countdown-container .text .val {
		font-size: 20px;
		margin-bottom: 0px;
	}
	.countdown-container .text .type-time {
		font-size: 12px;
		margin: 0px;
		font-weight: normal;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.clock-item {
		margin-bottom: 30px;
	}
	.singlelist-countdown.countdown-container .text {
		position: absolute;
		top: 50%;
	}
	.singlelist-countdown.countdown-container .clock {
		padding-bottom: 0px;
	}
}

@media (max-width: 767px) {
	.singlelist-countdown.countdown-container .text {
		position: absolute;
		top: 50%;
	}
	.singlelist-countdown.countdown-container .clock-item {
		margin: 0px 0px 30px 0px;
		padding-bottom: 0px;
	}
}

@media (max-width: 600px) {
	.singlelist-countdown.countdown-container .clock-item.col-xs-100pc {
		width: 50%;
	}
	.singlelist-countdown.countdown-container .clock {
		padding-bottom: 0px;
	}
}


/*=========List View btn =========*/

.wt-listing-filter-bar2 {
	margin-bottom: 20px;
}

.wt-listviewbtn-wrap {
	float: left;
}

.wt-listviewbtn-wrap .wt-listview-btn {
	width: 44px;
	height: 44px;
	line-height: 44px;
	font-size: 14px;
	outline: none;
	background: #fff;
	border: 1px solid #e1e6eb;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	display: inline-block;
	text-align: center;
}

.wt-searchReasult-divider {
	height: 1px;
	background-color: #ddd;
	margin-bottom: 30px;
	clear: both;
}

.filter-address-inputs {
	position: relative;
}

.filter-address-inputs .form-control {
	padding: 9px 20px 9px 10px;
}

.filter-address-inputs .get-current-city {
	position: absolute;
	right: 10px;
	top: 10px;
}

.filter-destination-slider .slider.slider-horizontal {
	width: 100%;
}

.filter-destination-slider .range-slider-disable-btn {
	position: absolute;
}

.filter-destination-slider .range-slider-disable-btn+label {
	margin-bottom: 0px;
	margin-top: 15px;
	padding-left: 30px !important;
}

.filter-destination-slider input[type=checkbox]+label:before,
.filter-destination-slider input[type=radio]+label:before {
	margin-left: -30px;
}
@media only screen and (max-width:575px){
.wt-listviewbtn-wrap {
	float:none;clear:both;
}
.side-bar-opposite .wt-sortby-wrap{
	margin-top:20px;
}

}

/*====listing-full-width====*/

.wt-full-width-filter-features .wt-radio-checkbox {
	display: inline-block;
	margin-right:5px;
	margin-left:5px;
	margin-bottom:15px;
}
@media only screen and (max-width:991px){
.wt-full-width-filter-features .wt-radio-checkbox {
	margin-bottom:5px;
}
}

@media only screen and (max-width:640px){
.wt-full-width-filter-features .wt-radio-checkbox {
	display: inline-block;
	margin-right: 0px;
	margin-left: 0px;
	width:100%;
}
}

/*radio & checkbox*/

.wt-filter-features-wrap {
	margin-top:0px;
}

.wt-filter-features-wrap {
	margin-top:0px;
}

.wt-radio-checkbox {
	margin-top: 0px;
	margin-bottom: 20px;
}

.wt-radio-checkbox.radio-inline,
.wt-radio-checkbox.checkbox-inline {
	padding-left: 0 !important;
}

.wt-radio-checkbox label {
	font-weight: normal !important;
}

.wt-radio-checkbox input[type=checkbox],
.wt-radio-checkbox input[type=radio] {
	display: none;
	opacity: 0;
	margin-left: 1px !important;
}

.wt-radio-checkbox input[type=checkbox]+label,
.wt-radio-checkbox input[type=radio]+label {
	display: block;
	padding-left: 35px !important;
	min-height: 24px;
	padding: 0px 0px;
	position: relative;
	cursor: pointer;
	font-size:14px;
}

.wt-radio-checkbox input[type=radio]+label:hover:before {
	border-color: #fff;
	background: #3396d1;
	box-shadow: 0 0 1px 2px #3396d1;
	-webkit-box-shadow: 0 0 1px 2px #3396d1;
}

.wt-radio-checkbox input[type=checkbox]+label:hover:before {
	border-color: #f96b39;
}

.wt-radio-checkbox input[type=radio]+label:before {
	background-color: #fff;
	border: 5px solid #fff;
	content: "";
	display: inline-block;
	height: 24px;
	line-height: 1;
	margin-left: -33px;
	position: absolute;
	top: 2px;
	transition: all linear 0.1s;
	width: 24px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	box-shadow: 0 0 1px 2px #CCCCCC;
	-webkit-box-shadow: 0 0 1px 2px #CCCCCC;
}

.wt-radio-checkbox input[type=checkbox]+label:before {
	background-color: #fff;
	border: 2px solid #CCCCCC;
	content: "";
	display: inline-block;
	line-height: 1;
	margin-left: -35px;
	position: absolute;
	top: 0px;
	transition: all linear 0.1s;
	width: 20px;
	height: 20px;
	border-radius: 0px;
	-webkit-border-radius: 0px;
}

.wt-radio-checkbox input[type=checkbox]+label:after {
	color: #f96b39;
	content: "\f00c";
	font-family: FontAwesome;
	font-size: 0px;
	-webkit-font-smoothing: antialiased;
	left: 6px;
	position: absolute;
	top: 7px;
	transition: all linear 0.1s;
}

.wt-radio-checkbox input[type=checkbox]:checked+label:before {
	border-width: 2px;
	border-color: #f96b39;
}

.wt-radio-checkbox input[type=checkbox]:checked+label:after {
	font-size: 12px;
	left: 5px;
	top: 2px;
}

.wt-radio-checkbox input[type=radio]+label:before {
	border-radius: 50%;
	content: "";
}

.wt-radio-checkbox input[type=radio]:checked+label:before {
	border-color: #fff;
	border-width: 5px;
	background: #3396d1;
	box-shadow: 0 0 1px 2px #f11749;
	-webkit-box-shadow: 0 0 1px 2px #3396d1;
}


/*=================List View===================*/

.list-item-container {
	display: block;
	margin-bottom: 30px;
	position: relative;
	border:1px solid #ddd;
}

.list-image-box .list-category-name {
	display: inline-block;
	padding: 2px 20px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	margin: 30px 30px;
	position:relative;
	z-index:1;
}

.list-item-container .list-image-box{
	width: 340px;
	height: 230px;
	position: relative;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	float: left;
	margin-right: 0px;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	overflow: hidden;
}

.list-item-container .listing-place-logo{
	width: 80px;
	height: 80px;
	padding: 5px;
	background-color:#fff;
	-webkit-box-shadow: -5px 0px 5px rgba(0,0,0,0.3);
	box-shadow: -5px 0px 5pxrgba(0,0,0,0.3);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-top: 0;
	bottom: 15px;
	position: absolute;
	left: 15px;
}

.list-item-container .listing-category-name {
    position: absolute;
    left: 15px;
    top: 15px;
}

.list-item-container .wt-listing-view-section {
    position: absolute;
    right: 15px;
    top: 15px;
}

.list-category-content{
	overflow:hidden;
	padding:20px;
}
.list-category-content .listing-logo-outer{
	margin-bottom:15px;
}
.list-category-content .listing-place-logo{
	width: 80px;
	height: 80px;
	padding: 5px;
	background-color:#fff;
	-webkit-box-shadow: -5px 0px 5px rgba(0,0,0,0.3);
	box-shadow: -5px 0px 5px rgba(0,0,0,0.3);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-top: 0px;
	position: absolute;
	left: 15px;
	bottom: 15px;
}

.list-category-content .listing-place-logo img{
	width:100%;
	display:block;
	-webkit-border-radius: 50%;
	border-radius: 50%;	
}

.list-category-content .listing-place-timing{
	margin-top:0px;
	display: inline-block;
}




.list-item-container .list-image-box ul {
	list-style: none;
	margin: 0px;
}

.list-item-container .list-cat-address {
	padding-top: 15px;
	display: block;
}

.list-item-container .list-cat-address i {
	margin-right: 10px;
}

.list-item-container .list-image-box li {
	display: inline-block;
	position: relative;
	z-index: 1;
}

.list-item-container .list-image-box li:last-child {
	margin-right: 0px;
}

.list-item-container .list-image-box li a {
	color:	#000;
	display: block;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	font-size: 18px;
	background-color:	#fff;
}

.list-category-label {
	margin-top: 15px;
}

.list-cat-featured,
.list-cat-verified {
	color: #fff;
	display: inline-block;
	white-space: nowrap;
	line-height: 20px;
	padding: 3px 10px;
	font-weight: 600;
	font-size: 12px;
	margin: 0 5px 5px 0px;
}

.list-cat-featured {
	background-color: #04A8E8;
}

.list-cat-verified {
	background-color: #00af3c;
}

.list-category-edit {
	margin-top: 15px;
}

.list-btn-edit,
.list-btn-delete {
	display: inline-block;
	white-space: nowrap;
	line-height: 20px;
	padding: 0px 5px;
	font-size: 12px;
	margin: 0 5px 5px 0px;
}

.list-btn-delete {
	background-color: #ff0000;
	color: #fff
}

.list-btn-edit {
	background-color: #54ba1d;
	color: #fff
}
@media only screen and (max-width:1136px) {
.list-item-container{padding:20px;}
.list-category-content {
    padding: 0px 0px 0px 20px;
}
}
@media only screen and (max-width:1200px) {
	.side-bar-opposite{
		margin-bottom:30px;
	}	
}

@media only screen and (max-width:767px) {
.list-item-container .list-image-box {
	width: 100%;
}
.list-category-content{
	overflow:hidden;
	padding:20px 1px 0px 0px;
}
}

@media only screen and (max-width:720px) {
	.list-item-container .list-image-box {
		width: 100%;
		float: none;
		margin: 0px;
	}
}
@media only screen and (max-width:420px) {
.list-item-container{
	padding:0px;
	border:0px;
}
.side-bar-opposite{
	padding:0px;
	box-shadow:none !important;
	margin-bottom: 0px;
}
}


/*===========Half Map list==============*/

.half-map-list {
	position: relative;
	z-index: 1;
	max-width: 800px;
	background-color: #fff;
	width: 100%;
}

.half-map-section {
	width: 100%;
	height: calc(100% - 80px);
	position: fixed;
	right: 0;
	bottom: 0;
	padding-left: 800px;
	z-index:0;
}

.half-map-section #map-container {
	height: 100%;
}

@media only screen and (max-width:1366px){
.half-map-list{
	max-width: 850px;
}
	
.half-map-section{
	padding-left:850px;
}	
}


@media only screen and (max-width:1136px){
	.half-map-list{
		max-width: 700px;
	}
		
	.half-map-section{
		padding-left:700px;
	}	
}

@media only screen and (max-width:991px){
.user-msg-list-btn-outer{	display:block;}	
.half-map-list{
	max-width: 100%;
	float:none;
}

@media only screen and (max-width:768px){
	.half-map-section{
		padding-left:0px;
	}	
}
.half-map-section{
    z-index: 1;
    height: 100%;
    width: auto;
    padding-left: 20px;
}
.half-map-section #map-container{
	padding:0px;
	width:100%;
	height:100vh;
	z-index:999;
	display:block;
	position:fixed;
	left:100%;
	right:auto;
	
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;	
}

.half-map-section.active #map-container #map{
	display:block;
}


.map-show-btn-outer{
	position:fixed;
	top:50%;
	right:12px;	
	z-index:10;	
	-webkit-transform: translateY(-50%);	
	-ms-transform: translateY(-50%);	
	transform: translateY(-50%);
	
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;		
}
.map-show-btn-open{
	display: inline-block;
	cursor: pointer;
	white-space: nowrap;
	background-color: #0f1221;
	border: none;
	padding: 2px 15px;
	color: #fff;
	right: -9px;
	top: -60px;
	position: absolute;
	transform: rotate(270deg);
	transform-origin: center right;
	font-size: 12px;
}
.map-show-btn-close{
	cursor:pointer;
	white-space: nowrap;
	background-color: #0f1221;
	border: none;
	padding: 2px 15px;
	color: #fff;	
	position: absolute;
	transform: rotate(270deg);
	transform-origin: center right;	
	display:none;	
	right:-9px;
	top: -60px;	
	z-index:10;
	font-size: 12px;
	
}

.half-map-section.active #map-container{
	left:0px;
	z-index:10;
}
.half-map-section.active .map-show-btn-outer{
	
	right:100%;
}	
.half-map-section.active .map-show-btn-open{
	display:none;
}
.half-map-section.active .map-show-btn-close{
	display: block;
}	
}

/*===================
	INNER PAGE BANNER
====================*/

.wt-list-banner-inr-wrap {
	position: relative;
}

.wt-list-banner-inr-pic {
	height: 500px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.wt-list-banner-inr-pic.wt-list-banner-inr-half {
	height: 250px;
}

.wt-list-banner-inr-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.7;
}

.wt-list-banner-inr-row {
	display: table;
	max-width: 1170px;
	width: 100%;
	height: 100%;
	margin: auto;
}

.wt-list-banner-inr-text {
	display: table-cell;
	vertical-align: middle;
	font-size: 40px;
	font-weight: 600;
	color: #fff;
	padding-left: 15px;
	padding-right: 15px;
}

.wt-list-banner-inr-text.text-center {
	text-align: left;
}

.wt-list-banner-inr-text.text-center {
	text-align: center;
}

.wt-list-banner-inr-text.text-right {
	text-align: right;
}

.wt-list-single-banner .container,
.wt-list-single-banner .container-fluid {
	position: relative;
	z-index: 10;
}

.wt-list-banner-inr2-overlay {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 1;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#000000', GradientType=0);
	opacity: .7;
}

.wt-list-panel{
	border-radius:5px;
	-webkit-border-radius:5px;
}

.wt-list-single-info-box-top{
	position:relative;
}

.wt-list-single-info-bar{
	position:relative;
}

.wt-list-single-info-box .wt-list-single-title {
	margin: 0 0 15px;
}
.wt-list-single-site-info  .listing-place-logo{
	float:left;
	margin-right:20px;
}
.wt-list-single-site-info  .wt-list-single-info-detail{
	overflow:hidden;
}

.wt-list-single-info-box .listing-place-logo{
	width: 120px;
	height: 120px;
	padding: 5px;
	background-color:#fff;
	-webkit-box-shadow: -5px 0px 5px rgba(0,0,0,0.3);
	box-shadow: -5px 0px 5px rgba(0,0,0,0.3);
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin-top: 0px;
	margin-bottom:20px;
}

.wt-list-single-info-box .listing-place-logo img{
	width:100%;
	display:block;
	-webkit-border-radius: 50%;
	border-radius: 50%;	
}


.wt-list-single-info-box .hosted-by {
	margin-bottom: 15px;
	display: block;
	color: #000;
	position: relative;
}

.wt-list-single-info-box .hosted-by strong {
	display: inline-block;
	padding-left: 5px;
}

.wt-list-single-ratings {
	margin-bottom:0px;
	display:flex;
}

.wt-list-single-ratings .star-rating-input {
	margin-bottom:15px;
	margin-right: 30px;
}

.wt-list-single-ratings .star-rating-counts {
	display: block;
	background-color:#f11749;
	color:#fff;
	font-weight: 600;
	padding: 1px 5px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	margin-right: 20px;
	font-size: 14px;
	height: 22px;
}

.wt-list-single-location-info {
	padding: 25px 0 0;
}

.wt-list-single-location-info li {
	position: relative;
}

.wt-list-single-location-info span {
	color: #1c1c1c;
	font-size: 14px;
	position: absolute;
	left: 0px;
	top: 0px;
}

.wt-list-single-location-info span i {
	margin-right: 5px;
	color: #0f1221;
}

.wt-list-single-location-info p {
	margin-left: 100px;
	margin-bottom: 15px;
}

.wt-list-single-location-info-social .social-icons li a {
	display: block;
	color: #fff;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	background-color: #0f1221;
}

.wt-list-single3-info-box-outer {
	display: table;
	width: 100%;
	padding-top: 300px;
}

.wt-list-single3-info-box-left,
.wt-list-single3-info-box-right {
	display: table-cell;
	vertical-align: bottom;
}

.wt-list-banner-inr2-wrap {
	position: relative;
}

.wt-list-banner-inr2-pic {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.wt-list-single3-info-box .wt-list-single-title {
	margin: 0 0 15px;
}

.wt-list-single3-info-box .hosted-by {
	font-weight: 300;
	padding-left: 40px;
	margin-bottom: 15px;
	display: block;
	position: relative;
}

.wt-list-single3-info-box .hosted-by:before {
	content: "";
	position: absolute;
	left: 0px;
	top: 11px;
	height: 1px;
	width: 25px;
	background-color: #fff;
}

.wt-list-single3-info-box .hosted-by strong {
	display: inline-block;
	padding-left: 5px;
}

.wt-list-single3-ratings {
	margin-bottom: 12px;
}

.wt-list-single3-ratings label {
	color: #fff;
}

.wt-list-single3-ratings .star-rating-input {
	margin-bottom: 20px;
}

.wt-list-single3-ratings .star-rating-counts {
	font-size: 10px;
	display: inline-block;
	background-color: #f11749;
	color: #fff;
	font-weight: 600;
	padding: 1px 5px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
}


.wt-list-single3-location-info li {
	position: relative;
}

.wt-list-single3-location-info span {
	font-size: 14px;
	position: absolute;
	left: 0px;
	top: 0px;
}

.wt-list-single3-location-info span i {
	margin-right: 5px;
}

.wt-list-single3-location-info p {
	margin-left: 25px;
	margin-bottom: 15px;
}

.wt-list-single3-location-info-social .social-icons li a {
	display: block;
	color: #fff;
	padding: 0;
	font-size: 14px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	margin-right: 10px;
}

@media only screen and (max-width:991px){
	.wt-list-single-info-box{margin-bottom:30px;}
	
	.wt-list-single3-location-info li:last-child p {
		margin-bottom: 0px;
	}
}


@media only screen and (max-width:720px) {
	.wt-list-single3-info-box-left,
	.wt-list-single3-info-box-right {
		display: block;
	}
}

@media only screen and (max-width:576px) {
.wt-list-single-site-info  .listing-place-logo{
	float:none;
	margin-right:0px;
}
.wt-list-single-ratings .star-rating-input {
    margin-right: 10px;
}
.wt-list-single-ratings .star-rating-counts {
    margin-right: 10px;
}
}

.wt-single-amenities-list {
	list-style: none;
	margin: 0 -10px;
}

.wt-single-amenities-list li {
	float: left;
	width: 33.333%;
	padding: 10px;
}

.wt-single-amenities-list li .amen-outer {
	position: relative;
	display: table;
}

.wt-single-amenities-list li .amen-outer .ameni-icon,
.wt-single-amenities-list li .amen-outer strong {
	display: table-cell;
	vertical-align: middle;
}

.wt-single-amenities-list li .amen-outer .ameni-icon span {
	width: 36px;
	height: 36px;
	line-height: 36px;
	margin-right: 10px;
	display: block;
	text-align: center;
	border: 1px solid #ddd;
	color:#f96b39;
}

.wt-single-amenities-list li .amen-outer span i {
	width: auto;
	height: 20px;
}

.wt-single-amenities-list li .amen-outer strong {
	overflow: hidden;
}

@media only screen and (max-width:720px) {
	.wt-single-amenities-list li {
		width: 50%;
	}
}

@media only screen and (max-width:540px) {
	.wt-single-amenities-list li {
		width: 100%;
	}
}

.wt-list-single-tags .tagcloud a {
	padding: 5px 30px;
	font-size: 14px;
	display: inline-block;
	margin: 0 0 3px;
	color:#0f1221;
	position: relative;
	background-color:#eff3f6;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: 1px solid#dfdfdf;
	font-weight: 600;
}

.wt-list-single-tags .tagcloud a:hover {
	background-color:#fff9f7;
}

.wt-list-single-accordion .acod-head a {
	font-size: 16px;
	border: 1px solid #eee;
	padding: 10px 15px 10px 40px;
	font-weight: 600;
}

.wt-list-single-accordion .acod-head .indicator {
	padding: 0;
	height: 100%;
	width: 40px;
	position: absolute;
}

.wt-list-single-accordion .acod-head .indicator i{
	position: absolute;
	top:50%;
	left:50%;
	padding:0px;
	margin:0px;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
}

/*========list single gallery========*/

.list-single-gallery-slide-wrap {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.list-single-gallery-slide-thum {
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
}

.list-single-gallery-slide-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: red;
	z-index: 1;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#8f000000', GradientType=0);
}

.list-single-gallery-slide-wrap .mfp-gallery {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	text-align: center;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	-o-transform: translateX(-50%) translateY(-50%);
}

.list-single-gallery-slide-wrap .mfp-gallery i {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	background-color: #0f1221;
	border-radius: 50%;
	-webkit-border-radius:50%;
}


/*comment*/

.wt-list-single-comment {}

.wt-list-single-comment .wt-single-filter-list {
	list-style: none;
}

.wt-list-single-comment .wt-single-filter-list li.comment {
	-webkit-border-radius: 6px;
	border-radius: 6px;
	border-bottom: 1px solid #eee;
}

.wt-list-single-comment .wt-single-filter-list li.comment:last-child {
	border-bottom: none;
}

.wt-list-single-comment .wt-single-filter-list li.comment .comment-body {
	position: relative;
	padding: 20px;
	margin-bottom: 0;
	margin-left: 0px;
	padding-left: 130px;
}

.wt-list-single-comment .wt-single-filter-list li.comment .comment-body p {
	margin-bottom:10px;
}

.wt-list-single-comment .wt-single-filter-list li.comment .comment-author .avatar {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 80px;
	height: 80px;
}

.wt-list-single-comment .wt-single-filter-list li.comment .comment-meta {
	display: inline-block;
	color: #000;
}

.wt-list-single-comment .wt-single-filter-list li.comment .comment-meta .comment-by {
	font-weight: 700;
}

.wt-list-single-comment .wt-single-filter-list li.comment .comment-meta .comment-date{
	font-size: 12px;
	font-weight: 700;
	margin-bottom: 10px;
}


.wt-list-single-comment .wt-single-filter-list li.comment .comment-meta i {
	margin-right: 5px;
}

.wt-list-single-comment .wt-single-filter-list li.comment .ratting {
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 25px;
}

.wt-filter-comment-btn {
	padding: 15px;
	text-align: center;
	border-top: 1px solid #eaeaea;
	border-bottom: 1px solid #eaeaea;
}

@media only screen and (max-width:480px) {
	.wt-list-single-comment .wt-single-filter-list li.comment .ratting {
		position: static;
	}
	.wt-list-single-comment .wt-single-filter-list li.comment .comment-body {
		padding: 10px;
		padding-left: 70px;
	}
	.wt-list-single-comment .wt-single-filter-list li.comment .comment-author .avatar {
		left: 10px;
		width: 50px;
		height: 50px;
	}
}


/*review form*/

.wt-input-icon .input-group-addon {
	position: absolute;
	left: 18px;
	top: 12px;
	z-index: 4;
	border: none;
	padding: 0;
	-webkit-border-radius: 0px;
	border-radius: 6px;
	background: none;
}

.wt-input-icon .input-group {
	position: relative;
}

.wt-input-icon .form-control {
	-webkit-border-radius: 6px !important;
	border-radius: 6px !important;
	padding-left: 40px !important;
	border: 1px solid #e1e6eb !important;
}

.wt-input-icon .star-Rating-input {
	font-size: 20px;
	display: inline-block;
}

.comment-form-rating label {
	display: inline-block;
}

.comment-form-rating .star-Rating-input {
	display: inline-block;
	color: #ffc100 !important;
	font-size: 14px;
	margin-right: 10px;
}

.wt-input-icon .form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #707070;
	font-size: 12px;
}

.wt-input-icon .form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: #707070;
	font-size: 12px;
	text-transform: uppercase;
}

.wt-input-icon .form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: #707070;
	font-size: 12px;
	text-transform: uppercase;
}

.wt-input-icon .form-control:-moz-placeholder {
	/* Firefox 18- */
	color: #707070;
	font-size: 12px;
	text-transform: uppercase;
}


/*review overview*/

.review-overview {
	padding: 0px 0px 30px 0px;
}

.review-rate-box {
	margin-bottom: 20px;
	text-align: center;
	border-radius: 0;
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 10px;
}

.rating-rate-box-total {
	font-size: 62px;
	font-weight: 700;
	line-height: 1em;
	display: block;
	color:#0f1221;
}

.rating-rate-box-percent {
	font-size: 15px;
	margin-bottom: 0;
	color: #888;
	display: block;
}

.review-rate-box .star-Rating-input {
	display: inline-block;
	color: #ffc100 !important;
	font-size: 14px;
	margin-right: 10px;
}

.rating-bars {
	overflow: hidden;
}

.rate-bar-category {
	margin-bottom: 10px;
}

.rate-bars-name {
	font-weight: 600;
	color: #333;
	display: block;
	font-size: 14px;
	line-height: 22px;
	position: relative
}

.rate-bars-line .wt-probar-2 {
	height: 10px;
}

.rate-bars-name .rate-count {
	display: inline-block;
	margin-bottom: 5px;
	font-size: 12px;
	font-weight: 600;
	position: absolute;
	right: 0px;
	top: 0px;
}

@media only screen and (max-width:540px) {
	.review-rate-box {
		float: none;
		width: 100%;
		margin: 0px 0px 30px 0px;
		padding: 0px;
	}
}

.add-rating-bars {}

.add-review-overview {
	margin-bottom: 30px;
	padding: 30px 30px 20px 30px;
	background-color:#fff9f7;
}

.add-rate-bar-category {
	margin-bottom: 10px;
	display: inline-block;
	width: 49%;
	padding-right: 2%;
}

.add-rate-bars-name {
	font-weight: 600;
	color:#000;
	display: block;
	font-size: 16px;
	line-height: 22px;
	position: relative;
}

.add-star-Rating-input {
	display: inline-block;
	color: #ffc100 !important;
	font-size: 14px;
	margin-right: 10px;
}
@media only screen and (max-width:540px){
.add-rate-bar-category {
	display: block;
	margin-right: 0px;
}	
}

/*working hour*/

.wt-list-working-hours {
	padding-top: 10px;
}

.wt-list-working-hours li {
	display: table;
	width: 100%;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.wt-list-working-hours li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.wt-list-working-hours span {
	display: table-cell;
	text-align: right;
	font-size: 14px
}

.wt-list-working-hours span:first-child {
	display: table-cell;
	text-align: left;
	font-weight: 400;
	color: #1c1c1c;
}

.wt-list-working-hours span:first-child i {
	padding-right: 10px;
	color: #54ba1d;
	font-size: 8px;
}

.wt-list-working-hours .working-off span:first-child,
.wt-list-working-hours .working-off span:last-child {
	color: #b2b2b2;
}

.wt-list-working-hours .working-off span:first-child i {
	color: #777777;
}

.wt-list-working-hours span:first-child {
	display: table-cell;
	text-align: left;
	font-weight:600;
	color: #1c1c1c;
}


/*Provider-profile*/

.wt-list-provider-location-box {}

.wt-list-provider-location-box .wt-list-location-info {
	padding: 25px 0 0;
}

.wt-list-provider-info-wrap .wt-list-provider-pro-pic {
	width: 130px;
	height: 130px;
	padding: 5px;
	border: 1px solid #ddd;
	background-color: #fff;
	margin: 20px auto 0;
	border-radius: 100%;
	-webkit-border-radius: 100%;
}

.wt-list-provider-info-wrap .wt-list-provider-pro-pic img {
	width: 100%;
}

.wt-list-provider-pro-name {
	text-align: center;
	font-size: 16px;
	color: #464141;
	text-transform: uppercase;
	font-weight: 600;
	padding: 20px 0px 0px;
}

.wt-list-provider-pro-position {
	text-align: center;
}

.wt-list-provider-pro-phone {
	text-align: center;
	font-size: 14px;
	color: #464141;
	font-weight: 600;
	padding: 20px 0px 0px;
}

.wt-list-provider-pro-phone i {
	padding-right: 5px
}

.wt-list-provider-pro-email {
	text-align: center;
	font-size: 14px;
	color: #464141;
	font-weight: 600;
	padding: 20px 0px 0px;
}

.wt-list-provider-pro-email i {
	padding-right: 5px
}

.wt-list-provider-pro-label {
	text-align: center;
	padding: 10px 0 20px;
}

.wt-list-labels {
	padding: 1px 15px;
	font-size: 12px;
	font-weight: 400;
	display: inline-block;
}

@media only screen and (max-width:991px) {
	.wt-list-provider-sidebar {
		margin-top: 0px;
	}
	.wt-list-provider-info-wrap .wt-list-provider-pro-pic {
		margin: auto;
	}
}


/*similar listing*/

.wt-similar-listing-box {
	margin-bottom: 15px;
}

.wt-similar-listing-media {
	float: left;
	width: 90px;
}

.wt-similar-listing-media img {
	width: 100%;
}

.wt-similar-listing-info {
	background: transparent;
	padding: 0;
	margin-left: 105px;
	border: none;
}

.wt-similar-listing-title {
	font-size: 16px;
	line-height: 22px;
	margin-bottom: 10px;
	margin-top: 0px;
}

.wt-similar-listing-meta {
	margin-bottom: 10px;
}

.wt-similar-listing-meta ul {
	margin: 0px;
	list-style: none;
}

.wt-similar-listing-meta ul li {
	font-size: 14px;
}

.wt-similar-listing-box:last-child {
	margin-bottom: 0px;
}


/*Price Range*/

.wt-list-single-price-range {
	display: table;
	width: 100%;
}
.wt-list-single-price-range .price-arrow span{
	font-size:34px;
	color:#253641;
}


.wt-list-single-price-range .price-from,
.wt-list-single-price-range .price-arrow,
.wt-list-single-price-range .price-to {
	display: table-cell;
	vertical-align: middle;
}

.wt-list-single-price-range .price-from span,
.wt-list-single-price-range .price-to span {
	font-size: 18px;
}

.wt-list-single-price-range .price-from p,
.wt-list-single-price-range .price-to p {
	margin-bottom: 0px;
}

#singleListingMap {
	height: 400px;
	border-radius: 3px
}

#singleListingMap-container {
	height: auto;
	position: relative;
	display: block
}
#singleListingMap-container-2 {
	height: auto;
	position: relative;
	display: block
}

.site-button-small {
	color:#000;
	display: inline-block;
	white-space: nowrap;
	line-height: 20px;
	padding: 3px 15px;
	font-weight: 600;
	border: none;
	font-size: 14px;
	margin: 0 5px 5px 0px;
}
}

.site-button-small:hover {
	opacity: 0.8;
}

button {
	outline: none !important;
}


/*====provider gallery====*/

.wt-list-single2-gallery-wrap {
	position: relative;
	overflow: hidden;
}

.wt-list-single2-gallery-pic {
	width: 100%;
}

.wt-list-single2-gallery-zoom {
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	color: #fff;
	background-color: rgb(249, 107, 57);
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
}

.wt-list-single2-gallery-zoom:hover,
.wt-list-single2-gallery-zoom:active,
.wt-list-single2-gallery-zoom:focus {
	color: #fff;
	background-color: rgba(255, 255, 255, 0.4);
}

.wt-list-single2-gallery-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: red;
	z-index: 1;
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.80) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#8f000000', GradientType=0);
}

.wt-list-single2-gallery-wrap:hover .wt-list-single2-gallery-info {
	bottom: 0;
}


/*==========touchspin input type number===============*/

.bootstrap-touchspin .input-group-btn-vertical {
	position: relative;
	white-space: nowrap;
	width: 1%;
	vertical-align: middle;
	display: table-cell;
}

.bootstrap-touchspin .input-group-btn-vertical>.btn {
	display: block;
	float: none;
	width: 100%;
	max-width: 100%;
	padding: 10px 10px 9px;
	margin-left: -1px;
	position: relative;
	border-width: 1px;
	border-style: solid;
	border-color: #e1e1e1;
	background: #FFF;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
	border-radius: 0;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0;
	border-top-right-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
	margin-top: -2px;
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-bottom-right-radius: 0;
}

.bootstrap-touchspin .input-group-btn-vertical i {
	position: absolute;
	top: 4px;
	left: 5px;
	font-size: 9px;
	font-weight: normal;
	color: #9fa0a1;
}


/*==========Click Scroll Content===============*/

.wt-list-single-scroll-nav-wrap {
	background-color: #fff;
	padding: 15px 0;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
}

.wt-list-single-scroll-nav ul {
	list-style: none;
	padding: 10px;
	margin: 0;
}

.wt-list-single-scroll-nav ul li {
	display: inline-block;
	font-weight: 400;
	margin-right: 40px;
	position: relative;
}

.wt-list-single-scroll-nav ul li a {
	color: #555;
	font-size: 16px;
	font-weight: 600;
}

.wt-list-single-scroll-nav ul li a.active {
	color: #f96b39;
}

.wt-list-single-scroll-nav ul li:after {
	content: "/";
	position: absolute;
	right: -25px;
	top: 2px;
	font-size: 10px;
	font-weight: bold;
}

.wt-list-single-scroll-nav ul li:last-child:after {
	display: none;
}
@media only screen and (max-width:768px){
.wt-list-single-scroll-nav-wrap{
	display:none;
}
}



@media only screen and (max-width:360px){
.wt-list-single-scroll-nav ul {
	padding: 10px 0px;
}
.wt-list-panel{padding:15px;}
}




.listing-user {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.listing-user .user-name {
	transition: .2s;
	color: #fff;
}

.listing-user span {
	display: inline-block;
	width: 38px;
	margin-right: 15px;
	border-radius: 50%;
}

.listing-user .user-name span img {
	border: 3px solid #fff;
	box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
	box-sizing: content-box;
}

.listing-user ul {
	float: left;
	text-align: left;
	position: absolute;
	top: 55px;
	right: 0;
	list-style: none;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
	border-radius: 4px;
	display: inline-block;
	width: 180px;
	font-size: 15px;
	transform: translate3d(0, 15px, 0);
	padding: 12px 10px;
	box-sizing: border-box;
	transition: .25s;
	visibility: hidden;
	opacity: 0;
	z-index: 110;
}

.listing-user ul li a {
	line-height: 22px;
	color: #000;
	font-size: 13px;
	font-weight: 700;
	padding: 5px;
	display: block;
	transition: .2s;
}
.listing-user ul li a i {
	margin-right:3px;
}

.listing-user ul li a:hover {
	color: #f96b39;
}

.listing-user.active ul {
	visibility: visible;
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.listing-user .user-name:after {
	content: "\f107";
	font-family: fontawesome;
	transition: .2s;
	transform: rotate(0deg);
	display: inline-block;
	margin-left: 6px;
	color: #fff;
}

.listing-user.active .user-name:after {
	transform: rotate(180deg);
}

@media only screen and (max-width:640px) {
	.listing-user {
		margin-right: 0px;
	}
	.extra-nav .extra-cell {
		padding-left: 0px;
	}
	.navbar-toggle {
		margin-left: 0px;
	}
}

@media only screen and (max-width:640px) {
	.listing-user .user-name {
		font-size: 0px;
	}
	.listing-user span {
		position: inherit;
	}
	.listing-user {
		margin: 0px;
		padding: 0px;
	}
}


/*add listing btn*/
.addlisting-btn{
	padding:10px 20px;
	background-color:#f96b39;
	border-radius:6px ;
	-webkit-border-radius:6px;
	color:#fff;
}
.addlisting-btn i{
	margin-right:6px;
}


.addlisting-btn-content {
	position: relative;
	display: inline-block;
	cursor: pointer;
}


.addlisting-btn-content ul {
	float: left;
	text-align: left;
	position: absolute;
	top: 55px;
	right: 0;
	list-style: none;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
	border-radius: 4px;
	display: inline-block;
	width: 180px;
	font-size: 15px;
	transform: translate3d(0, 15px, 0);
	padding: 12px 10px;
	box-sizing: border-box;
	transition: .25s;
	visibility: hidden;
	opacity: 0;
	z-index: 110;
}

.addlisting-btn-content ul li a {
	padding: 6px 10px;
	line-height: 22px;
	display: block;
	color: #000;
	transition: .2s;
	font-size: 13px;
	font-weight: 700;
}
.addlisting-btn-content ul li a i {
	margin-right:8px;
}

.addlisting-btn-content ul li a:hover {
	color: #f96b39;
}

.addlisting-btn-content.active ul {
	visibility: visible;
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media only screen and (max-width:420px){
.addlisting-btn {
    padding: 10px 12px;
    background-color: #f96b39;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    color: #fff;
    font-size: 13px;
}
}



.dashboard-user-section .listing-user {
	margin-right: 0px;
    position: relative;
    top: -7px;
}

.dashboard-user-section .listing-user .user-name {
	color: inherit;
}

.dashboard-user-section .listing-user .user-name:after {
	color: inherit;
}


/*sign up btn*/

.sign-up-section {
	position: relative;
	display: block;
	margin-top:4px;
}

.sign-up-section .sign-up-btn {
	color: #fff;
}

/*dialog box*/
.sign-in-dialog{
	padding:0px 40px 40px 40px;
}

.sign-in-dialog-header{
    font-size: 22px;
    width: calc(100% + 80px);
    position: relative;
    left: -40px;
    top: 0;
	-webkit-border-radius:4px;
	border-radius: 4px;
    display: inline-block;
    background-color: #f6f6f6;
    padding: 35px 40px;
    margin-bottom: 40px;
}
.sign-in-dialog-header .dialog-h-title{
	margin:0px;
	display:inline-block;
}

.sign-in-popup-close{
	-webkit-border-radius:50%;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	background-color: #f96b39  !important;
	color: #fff;
	opacity:1;
	text-shadow: none;
	padding-top: 1px !important;
}
.login-forgot-password{
	text-align:right;
}
.sign-in-dialog .tab-content {
    background-color:#f6f6f6;
	padding:20px;
}

.sign-in-dialog .tab-content .tab-content{
    background-color:#fff;
	padding:20px;
}
.sign-in-dialog .wt-tabs .tab-pane {
    padding: 50px 0px 0px 0px;
}
.sign-in-dialog .wt-tabs .nav-tabs>li{
	margin-bottom:-2px;
}

.sign-in-dialog .wt-tabs .nav-tabs>li >a{
    border: 0px;
	border-bottom:0px solid transparent;
	padding:8px 24px;
}
.sign-in-dialog .wt-tabs .nav-tabs>li >a:hover{
    border: 0px;
}
.sign-in-dialog .wt-tabs .nav-tabs>li>a.active{
	border: 0px;
	background:#f6f6f6;
	color:#000;
}


.sign-in-dialog #register-one .wt-tabs .tab-pane {
    padding: 25px 0px 0px 0px;
}
.sign-in-dialog #register-one .wt-tabs .nav-tabs{
	border-bottom:0px;
}
.sign-in-dialog #register-one .wt-tabs .nav-tabs>li a.active{
	background-color:#fff;
	color:#000 !important;
}

.sign-in-dialog #register-one .wt-tabs .nav-tabs>li a{
	padding: 10px 16px;
	margin-right: 0px;
}




/*#register-one*/
.sign-in-dialog #register-one .wt-tabs .nav-tabs>li a.active {
  color:#fff;
}

@media only screen and (max-width: 767px){
.sign-in-dialog .wt-tabs .nav-tabs>li {
     float: left;
}
}

@media only screen and (max-width: 576px){
.sign-in-dialog {
    padding: 0px 20px 40px 20px;
}
.sign-in-dialog-header {
    width: calc(100% + 40px);
    left: -20px;
	padding: 20px;
}
}
/*verticle icon animation*/

.v-icon{
	display: block;
	text-align: center;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.v-icon:before {
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	display: block;
}


/* Effect 5 */

.v-icon-effect:hover .v-icon:before {
	-webkit-animation: toTopFromBottom 0.3s forwards;
	-moz-animation: toTopFromBottom 0.3s forwards;
	animation: toTopFromBottom 0.3s forwards;
}
.v-icon-effect:hover img.v-icon{
	-webkit-animation: toTopFromBottom 0.3s forwards;
	-moz-animation: toTopFromBottom 0.3s forwards;
	animation: toTopFromBottom 0.3s forwards;
}

@-webkit-keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

@-moz-keyframes toTopFromBottom {
	49% {
		-moz-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

@keyframes toTopFromBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}

.btn-quantity .form-control {
	height: 40px;
}

.filter-destination-slider .slider .tooltip {
	z-index: 1;
}




/*wave Animation*/

canvas {
	display: block;
}


/*load More*/

#myList li {
	display: none;
}


/*circle-animation Start*/

.ripple-background {
	position: relative;
	left: 50%;
	bottom: -25px;
	opacity: 0.2;
}

.pricingtable-inner:hover .ripple-background {
	opacity: 0.4;
}

.ls-circle {
	position: absolute;
	border-radius: 50%;
	background: white;
	animation: ripple-1 5s infinite;
	box-shadow: 0px 0px 1px 0px #508fb9;
}

.ls-small {
	width: 80px;
	height: 80px;
	left: -40px;
	top: -40px;
}

.ls-medium {
	width: 160px;
	height: 160px;
	left: -80px;
	top: -80px;
}

.ls-large {
	width: 240px;
	height: 240px;
	left: -120px;
	top: -120px;
}

.ls-xlarge {
	width: 320px;
	height: 320px;
	left: -160px;
	top: -160px;
}

.ls-xxlarge {
	width: 400px;
	height: 400px;
	left: -200px;
	top: -200px;
}

.ls-shade1 {
	opacity: 0.1;
}

.ls-shade2 {
	opacity: 0.2;
}

.ls-shade3 {
	opacity: 0.3;
}

.ls-shade4 {
	opacity: 0.4;
}

.ls-shade5 {
	opacity: 0.5;
}

@keyframes ripple-1 {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(0.8);
	}
}


/*circle-animation End*/

/*Modal preview-place*/
.preview-place .modal-dialog {
	max-width: 768px;
	margin: 1.75rem auto;
	margin-top: 1.75rem;
}
.single-preview-location-info {
	display: table;
	width: 100%;
}

.single-preview-popup-close {
	position: absolute;
	right: 0px;
	top: -30px;
	width: 30px;
	height: 30px;
	line-height: 30px;
	background-color:
	#fff !important;
	z-index: 1;
	opacity: 1;
	color:
	#000;
	text-shadow: none;
}

.single-preview-location-left,
.single-preview-location-right {
	display: table-cell;
	width: 50%;
	vertical-align: top;
}

.single-preview-location-left .list-cat-address i {
	margin-right: 10px;
}

.single-preview-location-left .list-category-content {
    overflow: hidden;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color:#fff;
    top: -8px;
    position: relative;
    margin-bottom: -8px;
}


.single-preview-location-left .list-cat-phone i {
	margin-right: 10px;
}

.single-preview-location-left .single-preview-footer a {
	color: #f96b39;
}

.single-preview-location-right {
	position: relative;
	top: 0;
	width: 100%;
	height: 100%;
}

.single-preview-location-right .single-preview-map {
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%
}

.single-preview-location-right #singleListingMap-container {
	height: 100%;
}
.single-preview-location-right #singleListingMap-container-2 {
	height: 100%;
}

.single-preview-location-right #singleListingMappopup {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

@media only screen and (max-width:768px){
.preview-place .modal-dialog {
    position: relative;
    width: auto;
}
.single-preview-popup-close{
	top:0px;
}
}
@media only screen and (max-width:576px){
.single-preview-location-left,
.single-preview-location-right {
	display: block;
	width: 100%;
}
.single-preview-location-right {
	height:250px;
}
}


.circle-box-style-1 .circle-icon-secton {
	text-align: center;
	width: 180px;
	height: 160px;
	margin: 0px auto;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	z-index: 1;
}

.circle-box-style-1 .circle-icon-secton:after {
	position: absolute;
	left: -10px;
	top: -10px;
	content: '';
	background-image: url(../images/border-img.png);
	width: 203px;
	height: 200px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;
	z-index: -1;
}

.circle-box-style-1:hover .circle-icon-secton:after {
	-webkit-animation: rotate-center 0.2s linear infinite both;
	animation: rotate-center 0.2s linear infinite both;
}

@-webkit-keyframes rotate-center {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate-center {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.circle-box-style-1 .circle-icon-secton:before {
	position: absolute;
	left: 50%;
	top: 50%;
	content: '';
	width: 200%;
	height: 2px;
	background-image: url(../images/border-line.png);
	background-repeat: repeat-x;
	z-index: -1;
}

.circle-box-style-1.circle-line-none .circle-icon-secton:before {
	display: none;
}

.circle-box-style-1 .circle-icon-secton span {
	display: block;
	background-color: #fff;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow:0px 4px 10px rgba(0,0,0,0.3) inset;
	box-shadow:0px 4px 10px rgba(0,0,0,0.3) inset;
	border: 10px solid #f96b39;
}

.circle-box-style-1 .circle-icon-secton span i {
	font-size: 58px;
	line-height: 160px;
}

.circle-box-style-1 .icon-content {
	margin-top: 40px;
	padding: 50px 20px 0px 20px;
	position:relative;
	z-index:1;
}
.circle-box-style-1 .icon-content .wt-tilte{
	margin-bottom:30px;
}
.circle-box-style-1 .icon-content .icon-count-number {

    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 100px;
    line-height: 100px;
    font-weight: 900;
    opacity: 0.1;
    color: 

    #0f1221;
    z-index: -1;

}

@media only screen and (max-width:991px) {
	.circle-box-style-1 .circle-icon-secton:before {
		display: none;
	}
	.circle-box-style-1-outer .row [class*="col-"]	.circle-box-style-1{
		margin-bottom:30px;
	}
	.circle-box-style-1-outer .row [class*="col-"]:last-child .circle-box-style-1{
		margin-bottom:0px;
	}	
	
}

@media only screen and (max-width:767px) {
	.circle-box-style-1-outer .row [class*="col-"]	.circle-box-style-1{
		padding-top:20px;
	}
	.circle-box-style-1-outer .row [class*="col-"]	.circle-box-style-1 p{
		margin-bottom:0px;
	}
	.circle-box-style-1-outer .row [class*="col-"]:last-child .circle-box-style-1{
		margin-bottom:0px;
	}	
	
}


/*====icon font====*/

h4.headline {
	font-size: 22px;
	line-height: 32px;
	margin: -5px 0 30px;
}

.im-icon-outer {
	font-size: 14px;
	width: 33%;
	display: inline-block;
	transition: .3s;
	text-align: center;
	border: 1px solid
	#ddd;
	margin-bottom: 5px;
	background-color: #fff5f2;
}

.im-icon-outer span {
	display: block;
}

.im-icon-outer span:first-child {
	font-size: 34px;
}

.im-icon-outer .mls {
	font-family: 'Poppins', sans-serif;
}

.sl-icons-demo i {
	font-size: 32px;
	padding-right: 10px;
}

.fontawesome-icons .text-muted {
	display: none;
}

@media only screen and (max-width:991px) {
	
.im-icon-outer {
	width: 49%;
}
}

@media only screen and (max-width:767px) {
	.im-icon-outer {
		width: 49%;
	}
	h4.headline {
		font-size: 14px;
	}
}

@media only screen and (max-width:767px) {
	.im-icon-outer {
		width: 100%;
	}
	
.section-full.p-b80{
	padding-bottom:30px;
}
.section-full.p-b50{
	padding-bottom:30px;
}
.section-full.p-t80{
	padding-top:30px;
}
.section-full.p-b70{
	padding-bottom:20px;
}
.section-full.p-t50{
	padding-top:30px;
}
.section-head {
    margin-bottom: 30px;
}
}
@media only screen and (max-width:640px) {

.section-full.p-t80{
	padding-top:30px;
}
.section-full.p-b70{
	padding-bottom:20px;
}
.section-full.p-t50{
	padding-top:30px;
}
.section-full.p-b80{
	padding-bottom:30px;
}
.section-full.p-b50{
	padding-bottom:30px;
}
}



/*==================================================
 * Effect 5
 * ===============================================*/
 
.icon-circle-box{
	position:relative;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;  
}

.icon-circle-box .wt-icon-box-wraper{
	padding:110px 30px 30px 30px;
	margin-top:60px;
}
.icon-circle-box .icon-content{
	overflow:inherit;
	z-index:1;
	position:relative;

}
.icon-circle-box .icon-circle{
	top:-50px;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
	width:100px;
	height:100px;
	border-radius:50%;
	-webkit-border-radius:50%;
	background-color: #fff;
	position:absolute;
	z-index:1;
}

.icon-circle-box .icon-circle:before{
	content:"";
	left:-10px;
	top:-10px;
	position:absolute;
	z-index:-1;
	width:120px;
	height:120px;
	border-radius:50%;
	-webkit-border-radius:50%;
	border:10px solid rgba(249,107,57,0.3);
}

.icon-circle-box span.icon-cell{
	line-height:100px;
}

.icon-count-number {
	position: absolute;
	top:-40px;
	left:50%;
	transform:translateX(-50%);
	-webkit-transform:translateX(-50%);
		
	font-size: 100px;
	line-height: 100px;
	font-weight: 900;
	opacity: 0.1;
	color:#0f1221;
	z-index:-1;
}


.icon-circle-box:hover{
	background-color:#0f1221;
	border-radius:5px;
	-webkit-border-radius:5px;
}

.icon-circle-box:hover .wt-tilte,
.icon-circle-box:hover p{
	color:#fff;
}

.icon-circle-box:hover .icon-count-number{
	color:#f96b39;
	opacity:0.3;
}

.icon-circle-box:hover .icon-circle{
	box-shadow:0px 4px 10px rgba(0,0,0,0.3) inset;
	-webkit-box-shadow:0px 4px 10px rgba(0,0,0,0.3) inset;
}
.icon-circle-box:hover .icon-circle:before{
	border:10px solid #f96b39;
}


.icon-circle-box{
	text-align:center;
	position:relative;
}

.icon-circle-box:hover:after{
	position: absolute;
	content: '';
	background-image: url(../images/background/bg-square.png);
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: left top;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity:0;
}
.icon-circle-box:hover:after{
	opacity:1;
}


@media only screen and (max-width:767px){

.row.d-flex [class*="col-"]:last-child .icon-circle-box .wt-icon-box-wraper{
	margin-bottom:0px;
}	
	
}

/* box-active */

.icon-circle-box.active{
	position:relative;
	border:0px;
}

.icon-circle-box.active{
	background-color:#0f1221;
	border-radius:5px;
	-webkit-border-radius:5px;
}

.icon-circle-box.active:after{
	position: absolute;
	content: '';
	background-image: url(../images/background/bg-square.png);
	left: 0px;
	top: 0px;
	background-repeat: no-repeat;
	background-position: left top;
	z-index: 0;
	width: 100%;
	height: 100%;
	opacity:1;
}

.icon-circle-box.active .icon-circle{
    box-shadow: 0px 4px 10px rgba(0,0,0,0.3) inset;
    -webkit-box-shadow: 0px 4px 10px rgba(0,0,0,0.3) inset;
}
.icon-circle-box.active .icon-circle:before {
    border: 10px solid #f96b39;
}
.icon-circle-box.active .wt-tilte, 
.icon-circle-box.active p{
	color:#fff;
}

.icon-circle-box.active .icon-count-number {
    color:#f96b39;
    opacity: 0.3;
}




/*dot orange image*/
.dot-left-top-img,
.dot-right-bottom-img{
	position:relative;
	z-index:1
}
.dot-left-top-img:before,
.dot-right-bottom-img:after{
	content:'';
	position:absolute;	
	background-repeat:no-repeat;	
	z-index:-1;
	height:100%;
	width:100%;	
}
.dot-left-top-img:before{
	left:0px;
	top:0px;
	background-image:url(../images/background/dot-left-t-orange.png);
	background-position:left top;
}

.dot-right-bottom-img:after{
	right:0px;
	bottom:0px;
	background-image:url(../images/background/dot-right-b-orange.png);
	background-position:right bottom;

} 


/*dot gray image*/
.dot-left-top-bg-dark,
.dot-right-bottom-bg-dark{
	position:relative;
	z-index:2
}

.dot-left-top-bg-dark:before,
.dot-right-bottom-bg-dark:after{
	content:'';
	position:absolute;
	background-repeat:no-repeat;
	z-index:-1;
	height:100%;
	width:100%;
}

.dot-left-top-bg-dark:before{
	left:0px;
	top:0px;
	background-image:url(../images/background/dot-left-t-dark.png);
	background-position:left top;
}
.dot-right-bottom-bg-dark:after{
	right:0px;
	bottom:0px;
	background-image:url(../images/background/dot-right-b-dark.png);
	background-position:right bottom;
} 

/*dot2 orange image*/
.dot2-left-top-img,
.dot2-right-bottom-img{
	position:relative;
	z-index:0;
}
.dot2-left-top-img:before,
.dot2-right-bottom-img:after{
	content:'';
	position:absolute;	
	background-repeat:no-repeat;	
	z-index:-1;
	height:100%;
	width:100%;	
}
.dot2-left-top-img:before{
	left:0px;
	top:0px;
	background-image:url(../images/background/d-l-top.png);
	background-position:left top;
}

.dot2-right-bottom-img:after{
	right:0px;
	bottom:0px;
	background-image:url(../images/background/d-r-top.png);
	background-position:right bottom;
} 

/*=================================================================================================
	DASHBOARD CSS START 
==================================================================================================*/

.wt-admin-right-page-header {
	width: 100%;
	position: relative;
	padding: 15px 20px;
	border-radius: 6px;
	border: 1px solid #eee;
	margin-bottom: 20px;
	background: #fff;
}

.wt-admin-right-page-header h2 {
	text-align: left;
	font-size: 16px;
	color: #334e6f;
	font-weight: 800;
	float: left;
	margin: 0px;
}

.wt-admin-right-page-header .breadcrumbs {
	float: right;
	position: relative;
}

.wt-admin-right-page-header .breadcrumbs a,
.breadcrumbs span {
	float: left;
	margin-left: 24px;
	position: relative;
	font-weight: 500;
}

.wt-admin-right-page-header .breadcrumbs a:before {
	content: '';
	position: absolute;
	top: 50%;
	right: -16px;
	margin-top: -3px;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	background: #0f1221;
}

.wt-admin-right-page-header .breadcrumbs span {
	color: #0f1221;
}

@media only screen and (max-width:768px) {
	.wt-admin-right-page-header h2 {
		font-size: 16px;
		float: none;
	}
	.wt-admin-right-page-header .breadcrumbs a,
	.breadcrumbs span {
		font-size: 12px;
		margin-left: 0px;
		margin-right: 24px;
	}
	.wt-admin-right-page-header .breadcrumbs {
		float: none;
		top: auto;
	}
	
	.wt-admin-right-page-header {
		padding: 15px;
	}
}



.wt-panel-heading{
	border-bottom:1px solid #ddd;
}
/*== 1.set-radius ==*/

.btn,
.panel,
.form-control,
.img-thumbnail,
.panel-head ing,
.dropdown-menu,
.panel-group .panel,
.nav-tabs>li>a,
.modal-content,
.navbar-toggler,
.nav-pills>li>a,
.pager li>a,
.pager li>span,
.well,
.alert,
.list-group-item:first-child,
.list-group-item:last-child,
.input-group-addon,
.btn-group-divides>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle),
.btn-group-divides>.btn:last-child:not(:first-child),
.btn-group>.dropdown-toggle:not(:first-child),
.listkhoj-booking-form .listkhoj-extra-services li .icon-bx-lg,
.listkhoj-booking-form .listkhoj-extra-services li.active .icon-bx-lg:after,
.searchform input[type="text"],
.searchform input[type="submit"],
ol.comment-list li.comment .comment-body {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


/*My Account css*/

.wrapper-admin {
	height: 100vh;
}

#header-admin-wrap {}

#header-admin {
	width: calc(100% - 250px);
	height: 70px;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 99;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

#header-admin .container {
	width: 100%;
	padding-left: 20px;
	padding-right: 20px;
	max-width:100%;
}

#header-admin.active {
	width: calc(100%);
}

#sidebar-admin-wraper {
	width: 250px;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	z-index: 999;
	background: #fff;
	color: #fff;
	transition: all 0.3s;
}

#sidebar-admin-wraper.active {
	margin-left: -250px;
}

#content {
	width: calc(100% - 250px);
	padding-top: 70px;
	min-height: 100vh;
	transition: all 0.3s;
	position: absolute;
	top: 0;
	right: 0;
	background-color: #f0f3f4;
}

#content.active {
	width: 100%;
}

@media (max-width: 768px) {
	#sidebar-admin-wraper {
		margin-left: -250px;
	}
	#sidebar-admin-wraper.active {
		margin-left: 0;
	}
	#content {
		width: 100%;
	}
	#content.active {
		width: calc(100% - 250px);
	}
	#header-admin {
		width: calc(100%);
	}
	#header-admin.active {
		width: calc(100% - 250px);
	}
}

.header-left {
	float: left;
}

.header-right {
	float: right;
}

.header-left,
.header-right {
	display: table;
	height: 70px;
}

.nav-btn-wrap {
	display: table-cell;
	vertical-align: middle;
}

.nav-btn-admin {
	font-size: 28px;
	cursor: pointer;
	display: block;
	color: #0f1221;
}

#header-admin.active .nav-btn-admin {
	transform: rotate(180deg);
}

.header-left>.header-widget-wrap,
.header-right>.header-widget-wrap,
.header-right>.header-login-signup {
	display: table-cell;
	vertical-align: middle;
}

.header-widget-wrap>.header-widget {
	display: inline-block;
	margin-left: 25px;
	position: relative;
	cursor: pointer;
}

.header-widget-wrap .dropdown-menu {
	width: 350px;
	min-width: 350px;
	top: 60px;
	left: auto;
	right: -15px;
	padding: 0;
}

.listkhoj-admin-user:hover {
	color: #999;
}

.listkhoj-admin-pic {
	width: 40px;
	height: 40px;
	display: inline-block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -20px;
	-webkit-border-radius: 100%;
	border-radius: 100%;
}

.listkhoj-admin-pic img {
	width: 100%;
	height: auto;
}

.listkhoj-admin-pic span {
	display: inline-block;
}

.listkhoj-admin-pic span {
	display: inline-block;
}

.listkhoj-admin-messange,
.listkhoj-admin-notification,
.listkhoj-admin-user {
	color: #999;
	font-size: 24px;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
}

.listkhoj-admin-messange span,
.listkhoj-admin-notification span {
	position: absolute;
	top: -4px;
	right: -12px;
	width: 24px;
	height: 24px;
	color:	#242424;
	font-size: 12px;
	text-align: center;
	line-height: 20px;
	-webkit-border-radius: 100%;
	border-radius: 100%;
	font-weight: bold;
	font-family: Arial;
}

.listkhoj-admin-messange span {
	background-color:#fff;
	border: 2px solid #64bc36;
}

.listkhoj-admin-notification span {
background-color:#fff;
border: 2px solid #ff0000;
}

.page-logo {
	padding:50px 10px 0px 15px;
	text-align: center;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.header-widget-wrap>.header-widget {
		margin-left: 5px;
	}
	.listkhoj-admin-messange,
	.listkhoj-admin-notification {
		font-size: 15px;
		padding-top: 10px;
	}
	.listkhoj-admin-messange span,
	.listkhoj-admin-notification span {
		top: 0px;
		right: 2px;
	}
}

#header-admin.active,
#content.active {
	overflow: hidden;
}

#header-admin.active .container,
#content.active .content-admin-main {
	min-width: 480px;
}


/* Admin Nav */

.admin-nav .has-child .submenu-toogle {
	position: absolute;
	right: 10px;
	top: 10px;
	color: #fff;
	z-index: 1;
	cursor: pointer;
	padding: 7px;
	font-size: 16px;
	display: none;
}

.admin-nav .has-child li .submenu-toogle {
	opacity: 0.9;
}

.admin-nav .has-child.nav-active>a+.submenu-toogle.fa-angle-down:before {
	content: "\f106";
}

.admin-nav {
	font-family: "Roboto";
}

.admin-nav ul {
	list-style: none;
	margin: 0;
	font-weight: 500;
}

.admin-nav ul li {
	float: none;
	border-bottom: 1px solid #ededed;	
}
.admin-nav ul li:last-child {
	border-bottom:none;	
}

.admin-nav ul li a>i {
	font-size: 18px;
	margin-right: 25px;
}

.admin-nav ul>li>a {
	padding: 10px 15px;
	color:#0f1221;
	display: block;
	font-size: 14px;
}

.admin-nav ul li a>i {
	font-size: 18px;
	margin-right: 20px;
}

.admin-nav ul>li.active>a {
	color: #fff;
	background-color: #0f1221;
}

.admin-nav ul>li>a:hover,
.admin-nav ul>li>a:active,
.admin-nav ul>li>a:focus {
	background-color: rgba(0, 0, 0, 0.1); text-decoration: none;
	color: #000;
}

.admin-nav ul>li .mega-menu>li:after {
	display: none;
}

.admin-nav ul li .sub-menu>li a {
	padding-left: 65px;
}

.admin-nav ul li .sub-menu>li a>i {
	font-size: 12px;
}

.admin-nav ul>li ul,
.admin-nav ul>li .sub-menu {
	display: none;
	position: static;
	visibility: visible;
	width: auto;
	background-color: rgba(0, 0, 0, 0.1);
}

.admin-nav ul li.has-child {
	position: relative;
}

.admin-nav ul li .sub-menu {
	opacity: 1;
	margin: 0 !important;
}

.admin-nav .has-child .submenu-toogle {
	display: block;
}

.admin-nav ul>li.has-child .open-close-admin-btn {
	position: absolute;
	right: 10px;
	top: 10px;
	color: #0f1221;
	z-index: 999;
	cursor: pointer;
	padding: 2px 15px;
	font-size: 18px;
}

.admin-nav ul>li.active.has-child .open-close-admin-btn {
	color: #fff;
}

.admin-nav ul>li.has-child.nav-active>.open-close-admin-btn:before {
	content: "\f107";
}

.admin-nav ul>li.has-child .submenu-toogle {
	display: none;
}

.content-admin-wraper {
	float: left;
	width: 100%;
	position: relative;
	z-index: 1
}

.content-admin-area {
	margin-left: 240px;
	padding: 70px 0 0;
	background-color: #F6F6FA;
	min-height: 100vh;
}

.content-admin-main {
	padding: 30px;
}

@media only screen and (max-width:991px) {
	.content-admin-main {
		padding: 15px;
	}
}

.content-admin-main .panel {
	box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
	-webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06);
}

.content-admin-main textarea.form-control {
	height: auto;
}

@media only screen and (max-width:540px) {
	.panel-heading.wt-panel-heading {
		padding: 20px 15px;
	}
}

.ls-inputicon-box {
	position: relative;
}

.ls-inputicon-box .fs-input-icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 40px;
	height: 44px;
	z-index: 5;
	line-height: 44px;
	text-align: center;
	font-size: 16px;
}

.ls-inputicon-box .form-control {
	padding-left: 35px;
}

.ls-inputicon-box .bootstrap-select .dropdown-toggle {
	padding-left: 35px;
}

.ls-inputicon-box .remove_field {
	position: absolute;
	right: 4px;
	top: 2px;
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	background-color: #fff;
	display: block;
}


/*  FORM  ELEMENTS */

.filter-choose-category label {
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}


.panel-default >.panel-heading {
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
}

.panel-default>.panel-heading .panel-tittle {
	text-transform: capitalize;
}

.panel-default>.panel-heading+.panel-collapse>.panel-body {
	border-top-color: #e7ecf1;
}

.panel-default>.panel-heading .panel-heading-left {
	float: left;
}

.panel-default>.panel-heading .panel-heading-right {
	float: right;
}

.panel-bottom {
	border-top: 1px solid #ddd;
}

.panel-bottom .pagination {
	padding: 0;
}

.panel-form-heading {
	padding: 15px 30px;
	margin-right: -15px;
	margin-left: -15px;
	clear: both;
	background-color: #F7F7F7;
}

.panel-form-heading * {
	margin: 0;
}

@media only screen and (max-width:768px) {
	.panel-default>.panel-heading .panel-tittle {
		font-size: 16px;
	}
}

.form-group {
	margin-bottom: 25px;
}

.form-control {
	border-color: #e1e6eb;
	height: 45px;
	font-size: 13px;
	line-height: 20px;
	padding: 10px 12px;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .06);
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .06);
}

.form-control:focus {
	border-color: #d7dce1;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .06);
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .06);
	background-color: #F8F8F8;
}

.form-control2 {
	border: none;
	border-bottom: 1px solid #e8e8e8;
	width: 100%;
	height: 44px;
	font-size: 13px;
	line-height: 20px;
	padding: 10px 12px 10px 20px;
}

.form-control2:focus {
	border-bottom-color: #f11749;
}

.wt-input-icon .input-group-addon2 {
	position: absolute;
	left: 0px;
	top: 12px;
	z-index: 4;
	border: none;
	padding: 0;
	color: #222;
	-webkit-border-radius: 0px;
	border-radius: 6px;
	background: none;
}

textarea.form-control2 {
	height: auto;
}

@media only screen and (max-width:991px) {
	.form-control {
		height: 40px;
		line-height: 15px;
	}
}

.form-control.kv-fileinput-caption {
	height: 39px;
}

.form-group.form-inline .radio,
.form-group.form-inline .checkbox {
	margin-right: 15px;
}


/*Dashboard Card*/

.dashboard-card {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.wt-card-right {
	text-align: center;
	font-size: 50px;
	line-height: 50px;
	font-weight: 900;
}
.wt-card-bottom {
	text-align:center;
}

.wt-card-icon {
	position: absolute;
	left: 15px;
	top: 0px;
	font-size: 200px;
	line-height: 72px;
	color:rgba(0, 0, 0, 0.1);
	font-weight: 800;
	z-index:-1;
}

@media only screen and (max-width:1199px){
.dashboard-card {
	margin-top:10px;
}	
}
/*Upload Video Button*/

.upload-btn-wrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.upload-btn-wrapper input[type=file] {
	font-size: 100px;
	position: absolute;
	left: 0;
	top: 0;
	opacity: 0;
	cursor: pointer;
}


/*dashboard List*/

.dashboard-list-box ul {
	list-style: none;
	margin-bottom: 0px;
}

.dashboard-list-box ul li {
	display: block;
	padding: 15px 35px 15px 0px;
	border-bottom: 1px solid #e7ecf1;
	position: relative;
}

.dashboard-list-box ul li a {
	color:#000;
	padding: 0px 3px;
	font-weight: 800;
}

.dashboard-list-box.list-box-with-icon ul li .list-box-icon {
	font-size: 18px;
	vertical-align: middle;
	margin-right: 0px;
	position: relative;
	left: -10px;
}

.dashboard-list-box a.close-list-item {
	color:#fff;
	position: absolute;
	right: 20px;
	font-weight: normal;
	padding: 0px 6px;
	display: none;
	right: 20px;
	top: 20px;
}
.dashboard-list-box ul li:hover a.close-list-item{
	display:block;
}
.dashboard-list-box a.close-list-item i{
	padding-right:5px;
}
.list-box-with-icon ul li {
	padding: 15px 80px 15px 50px;
	position: relative;
}

.list-box-with-icon ul li .list-box-icon {
	margin-left: -20px;
}


/*dashboard message*/
.dashboard-messages-box:first-child{
	padding-top:20px;
} 
.dashboard-messages-box {
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 20px;
	padding-bottom: 10px;
	padding-top: 10px;
}

.dashboard-message-avtar {
	float: left;
	width: 80px;
	height: 80px;
	overflow: hidden;
	margin-left:20px;
}

.dashboard-message-avtar img {
	width: 80px;
	height: 80px;
}

.dashboard-message-area {
	margin-left: 70px;
	text-align: left;
	padding-left: 50px;
	padding-right: 20px;
}

.dashboard-message-area p {
	margin-bottom: 20px;
}

.dashboard-message-area h5 {
	position: relative;
}

.dashboard-message-area h5 span {
	font-size: 16px;
	color:#f96b39;
}

.dashboard-message-area h5 i {
	position: absolute;
	right: 0px;
	top: 0px;
	font-size: 18px;
	line-height: 40px;
	font-style: normal;
	color:#fff;
	width: 40px;
	height: 40px;
	background-color:#64bc36;
	text-align: center;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

.dashboard-message-reply .acod-head a {
	font-size: 14px;
	border: none;
	padding: 0px;
	display: inline-block;
	color:#000;
	font-weight: 700;
}

.dashboard-message-reply .acod-head a:hover {
	color: #f96b39;
}

.dashboard-message-reply{
	margin-right:20px;
}

.dashboard-message-reply-textarea{
	margin-top:20px;
}

@media only screen and (max-width:640px) {
	.dashboard-message-area h5 span {
		display: block;
	}
}

@media only screen and (max-width:480px) {
.dashboard-message-area {
	margin-left:0px;
    padding-left: 10px;
    padding-right: 10px;
}
.dashboard-message-avtar {
    float: none;
    margin-left: 10px;
    clear: both;
    margin-bottom: 20px;
}
.dashboard-message-area h5 span {
	margin-top: 10px;
}
    
}


/*Dashboard My listing*/

.dashboard-my-listing {
	position: relative;
}

.dashboard-my-listing:last-child .list-item-container{
	margin-bottom:0px;
}



.dashboard-my-listing .list-item-container .list-image-box {
	width: 340px;
	height: 230px;
}

.dashboard-my-listing .list-category-edit {
	position: absolute;
	right: 5px;
	top: -5px;
}

.dashboard-badge .nav-tag {
	font-weight: 900;
	display: inline-block;
	font-size: 11px;
	line-height: 22px;
	color: #fff;
	padding: 0;
	padding: 0 7px;
	box-sizing: border-box;
	text-align: center;
	min-width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50px;
	margin-left: 4px;
}

.dashboard-badge .nav-tag.green {
	background-color: #00ca95;
}

.dashboard-badge .nav-tag.blue {
	background-color: #31cff9;
}

.dashboard-badge .nav-tag.red {
	background-color: #fd7b6c;
}

@media only screen and (max-width:991px) {
.dashboard-my-listing .list-item-container .list-image-box {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 15px;
}
	
.dashboard-my-listing .list-category-content{
	padding-left:1px;
	padding-top:0px;
}
}
/*dashboard Booking*/

.dashboard-booking-box {
	border-bottom: 1px solid #eaeaea;
}

.dashboard-booking-box:first-child {
	padding-top:20px;
}

.dashboard-booking-avtar {
	float: left;
	width: 50px;
	height: 50px;
	overflow: hidden;
	margin-left: 20px;
}

.dashboard-booking-avtar img {
	width: 50px;
	height: 50px;
}

.dashboard-booking-area {
	margin-left: 50px;
	text-align: left;
	padding-left: 40px;
}

.dashboard-booking-detail .booking-title,
.dashboard-booking-detail .booking-list {
	display: inline-block;
}

.dashboard-booking-detail {
	margin-bottom: 15px;
}

.dashboard-booking-detail h5 {
	display: inline-block;
	margin-bottom:0px;
}

.dashboard-booking-detail .booking-title {
	padding: 0px;
	font-size: 16px;
	font-weight: 800;
}

.dashboard-booking-detail .booking-title {
	position: relative;
	margin-right: 20px;
}

.dashboard-booking-detail .booking-list .booking-status {
	line-height: 20px;
	font-weight: 600;
	font-size: 12px;
	color: #fff;
	font-style: normal;
	padding: 2px 8px;
	margin-left: 3px;
	position: relative;
	top: -2px;
}

.dashboard-booking-detail .booking-list .booking-status.approved {
	background-color: #00ca95;
}

.dashboard-booking-detail .booking-list .booking-status.pending {
	background-color: #5e6db3;
}

.dashboard-booking-detail .booking-list .booking-status.unpaid {
	background-color: #fd7b6c;
}

.dashboard-booking-detail .booking-list .booking-status.canceled {
	background-color: #ff0000;
}

.dashboard-booking-detail .booking-title:after {
	position: absolute;
	content: "";
	right: -12px;
	width: 8px;
	height: 1px;
	background-color: #777;
	top: 10px;
}

.dashboard-booking-detail .booking-list {
	margin: 0px;
	list-style: none;
    font-weight: 600;
    color:#000;
}

@media only screen and (max-width:540px) {
	.dashboard-booking-avtar {
		float: none;
	}
	.dashboard-booking-area {
		margin-left: 20px;
		padding-left: 0px;
		margin-top: 20px;
	}
	.dashboard-booking-detail .booking-title,
	.dashboard-booking-detail .booking-list {
		display: block;
	}
	.dashboard-booking-detail .booking-title::after {
		display: none;
	}
}


/*Dashboard Wallet*/

.dashboard-list-box.earning-wallet ul ul {
	padding-left: 0px;
}

.dashboard-list-box.earning-wallet ul ul li {
	display: inline-block;
	border-bottom: 0px;
	padding: 10px 10px 10px 0px;
}

.dashboard-list-box.earning-wallet ul ul li.fee {
	color: #ff0000;
}

.dashboard-list-box.earning-wallet ul ul li.paid {
	color: #48ad13;
}

.dashboard-list-box.earning-wallet ul li h5 {
	display: inline-block;
}

.dashboard-list-box.earning-wallet ul ul li span {
	color:#000;
	padding: 0px 5px 0px 5px;
	font-weight: 700;
}


/*dashboard Review*/

.dashboard-reviews-comments-box {
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
.dashboard-reviews-comments-box:first-child{
	padding-top:20px;
}
.dashboard-reviews-comments-box .dashboard-reviews-rating{
	margin-bottom:15px;
}


.dashboard-reviews-comments-avtar {
	float: left;
	width: 50px;
	height: 50px;
	overflow: hidden;
	margin-left: 20px;
}

.dashboard-reviews-comments-avtar img {
	width: 50px;
	height: 50px;
}

.dashboard-reviews-comments-text {
	margin-left: 40px;
	text-align: left;
	padding-left: 50px;
	padding-right: 30px;
}

.dashboard-reviews-comments-text p {
	margin-bottom: 15px;
}

.dashboard-reviews-comments-text h5 {
	position: relative;
}

.dashboard-reviews-comments-text h5 span {
	color: #0f1221;
}

.dashboard-reviews-comments-text h5 i {
	font-size: 14px;
	color:#f96b39;
	padding-left: 10px;
}

.dashboard-reviews-comments-reply .acod-head a {
	font-size: 16px;
	border: none;
	padding: 0px;
	display: inline-block;
	color:#f96b39;
}


@media only screen and (max-width:991px) {
	.dashboard-reviews-comments-text h5 i {
		bottom: -30px;
		top: auto;
	}
}

@media only screen and (max-width:540px) {
	.dashboard-reviews-comments-text h5 span {
		display: block;
	}
}

@media only screen and (max-width:420px) {
.dashboard-reviews-comments-text {
	margin-left: 0px;
	padding-left: 15px;
	padding-right: 15px;
}
	
.dashboard-reviews-comments-avtar {
    float: none; 
	clear:both;
	margin-bottom:20px;
}	
}



/*dashboard-amenities*/

.dashboard-amenities ul {
	list-style: none;
	margin: -10px;
}

.dashboard-amenities ul li {
	float: left;
	width: 25%;
}

.dashboard-amenities ul li .dashboard-amenities-wrap {
	padding: 20px;
	padding-right: 60px;
	border: 1px dashed #ddd;
	margin: 10px;
	overflow: hidden;
	position: relative;
}

.dashboard-amenities ul li .dashboard-amenities-wrap .amenities-icon {
	position: absolute;
	right: 20px;
	top: 5px;
	font-size: 32px;
	color: #e2e2e2;
}

.dashboard-amenities ul li .dashboard-amenities-wrap:hover {
	border: 1px dashed #0f1221;
}

.dashboard-amenities ul li .dashboard-amenities-wrap .wt-radio-checkbox {
	margin-bottom: 0px;
}

.dashboard-amenities ul li .dashboard-amenities-wrap .wt-radio-checkbox label {
	margin-bottom: 0px;
}


@media only screen and (max-width:1440px) {
	.dashboard-amenities ul li {
		width: 33.33%;
	}
}

@media only screen and (max-width:1280px) {
	.dashboard-amenities ul li {
		width: 50%;
	}
}

@media only screen and (max-width:991px) {
	.dashboard-amenities ul li {
		width: 100%;
	}
	.dashboard-amenities ul li .dashboard-amenities-wrap {
		margin: 10px 0px;
	}
}


/*=====Edit Profile=====*/

.dashboard-profile-photo {
	position: relative;
	display: block;
	margin-bottom: 35px;
}

.dashboard-profile-photo img {
	border-radius: 4px;
	max-width: 240px;
	width: 100%;
}

.dashboard-profile-photo .upload-btn-wrapper {
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.dashboard-profile-pic {
	float: right;
}

.dasboard-profile-form {
	padding-right: 30px;
}

@media only screen and ( max-width:1280px) {
	.dasboard-profile-form [class*="col-md"] {
		width: 100%;
	}
}

@media only screen and ( max-width:991px) {
	.dasboard-profile-form {
		width: 100%;
		padding-right: 0px;
	}
	.dashboard-profile-pic {
		float: none
	}
}

@media only screen and ( max-width:360px) {
.dashboard-profile-photo img {
	width: 100%;
	max-width:inherit;
}
}



/*=====Invoice=====*/

#invoice {
	background: #fcfcfc;
	width: auto;
	max-width: 900px;
	padding: 60px;
	margin: 0 auto 60px;
	border-radius: 4px;
	border: 1px solid #ebebeb;
}

#invoice-title {
	text-align: center;
	margin-bottom: 50px;
}

#invoice-title span {
	font-size: 42px;
	font-weight: 800;
	color:#000;
}

#invoice strong {
	font-weight: 800;
	color: #000;
	display: inline-block;
}

#logo img {
	max-height: 44px
}
@media only screen and (max-width:767px){
#logo img {
	margin-bottom:20px;
}
}


#details {
	text-align: right
}

#invoice table {
	width: 100%;
	margin: 0 0 30px;
	padding: 1px 0;
	border-spacing: 0;
	border-bottom: 1px solid #ddd
}

#invoice table th,
#invoice table td {
	padding: 15px 0;
	text-align: left
}

#invoice table th {
font-weight: 800;
border-bottom: 1px solid #ddd;
font-size: 16px;
color:#000;
background-color:#f5f5f5;
padding: 10px;
}

#invoice table td {
	padding: 5px !important;
	font-size: 14px;
}

#invoice table th:last-child,
#invoice table td:last-child {
	text-align: right
}

#invoice table th span {
	position: relative;
	display: inline-block;
	height: 100%;
	font-weight: 800;
}


#totals td {
	color: #333;
}

@media only screen and (max-width:768px) {
	#invoice {
		padding: 15px;
	}
}


/*Dashboard Widget*/

.dashboard-noti-panel,
.dashboard-message-panel {
	text-align: left;
	position: absolute;
	top: 45px;
	right: 0;
	list-style: none;
	background-color: #fff;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
	border-radius: 4px;
	display: inline-block;
	width: 290px;
	font-size: 15px;
	transform: translate3d(0, 15px, 0);
	padding: 12px 10px;
	box-sizing: border-box;
	transition: .25s;
	visibility: hidden;
	opacity: 0;
	z-index: 110;
}

.dashboard-noti-dropdown .dashboard-noti-panel.active,
.dashboard-message-dropdown .dashboard-message-panel.active {
	visibility: visible;
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.dashboard-widgets-header {
	padding: 5px 15px;
	font-weight: 600;
	font-size: 14px;
	color: #555;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	background-color: #f2f2f2;
}

@media only screen and (max-width:640px) {
	.dashboard-noti-panel,
	.dashboard-message-panel {
		right: 0px;
	}
}

@media only screen and (max-width:400px) {
	.dashboard-noti-panel,
	.dashboard-message-panel {
		right: 20px;
		position: fixed;
		width: 90%;
	}
}


/*notification list*/

.dashboard-widget-scroll {
	max-height: 360px;
}

.noti-list ul {
	list-style: none;
	margin-bottom: 38px;
}

.noti-list ul li {
	position: relative;
	padding: 15px 15px 15px 30px;
	display: block;
	border-bottom: 1px solid #ddd;
	font-size: 14px;
}

.noti-list ul li a{
	color:#000;
}

.noti-list ul li .noti-icon {
	position: absolute;
	left: 0px;
	top: 12px;
	font-size: 20px;
}

.noti-view-all {
	position: fixed;
	width: 100%;
	bottom: 0px;
	text-align: center;
	padding: 15px;
	background-color: #0f1221;
	left: 0px;
	color: #fff;
}


/*Message list*/

.message-list ul {
	list-style: none;
	margin-bottom: 38px;
}

.message-list ul li {
	position: relative;
	padding: 15px 0px 15px 0px;
	display: block;
	border-bottom: 1px solid #ddd;
	font-size: 12px;
}

.message-list ul li .msg-avtar {
	float: left;
}

.message-list ul li .msg-avtar img {
	height: 30px;
	margin-top: -5px;
}

.message-list ul li .msg-texting {
	overflow: hidden;
	padding-left: 10px;
}

.message-list ul li .msg-texting strong {
	color:#000;
	font-size: 16px;
}

.message-list ul li .msg-texting .msg-time {
	float: right;
	color: #0f1221;
	font-weight: 600;
}

.message-list ul li .msg-texting .msg-time span {
	padding-right: 3px;
}

.message-list ul li .msg-texting p {
	margin-bottom: 0px;
	line-height: inherit;
	padding-top: 5px;
}

.message-view-all {
	position: fixed;
	width: 100%;
	bottom: 0px;
	text-align: center;
	padding: 15px;
	background-color: #0f1221;
	left: 0px;
	color: #fff;
}

.dashboard-widget-scroll .mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
	background-color: rgb(226, 226, 226) !important;
}


/*Msg style 2================*/

.wt-admin-dashboard-msg-2 {	display: table;	width: 100%;}

.wt-dashboard-msg-user-list,
.wt-dashboard-msg-box {	display: table-cell;}
.wt-dashboard-msg-user-list {	width: 350px;	border: 1px solid #dbdbdb;}

.wt-dashboard-msg-search {position: relative;}
.wt-dashboard-msg-search .form-control {	padding-right: 40px;	border-radius: 0px;	box-shadow: none;	border: 0px;	border-bottom: 1px solid #dbdbdb;}
.wt-dashboard-msg-search .btn {	outline: none !important;	position: absolute;	right: 0;	top: 0;	color: #CCCCCC;	font-size: 20px;	z-index: 10;	background: none;}

.msg-find-list .bootstrap-select .dropdown-toggle {	border: 0px;	box-shadow: none !important;	border-radius: 0px;	border-style:solid;	border-width:0px 0px 1px 0px;	border-bottom: 1px solid #dbdbdb;}

.msg-find-list .bootstrap-select .dropdown-toggle:hover,
.msg-find-list .bootstrap-select .dropdown-toggle:active,
.msg-find-list .bootstrap-select .dropdown-toggle:focus {	border:0px solid transparent !important;	border-bottom: 1px solid #dbdbdb !important;}

.wt-dashboard-msg-search-list {	background-color: #FFF;	height: calc(-300px + 100vh);}
.wt-dashboard-msg-search-list-wrap {	display: table;	width: 100%;}
.msg-user-info {	position: relative;	display: block;	padding: 15px 80px 15px 20px;	background-color: #fff;	border-bottom: 1px solid #dbdbdb;}

.msg-user-timing {	position: absolute;	right: 10px;	top: 15px;	font-size: 12px;	color: #969696;}
.msg-user-info-pic {	width: 45px;	height: 45px;	float: left;	margin-right: 15px;	overflow: hidden;}
.msg-user-name {	font-size: 14px;	color: #000; font-weight: 700;}
.msg-user-discription {font-size: 14px; color: #222;}

.wt-dashboard-msg-search-list-wrap:hover .msg-user-info {	background-color: #0f1221;}

.wt-dashboard-msg-search-list-wrap:hover .msg-user-timing,
.wt-dashboard-msg-search-list-wrap:hover .msg-user-name,
.wt-dashboard-msg-search-list-wrap:hover .msg-user-discription {	color: #fff;}

.wt-dashboard-msg-box {	background-color: #fff;	position: relative;	border: 1px solid #dbdbdb;	border-left: 0px;}

.single-msg-user-name-box {	padding: 15px 20px;	background-color: #fff;	border-bottom: 1px solid #dbdbdb;	min-height: 85px;}
.single-msg-user-name-box h4 {	margin-bottom: 6px;}
.single-user-msg-conversation {	padding: 0px;	margin: 30px 40px;	height: calc(-400px + 100vh);}
.single-user-comment-wrap {	padding: 15px 0px;}
.single-user-comment-block {	position: relative;}
.single-user-com-pic {	width: 60px;	height: 60px;	float: left;	margin-right: 15px;	overflow: hidden;	padding: 3px;	background-color: #fff;}

.single-user-com-text {	overflow: hidden;	background-color: #edf6ff;	padding: 20px 30px;	margin-top: 10px;	border-radius: 5px;	-webkit-border-radius: 5px;}
.single-user-msg-time {	font-size: 12px;	color: #969696;	text-align: right;	padding-top: 10px;}
.single-user-comment-wrap.sigle-user-reply {	margin-left: 80px;}
.single-user-comment-wrap.sigle-user-reply .single-user-com-text {	background-color: #f5f5f5;}
.single-msg-reply-comment {	position: absolute;	bottom: 0px;	left: 0px;	width: 100%;}
.single-msg-reply-comment textarea {	resize: none;}
.single-msg-reply-comment textarea.form-control {	border-radius: 0px;	border-left: 0px;	border-right: 0px;	border-bottom: 0px;	box-shadow: none;	padding: 15px 50px 15px 20px;}
.single-msg-reply-comment .btn {	outline: none !important;	position: absolute;	right: 0;	top: 50%;	color: #CCCCCC;	font-size: 20px;	z-index: 10;	background: none;	-webkit-transform: translateY(-50%);	-ms-transform: translateY(-50%);	transform: translateY(-50%)}

@media only screen and (max-width:1200px){
.wt-dashboard-msg-user-list {	width: 250px;}
}
@media only screen and (max-width:991px){
.wt-dashboard-msg-box {	border-left: 1px solid #dbdbdb;}
}

@media only screen and (max-width:480px){
.single-user-msg-conversation {	padding: 0px 10px;	margin: 30px 0px;}
.single-user-com-pic {	width: 35px;	height: 35px;}
.single-user-com-text{padding:15px; margin-top:0px;}
.single-user-comment-wrap.sigle-user-reply {margin-left: 0px;}
.single-user-comment-wrap{padding-top:0px;}
}


/*====== msg user list side button======*/
.wt-admin-dashboard-msg-2{position:relative;background-color: #fff;}

.user-msg-list-btn-outer{display:none; position:absolute;	top:50%;	right:99%;	z-index:10;	-webkit-transform: translateY(-50%);	-ms-transform: translateY(-50%);	transform: translateY(-50%)}
.user-msg-list-btn-open{display: inline-block;	cursor:pointer;white-space: nowrap;background-color: #0f1221;border: none;padding: 2px 15px;color: #fff;	position: absolute;transform: rotate(270deg);	transform-origin: center right;}

.user-msg-list-btn-close{
	cursor:pointer;
	white-space: nowrap;
	background-color: #0f1221;
	border: none;
	padding: 2px 15px;
	color: #fff;	
	position: absolute;
	transform: rotate(270deg);
	transform-origin: center right;	
	display:none;	
	top:50%;	
	right:0%;	
	z-index:10;
}
.wt-admin-dashboard-msg-2 .user-msg-list-btn-open{	top: -62px;	right:20px;}

.wt-admin-dashboard-msg-2.active .user-msg-list-btn-open{	right:257px; display:none;}
.wt-admin-dashboard-msg-2.active .user-msg-list-btn-close{display:block;}


.user-msg-list-btn-close{	top: -31px;	right:18px;	display:none;}
.user-msg-list-btn-outer.active .user-msg-list-btn-open{display:none;}
.user-msg-list-btn-outer.active .user-msg-list-btn-close{display:block;}

@media only screen and (max-width:991px){
.user-msg-list-btn-outer{	display:block; z-index:999;}	
.wt-admin-dashboard-msg-2 .wt-dashboard-msg-user-list {position: fixed;	right: -260px;	top: 0px;	z-index: 999;	width:260px; 	-webkit-transition: all 1s linear;
-moz-transition: all 0.5s linear;
-ms-transition: all 0.5s linear;
-o-transition: all 0.5s linear;
transition: all 0.5s linear;}

.wt-admin-dashboard-msg-2.active .wt-dashboard-msg-user-list {right: 0%;}
.wt-dashboard-msg-search-list {background-color: #FFF;height: calc(-80px + 100vh);}
}


/*Icon Grediant*/

.overlay-gradient{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: red;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.74) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.74) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.74) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bd000000',GradientType=0 ); /* IE6-9 */
	/* IE6-9 */
}

/*About us page*/
@media only screen and (max-width:991px){
.how-it-right{
	margin-bottom:30px;
}

}

.video-banner-outer{
	position:relative;
	z-index:1;
}

.video-banner-outer .banner-wrap{
	position:absolute;
	width:1140px;
	top:0px;
	left:50%;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
@media only screen and (max-width:1200px){
.video-banner-outer .banner-wrap{
	position:absolute;
	width:100%;
	top:0px;
	left:50%;
	-webkit-transform:translateX(-50%);
	transform:translateX(-50%);
}
}

@media only screen and (max-width: 768px){
.video-banner-outer .banner-content-area {
    padding: 150px 0px 60px;
}
}