@charset "UTF-8";

/***************************************/


/* 1. RESET */


/***************************************/

@import url(https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700);
* {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
	box-sizing: border-box;
}   
h1,
h2,
h3, 
h4,
h5,
h6,
p,
a {
	line-height: 1em;
}

a {
	text-decoration: none;
}

ul,
ol {
	list-style: none;
}
header,
nav,
article,
section,
aside,
footer {
	display: block;
}

figure {
	line-height: 0;
}
figure>img {
	width: 100%;
	object-fit: cover;
}
figure>figcaption {
	display: none;
}
p {
	text-align: justify;
}
/*----------------
  	FONT SIZE
----------------*/
/*----------------
  	LINE HEIGHT
----------------*/
/*------------------
  	MAIN PALETTE
------------------*/
/*-------------
    HOVERS
-------------*/
/*---------------
  	PARAGRAPH
---------------*/
/*------------
  	MENU
------------*/
.main-menu .menu-item>a:hover {
	color: #fff !important;
}
/*---------------
  	GRADIENT
---------------*/
/*-------------
  	BORDER
-------------*/
/*------------
  	ARROW
------------*/
/*------------
  	STAR
------------*/
/*------------------
  	VIEW SELECTOR
------------------*/
/*-----------------
  	SOCIAL LINKS
-----------------*/
/*-----------------
  	PIE CHARTS
-----------------*/
/*-------------
  	BANNERS
-------------*/
/*------------
  	FOOTER
------------*/
/*------------
  	GRAPHS
-----------*/
/*----------------
  	TEXT ICONS
---------------*/
hr { 
	margin-top: 10px !important;
	margin-bottom: 6px !important;
	border: 0;
	border-top: 1px solid #eee;
}

body {
	background-color: #f5f5f5;
}

a,
p,
h1, 
h2,
h3,
h4,
h5,
h6 {
	font-family: "Titillium Web", sans-serif;
}

a:focus {
	
	text-decoration: none !important;
}

a:hover {
	color: #555 ;
	text-decoration: none !important;
}

h1,
h5,
h6 {
	font-weight: 700;
	text-transform: uppercase;
}

h1 {
	color: #fff;
	font-size: 36px;
	text-align: center;
}

h1 span {
	color: #E96CFF;
}

h2 {
	color: #fff;
	font-size: 2em;
	font-weight: 700;
}

h3 {
	color: #2b373a;
	font-size: 1.5em;
	font-weight: 700;
	text-align: center;
}

h4 {
	color: #2b373a;
	font-size: 1.25em;
	font-weight: 700;
}

h5 {
	color: #fff;
	font-size: 1.125em;
	text-align: center;
}

h6 {
	color: #2b373a;
	font-size: 0.875em;
}

p {
	color: #888;
	font-size: 14px;
	line-height: 1.71429em;
	font-weight: 600;
}

p.primary,
p.secondary,
p.tertiary {
	font-weight: 700;
}

p.primary {
	color: #00d7b3;
}

p.secondary {
	color: #1396e1;
}

p.tertiary {
	color: #e61852;
}

p a {
	color: #888;
}

p a.primary {
	color: #06b99b;
}

p a.secondary {
	color: #1396e1;
}

p a.tertiary {
	color: #e61852;
}

p span.light {
	color: #b2b2b2;
}

p span.bold {
	color: #2b373a;
	font-weight: 700;
}

p span.primary {
	color: #00d7b3;
}

p span.secondary {
	color: #1396e1;
}

p span.tertiary {
	color: #e61852;
}


/*---------------

  	OVERLAYS

---------------*/

.image-overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(25, 31, 32, 0.9);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in;
	cursor: pointer;
}

.image-overlay .clickable-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -35px;
	margin-top: -35px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	transition: transform .2s ease-in;
}

.image-overlay .clickable-icon .svg-plus {
	fill: #fff;
	width: 28px;
	height: 28px;
	position: absolute;
	top: 21px;
	left: 21px;
}

.image-overlay .clickable-icon.primary {
	background-color: #00d7b3;
}

.image-overlay .clickable-icon.secondary {
	background-color: #1396e1;
}

.image-overlay .clickable-icon.tertiary {
	background-color: #e61852;
}
/*-----------------
  	SHADOW FILM
-----------------*/
.shadow-film {
	background-color: #000;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	transition: all .3s ease-in-out;
	z-index: 9999;
}
.shadow-film.open {
	opacity: 0.8;
}
/*---------------------
  	MFP TRANSITIONS 
---------------------*/
/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;
	transition: all .15s ease-out;
}


/* overlay animate in */

.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}


/* overlay animate out */

.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}


/* content at start */

.mfp-fade.mfp-wrap .mfp-content {
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: all .3s ease-in-out;
}


/* content animate in */

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* content animate out */

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	-webkit-transform: scale(0);
	transform: scale(0);
}


/* hide controls when closing */

.mfp-removing .mfp-arrow-left,
.mfp-removing .mfp-arrow-right {
	opacity: 0;
}


/*---------------------------

    BOOTSTRAP DATEPICKER

---------------------------*/

.datepicker.datepicker-inline td,
.datepicker.datepicker-inline th,
.datepicker.dropdown-menu td,
.datepicker.dropdown-menu th {
	font-family: "Titillium Web", sans-serif;
}

.datepicker table tr td.active.active.focus,
.datepicker table tr td.active.active:focus,
.datepicker table tr td.active.active:hover,
.datepicker table tr td.active.highlighted.active.focus,
.datepicker table tr td.active.highlighted.active:focus,
.datepicker table tr td.active.highlighted.active:hover,
.datepicker table tr td.active.highlighted:active.focus,
.datepicker table tr td.active.highlighted:active:focus,
.datepicker table tr td.active.highlighted:active:hover,
.datepicker table tr td.active:active.focus,
.datepicker table tr td.active:active:focus,
.datepicker table tr td.active:active:hover,
.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active,
.datepicker table tr td span.active.active.focus,
.datepicker table tr td span.active.active:focus,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active.disabled.active.focus,
.datepicker table tr td span.active.disabled.active:focus,
.datepicker table tr td span.active.disabled.active:hover,
.datepicker table tr td span.active.disabled:active.focus,
.datepicker table tr td span.active.disabled:active:focus,
.datepicker table tr td span.active.disabled:active:hover,
.datepicker table tr td span.active.disabled:hover.active.focus,
.datepicker table tr td span.active.disabled:hover.active:focus,
.datepicker table tr td span.active.disabled:hover.active:hover,
.datepicker table tr td span.active.disabled:hover:active.focus,
.datepicker table tr td span.active.disabled:hover:active:focus,
.datepicker table tr td span.active.disabled:hover:active:hover,
.datepicker table tr td span.active:active.focus,
.datepicker table tr td span.active:active:focus,
.datepicker table tr td span.active:active:hover,
.datepicker table tr td span.active:hover.active.focus,
.datepicker table tr td span.active:hover.active:focus,
.datepicker table tr td span.active:hover.active:hover,
.datepicker table tr td span.active:hover:active.focus,
.datepicker table tr td span.active:hover:active:focus,
.datepicker table tr td span.active:hover:active:hover,
.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover:active {
	background-color: #06b99b;
	border-color: #06b99b;
}


/*----------------

  	CLEARFIX

----------------*/

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}


/*------------

  	FORMS

------------*/

input,
textarea {
	color: #888;
	font-family: "Titillium Web", sans-serif;
	font-size: 0.8125em;
	border-radius: 4px;
}

input {
	display: block;
}

input[type="text"].invalid,
input[type="email"].invalid,
input[type="password"].invalid {
	border-color: #ea2e68;
}

input[type="text"],
input[type="url"],
input[type="email"],
input[type="password"],
input[type="number"] {
	width: 100%;
	color: #000;
	padding: 0 15px;
	font-size: 16px;
	border: 1px solid #b133c8;
	line-height: 40px;
	border-radius: 4px;
}

input[type="number"] {
	padding-right: 0;
}

input.rounded {
	border-radius: 200px;
	width: 100%;
	float: right;
}

input.datepicker {
	width: 150px;
	height: 32px;
	line-height: 32px;
}

textarea {
	width: 100%;
	min-height: 90px;
	border: 1px solid #b133c8;
	padding: 10px 15px;
	color: #000;
}

select {
	width: 100%;
	height: 40px;
	padding: 0 40px 0 10px;
	border: 1px solid #b133c8;
	border-radius: 4px;
	color: #000;
	font-family: "Titillium Web", sans-serif;
	line-height: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}


/* REMOVE IE SELECT ARROW┬á*/

select::-ms-expand {
	display: none;
}

label {
	display: block;
	margin-bottom: 12px;
	color: #888;
	font-size: 14px;
	font-family: "Titillium Web", sans-serif;
	font-weight: 600;
	cursor: pointer;
}

label:last-child {
	margin-bottom: 0;
}

label.b-label,
label.rl-label {
	color: #2b373a;
	font-weight: 700;
}

label.rl-label {
	margin-bottom: 14px;
	font-size: 0.875em;
	line-height: 1em;
	cursor: auto;
}

label.rl-label.required:after {
	content: '*';
	color: #00d7b3;
	position: relative;
	left: 2px;
}

label.b-label {
	font-size: 0.8125em;
}

label.select-block {
	width: 100%;
	display: inline-block;
	position: relative;
}

label.select-block .svg-arrow {
	fill: #535d5f;
	width: 6px;
	height: 10px;
	position: absolute;
	top: 17px;
	right: 17px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

label>.radio,
label>.checkbox {
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 8px;
	border: 1px solid #ebebeb;
	background-color: #f5f5f5;
	position: relative;
	top: 5px;
}

label>.radio {
	border-radius: 50%;
}

label>.radio span {
	width: 6px;
	height: 6px;
	background-color: #00d7b3;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 5px;
	display: none;
}

label>.checkbox {
	border-radius: 4px;
}

label>.checkbox span {
	width: 100%;
	height: 100%;
	border-radius: 4px;
	background: url("../images/check.png") no-repeat center;
	display: none;
}

label .quantity {
	float: right;
	margin-top: 3px;
	color: #b2b2b2;
}

button {
	cursor: pointer;
}

input[type="radio"],
input[type="checkbox"] {
	display: none;
}

input[type="radio"]:checked+label .checkbox.primary,
input[type="checkbox"]:checked+label .checkbox.primary {
	border-color: #00d7b3;
	background-color: #00d7b3;
}

input[type="radio"]:checked+label .checkbox.secondary,
input[type="checkbox"]:checked+label .checkbox.secondary {
	border-color: #1396e1;
	background-color: #1396e1;
}

input[type="radio"]:checked+label .checkbox.tertiary,
input[type="checkbox"]:checked+label .checkbox.tertiary {
	border-color: #e61852;
	background-color: #e61852;
}

input[type="radio"]:checked+label>span>span,
input[type="checkbox"]:checked+label>span>span {
	display: block;
}


/*-------------------

  	PLACEHOLDERS

-------------------*/

.placeholder,
 ::-webkit-input-placeholder,
 :-moz-placeholder,
 ::-moz-placeholder,
 :-ms-input-placeholder {
	color: #b2b2b2;
	font-family: "Titillium Web", sans-serif;
	font-size: 13px;
	font-weight: 600;
}

::-webkit-input-placeholder {
	/* Chrome */
}

:-moz-placeholder {
	/* Firefox 18- */
}

::-moz-placeholder {
	/* Firefox 19+ */
}

:-ms-input-placeholder {
	/* IE */
}


/*-------------

  	BUTTONS

-------------*/

.button {
	display: block;
	width: 120px;
	height: 30px;
	border-radius: 4px;
	color: #fff;
	font-family: "Titillium Web", sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
	    margin-right: 6px;
}

.button.primary {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}


/*.button.primary:hover {

      background-color: #4E2898; }*/

.button.secondary {
	background-color: #4E2898;
}

.button.secondary:hover {
	background-color: #BA34CD;
}

.button.secondary-dark {
	background-color: #BA34CD;
}

.button.secondary-dark:hover {
	background-color: #4E2898;
}

.button.tertiary {
	background-color: #e61852;
}

.button.tertiary:hover {
	background-color: #f8436e;
}

.button.fb {
	background-color: #355599;
}

.button.twt {
	background-color: #0fccf4;
}

.button.de {
	background-color: #05cc47;
}

.button.wfb {
	background: url("../images/fb.png") no-repeat center #355599;
}

.button.wfb:hover {
	background: url("../images/fb.png") no-repeat center #4868ae;
}

.button.wtwt {
	background: url("../images/twt.png") no-repeat center #0fccf4;
}

.button.wtwt:hover {
	background: url("../images/twt.png") no-repeat center #2fd5f9;
}

.button.wdb {
	background: url("../images/db.png") no-repeat center #f63f6e;
}

.button.wdb:hover {
	background: url("../images/db.png") no-repeat center #fe5e87;
}

.button.wde {
	background: url("../images/de.png") no-repeat center #05cc47;
}

.button.wde:hover {
	background: url("../images/de.png") no-repeat center #15e159;
}

.button.dark {
	background-color: #9136a1;
	position: relative;
}

.button.dark span.primary {
	color: #16ffd8;
}

.button.dark span.secondary {
	color: #1396e1;
}

.button.dark:hover {
	background-color: #3b4a4e;
	color: #fff !important;
}

.button.dark-light {
	background-color: #535d5f;
}

.button.dark-light:hover {
	background-color: #647072;
}

.button.mid {
	width: 160px;
	height: 42px;
	line-height: 42px;
	font-size: 14px;
}

.button.mid.bid {
	float: right;
	width: 120px;
}

.button.mid-short {
	width: 160px;
}

.button.medium {
	width: 170px;
	height: 50px;
	border-radius: 0;
	line-height: 50px;
	font-size: 1em;
}

.button.big {
	width: 270px;
	height: 60px;
	line-height: 60px;
	font-size: 1.25em;
}

.button.big.purchase {
	padding-left: 22px;
	text-align: left;
}

.button.big.purchase.bid {
	padding-left: 40px;
}

.button.big.purchase span {
	float: left;
}

.button.big.wcart,
.button.big.wfav {
	position: relative;
	text-align: left;
}

.button.big.wcart {
	padding-left: 78px;
}

.button.big.wcart span.icon-present {
	font-size: 25px;
	position: absolute;
	top: 16px;
	left: 35px;
}

.button.big.wfav {
	padding-left: 72px;
}

.button.big.wfav span.fav-count {
	font-size: 10px;
	position: absolute;
	top: 14px;
	left: 40px;
}

.button.big.wfav span.icon-heart {
	font-size: 20px;
	position: absolute;
	top: 15px;
	left: 38px;
}

.button.big.wfav span.icon-eye {
	font-size: 20px;
	position: absolute;
	top: 15px;
	left: 38px;
}

.button.big.wfav span.icon-energy {
	font-size: 20px;
	position: absolute;
	top: 15px;
	left: 38px;
}

.button.big.wfav span.icon-question {
	font-size: 20px;
	position: absolute;
	top: 20px;
	left: 38px;
}

.button.big.wfav span.icon-arrow-left {
	font-size: 20px;
	position: absolute;
	top: 20px;
	left: 35px;
}

.button.big span.currency {
	margin-right: 15px;
	font-size: 36px;
	position: relative;
	top: -2px;
}

.button.big span.currency:before {
	content: '$';
	font-size: 18px;
	position: relative;
	top: -4px;
	left: -1px;
}

.button.square {
	width: 30px;
	height: 30px;
	position: relative;
}

.button.square img[alt="close-icon"] {
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: -5px;
}

.button.half {
	float: left;
}

.button.half+.half {
	float: right;
}

.button.third {
	float: left;
	margin-right: 10px;
}

.button.third+.third+.third {
	float: right;
	margin-right: 0;
}

.link-to {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10000;
}


/*---------------

  	HEADLINE

---------------*/

.headline {
	height: 66px;
	border: 1px solid #ebebeb;
	border-left: none;
	padding-left: 22px;
	margin-bottom: 26px;
	background-color: #fff;
	position: relative;
}

.headline:before {
	display: block;
	content: '';
	width: 6px;
	height: 66px;
	background: -moz-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(135deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	position: absolute;
	top: -1px;
	left: 0;
}

.headline.primary:before,
.headline.primary .slide-control {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}

.headline.primary .slide-control:hover {
	background-color: #BA34CD;
}

.headline.secondary:before,
.headline.secondary .slide-control {
	background-color: #4E2898;
}

.headline.secondary .slide-control:hover {
	background-color: #5683B5;
}

.headline.tertiary:before,
.headline.tertiary .slide-control {
	background-color: #e61852;
}

.headline.tertiary .slide-control:hover {
	background-color: #f8436e;
}

.headline.inbox .button-wrap {
	float: right;
	margin-top: 17px;
	overflow: hidden;
}

.headline.inbox .button-wrap .button {
	margin-top: 0;
}

.headline.inbox .button {
	margin-right: 7px;
}

.headline.inbox .slide-control-wrap {
	float: right;
	margin-right: 7px;
	position: static;
}

.headline.inbox .slide-control-wrap.main .slide-control {
	background-color: #535d5f;
}

.headline.inbox .slide-control-wrap.main .slide-control:hover {
	background-color: #647072;
}

.headline.statement form label:last-child {
	margin-right: 16px;
}

.headline h4 {
	float: left;
	line-height: 66px;
	margin: 0 auto;
}

.headline .slide-control-wrap {
	width: 66px;
	top: 16px;
	right: 16px;
}

.headline .button {
	float: right;
	margin: 17px 15px 0 0;
}

.headline form {
	float: right;
	margin-top: 17px;
	overflow: hidden;
}

.headline select {
	color: #888;
	font-size: 12px;
	height: 32px;
	line-height: 32px;
}

.headline .select-block {
	float: left;
	width: 200px;
	margin-right: 10px;
}

.headline .select-block .svg-arrow {
	width: 5px;
	height: 9px;
	top: 12px;
	right: 13px;
}

.headline .view-selectors {
	float: right;
	margin: 18px 15px 0 0;
}

.headline .search-form {
	float: left;
	width: 290px;
	margin-right: 14px;
}

.headline .search-form input[type="text"] {
	height: 32px;
	font-size: 0.75em;
}


/*-----------------

  	HEAD TITLE

-----------------*/

.head-title {
	width: 620px;
	margin: 20px auto 60px;
}

.head-title .text-header {
	margin-bottom: 26px;
}

.head-title p {
	text-align: center;
}


/*-----------------------

  	SECTION HEADLINE

-----------------------*/

.section-headline-wrap {
	background: url("../images/section_headline_bg.png") no-repeat center, linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background-size: cover;
}

.section-headline-wrap.v2 {
	background: url("../images/section_headline_bg.png") no-repeat center, linear-gradient(to right, #f21c5e, #1cc1e4);
}

.section-headline-wrap.v3 {
	background: url("../images/section_headline_bg.png") no-repeat center, linear-gradient(to right, #1595de, #00dcdd);
}
.section-headline {
	height: 90px;
	padding: 0 0px;
	overflow: hidden;
}
.section-headline h2 {
	float: left;
	line-height: 90px;
}
/*.section-headline p {

    float: right;

    color: #fff;

    line-height: 90px; }*/

.section-headline p {
	float: right;
	color: #fff;
	line-height: 90px;
	/* width: 50%; */
	text-align: right;
	padding-right: 3%;
}

.section-headline p .separator {
	margin: 0 13px;
}

.section-headline p .current-section {
	font-weight: 700;
	padding-right: 10px;
}


/*--------------------

  	SLIDE CONTROLS

--------------------*/

.slide-control-wrap {
	position: absolute;
}

.slide-control {
	width: 30px;
	height: 30px;
	border-radius: 4px;
	background: -moz-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(135deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	cursor: pointer;
	position: relative;
}

.slide-control:hover {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}

.slide-control.rounded {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.8);
}

.slide-control.rounded .svg-arrow {
	top: 17px;
}

.slide-control.rounded.left .svg-arrow {
	left: 18px;
}

.slide-control.rounded.right .svg-arrow {
	left: 20px;
}

.slide-control .svg-arrow {
	fill: #fff;
	width: 8px;
	height: 12px;
	position: absolute;
	top: 9px;
	pointer-events: none;
}

.slide-control.left {
	float: left;
}

.slide-control.left.mfp-arrow-left {
	float: none;
	position: absolute;
	top: 50%;
	margin-top: -15px;
	left: 12%;
}

.slide-control.left .svg-arrow {
	left: 11px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.slide-control.right {
	float: right;
}

.slide-control.right.mfp-arrow-right {
	float: none;
	position: absolute;
	top: 50%;
	margin-top: -15px;
	right: 12%;
}

.slide-control.right .svg-arrow {
	left: 12px;
}


/*----------------

  	CONTROLLERS

----------------*/

.open {
	opacity: 1;
	visibility: visible;
}

.closed {
	opacity: 0;
	visibility: hidden;
}


/*------------

  	SVG

------------*/

.svg-plus.primary {
	fill: #00d7b3;
}

.svg-plus.secondary {
	fill: #1cbdf9;
}

.svg-plus.tertiary {
	fill: #e61852;
}

.svg-minus.primary {
	fill: #00d7b3;
}

.svg-minus.secondary {
	fill: #1cbdf9;
}

.svg-minus.tertiary {
	fill: #e61852;
}

.svg-arrow {
	width: 4px;
	height: 8px;
	cursor: pointer;
}

.svg-check {
	width: 14px;
	height: 11px;
	fill: #535d5f;
}


/*------------

  	PINS

------------*/

.recommendation {
	display: inline-block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #e7e7e7;
	position: relative;
}

.recommendation.hoverable {
	transition: all .15s ease;
}

.recommendation.hoverable.good,
.recommendation.hoverable.bad {
	background-color: #e7e7e7;
}

.recommendation.hoverable:hover.good {
	background-color: #00d7b3;
}

.recommendation.hoverable:hover.bad {
	background-color: #e61852;
}

.recommendation.good {
	background-color: #00d7b3;
}

.recommendation.bad {
	background-color: #e61852;
}

.recommendation .icon-like,
.recommendation .icon-dislike {
	color: #fff;
	font-size: 18px;
	position: absolute;
	left: 50%;
	margin-left: -9px;
}

.recommendation .icon-like {
	top: 11px;
}

.recommendation .icon-dislike {
	top: 13px;
}

.pin-tag {
	display: inline-block;
	font-family: "Titillium Web", sans-serif;
	font-size: 0.75em;
	font-weight: 700;
}

.pin-tag.primary {
	color: #06b99b;
}

.pin-tag.secondary {
	color: #1396e1;
}

.pin-tag.tertiary {
	color: #e61852;
}

.pin {
	display: inline-block;
	padding: 0px 5px;
	border-radius: 2px;
	background-color: #535d5f;
	color: #fff;
	font-family: "Titillium Web", sans-serif;
	font-size: 0.5625em;
	font-weight: 700;
	line-height: 15px;
	text-transform: uppercase;
	position: absolute;
}

.pin.soft-edged {
	line-height: 14px;
	border-radius: 4px;
	padding: 0 6px;
}

.pin.big {
	font-size: 0.625em;
}

.pin.primary {
	background-color: #00d7b3;
}

.pin.secondary {
	background-color: #1cbdf9;
}

.pin.featured {
	background-color: #ffc000;
}

.pin.greyed {
	background-color: #d1d1d1;
}

.pin.violet {
	background-color: #7c5ac2;
}


/*--------------

  	WIDGETS

--------------*/

.search-widget {
	width: 970px;
	height: 122px;
	padding: 36px 0 0 52px;
	border-radius: 4px;
	position: absolute;
	left: 50%;
	margin-left: -485px;
	background: url("../images/searchbar_texture.png") no-repeat center, linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background-size: cover;
}

.search-widget-form {
	overflow: hidden;
}

.search-widget-form input,
.search-widget-form select {
	float: left;
	height: 50px;
	padding: 0 40px 0 20px;
	color: #888;
	font-size: 16px;
	line-height: 50px;
}

.search-widget-form input {
	width: 288px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-right-color: #e1e1e1;
}

.search-widget-form select {
	font-size: 1.07692em;
	border-left: none;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.search-widget-form .select-block {
	float: left;
	width: 110px;
	margin-right: 16px;
}

.search-widget-form .select-block .svg-arrow {
	width: 4px;
	height: 8px;
	top: 22px;
	right: 16px;
}

.search-widget-form .placeholder,
.search-widget-form ::-webkit-input-placeholder,
.search-widget-form :-moz-placeholder,
.search-widget-form ::-moz-placeholder,
.search-widget-form :-ms-input-placeholder {
	color: #888;
}

.search-widget-form ::-webkit-input-placeholder {
	/* Chrome */
	color: #888;
}

.search-widget-form :-moz-placeholder {
	/* Firefox 18- */
	color: #888;
}

.search-widget-form ::-moz-placeholder {
	/* Firefox 19+ */
	color: #888;
}

.search-widget-form :-ms-input-placeholder {
	/* IE */
	color: #888;
}

.search-widget-form .button {
	float: left;
}


/*------------

  	WIDE

------------*/

header,
.menu-bar,
.banner,
#services,
#product-sideshow,
#subscribe-banner,
#footer-top,
#footer-bottom,
.category-nav,
.section-headline,
.section,
.sidebar-nav,
.author-profile-meta,
.dashboard-content {
	max-width: 1170px;
	width: 95%;
	margin: 0 auto;
}


/*------------

  	LOGO

------------*/

.logo {
	width: 239px;
	height: 56px;
}

.logo.small {
	width: 178px;
	height: 41px;
}


/*--------------------

  	USER QUICKVIEW

--------------------*/

.user-quickview {
	width: 155px;
	padding: 10px 0 0 62px;
	position: relative;
}

.user-quickview .outer-ring,
.user-quickview .inner-ring,
.user-quickview .user-avatar {
	position: absolute;
}

.user-quickview .outer-ring {
	width: 54px;
	height: 54px;
	top: 0;
	left: 0;
}

.user-quickview .inner-ring {
	width: 50px;
	height: 50px;
	top: 2px;
	left: 2px;
}

.user-quickview .user-avatar {
	top: 7px;
	left: 7px;
}

.user-quickview .user-name {
	cursor: pointer;
	margin-bottom: 2px;
}

.user-quickview .svg-arrow {
	fill: #fff;
	position: absolute;
	top: 22px;
	right: 10px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}


/*------------

  	RINGS

------------*/

.outer-ring,
.inner-ring {
	border-radius: 50%;
}

.outer-ring {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}

.inner-ring {
	background-color: #2b373a;
}


/*-----------------

  	USER AVATAR

-----------------*/

.user-avatar-wrap {
	display: block;
	margin: 0 auto;
	border-radius: 50%;
}

.user-avatar-wrap.medium {
	width: 70px;
	height: 70px;
}

.button-lineheight {
	float: right;
	width: 140px;
	height: 34px !important;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	font-size: 0.875em;
	line-height: 34px !important;
}

.user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.user-avatar img {
	border-radius: 50%;
}

.user-avatar.small {
	width: 26px;
	height: 26px;
}

.user-avatar.medium {
	width: 100%;
	height: 100%;
}


/*-----------------------

  	USER INFORMATION

-----------------------*/

.user-name,
.user-money {
	line-height: 1em;
}

.user-name {
	color: #fff;
	font-size: 0.75em;
}

.user-money {
	color: #fff;
	font-size: 1em;
}


/*------------

  	RATING

------------*/

.rating {
	overflow: hidden;
	cursor: pointer;
}

.rating .rating-item {
	float: left;
	margin-right: 5px;
}

.rating .rating-item .svg-star {
	fill: #ffc000;
	width: 11px;
	height: 10px;
}

.rating .rating-item svg text {
	fill: #ffc000;
}

.rating .rating-item.empty .svg-star {
	fill: #cfcfcf;
}

.rating .rating-item:last-child {
	margin-right: 0;
}


/*---------------------

  	PRODUCT PREVIEW

---------------------*/

.product-preview-image {
	width: 258px;
	height: auto;
}

.product-preview-image.large {
	width: 836px;
	height: 400px;
	/*height: 484px;*/
}

.product-preview-image.big {
	width: 358px;
	height: 208px;
	position: relative;
}

.product-preview-image.big img {
	display: block;
}


/*

.product-preview-image.big:after {

    position: absolute;

    content:"";

    height:100%;

    width:100%;

    top:0;

    left:0;

    background: linear-gradient(45deg, rgba(86,130,181,0.5) 0%, rgba(77,40,152,0.5) 49%, rgba(187,52,205,0.5) 100%);

}

*/

.product-preview-image.thumbnail {
	width: 78px;
	height: 78px;
}

.product-preview-image.small {
	width: 70px;
	height: 70px;
}

.product-preview-image.tiny {
	width: 60px;
	height: 60px;
}

.product-preview-image.micro {
	width: 34px;
	height: 34px;
}

.text-header,
.category,
.price {
	color: #2b373a;
	font-weight: 700;
	line-height: 1em;
}

.text-header {
	font-size: 1em;
}

.text-header.small {
	font-size: 0.875em;
	line-height: 1em;
}

.text-header.tiny {
	font-size: 0.75em;
	line-height: 1.16667em;
}

.text-header.mid {
	font-size: 1.5em;
}

.text-header.big {
	font-size: 2.25em;
}

.text-header a {
	color: #2b373a;
}

.category {
	font-size: 0.75em;
}

.category.tiny {
	font-size: 0.6875em;
}

.category.primary {
	color: #06b99b;
}

.category.primary>a {
	color: #06b99b;
}

.category.secondary {
	color: #1396e1;
}

.category.secondary>a {
	color: #1396e1;
}

.category.tertiary {
	color: #e61852;
}

.category.tertiary>a {
	color: #e61852;
}

.price {
	font-size: 1.25em;
	position: relative;
}

.price span {
	font-size: 13px;
	position: relative;
	top: -2px;
}

.price.tiny {
	font-size: 1em;
}

.price.tiny span {
	font-size: 0.5625em;
}

.price.medium {
	font-size: 1.625em;
}

.price.medium span {
	font-size: 0.61538em;
}

.price.big {
	font-size: 2.375em;
}

.price.big span {
	font-size: 0.47368em;
}

.price.large {
	font-size: 3em;
}

.price.large span {
	font-size: 0.47368em;
}

.price.larger {
	font-size: 3.375em;
}

.price.larger span {
	font-size: 0.59259em;
}

.text-oneline {
	font-size: 0.75em;
	line-height: 18px;
}

.timestamp {
	color: #b2b2b2;
	font-size: 0.75em;
}

.line-separator {
	background-color: #d1d1d1;
	height: 1px;
	border: none;
	margin-bottom: 0;
}


/*--------------

  	DROPDOWN

--------------*/

.dropdown {
	width: 230px;
	position: absolute;
	border: 1px solid #ebebeb;
	background-color: #fff;
	transition: all .4s ease-in-out;
	z-index: 10000;
}

.dropdown .dropdown-triangle {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	position: absolute;
	top: -8px;
	right: 22px;
}

.dropdown.hover-effect>.dropdown-item>a {
	transition: all .15s ease;
	border-left: 0px solid #00d7b3;
}


/*.dropdown.hover-effect > .dropdown-item > a:hover {

      border-left: 6px solid #00d7b3; }*/

.dropdown.hover-effect.secondary>.dropdown-item>a {
	transition: all .15s ease;
	border-left: 0px solid #1396e1;
}

.dropdown.hover-effect.secondary>.dropdown-item>a:hover {
	border-left: 6px solid #1396e1;
}

.dropdown.hover-effect.tertiary>.dropdown-item>a {
	transition: all .15s ease;
	border-left: 0px solid #e61852;
}

.dropdown.hover-effect.tertiary>.dropdown-item>a:hover {
	border-left: 6px solid #e61852;
}

.dropdown.small {
	width: 170px;
}


/*.dropdown.small.hover-effect .dropdown-item > a:hover {

      border-left: 4px solid #00d7b3; }*/

.dropdown.small .dropdown-item>a {
	padding-left: 14px;
	line-height: 40px;
	font-size: 13px;
}

.dropdown.notifications {
	width: 300px;
}

.dropdown.notifications .dropdown-item {
	height: 81px;
	padding: 20px 55px 0 70px;
	position: relative;
}

.dropdown.notifications .dropdown-item .user-avatar {
	position: absolute;
	top: 20px;
	left: 15px;
}

.dropdown.notifications .dropdown-item .title {
	font-size: 0.6875em;
	line-height: 1.27273em;
}

.dropdown.notifications .dropdown-item .title span {
	color: #2b373a;
	font-weight: 700;
}

.dropdown.notifications .dropdown-item .subject {
	font-size: 0.6875em;
}

.dropdown.notifications .dropdown-item .timestamp {
	font-size: 0.625em;
}

.dropdown.notifications .dropdown-item .notification-type {
	color: #888;
	font-size: 19px;
	position: absolute;
	top: 30px;
	right: 19px;
}

.dropdown.notifications .dropdown-item .notification-type.primary-new {
	color: #00d7b3;
}

.dropdown.notifications .dropdown-item .notification-type.secondary-new {
	color: #1cbdf9;
}

.dropdown.cart {
	width: 300px;
}

.dropdown.cart .dropdown-item {
	height: 92px;
	padding: 18px 40px 0 84px;
	position: relative;
}

.dropdown.cart .dropdown-item .svg-plus {
	fill: #b2b2b2;
	width: 10px;
	height: 10px;
	position: absolute;
	top: 10px;
	right: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 10000;
}

.dropdown.cart .dropdown-item:last-child {
	padding: 0 18px 0 84px;
	height: 43px;
	cursor: auto;
}

.dropdown.cart .dropdown-item:last-child .text-header {
	float: left;
	line-height: 43px;
}

.dropdown.cart .dropdown-item:last-child .price {
	float: right;
	font-size: 0.875em;
	line-height: 43px;
}

.dropdown.cart .dropdown-item .product-preview-image {
	position: absolute;
	top: 16px;
	left: 16px;
}

.dropdown.cart .dropdown-item .text-header {
	margin-bottom: 3px;
}

.dropdown.cart .dropdown-item .category {
	margin-bottom: 2px;
}

.dropdown.cart .dropdown-item .button {
	bottom: -54px;
}

.dropdown.dark {
	background-color: #222b2d;
	border-color: #2b373a;
}

.dropdown.dark .dropdown-item {
	border-color: #2b373a;
}

.dropdown.dark .dropdown-item.active>a {
	color: #fff;
	border-left: 6px solid #00d7b3;
}

.dropdown.dark .dropdown-item.active>a .svg-arrow {
	fill: #fff;
}

.dropdown.dark .dropdown-item.active>a .sl-icon {
	color: #00d7b3;
}

.dropdown.dark .dropdown-item:hover {
	background-color: #222b2d;
}

.dropdown.dark .dropdown-item:hover>a {
	color: #fff;
}

.dropdown.dark .dropdown-item:hover>a .svg-arrow {
	fill: #fff;
}

.dropdown.dark .dropdown-item:hover>a .sl-icon {
	color: #00d7b3;
}

.dropdown.dark .dropdown-item>a {
	padding-left: 30px;
	color: #6a7779;
	transition: all .2s ease-in;
}

.dropdown.dark .dropdown-item>a .svg-arrow {
	transition: fill .2s ease-in;
}

.dropdown.no-hover .dropdown-item {
	cursor: auto;
}

.dropdown.secondary .dropdown-item.active>a {
	border-left: 6px solid #1396e1;
}

.dropdown.tertiary .dropdown-item.active>a {
	border-left: 6px solid #e61852;
}

.dropdown .dropdown-item {
	border-bottom: 1px solid #ebebeb;
	position: relative;
}


/*.dropdown .dropdown-item.active > a {

      border-left: 6px solid #00d7b3; }*/

.dropdown .dropdown-item>.dropdown {
	position: absolute;
	top: -1px;
	right: -160px;
}

.dropdown .dropdown-item .svg-arrow {
	width: 5px;
	height: 11px;
	fill: #2b373a;
	pointer-events: none;
}

.dropdown .dropdown-item:hover {
	background-color: #f6f6f6;
}

.dropdown .dropdown-item:hover>.dropdown {
	right: -230px;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.dropdown .dropdown-item>a {
	display: block;
	padding-left: 15px;
	line-height: 50px;
	color: #2b373a;
	font-size: 14px;
	font-weight: 700;
}

.dropdown .dropdown-item>a .svg-arrow {
	position: relative;
	top: 1px;
	left: 10px;
	fill: #535d5f;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.dropdown .dropdown-item>a .item-count {
	float: right;
	margin-right: 18px;
	color: #b2b2b2;
}

.dropdown .dropdown-item .button {
	width: 300px;
	height: 50px;
	line-height: 50px;
	padding: 0;
	color: #fff;
	font-size: 0.75em;
	position: absolute;
	bottom: -51px;
	left: -1px;
	border-radius: 0;
}

.dropdown .dropdown-item .button.half {
	width: 150px;
}

.dropdown .dropdown-item .button.half:last-child {
	left: auto;
	right: -1px;
}

.dropdown .dropdown-item:last-child {
	border-bottom: none;
	cursor: pointer;
}

.dropdown .dropdown-item .pin {
	top: 18px;
	right: 22px;
	pointer-events: none;
}

.inner-dropdown {
	padding: 0 0 15px 45px;
	background-color: #1e2527;
	border-top: 1px solid #2b373a;
	overflow: hidden;
	display: none;
}

.inner-dropdown.open {
	display: block;
}

.inner-dropdown .inner-dropdown-item {
	position: relative;
}

.inner-dropdown .inner-dropdown-item>p {
	margin: 24px 0 10px;
	color: #fff;
	font-size: 0.8125em;
	line-height: 1em;
	text-transform: uppercase;
}

.inner-dropdown .inner-dropdown-item>a {
	display: block;
	color: #6a7779;
	font-size: 0.8125em;
	font-weight: 700;
	line-height: 34px;
	opacity: 0.6;
	transition: opacity .15s ease-in;
}

.inner-dropdown .inner-dropdown-item>a:hover {
	opacity: 1;
}

.inner-dropdown .inner-dropdown-item .pin {
	top: 10px;
	right: 22px;
}


/*--------------

  	SIDEBAR

--------------*/

.sidebar-nav-wrap {
	background-color: #fff;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

.sidebar.left .dropdown li.dropdown-item a:hover {
	color: #444 !important;
}

.sidebar-nav {
	height: 60px;
}

.sidebar-nav .sidebar-menu {
	float: left;
}

.sidebar-nav .sidebar-filters {
	float: right;
	margin-right: 30px;
}

.sidebar-nav .sidebar-filters form,
.sidebar-nav .sidebar-filters .view-selectors,
.sidebar-nav .sidebar-filters .button {
	margin-top: 14px;
}

.sidebar-nav .sidebar-filters form,
.sidebar-nav .sidebar-filters .view-selectors {
	float: left;
}

.sidebar-nav .sidebar-filters form {
	margin-right: 22px;
}

.sidebar-nav .sidebar-filters form select {
	color: #888;
	font-size: 12px;
	height: 32px;
	line-height: 32px;
}

.sidebar-nav .sidebar-filters form .select-block {
	float: left;
	width: 200px;
	margin-right: 10px;
}

.sidebar-nav .sidebar-filters form .select-block:last-child {
	margin-right: 0;
}

.sidebar-nav .sidebar-filters form .select-block .svg-arrow {
	width: 5px;
	height: 9px;
	top: 12px;
	right: 13px;
}

.sidebar-nav .sidebar-filters .view-selectors {
	margin-right: 12px;
}

.sidebar-nav .sidebar-filters .button {
	float: right;
	width: 160px;
}

.sidebar-menu .sidebar-menu-item {
	float: left;
	border-right: 1px solid #ebebeb;
	position: relative;
}

.sidebar-menu .sidebar-menu-item .svg-arrow {
	fill: #535d5f;
	width: 5px;
	height: 9px;
	position: absolute;
	top: 26px;
	right: 32px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	pointer-events: none;
}

.sidebar-menu .sidebar-menu-item a {
	display: block;
	height: 60px;
	padding: 0 48px 0 30px;
	color: #2b373a;
	font-size: 0.875em;
	line-height: 60px;
	font-weight: 700;
}

.sidebar-menu-dropdown {
	width: 270px;
	border: 1px solid #ebebeb;
	padding: 22px 14px;
	background-color: #fff;
	position: absolute;
	left: 0;
	z-index: 9999;
	display: none;
}

.sidebar-menu-dropdown.big {
	width: 300px;
	padding: 36px 14px 46px;
}


/*------------------------

  	INFORMATION LAYOUT

------------------------*/

.information-layout .information-layout-item {
	padding: 10px 0;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}

.information-layout .information-layout-item:last-child {
	border-bottom: none;
}

.information-layout .information-layout-item p {
	font-size: 0.8125em;
	line-height: 20px;
}

.information-layout .information-layout-item p:nth-child(1) {
	float: left;
}

.information-layout .information-layout-item p:nth-child(2) {
	float: right;
	text-align: right;
}

.information-layout.v2 .information-layout-item {
	border-bottom: none;
}

.information-layout.v2 p:nth-child(1),
.information-layout.v2 p:nth-child(2) {
	float: none;
	text-align: left;
}

.information-layout.v2 p span {
	color: #2b373a;
	font-weight: 700;
}


/*-------------------

  	ITEM PREVIEW

-------------------*/

.item-preview {
	padding: 2px 0 0 80px;
	position: relative;
}

.item-preview .product-preview-image {
	position: absolute;
	top: 0;
	left: 0;
}

.item-preview .text-header {
	line-height: 16px;
	margin-bottom: 3px;
}

.item-preview .category {
	margin-bottom: 4px;
}

.item-preview .description {
	font-size: 0.75em;
}


/*-------------------

  	COUNTDOWNS

-------------------*/

.bid-countdown {
	position: relative;
}

.bid-countdown>div {
	margin-right: 14px;
}

.bid-countdown>div:last-child {
	margin-right: 0;
}

.bid-countdown>div>p {
	position: absolute;
	top: 8px;
	left: 50%;
	color: #2b373a;
	font-size: 1.125em;
	font-weight: 700;
	text-align: center;
	line-height: 35px;
}

.bid-countdown>div>p .tag {
	color: #888;
	font-size: 13px;
	font-weight: 600;
}

.bid-countdown .colon {
	color: #2b373a;
	font-family: "Titillium Web", sans-serif;
	font-size: 1.125em;
	font-weight: 700;
	position: absolute;
	top: 10px;
}

.bid-countdown .colon:nth-child(1) {
	left: 55px;
}

.bid-countdown .colon:nth-child(2) {
	left: 119px;
}

.bid-countdown .colon:nth-child(3) {
	left: 183px;
}


/*--------------

  	COLUMNS

--------------*/

.column5-wrap {
	margin: 0 auto;
}

.column5-wrap .column {
	float: left;
}

.column4-wrap,
.column3-wrap,
.column3-4-wrap,
.column-wrap {
	margin: 0 auto;
}

.column4-wrap .column,
.column3-wrap .column,
.column3-4-wrap .column,
.column-wrap .column {
	float: left;
	margin-right: 22px;
}

.column5-wrap .column {
	width: 234px;
}

.column6-wrap .column {
	width: 195px;
}

.column6-wrap .column,
.column5-wrap .column,
.column5-6-wrap .column,
.column-wrap .column {
	float: left;
	margin-right: 0;
}

.column4-wrap .column {
	width: 270px;
}

.column5-wrap .column {
	width: 200px;
}

.column4-wrap .column:nth-child(4n+4) {
	margin-right: 0;
}

.column5-wrap .column:nth-child(5n+5) {
	margin-right: 0;
}

.column3-4-wrap {
	width: 870px;
}

.column3-4-wrap .column {
	width: 270px;
}

.column3-4-wrap .column:nth-child(3n+3) {
	margin-right: 0;
}

.column3-wrap .column {
	width: 370px;
}

.column3-wrap .column:nth-child(3n+3) {
	margin-right: 0;
}

.column-wrap .column {
	width: 270px;
}

.column-wrap .column:last-child {
	margin-right: 0;
}


/*-------------------

  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 1260px) {
	/*--------------

    	COLUMNS

  --------------*/
	.column5-wrap {
		width: 702px;
	}
	.column4-wrap {
		width: 870px;
	}
	.column4-wrap .column:nth-child(4n+4) {
		margin-right: 30px;
	}
	.column4-wrap .column:nth-child(3n+3) {
		margin-right: 0;
	}
	.column4-wrap.service-list {
		width: 570px;
	}
	.column4-wrap.service-list .column {
		margin-bottom: 60px;
	}
	.column4-wrap.service-list .column:nth-child(3n+3) {
		margin-right: 30px;
	}
	.column4-wrap.service-list .column:nth-child(2n+2) {
		margin-right: 0;
	}
	.column3-wrap {
		width: 770px;
	}
	.column3-wrap .column:nth-child(3n+3) {
		margin-right: 30px;
	}
	.column3-wrap .column:nth-child(2n+2) {
		margin-right: 0;
	}
	/*--------------

    	SIDEBAR

  --------------*/
	.sidebar-nav {
		max-width: none;
		width: 100%;
		height: auto;
		padding-bottom: 30px;
		overflow: hidden;
	}
	.sidebar-nav .sidebar-filters {
		width: 410px;
		float: none;
		margin: 0 auto;
		overflow: hidden;
	}
	.sidebar-nav .sidebar-filters form {
		margin-right: 0;
		margin-bottom: 14px;
	}
	.sidebar-nav .sidebar-filters form label {
		margin-bottom: 0;
	}
	.sidebar-nav .sidebar-filters .view-selectors {
		float: none;
		width: 66px;
		margin: 0 auto;
	}
	.sidebar-nav .sidebar-filters .button {
		float: none;
		margin: 18px auto 0;
	}
	.sidebar-menu {
		width: 100%;
		margin-bottom: 20px;
	}
	.sidebar-menu .sidebar-menu-item {
		float: none;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #ebebeb;
	}
	.sidebar-menu-dropdown {
		width: 100%;
		padding: 22px 30px;
		border: none;
		border-top: 1px solid #ebebeb;
		position: static;
	}
	.sidebar-menu-dropdown.big {
		width: 100%;
	}
	/*--------------------

    	SLIDE CONTROLS

  --------------------*/
	.slide-control.left.mfp-arrow-left {
		top: auto;
		margin-top: 0;
		bottom: 20px;
		left: 50%;
		margin-left: -45px;
	}
	.slide-control.right.mfp-arrow-right {
		top: auto;
		margin-top: 0;
		bottom: 20px;
		right: 50%;
		margin-right: -45px;
	}
}

@media screen and (max-width: 935px) {
	/*--------------

    	COLUMNS

  --------------*/
	.column5-wrap {
		width: 468px;
	}
	.column4-wrap,
	.column3-4-wrap {
		width: 570px;
	}
	.column4-wrap .column,
	.column3-4-wrap .column {
		margin-bottom: 60px;
	}
	.column4-wrap .column:nth-child(3n+3),
	.column3-4-wrap .column:nth-child(3n+3) {
		margin-right: 30px;
	}
	.column4-wrap .column:nth-child(2n+2),
	.column3-4-wrap .column:nth-child(2n+2) {
		margin-right: 0;
	}
	.column3-wrap {
		width: 370px;
	}
	.column3-wrap .column {
		margin-right: 0;
	}
	.column3-wrap .column:nth-child(3n+3) {
		margin-right: 0;
	}
	/*-----------------

    	HEAD TITLE

  -----------------*/
	.head-title {
		width: 90%;
	}
	.dashboard-content .headline.inbox .button-wrap {
		float: none;
		width: 103px;
		margin: 0 auto 16px;
	}
	.dashboard-content .headline.inbox .button-wrap .button {
		float: right;
	}
}

@media screen and (max-width: 630px) {
	.sticky {
		position: inherit !important;
	}
	.ht-banner .ht-banner-img4 {
		left: 10%;
	}
	/*--------------

    	COLUMNS

  --------------*/
	.column5-wrap {
		width: 100%;
	}
	.circle.dark {
		background: none !important;
	}
	.circle.white-cover {
		background: none !important;
	}
	.service-list .service-item h3 {
		font-size: 12px !important;
	}
	.service-list .service-item {
		padding: 109px 0px 0 !important;
	}
	.service-list .service-item .circle.medium {
		display: none;
	}
	.column5-wrap .column {
		float: left;
		width: 33%;
		margin-right: 0px;
	}
	.column4-wrap,
	.column3-4-wrap {
		width: 270px;
	}
	.column4-wrap .column,
	.column3-4-wrap .column {
		margin-right: 0;
	}
	.column4-wrap.service-list,
	.column3-4-wrap.service-list {
		width: 90%;
		margin: 5%;
		min-height: 243px;
		text-align: center;
	}
	.column4-wrap.service-list .column,
	.column3-4-wrap.service-list .column {
		margin-right: 0;
	}
	.column4-wrap.service-list .column:nth-child(3n+3),
	.column3-4-wrap.service-list .column:nth-child(3n+3) {
		margin-right: 0;
	}
	/*-----------------------

    	SECTION HEADLINE

  -----------------------*/
	.section-headline {
		padding: 0;
	}
	.section-headline h2 {
		float: none;
		text-align: center;
	}
	.section-headline p {
		display: none;
	}
	/*--------------------

    	SLIDE CONTROLS

  --------------------*/
	.slide-control.left.mfp-arrow-left {
		bottom: 50px;
	}
	.slide-control.right.mfp-arrow-right {
		bottom: 50px;
	}
}

@media screen and (max-width: 460px) {
	h1 {
		font-size: 2.5em;
	}
	/*--------------

    	COLUMNS

  --------------*/
	.column3-wrap {
		width: 90%;
	}
	.column3-wrap .column {
		width: 100%;
	}
	.column3-wrap.service-list.small .service-item {
		padding: 80px 0 0;
	}
	.column3-wrap.service-list.small .service-item .outer-ring {
		left: 50%;
		margin-left: -25px;
	}
	.column3-wrap.service-list.small .service-item h3,
	.column3-wrap.service-list.small .service-item p {
		text-align: center;
	}
	/*--------------

    	SIDEBAR

  --------------*/
	.sidebar-nav .sidebar-filters {
		width: 200px;
	}
	.sidebar-nav .sidebar-filters form label {
		margin-right: 0;
		margin-bottom: 12px;
	}
	.sidebar-nav .sidebar-filters form label:last-child {
		margin-bottom: 0;
	}
	/*--------------------

    	SLIDE CONTROLS

  --------------------*/
	.slide-control.left.mfp-arrow-left {
		bottom: 120px;
	}
	.slide-control.right.mfp-arrow-right {
		bottom: 120px;
	}
}

.header-wrap {
	background-color: #2b373a;
}

header .account-actions .button {
	font-size: 14px;
}

header {
	min-height: 75px;
	display: flow-root;
}

header .logo {
	float: left;
	margin-top: 10px;
	width: 236px;
	margin-bottom: 10px;
}

header .logo-mobile {
	display: none;
	width: 140px;
	/*! height: 56px; */
	position: absolute;
	top: 8px;
	left: 33%;
	margin-left: -24px;
}

header .mobile-menu-handler,
header .mobile-account-options-handler {
	width: 68px;
	height: 68px;
	position: absolute;
	top: 0;
	display: none;
	cursor: pointer;
}

header .mobile-menu-handler.primary,
header .mobile-account-options-handler.primary {
	background: #f0f0f0;
}

header .mobile-menu-handler.secondary,
header .mobile-account-options-handler.secondary {
	/*background-color: #1cbdf9;*/
}

header .mobile-menu-handler.left,
header .mobile-account-options-handler.left {
	left: 0;
}

header .mobile-menu-handler.right,
header .mobile-account-options-handler.right {
	right: 0;
}

header .mobile-menu-handler img[alt="pull-icon"],
header .mobile-account-options-handler img[alt="pull-icon"] {
	position: absolute;
	top: 23px;
	left: 50%;
	margin-left: -13px;
}

header .mobile-menu-handler .icon-user,
header .mobile-account-options-handler .icon-user {
	color: #353535;
	font-size: 24px;
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -12px;
}

header .user-board {
	float: right;
}

header .user-board .user-quickview {
	float: right;
	/*! height: 80px; */
	margin-top: 10px;
}

header .user-board .user-quickview .dropdown {
	left: 2px;
}

header .user-board .user-quickview .dropdown.open {
	top: 69px;
	z-index: 9999999;
}

header .user-board .user-quickview .dropdown.closed {
	top: 0;
}

header .account-information {
	float: right;
	margin: 26px 6px 0 0;
}

header .account-information .account-wishlist-quickview,
header .account-information .account-cart-quickview,
header .account-information .account-email-quickview,
header .account-information .account-settings-quickview {
	float: left;
	padding-right: 34px;
	cursor: pointer;
	position: relative;
}

header .account-information .account-wishlist-quickview:first-child,
header .account-information .account-wishlist-quickview:last-child,
header .account-information .account-cart-quickview:first-child,
header .account-information .account-cart-quickview:last-child,
header .account-information .account-email-quickview:first-child,
header .account-information .account-email-quickview:last-child,
header .account-information .account-settings-quickview:first-child,
header .account-information .account-settings-quickview:last-child {
	padding-right: 26px;
}

header .account-information .account-wishlist-quickview>span:first-child,
header .account-information .account-cart-quickview>span:first-child,
header .account-information .account-email-quickview>span:first-child,
header .account-information .account-settings-quickview>span:first-child {
	position: relative;
	color: #717f82;
	transition: all .2s ease-in-out;
}

header .account-information .account-wishlist-quickview>span:first-child .svg-arrow,
header .account-information .account-cart-quickview>span:first-child .svg-arrow,
header .account-information .account-email-quickview>span:first-child .svg-arrow,
header .account-information .account-settings-quickview>span:first-child .svg-arrow {
	fill: #717f82;
	position: absolute;
	right: -10px;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	transition: all .2s ease-in-out;
}

header .account-information .account-wishlist-quickview:hover>span:first-child,
header .account-information .account-wishlist-quickview.active>span:first-child,
header .account-information .account-cart-quickview:hover>span:first-child,
header .account-information .account-cart-quickview.active>span:first-child,
header .account-information .account-email-quickview:hover>span:first-child,
header .account-information .account-email-quickview.active>span:first-child,
header .account-information .account-settings-quickview:hover>span:first-child,
header .account-information .account-settings-quickview.active>span:first-child {
	color: #b6c6ca;
}

header .account-information .account-wishlist-quickview:hover>span:first-child .svg-arrow,
header .account-information .account-wishlist-quickview.active>span:first-child .svg-arrow,
header .account-information .account-cart-quickview:hover>span:first-child .svg-arrow,
header .account-information .account-cart-quickview.active>span:first-child .svg-arrow,
header .account-information .account-email-quickview:hover>span:first-child .svg-arrow,
header .account-information .account-email-quickview.active>span:first-child .svg-arrow,
header .account-information .account-settings-quickview:hover>span:first-child .svg-arrow,
header .account-information .account-settings-quickview.active>span:first-child .svg-arrow {
	fill: #b6c6ca;
}

header .account-information .account-wishlist-quickview .dropdown,
header .account-information .account-cart-quickview .dropdown,
header .account-information .account-email-quickview .dropdown,
header .account-information .account-settings-quickview .dropdown {
	right: 13px;
}

header .account-information .account-wishlist-quickview .dropdown.open,
header .account-information .account-cart-quickview .dropdown.open,
header .account-information .account-email-quickview .dropdown.open,
header .account-information .account-settings-quickview .dropdown.open {
	top: 49px;
}

header .account-information .account-wishlist-quickview .dropdown.closed,
header .account-information .account-cart-quickview .dropdown.closed,
header .account-information .account-email-quickview .dropdown.closed,
header .account-information .account-settings-quickview .dropdown.closed {
	top: 0;
}

header .account-information .pin {
	font-size: 0.625em;
	top: -5px;
	left: -6px;
}

header .account-information .account-settings-quickview .dropdown {
	right: 0;
}

header .account-information .icon-present,
header .account-information .icon-envelope,
header .account-information .icon-settings {
	font-size: 22px;
}

header .account-information .icon-heart {
	top: 1px;
	font-size: 21px;
}

header .account-information .icon-present {
	top: -2px;
}

header .account-information .icon-present .svg-arrow {
	top: 9px;
}

header .account-information .icon-envelope {
	top: 1px;
}

header .account-information .icon-envelope .svg-arrow {
	top: 6px;
	right: -12px;
}

header .account-information .icon-settings .svg-arrow {
	top: 7px;
	right: -12px;
}

header .account-actions {
	float: right;
	margin: 26px 26px 0 0;
}

header .account-actions.no-space {
	margin-right: 0;
}

header .account-actions .interesting-link {
	float: left;
	margin-right: 30px;
	margin-top: 6px;
	color: #b6c6ca;
	font-size: 0.75em;
	font-weight: 700;
}

header .account-actions .interesting-link:hover {
	color: #fff;
}

header .account-actions .button {
	width: auto;
	float: left;
	height: 30px;
	line-height: 24px;
	padding: 3px 20px;
	margin-right: 12px;
}

header .account-actions .button:last-child {
	margin-right: 0;
}


/*-------------------

  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 1260px) {
	header .logo,
	header .user-board {
		display: none;
	}
	header .logo-mobile,
	header .mobile-menu-handler,
	header .mobile-account-options-handler {
		display: block;
	}
}

.main-menu {
	min-height: 44px;
	position: relative;
}

.main-menu-wrap {
	background-color: #fff;
	z-index: 99999999999 !important;
}

.main-menu-wrap.dark {
	background-color: #3a494d;
}

.main-menu-wrap.dark .main-menu .menu-item {
	border-right-color: #465559;
}

.main-menu-wrap.dark .main-menu .menu-item>a {
	color: #fff;
}

.main-menu-wrap.dark .main-menu .content-dropdown {
	background-color: #3a494d;
	border-color: #465559;
}

.main-menu-wrap.dark .main-menu .content-dropdown .feature-list-title {
	color: #fff;
}

.main-menu-wrap.dark .main-menu .content-dropdown .line-separator {
	background-color: #465559;
}

.main-menu-wrap.dark .main-menu .content-dropdown .feature-list-item>a:hover {
	color: #fff;
}

.menu-bar {
	min-height: 44px;
	position: relative;
}

.menu-bar .search-form {
	width: 245px;
	position: absolute;
	top: 6px;
	right: 0;
}

.main-menu {
	min-height: 44px;
	position: relative;
}

.main-menu.top-highlight .menu-item>a {
	border-top: 6px solid transparent;
	line-height: 58px;
	padding-bottom: 7px;
}

.main-menu.top-highlight .menu-item:hover>a {
	color: #2b373a;
	background-color: #fff;
	border-top-color: #00d7b3;
}

.main-menu.top-highlight .menu-item:hover>a .svg-arrow {
	fill: #535d5f;
}

.main-menu .menu-item {
	float: left;
	border-right: 0px solid #ebebeb;
}

.main-menu .menu-item .svg-arrow {
	fill: #535d5f;
	position: relative;
	left: 15px;
	transition: fill .15s ease-in-out;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.main-menu .menu-item .dropdown .svg-arrow {
	width: 5px;
	height: 11px;
	fill: #2b373a;
	position: static;
	float: right;
	margin-right: 14px;
	margin-top: 22px;
	margin-left: 0;
	pointer-events: none;
	transition: none;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.main-menu .menu-item.sub>a {
	padding-right: 40px;
}


/*.main-menu .menu-item > a {
    display: block;
    padding: 0 30px;
    color: #2b373a;
    font-size: 0.875em;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 40px;
    margin: 2px 4px 2px 0;
    border-radius: 5px;
    transition: all .15s ease-in-out;
	}*/

.main-menu .menu-item>a {
	display: block;
	padding: 0 25px;
	color: #2b373a;
	/*font-size: 0.875em;*/
	font-weight: 700;
	text-transform: uppercase;
	line-height: 30px;
	margin: 7px 5px 7px 5px;
	border-radius: 5px;
	transition: all .15s ease-in-out;
}

.main-menu .menu-item:hover>a {
	color: #fff;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}

.main-menu .menu-item:hover>a .svg-arrow {
	fill: #fff;
}

.main-menu .menu-item>a.active {
	color: #fff;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}

.main-menu .menu-item:hover>a .svg-arrow {
	fill: #fff;
}

.main-menu .menu-item:hover>.content-dropdown,
.main-menu .menu-item:hover>.dropdown {
	top: 68px;
	border: 1px solid #e5e5e5;
	-webkit-box-shadow: 0 1px 3px #ddd;
	box-shadow: 0 1px 3px #ddd;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.main-menu .menu-item>.content-dropdown,
.main-menu .menu-item>.dropdown {
	top: 0;
	left: 0;
}

.content-dropdown {
	padding: 0;
	background-color: #fff;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease-in-out;
	/*z-index: 10000;*/
	z-index: 99999999;
	width: 100%;
	pointer-events: none;
	margin-top: -2.1%;
}

.feature-list-block {
	float: left;
	margin-right: 30px;
}

.feature-list-block:last-child {
	margin-right: 0;
}

.feature-list-block .line-separator {
	margin-bottom: 16px;
}

.feature-list-block .product-list.grid .product-item {
	margin-bottom: 0;
}

.feature-list-title {
	margin-bottom: 12px;
}

.feature-list {
	float: left;
	width: 170px;
	margin-right: 30px;
}

.feature-list.spaced {
	margin-bottom: 20px;
}

.feature-list+.feature-list {
	float: right;
	margin-right: 0;
}

.feature-list-item {
	margin-bottom: 12px;
}

.feature-list-item>a {
	display: inline-block;
	line-height: 1em;
	color: #888;
	font-size: 0.8125em;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	transition: color .15s ease-in-out;
}

.feature-list-item>a:hover {
	color: #2b373a !important;
}

.feature-list-item>a .pin {
	font-size: 0.625em;
	top: 0;
	right: -40px;
}

.search-form {
	position: relative;
}

.search-form input[type="text"] {
	padding: 0 60px 0 20px;
}

.search-form input[type="image"] {
	position: absolute;
	top: 0px;
	right: -10px;
}

.side-menu {
	width: 270px;
	height: 100%;
	padding-bottom: 100px;
	background-color: #222b2d;
	position: fixed;
	top: 0;
	z-index: 10000;
	overflow: auto;
	transition: all .3s ease-in-out;
}

.side-menu::-webkit-scrollbar {
	-webkit-appearance: none;
}

.side-menu::-webkit-scrollbar:vertical {
	width: 12px;
}

.side-menu::-webkit-scrollbar:horizontal {
	height: 12px;
}

.side-menu::-webkit-scrollbar-thumb {
	background-color: #535d5f;
	border-radius: 10px;
	border: 2px solid #2b373a;
}

.side-menu::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #2b373a;
}

.side-menu.open.left {
	left: 0;
}

.side-menu.open.right {
	right: 0;
}

.side-menu.closed.left {
	left: -270px;
}

.side-menu.closed.right {
	right: -270px;
}

.side-menu .svg-plus {
	width: 14px;
	height: 14px;
	fill: #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 16px;
	right: 18px;
	cursor: pointer;
}

.side-menu.dashboard {
	padding-bottom: 0;
}

.side-menu.dashboard.closed {
	opacity: 1;
	visibility: visible;
}

.side-menu.dashboard.closed.left {
	left: 0;
}

.side-menu.dashboard.closed.right {
	right: 0;
}

.side-menu.dashboard .svg-plus {
	top: 28px;
	display: none;
}

.side-menu.dashboard .side-menu-header {
	height: 122px;
}

.side-menu.dashboard .user-quickview {
	margin: 32px 0 0 32px;
}

.side-menu.dashboard .inner-dropdown {
	padding-top: 15px;
}

.side-menu.dashboard .sl-icon {
	margin-right: 14px;
	position: relative;
	top: 1px;
	transition: all .01s ease;
}

.side-menu.dashboard .button:last-child {
	margin: 22px auto 100px;
}

.side-menu .side-menu-header {
	height: 100px;
	background-color: #2b373a;
	overflow: hidden;
}

.side-menu .side-menu-title {
	padding-left: 20px;
	background-color: #202729;
	color: #535d5f;
	font-size: 0.625em;
	font-weight: 700;
	line-height: 35px;
	text-transform: uppercase;
}

.side-menu .logo {
	margin: 28px 0 0 20px;
}

.side-menu .dropdown {
	width: 100%;
	border-left: none;
	border-right: none;
	position: static;
}

.side-menu.right {
	right: 0;
}

.side-menu.left {
	left: 0;
}

.side-menu .user-quickview {
	margin: 21px 0 0 20px;
}

.side-menu .user-quickview .user-name {
	cursor: auto;
}

.side-menu .button {
	width: 226px;
	margin: 0 auto;
}

.side-menu .button:nth-last-child(2) {
	margin: 22px auto 18px;
}


/*-------------------


  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 1260px) {
	.main-menu {
		display: none;
	}
	.menu-bar .search-form {
		width: 90%;
		margin: 0 auto;
		position: relative;
	}
}

.banner-wrap {
	position: relative;
	background: url(../images/home_banner.jpg);
	background-size: cover;
	margin-top: -0.7%;
}

.banner-wrap2 {
	position: relative;
	/*background:url(../images/property.jpg);*/
	background-size: cover;
}

.banner {
	min-height: 430px;
	padding-top: 50px;
	position: relative;
	height: 430px;
}

.banner.short {
	min-height: 350px;
}

.banner.banner-v2 {
	min-height: 400px;
	padding: 90px 0 60px;
	z-index: 2 !important;
}

.banner.banner-v2 .search-widget-form {
	width: 55%;
	float: left;
}

.banner.banner-v2 .search-widget-form ul {
	padding-top: 20px;
	clear: both;
}

.banner.banner-v2 .search-widget-form li {
	display: block;
	color: #fff;
	background: url(../images/range-bg.png) left 15px no-repeat;
	font-size: 18px;
	width: 100%;
	clear: both;
	font-family: "Titillium Web", sans-serif;
	padding-left: 20px;
	line-height: 36px;
}

.banner.banner-v2 .cright {
	width: 25%;
	float: right;
	margin-top: -113px;
}

.banner.banner-v2 .cright p {
	font-size: 18px;
}

.banner.banner-v2 .cright p span {
	vertical-align: middle;
}

.banner.banner-v2 h2 {
	margin-bottom: 40px;
	text-transform: capitalize;
}

.banner h5 {
	margin-bottom: 5px;
}

.banner h1 {
	margin-bottom: 20px;
}

.banner p {
	width: 100%;
	margin: 0 auto;
	color: #fff;
	line-height: 1.57143em;
	text-align: center;
}

.banner img[alt="banner-img"] {
	position: absolute;
	bottom: 68px;
	left: 50%;
	margin-left: -257px;
}

.banner .search-widget {
	bottom: -54px;
}

#subscribe-banner-wrap {
	background: url("../images/subscribe_banner_bg.png") no-repeat center, linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background-size: cover;
}

#subscribe-banner {
	min-height: 150px;
}

#subscribe-banner .subscribe-content {
	width: 918px;
	margin: 0 auto;
}

#subscribe-banner .subscribe-content .subscribe-header {
	float: left;
	width: 396px;
	margin-top: 36px;
}

#subscribe-banner .subscribe-content .subscribe-header figure {
	float: left;
	width: 80px;
	height: 80px;
	margin-right: 17px;
}

#subscribe-banner .subscribe-content .subscribe-header .subscribe-title {
	margin: 20px 0 6px;
	font-size: 1.5em;
	font-weight: 700;
}

#subscribe-banner .subscribe-content .subscribe-header p {
	color: #fff;
	font-size: 0.8125em;
	line-height: 1em;
}

#subscribe-banner .subscribe-content .subscribe-form {
	float: right;
	width: 474px;
	margin-top: 56px;
}

#subscribe-banner .subscribe-content .subscribe-form input[type="text"] {
	float: left;
	width: 334px;
	height: 34px;
	line-height: 43px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

#subscribe-banner .subscribe-content .subscribe-form input[type="email"] {
	float: left;
	width: 334px;
	height: 34px;
	line-height: 43px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

#subscribe-banner .subscribe-content .subscribe-form .button {
	float: right;
	width: 115px;
	height: 43px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	font-size: 0.875em;
	line-height: 43px;
}

.ht-banner-wrap {
	background-color: #f5f5f5;
	overflow: hidden;
}

.ht-banner-wrap .ht-banner:nth-child(odd) {
	float: left;
	clear: both;
	padding-right: 70px;
}

.ht-banner-wrap .ht-banner:nth-child(odd) .ht-banner-content {
	float: right;
}

.ht-banner-wrap .ht-banner:nth-child(even) {
	float: right;
	padding-left: 70px;
}

.ht-banner-wrap .ht-banner:nth-child(even) .ht-banner-content {
	float: left;
}

.ht-banner-wrap .ht-banner:nth-child(3) {
	float: right;
	padding-right: 0;
	padding-left: 70px;
}

.ht-banner-wrap .ht-banner:nth-child(3) .ht-banner-content {
	float: left;
}

.ht-banner-wrap .ht-banner:nth-child(4) {
	float: left;
	padding-left: 0;
	padding-right: 70px;
}

.ht-banner-wrap .ht-banner:nth-child(4) .ht-banner-content {
	float: right;
}

.g_flote {
	float: right !important;
}

.ht-banner {
	width: 50%;
	min-height: 400px;
	padding-top: 80px;
	background-color: #fcf4fe;
	position: relative;
}

.ht-banner.violet {
	background: -moz-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	    background: #53289b url(../images/promo2_texture.png);
    background-repeat: repeat !important;
    background-size: contain;
}

.ht-banner.pink {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	    background: #53289b url(../images/promo2_texture.png);
    background-repeat: repeat !important;
    background-size: contain;
}

.ht-banner.blue {
	background: -moz-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(-45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
    background: #9136a1  url(../images/promo2_texture.png);
    background-repeat: repeat !important;
    background-size: contain;
}

.ht-banner .ht-banner-img1 {
	    width: 595px;
    height: 325px;
    position: absolute;
    top: 0px;
    right: 112px;
}

.ht-banner .ht-banner-img2 {
	    width: 595px;
    height: 325px;
    position: absolute;
    top: 0px;
    right: 112px;
}

.ht-banner .ht-banner-img3 {
	    width: 595px;
    height: 325px;
    position: absolute;
    top: 0px;
    right: 112px;
}

.ht-banner .ht-banner-content {
	width: 520px;
	overflow: hidden;
}

.ht-banner .ht-banner-content .text-header {
	font-size: 24px;
	margin-bottom: 26px;
	line-height: 37px;
}

.ht-banner .ht-banner-content .button {
	width: 242px;
	margin-top: 42px;
	font-size: 14px;
}


/*-------------------

  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 1260px) {
	.banner {
		max-width: 100%;
		width: 100%;
		min-height: 544px;
	}
	.banner img[alt="banner-img"] {
		width: 280px;
		height: 83px;
		bottom: 170px;
		margin-left: -140px;
	}
	.banner .search-widget {
		width: 100%;
		height: 170px;
		padding: 28px 0 0;
		left: 0;
		margin-left: 0;
		bottom: 0;
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
	.banner .search-widget-form {
		max-width: 1170px;
		width: 95%;
		margin: 0 auto;
	}
	.banner .search-widget-form input {
		float: none;
		width: 100%;
		margin-bottom: 14px;
		border-radius: 4px;
	}
	.banner .search-widget-form .select-block {
		display: block;
	}
	.banner .search-widget-form .button {
		float: none;
		width: 280px;
		margin: 0 auto;
	}
	.banner.banner-v2 .search-widget-form {
		width: 75%;
	}
	#subscribe-banner {
		min-height: 240px;
		overflow: hidden;
	}
	#subscribe-banner .subscribe-content {
		width: 100%;
	}
	#subscribe-banner .subscribe-content .subscribe-header {
		float: none;
		margin: 36px auto 0;
		overflow: hidden;
	}
	#subscribe-banner .subscribe-content .subscribe-form {
		float: none;
		margin: 30px auto 0;
	}
	.ht-banner-wrap .ht-banner:nth-child(4),
	.ht-banner-wrap .ht-banner:nth-child(odd) {
		float: none;
		padding-right: 0;
	}
	.ht-banner-wrap .ht-banner:nth-child(4) .ht-banner-content,
	.ht-banner-wrap .ht-banner:nth-child(odd) .ht-banner-content {
		float: none;
	}
	.ht-banner-wrap .ht-banner:nth-child(3),
	.ht-banner-wrap .ht-banner:nth-child(even) {
		float: none;
		padding-left: 0;
	}
	.ht-banner-wrap .ht-banner:nth-child(3) .ht-banner-content,
	.ht-banner-wrap .ht-banner:nth-child(even) .ht-banner-content {
		float: none;
	}
	.ht-banner {
		width: 100%;
	}
	.ht-banner .ht-banner-content {
		margin: 0 auto;
		text-align: center;
	}
	.ht-banner .ht-banner-content .button {
		margin: 42px auto 0;
	}
	.ht-banner .ht-banner-img1 {
		right: auto;
		left: 50%;
		margin-left: -192px;
	}
	.ht-banner .ht-banner-img2 {
		left: 50%;
		margin-left: -205px;
	}
	.ht-banner .ht-banner-img3 {
		right: auto;
		left: 50%;
		margin-left: -197px;
	}
}

@media screen and (max-width: 630px) {
	#subscribe-banner {
		min-height: 280px;
	}
	#subscribe-banner .subscribe-content .subscribe-header {
		width: 100%;
		text-align: center;
	}
	#subscribe-banner .subscribe-content .subscribe-header figure {
		display: none;
	}
	#subscribe-banner .subscribe-content .subscribe-header .subscribe-title {
		font-size: 1.25em;
	}
	#subscribe-banner .subscribe-content .subscribe-form {
		width: 100%;
	}
	#subscribe-banner .subscribe-content .subscribe-form input[type="text"],
	#subscribe-banner .subscribe-content .subscribe-form .button {
		float: none;
		border-radius: 4px;
	}
	#subscribe-banner .subscribe-content .subscribe-form input[type="text"] {
		width: 90%;
		margin: 0 auto 20px;
	}
	#subscribe-banner .subscribe-content .subscribe-form .button {
		margin: 0 auto;
	}
	.ht-banner .ht-banner-content {
		width: 100%;
		padding: 0 20px;
	}
	.g_flote {
		float: inherit !important;
	}
}

@media screen and (max-width: 460px) {
	.banner {
		padding-top: 55px;
	}
	.banner p {
		width: 90%;
	}
	.banner .search-widget-form {
		width: 90%;
	}
	.banner .search-widget-form .button {
		width: 100%;
	}
	.banner.banner-v2 {
		padding-top: 80px;
	}
	.banner.banner-v2 .search-widget-form {
		width: 90%;
	}
	.ht-banner {
		padding: 60px 0 90px;
	}
	.ht-banner .text-header {
		line-height: 1.3em;
	}
	.ht-banner.void {
		min-height: 240px;
	}
	.ht-banner .ht-banner-img1,
	.ht-banner .ht-banner-img2,
	.ht-banner .ht-banner-img3 {
		width: 260px;
		margin-left: -130px;
	}
	.ht-banner .ht-banner-img1 {
		top: 42px;
		height: 172px;
	}
	.ht-banner .ht-banner-img2 {
		top: 36px;
		height: 158px;
	}
	.ht-banner .ht-banner-img3 {
		top: 30px;
		height: 174px;
	}
}

#services-wrap {
	background-color: #fff;
}

#services {
	min-height: 377px;
	padding-top: 134px;
}

#services.services-v2 {
	min-height: 400px;
	padding: 60px 0 0px;
}

.services-v2 .service-list .service-item {
	min-height: inherit !important;
}

.service-list .service-item {
	padding: 145px 5px 0;
	cursor: pointer;
	position: relative;
	margin-bottom: 40px;
	min-height: 185px;
}

.service-list .service-item .circle {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -60px;
	text-align: center;
	line-height: 11;
}

.service-list .service-item .circle span {
	color: #fff;
	font-size: 50px;
	position: absolute;
	top: 33px;
	left: 35px;
	transition: color .3s ease-in-out;
}

.service-list .service-item .circle span.icon-diamond {
	top: 37px;
}

.service-list .service-item .circle.medium {
	top: -10px;
	margin-left: -70px;
}

.service-list .service-item h3 {
	font-size: 14px;
	margin: 0px;
}

.service-list .service-item p {
	font-size: 13px;
	line-height: 20px;
	text-align: center;
}

.service-list .service-item .circle span {
	color: #fff;
}

.service-list .service-item .circle.dark {
	-webkit-transform: scale(0.92);
	transform: scale(0.92);
}

.service-list .service-item .circle.gradient {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.service-list.small .service-item {
	padding: 6px 10px 0 70px;
	margin-bottom: 70px;
	cursor: auto;
	position: relative;
}

.service-list.small .service-item .outer-ring {
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
}

.service-list.small .service-item .outer-ring .inner-ring {
	width: 42px;
	height: 42px;
	position: absolute;
	top: 4px;
	left: 4px;
	background-color: #fff;
}

.service-list.small .service-item .outer-ring span {
	color: #2b373a;
	font-size: 20px;
	position: absolute;
	top: 14px;
	left: 15px;
	transition: color .3s ease-in-out;
}

.service-list.small .service-item .outer-ring span.icon-diamond {
	top: 17px;
}

.service-list.small .service-item h3 {
	font-size: 1.375em;
	text-align: left;
}

.service-list.small .service-item p {
	text-align: left;
}

.circle {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	transition: all .2s ease-in-out;
	line-height: 120px;
}

.circle.dark {
	background: #f6f6f6;
}

.circle.dark img {
	width: 70px;
}


/*

    background: -moz-linear-gradient(45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%);

background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86,130,181,1)), color-stop(49%, rgba(77,40,152,1)), color-stop(100%, rgba(187,52,205,1)));

background: -webkit-linear-gradient(45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%);

background: -o-linear-gradient(45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%);

background: -ms-linear-gradient(45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%);

background: linear-gradient(45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%); }

*/

.circle.gradient {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	-webkit-transform: scale(0);
	transform: scale(0);
	border: none;
}

.circle.white-cover {
	background-color: #fff;
}

.circle.primary {
	background-color: #00d7b3;
}

.circle.primary:hover {
	background-color: #0ae7c2;
}

.circle.secondary {
	background-color: #1cbdf9;
}

.circle.secondary:hover {
	background-color: #37c9ff;
}

.circle.medium {
	width: 140px;
	height: 140px;
}

.circle.tiny {
	width: 40px;
	height: 40px;
}


/*-------------------

  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 1260px) {
	#services {
		padding-top: 60px;
	}
}

.promo-banner {
	width: 50%;
	min-height: 360px;
	padding-top: 140px;
	background-size: cover;
	position: relative;
}

.promo-banner.secondary {
	background: #4E2898 url("../images/promo2_texture.png");
}

.promo-banner.dark {
	background: #242e30 url("../images/promo1_texture.png");
}

.promo-banner.left {
	float: left;
}

.promo-banner.right {
	float: right;
}

.promo-banner h5 {
	margin-bottom: 5px;
}

.promo-banner h1 {
	margin-bottom: 35px;
}

.promo-banner .button {
	margin: 0 auto;
}

.promo-banner .icon-wallet,
.promo-banner .icon-tag {
	font-size: 58px;
	position: absolute;
	left: 50%;
	margin-left: -29px;
}

.promo-banner .icon-wallet {
	color: #16ffd8;
	top: 53px;
}

.promo-banner .icon-tag {
	color: #fff;
	top: 57px;
}


/*-------------------

  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 930px) {
	.promo-banner {
		width: 100%;
	}
}

#product-sideshow-wrap {
	background-color: #f5f5f5;
}

#product-sideshow {
	padding: 60px 0 30px;
}

#product-sideshow .product-list:last-child {
	margin-bottom: 34px;
}

#product-sideshow>.button:last-child {
	margin: 34px auto 60px;
}

.product-showcase {
	transition: opacity .5s ease-in-out;
}

.product-showcase.tabbed {
	overflow: hidden;
}

.product-showcase.hidden {
	visibility: hidden;
	opacity: 0;
	height: 0;
}

.product-showcase.visible {
	visibility: visible;
	opacity: 1;
}

.product-list .product-item {
	border: 1px solid #ebebeb;
	background-color: #fff;
	position: relative;
}

.product-list .product-item.upload-new {
	height: 307px;
	cursor: pointer;
	border: 1px dashed #d0d0d0;
	background-color: #f5f5f5;
}

.product-list .product-item.upload-new .product-info {
	padding-top: 10px;
	text-align: center;
}

.product-list .product-item.upload-new .product-info .text-header {
	font-size: 1.125em;
	margin-bottom: 18px;
}

.product-list .product-item.upload-new .product-info .description {
	font-size: 0.75em;
}

.product-list .product-item .pin {
	position: absolute;
	z-index: 9990;
}

.product-list .product-item .product-preview-image {
	position: absolute;
}

.product-list .product-item .product-info {
	overflow: hidden;
	margin-bottom: 8px;
}

.product-list .product-item .text-header {
	display: inline-block;
	margin-bottom: 4px;
}

.product-list .product-item .product-description {
	font-size: 0.75em;
	padding: 10px;
	line-height: 18px;
	margin-bottom: 10px;
}

.product-info .product-description {
	/*height: 160px;*/
	overflow: auto;
}

.product-list .product-item .category {
	display: inline-block;
	margin: 0px;
	font-size: 14px;
}

.product-list .product-item .user-rating {
	overflow: hidden;
}

.product-list .product-item .user-rating .user-avatar {
	float: left;
	margin-right: 4px;
}

.product-list .product-item .user-rating .text-header {
	float: left;
	margin-top: 6px;
}

.product-list .product-item .circle {
	position: relative;
}

.product-list .product-item .circle span {
	font-size: 18px;
	color: #fff;
	position: absolute;
	top: 12px;
}


/* .product-list .product-item .circle span.icon-tag {

        left: 9px; }*/

.product-list .product-item .circle span.icon-tag {
	left: 6px;
	top: 7px;
}

.product-list .product-item .circle span.icon-heart {
	font-size: 17px;
	left: 11px;
}

.product-list.list {
	width: 870px;
	margin: 0 auto;
}

.product-list.list.full {
	width: 1170px;
}

.product-list.list .product-item {
	height: 94px;
	padding: 10px 0px 0 93px;
	margin-bottom: 14px;
}

.product-list.list .product-item .pin {
	top: 16px;
	left: -6px;
}

.product-list.list .product-item .product-preview-image {
	top: 12px;
	left: 12px;
}

.product-list.list .product-item .product-info,
.product-list.list .product-item .author-data,
.product-list.list .product-item .item-metadata,
.product-list.list .product-item .author-data-reputation,
.product-list.list .product-item .item-actions,
.product-list.list .product-item .price-info {
	float: left;
	height: 70px;
	border-right: 1px solid #ebebeb;
}

.product-list.list .product-item .product-info {
	float: left;
	width: 276px;
}

.product-list.list .product-item .product-info .text-header {
	margin-top: 8px;
}

.product-list.list .product-item .product-info .product-description {
	margin-bottom: 0;
}

.product-list.list .product-item .author-data {
	padding: 7px 28px 0 24px;
}

.product-list.list .product-item .author-data .user-rating {
	margin-bottom: 8px;
}

.product-list.list .product-item .author-data .metadata {
	width: 165px;
	margin-left: 3px;
}

.product-list.list .product-item .item-metadata {
	width: 300px;
	padding: 6px 0 0 24px;
}

.product-list.list .product-item .item-metadata .text-header {
	margin-bottom: 0;
}

.product-list.list .product-item .item-metadata .text-header span {
	color: #888;
	font-weight: 600;
}

.product-list.list .product-item .item-metadata .text-header span a {
	color: #06b99b;
}

.product-list.list .product-item .author-data-reputation {
	width: 108px;
	padding-top: 13px;
}

.product-list.list .product-item .author-data-reputation .text-header {
	display: block;
	text-align: center;
	margin-bottom: 15px;
}

.product-list.list .product-item .author-data-reputation .rating {
	width: 75px;
	margin: 0 auto;
}

.product-list.list .product-item .item-actions {
	padding: 15px 18px 0;
}

.product-list.list .product-item .item-actions .circle {
	background-color: #e7e7e7;
}

.product-list.list .product-item .item-actions .circle:hover {
	background-color: #1cbdf9;
}

.product-list.list .product-item .price-info {
	width: 84px;
	border-right: none;
	padding-top: 22px;
}

.product-list.list .product-item .price-info .price {
	text-align: center;
}

.product-list.grid.column4-wrap .product-item.column.in_p_padd {
	
	height: 410px;
	
}

.ex1 {
	float: left;
}

.product-list.grid .product-item {
	padding: 103px 13px 4px;
	margin-bottom: 26px;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.35);
}

.product-list.grid .product-item .pin {
	top: 146px;
	left: -7px;
}

.product-list.grid .product-item .product-preview-actions {
	position: absolute;
	top: 5px;
	left: 5px;
	width: 258px;
	height: auto;
}

.product-list.grid .product-item .product-preview-actions:hover .preview-actions {
	opacity: 1;
	visibility: visible;
}

.product-list.grid .product-item .product-preview-actions:hover .preview-action .circle {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.product-list.grid .product-item .product-preview-actions:hover .preview-action p {
	opacity: 1;
}

.product-list.grid .product-item .preview-actions {
	width: 100%;
	height: 100%;
	background-color: rgba(25, 31, 32, 0.85);
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .15s ease-in-out;
}

.product-list.grid .product-item .preview-actions .preview-action {
	padding-top: 39px;
	position: absolute;
	top: 17px;
	left: 47px;
}

.product-list.grid .product-item .preview-actions .preview-action:nth-child(2) {
	left: 143px;
}

.product-list.grid .product-item .preview-actions .preview-action:nth-child(2) .circle {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.product-list.grid .product-item .preview-actions .preview-action:nth-child(2) p {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.product-list.grid .product-item .preview-actions .preview-action .circle {
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -20px;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
	transition: transform .2s ease-in;
}

.product-list.grid .product-item .preview-actions .preview-action p {
	color: #fff;
	font-size: 0.8125em;
	line-height: 1em;
	text-align: center;
	opacity: 0;
	transition: all .2s ease-in;
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.product-list.grid .product-item .price {
	float: right;
}

.product-list.grid .product-item .line-separator {
	margin-bottom: 12px;
}

.product-list.grid .product-item .user-rating .rating {
	float: right;
	margin-top: 3px;
}

.product-list.grid.v2 .product-item {
	padding-top: 168px;
	padding-bottom: 14px;
}

.product-list.grid.v2 .product-item .text-header {
	display: block;
	text-align: center;
}

.product-list.grid.v2 .product-item .product-info .text-header {
	margin-bottom: 10px;
}

.product-list.grid.v2 .product-item .product-info .line-separator {
	margin-bottom: 8px;
}

.product-list.grid.v2 .product-item .product-info .category {
	display: block;
	text-align: center;
}

.product-list.grid.v2 .product-item .product-info .price {
	position: absolute;
	top: 240px;
	right: 16px;
}

.product-list.grid.v2 .product-item .line-separator {
	margin-bottom: 14px;
}

.product-list.grid.v3 .product-item {
	padding-top: 168px;
	padding-bottom: 14px;
}

.product-list.grid.v3 .product-item .product-info .category {
	position: absolute;
	bottom: 14px;
	left: 43px;
}

.product-list.grid.v3 .product-item .product-info .price {
	position: absolute;
	top: 214px;
	right: 16px;
}

.product-list.grid.v3 .product-item .user-rating .text-header {
	margin-top: 0;
}

.product-list.grid.v3 .product-item .line-separator {
	margin-bottom: 14px;
}

.product-list.grid.v4 .product-item {
	padding-top: 234px;
}

.product-list.grid.v4 .product-item .pin {
	top: 204px;
}

.product-list.grid.v4 .product-item .product-preview-actions {
	width: 358px;
	height: 208px;
}

.product-list.grid.v4 .product-item .preview-actions .preview-action {
	top: 74px;
	left: 80px;
}

.product-list.grid.v4 .product-item .preview-actions .preview-action:nth-child(2) {
	left: 210px;
}

.product-list.grid.v4 .product-item .product-info {
	margin-bottom: 22px;
}

.product-list.grid.v4 .product-item .product-info .text-header {
	float: left;
	font-size: 1.125em;
	margin-bottom: 6px;
}

.product-list.grid.v4 .product-item .product-info .category {
	float: left;
	clear: left;
}

.product-list.grid.v4 .product-item .product-info .price {
	position: absolute;
	top: 230px;
	right: 12px;
}

.category-nav-wrap {
	background-color: #fff;
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

.category-nav {
	height: 60px;
	position: relative;
}

.category-nav.primary .slide-control {
	background-color: #00d7b3;
}

.category-nav.primary .category-tab.active:after {
	background-color: #00d7b3;
}

.category-nav .slide-control-wrap {
	width: 100%;
	top: 15px;
	z-index: 0;
}

.category-nav .category-tabs {
	width: 570px;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.category-nav .category-tab {
	float: left;
	width: 190px;
	height: 100%;
	cursor: pointer;
	position: relative;
}

.category-nav .category-tab.active p {
	color: #2b373a;
}

.category-nav .category-tab.active:after {
	content: '';
	display: block;
	width: 60px;
	height: 3px;
	background-color: #2b373a;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -30px;
}

.category-nav .category-tab:after {
	display: none;
}

.category-nav .category-tab p {
	color: #abaeae;
	font-size: 1.125em;
	font-weight: 700;
	line-height: 1em;
	text-align: center;
	line-height: 65px;
}

.category-nav .category-tab:last-child {
	margin-right: 0;
}


/*-------------------

  	MEDIA QUERIES

-------------------*/

@media screen and (max-width: 1260px) {
	.product-list.list.full {
		width: 870px;
	}
	.product-list.list.full .item-metadata {
		display: none;
	}
}

@media screen and (max-width: 935px) {
	.product-list.list {
		width: 590px;
	}
	.product-list.list.full {
		width: 590px;
	}
	.product-list.list .product-item {
		float: left;
		width: 280px;
		height: 220px;
		margin-right: 30px;
		margin-bottom: 26px;
		padding-right: 10px;
	}
	.product-list.list .product-item:nth-child(2n+2) {
		margin-right: 0;
	}
	.product-list.list .product-item .author-data,
	.product-list.list .product-item .author-data-reputation,
	.product-list.list .product-item .item-actions,
	.product-list.list .product-item .price-info {
		float: none;
		width: auto;
		height: auto;
		padding: 0;
		border-right: none;
		position: absolute;
	}
	.product-list.list .product-item .product-info {
		width: auto;
		border-right: none;
	}
	.product-list.list .product-item .product-info .text-header {
		font-size: 0.875em;
	}
	.product-list.list .product-item .product-info .product-description {
		display: none;
	}
	.product-list.list .product-item .author-data {
		width: 256px;
		height: 42px;
		border-bottom: 1px solid #ebebeb;
		top: 98px;
		left: 12px;
	}
	.product-list.list .product-item .author-data-reputation {
		top: 188px;
		right: 42px;
	}
	.product-list.list .product-item .author-data-reputation .text-header {
		float: left;
		margin-right: 10px;
	}
	.product-list.list .product-item .author-data-reputation .rating {
		float: left;
		position: relative;
		top: -3px;
	}
	.product-list.list .product-item .item-actions {
		top: 160px;
		left: 26px;
	}
	.product-list.list .product-item .metadata {
		position: absolute;
		top: 60px;
		left: 78px;
	}
	.product-list.list .product-item .price-info {
		top: 100px;
		right: 12px;
	}
}

@media screen and (max-width: 680px) {
	.product-list.list {
		width: 280px;
	}
	.product-list.list.full {
		width: 280px;
	}
	.product-list.list .product-item {
		margin-right: 0;
	}
}

@media screen and (max-width: 630px) {
	.category-nav .category-tabs {
		width: 390px;
	}
	.category-nav .category-tabs .category-tab {
		width: 130px;
	}
	.category-nav .category-tabs .category-tab p {
		font-size: 1em;
	}
	.category-nav .slide-control-wrap {
		display: none;
	}
}

@media screen and (max-width: 460px) {
	#product-sideshow .headline {
		margin-bottom: 65px;
	}
	#product-sideshow .slide-control-wrap {
		top: auto;
		right: auto;
		bottom: -50px;
		left: 50%;
		margin-left: -33px;
	}
	.category-nav .category-tabs {
		width: 285px;
	}
	.category-nav .category-tabs .category-tab {
		width: 95px;
	}
	.category-nav .category-tabs .category-tab p {
		font-size: 0.875em;
	}
	.product-list.grid.v4 {
		width: 270px;
	}
	.product-list.grid.v4 .product-item {
		width: 270px;
		padding-top: 168px;
	}
	.product-list.grid.v4 .product-item .pin {
		top: 146px;
	}
	.product-list.grid.v4 .product-item .product-preview-actions {
		width: 258px;
		height: 150px;
	}
	.product-list.grid.v4 .product-item .product-preview-image.big {
		width: 258px;
		height: 150px;
	}
	.product-list.grid.v4 .product-item .preview-actions .preview-action {
		top: 44px;
		left: 47px;
	}
	.product-list.grid.v4 .product-item .preview-actions .preview-action:nth-child(2) {
		left: 143px;
	}
	.product-list.grid.v4 .product-item .product-info {
		margin-bottom: 12px;
	}
	.product-list.grid.v4 .product-item .product-info .text-header {
		font-size: 1em;
		margin-bottom: 20px;
	}
	.product-list.grid.v4 .product-item .product-info .price {
		font-size: 1.625em;
		top: 194px;
	}
}

.section-wrap {
	background-color: #f5f5f5;
}

.section {
	padding: 60px 0 90px;
	overflow: hidden;
}

.section.overflowable {
	overflow: visible;
}

.section .sidebar {
	float: left;
}

.section .sidebar.author-profile {
	position: relative;
	top: -242px;
}

.section .content {
	float: right;
	width: 870px;
}

.section .content.full {
	width: 100%;
	float: none;
}

.section .content.full .pager {
	float: none;
	margin-right: auto;
	margin-left: auto;
}

.section .content.left {
	float: left;
}

.section .content .pager {
	float: left;
	margin-top: 34px;
}


/*.section .pager {

    width: 174px;

    margin: 34px auto 0; }*/

.section>.product-showcase {
	margin-bottom: 34px;
}

.section>.product-showcase:last-child {
	margin-bottom: 0;
}

.sidebar {
	width: 270px;
}

.sidebar.right {
	float: right;
}

.sidebar>* {
	margin-bottom: 26px;
}

.sidebar>*:last-child {
	margin-bottom: 0;
}

.sidebar .dropdown {
	width: 100%;
	position: static;
}

.sidebar .dropdown .dropdown-item:hover {
	background-color: #fff;
}

.sidebar-item {
	padding: 20px 13px 20px;
	background-color: rgba(255, 255, 255, 0.4);
	border: double;
	border-color: #fff;
}

.sidebar-item input,
.sidebar-item .select-block {
	margin-bottom: 14px;
}

.sidebar-item .search-form input {
	margin-bottom: 0;
}

.sidebar-item.void {
	padding: 0;
	background-color: transparent;
	border: none;
}

.sidebar-item.newsletter p {
	font-size: 0.8125em;
	line-height: 20px;
}

.sidebar-item.newsletter p {
	margin-bottom: 14px;
}

.sidebar-item.author-badges {
	padding-bottom: 14px;
}

.sidebar-item .badge-list {
	margin: 20px 0 25px;
}

.sidebar-item.buttons {
	padding-top: 16px;
}

.sidebar-item.buttons .button {
	margin-bottom: 14px;
}

.sidebar-item.buttons .button:last-child {
	margin-bottom: 0;
}

.sidebar-item.buttons #bid-form {
	margin-bottom: 14px;
	overflow: hidden;
}

.sidebar-item.buttons #bid-form input {
	float: left;
	width: 136px;
}

.sidebar-item.buttons #bid-form button {
	float: right;
	width: 120px;
	height: 40px;
	line-height: 40px;
}

.sidebar-item.author-bio .user-avatar-wrap {
	margin-bottom: 10px;
}

.sidebar-item.author-bio .text-header,
.sidebar-item.author-bio .text-oneline {
	text-align: center;
	margin-bottom: 10px;
	margin-top: 10px;
}

.sidebar-item.author-bio.v2 .share-links {
	width: 156px;
}

.sidebar-item.author-bio .share-links {
	width: 114px;
	margin: 16px auto 30px;
}

.sidebar-item.author-bio .share-links.short {
	width: 72px;
}

.sidebar-item.author-bio.short .user-avatar-wrap {
	float: left;
	margin-bottom: 0;
	margin-right: 10px;
}

.sidebar-item.author-bio.short .text-header,
.sidebar-item.author-bio.short .text-oneline {
	text-align: left;
}

.sidebar-item.author-bio.short .text-header {
	position: relative;
	top: 5px;
	margin-bottom: 14px;
}

.sidebar-item.author-bio.short .share-links {
	float: left;
	margin-top: 10px;
	margin-bottom: 20px;
}

.sidebar-item.author-bio.short.author-badges-v1 .text-oneline {
	margin-bottom: 28px;
}

.sidebar-item.author-bio.short.author-badges-v1 .share-links {
	margin-bottom: 30px;
}

.sidebar-item.author-bio.author-badges-v2 .share-links {
	margin-bottom: 22px;
}

.sidebar-item.author-bio.author-badges-v2 .badge-list .badge-list-item:last-child {
	margin-bottom: 30px;
}

.sidebar-item.product-info .line-separator {
	margin-bottom: 5px;
}

.sidebar-item.author-items {
	padding: 20px 0 0;
}

.sidebar-item.author-items h4 {
	margin-left: 13px;
	margin-bottom: 16px;
}

.sidebar-item.author-items .column4-wrap .column {
	width: 100%;
}

.sidebar-item.author-items .product-item {
	border: none;
	border-top: 1px solid #ebebeb;
	margin-bottom: 0;
}

.sidebar-item.author-items-v2 .item-preview {
	margin-bottom: 22px;
}

.sidebar-item.author-items-v2 .item-preview:last-child {
	margin-bottom: 0;
}

.sidebar-item.author-reputation .percent {
	font-size: 2.25em;
}

.sidebar-item.author-reputation .percent span {
	font-size: 0.66667em;
}

.sidebar-item.author-reputation .percent-info {
	font-size: 0.8125em;
}

.sidebar-item.author-reputation .rating {
	width: 75px;
}

.sidebar-item.author-reputation.full .pie-chart {
	width: 176px;
	height: 176px;
	margin: 0 auto 20px;
	padding-top: 54px;
}

.sidebar-item.author-reputation.full .text-header {
	text-align: center;
}

.sidebar-item.author-reputation.full .percent-info {
	margin-bottom: 4px;
}

.sidebar-item.author-reputation.full .rating {
	margin: 0 auto;
}

.sidebar-item.author-reputation.short h4 {
	font-size: 1.375em;
}

.sidebar-item.author-reputation.short .pie-chart {
	float: left;
	width: 44px;
	height: 44px;
	margin-right: 14px;
	margin-bottom: 22px;
	position: relative;
}

.sidebar-item.author-reputation.short .pie-chart .icon-like,
.sidebar-item.author-reputation.short .pie-chart .icon-dislike,
.sidebar-item.author-reputation.short .pie-chart .icon-star {
	position: absolute;
	left: 50%;
	margin-left: -8px;
}

.sidebar-item.author-reputation.short .pie-chart .icon-like {
	top: 14px;
	color: #00d7b3;
}

.sidebar-item.author-reputation.short .pie-chart .icon-dislike {
	top: 15px;
	color: #f92552;
}

.sidebar-item.author-reputation.short .pie-chart .icon-star {
	top: 13px;
	color: #ffc000;
}

.sidebar-item.author-reputation.short .percent,
.sidebar-item.author-reputation.short .percent-meta {
	float: left;
}

.sidebar-item.author-reputation.short .percent {
	margin-right: 8px;
	line-height: 40px;
}

.sidebar-item.author-reputation.short .percent-meta {
	margin-top: 8px;
}

.sidebar-item.author-reputation.short .percent-meta .rating {
	margin-left: 1px;
}

.sidebar-item h4 {
	margin-bottom: 22px;
}

.sidebar-item .line-separator {
	margin-bottom: 22px;
}

.sidebar-item .line-separator.spaced {
	margin-bottom: 30px;
}

.sidebar-item .linked-check {
	padding-left: 4px;
}

.sidebar-item .linked-check[for="extended-license"] {
	margin-bottom: 22px;
}

.sidebar-item .license-text {
	color: #b2b2b2;
	font-size: 0.8125em;
	line-height: 20px;
	padding-left: 34px;
	margin-bottom: 14px;
	display: none;
}

.sidebar-item .license-text[data-license="extended-license"] {
	margin-bottom: 22px;
	margin-top: -10px;
}

.sidebar-item label:last-child {
	margin-bottom: 0;
}

.sidebar-item .button {
	width: 100%;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}


}
.sidebar-item .button.spaced {
	margin-bottom: 14px;
}
.sidebar-item .button.half {
	width: 114px;
}
.sidebar-item .button.third {
	width: 74px;
}
.sidebar-item .button.wicon {
	padding-left: 28px;
	text-align: left;
}
.sidebar-item .button.wicon .icon-heart {
	font-size: 18px;
	margin-right: 8px;
	position: relative;
	top: 3px;
}
.sidebar-item #aux_form {
	margin-bottom: 26px;
}
.sidebar-item .price.large {
	margin-bottom: 8px;
	text-align: center;
}
.sidebar-item.range-feature .button {
	margin-top: 50px;
}
.view-selectors {
	overflow: hidden;
}
.view-selector {
	float: left;
	width: 30px;
	height: 30px;
	margin-right: 6px;
	border-radius: 2px;
	background-color: #d1d1d1;
	cursor: pointer;
	background-position: center;
	background-repeat: no-repeat;
}
.view-selector:last-child {
	margin-right: 0;
}
.view-selector.active {
	background-color: #535d5f;
}
.view-selector.grid {
	background-image: url("../images/grid-selector-icon.png");
}
.view-selector.list {
	background-image: url("../images/list-selector-icon.png");
}
.pager {
	overflow: hidden;
}
.pager .pager-item {
	float: left;
	width: 30px;
	height: 30px;
	margin-right: 6px;
	border-radius: 2px;
	background-color: #535d5f;
	cursor: pointer;
}
.pager .pager-item:hover {
	background-color: #647072;
}
.pager .pager-item p {
	color: #fff;
	font-size: 0.75em;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
}
.pager .pager-item:last-child {
	margin-right: 0;
}
.pager.primary .pager-item.active {
	background-color: #00d7b3;
}
.pager.secondary .pager-item.active {
	background-color: #1396e1;
}
.pager.tertiary .pager-item.active {
	background-color: #e61852;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1260px) {
	.section .content,
	.section .sidebar {
		float: none;
		width: 100%;
	}
	
	.section .content.left,
	.section .content.right,
	.section .sidebar.left,
	.section .sidebar.right {
		float: none;
	}
	
	.section .sidebar {
		margin-bottom: 40px;
	}
	
	.section .sidebar .sidebar-item.author-items .column4-wrap .column {
		width: 270px;
	}
	
	.section .sidebar .sidebar-item.author-items .product-item {
		border: 1px solid #ebebeb;
		margin-bottom: 20px;
	}
	
	.section .sidebar .sidebar-item.buttons {
		width: 270px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.section .content .pager {
		float: none;
		margin: 34px auto 60px;
	}
	
	.dashboard-content .headline.purchases .search-form {
		width: 250px;
	}
	
	.dashboard-content .headline.statement {
		height: 220px;
		text-align: center;
	}
	
	.dashboard-content .headline.statement:before {
		height: 220px;
	}
	
	.dashboard-content .headline.statement h4 {
		float: none;
		text-align: center;
	}
	
	.dashboard-content .headline.statement form,
	.dashboard-content .headline.statement .button {
		float: none;
	}
	
	.dashboard-content .headline.statement form {
		display: inline-block;
	}
	
	.dashboard-content .headline.statement form label:last-child {
		margin-right: 0;
	}
	
	.dashboard-content .headline.statement .button {
		margin: 17px auto 0;
	}
	
	.dashboard-content .headline.statement .button:nth-child(2) {
		margin-top: 0;
	}
}
@media screen and (max-width: 935px) {
	.section .content .headline,
	.dashboard-content .headline {
		height: 175px;
		padding: 0;
	}
	
	.section .content .headline:before,
	.dashboard-content .headline:before {
		height: 175px;
	}
	
	.section .content .headline.filter,
	.dashboard-content .headline.filter {
		height: 130px;
	}
	
	.section .content .headline.filter:before,
	.dashboard-content .headline.filter:before {
		height: 130px;
	}
	
	.section .content .headline.filter form,
	.dashboard-content .headline.filter form {
		width: 200px;
		margin-top: 0;
	}
	
	.section .content .headline.purchases form,
	.dashboard-content .headline.purchases form {
		margin-top: 0;
	}
	
	.section .content .headline.purchases .select-block:nth-child(2),
	.dashboard-content .headline.purchases .select-block:nth-child(2) {
		margin-right: 0;
	}
	
	.section .content .headline.purchases .search-form,
	.dashboard-content .headline.purchases .search-form {
		margin-left: 60px;
	}
	
	.section .content .headline.statement,
	.dashboard-content .headline.statement {
		height: 260px;
	}
	
	.section .content .headline.statement:before,
	.dashboard-content .headline.statement:before {
		height: 260px;
	}
	
	.section .content .headline.statement form .datepicker-wrap:first-child,
	.dashboard-content .headline.statement form .datepicker-wrap:first-child {
		margin-left: 42px;
	}
	
	.section .content .headline.statement form .select-block,
	.dashboard-content .headline.statement form .select-block {
		float: none;
		margin-top: 12px;
	}
	
	.section .content .headline h4,
	.dashboard-content .headline h4 {
		float: none;
		text-align: center;
	}
	
	.section .content .headline form,
	.dashboard-content .headline form {
		float: none;
		width: 410px;
		margin: 20px auto 0;
	}
	
	.section .content .headline .select-block:last-child,
	.dashboard-content .headline .select-block:last-child {
		margin-right: 0;
	}
	
	.section .content .headline .view-selectors,
	.dashboard-content .headline .view-selectors {
		float: none;
		width: 66px;
		margin: 0 auto;
	}
	
	.section .content .headline.simple,
	.dashboard-content .headline.simple {
		height: 66px;
	}
	
	.section .content .headline.simple:before,
	.dashboard-content .headline.simple:before {
		height: 66px;
	}
	
	.section .content .headline.buttons,
	.dashboard-content .headline.buttons {
		height: 120px;
	}
	
	.section .content .headline.buttons.two,
	.dashboard-content .headline.buttons.two {
		height: 175px;
	}
	
	.section .content .headline.buttons.two:before,
	.dashboard-content .headline.buttons.two:before {
		height: 175px;
	}
	
	.section .content .headline.buttons.two .button+.button,
	.dashboard-content .headline.buttons.two .button+.button {
		margin-top: 14px;
	}
	
	.section .content .headline.buttons:before,
	.dashboard-content .headline.buttons:before {
		height: 120px;
	}
	
	.section .content .headline.buttons .button,
	.dashboard-content .headline.buttons .button {
		float: none;
		margin: 0 auto;
	}
}
@media screen and (max-width: 630px) {
	.section .content .headline,
	.dashboard-content .headline {
		height: 220px;
	}
	
	.section .content .headline:before,
	.dashboard-content .headline:before {
		height: 220px;
	}
	
	.section .content .headline form,
	.dashboard-content .headline form {
		width: 200px;
	}
	
	.section .content .headline .select-block,
	.dashboard-content .headline .select-block {
		float: none;
		margin-right: 0;
	}
	
	.section .content .headline.purchases .search-form,
	.dashboard-content .headline.purchases .search-form {
		width: 198px;
		margin-left: 0;
		margin-right: 0;
	}
	
	.section .content .headline.statement,
	.dashboard-content .headline.statement {
		height: 340px;
	}
	
	.section .content .headline.statement:before,
	.dashboard-content .headline.statement:before {
		height: 340px;
	}
	
	.section .content .headline.statement form,
	.dashboard-content .headline.statement form {
		width: 220px;
	}
	
	.section .content .headline.statement form label:nth-child(2),
	.dashboard-content .headline.statement form label:nth-child(2) {
		float: none;
		clear: both;
		margin: 12px 0;
		line-height: 1em;
	}
	
	.section .content .headline.statement form .datepicker-wrap,
	.dashboard-content .headline.statement form .datepicker-wrap {
		margin-left: 36px;
	}
	
	.section .content .headline.statement form .datepicker-wrap:first-child,
	.dashboard-content .headline.statement form .datepicker-wrap:first-child {
		margin: 0 0 12px 36px;
	}
}

/*-----------------------

  	BLOG POST PREVIEW

-----------------------*/
.blog-post-preview {
	overflow: hidden;
}
.blog-post-preview .blog-post-preview-item {
	border: 1px solid #ebebeb;
	background-color: #fff;
	margin-bottom: 26px;
}
.blog-post-preview .blog-post-preview-item .blog-post-preview-item-info {
	overflow: hidden;
}
.blog-post-preview .blog-post-preview-item .text-header {
	margin-bottom: 12px;
}
.blog-post-preview.v1 .blog-post-preview-item {
	padding: 5px 5px 20px;
}
.blog-post-preview.v1 .blog-post-preview-item .blog-post-preview-item-info {
	padding: 16px 8px 0;
}
.blog-post-preview.v1 .blog-post-preview-item .text-header {
	line-height: 28px;
	margin: 6px 0 24px;
}
.blog-post-preview.v1 .blog-post-preview-item .meta-line {
	margin-bottom: 14px;
}
.blog-post-preview.v1 .blog-post-preview-item .meta-line p {
	line-height: 27px;
}
.blog-post-preview.v1 .blog-post-preview-item .description-preview {
	font-size: 0.825em;
	line-height: 20px;
	margin: 18px 0 24px;
}
.blog-post-preview.v1 .blog-post-preview-item .metadata {
	float: left;
}
.blog-post-preview.v1 .blog-post-preview-item .more-button {
	float: right;
	margin-top: 5px;
}
.blog-post-preview.v1 .blog-post-preview-item .more-button.primary {
	color: #06b99b;
	font-size: 0.75em;
	font-weight: 700;
}
.blog-post-preview.v2 .blog-post-preview-item {
	padding: 15px 15px 36px;
}
.blog-post-preview.v2 .blog-post-preview-item .blog-post-preview-item-info {
	padding: 20px 16px 0;
}
.blog-post-preview.v2 .blog-post-preview-item .text-header {
	line-height: 40px;
	margin-bottom: 16px;
}
.blog-post-preview.v2 .blog-post-preview-item .meta-line {
	margin-bottom: 26px;
}
.blog-post-preview.v2 .blog-post-preview-item .description-preview {
	margin-bottom: 28px;
}
.blog-post-preview.v2 .post-paragraph {
	margin-top: 0;
}

/*--------------

  	META LINE

--------------*/
.meta-line {
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.meta-line p {
	font-size: 0.75em;
	line-height: 39px;
}
.meta-line .metadata {
	float: left;
	margin-left: 24px;
}
.meta-line>*:first-child {
	float: left;
}
.meta-line>*:last-child {
	float: right;
}

/*--------------

  	TAG LIST

--------------*/
.tag-list {
	overflow: hidden;
}
.tag-list .tag-list-item {
	display: block;
	float: left;
	margin: 0 6px 6px 0;
	padding: 6px 10px;
	border: 1px solid #ebebeb;
	border-radius: 4px;
	color: #888;
	font-size: 0.75em;
	font-weight: 600;
	background-color: #fff;
	transition: all .15s ease-in;
}
.tag-list .tag-list-item:last-child {
	margin-right: 0;
}
.tag-list.primary .tag-list-item:hover {
	color: #fff;
	background-color: #00d7b3;
	border-color: #00d7b3;
}

/*--------------

  	METADATA

--------------*/
.metadata {
	overflow: hidden;
}
.metadata .meta-item {
	float: left;
	margin-right: 20px;
}
.metadata .meta-item:last-child {
	margin-right: 0;
}
.metadata .meta-item span {
	color: #b2b2b2;
	position: relative;
	top: 3px;
}
.metadata .meta-item p {
	display: inline-block;
	margin-left: 5px;
	color: #b2b2b2;
	font-size: 0.6875em;
}

/*-----------

  	POST

-----------*/
.post {
	padding: 15px 15px 25px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	margin-bottom: 26px;
}
.post .post-image {
	width: 838px;
	/*height: 486px;*/
	
	height: 400px;
	border: 1px solid #ebebeb;
	margin: 0 auto;
	position: relative;
}
.post .post-image:hover .image-overlay {
	opacity: 1;
	visibility: visible;
}
.post .post-image:hover .image-overlay .clickable-icon {
	-webkit-transform: scale(1);
	transform: scale(1);
}
.post .post-image .slide-control-wrap {
	width: 806px;
	position: absolute;
	top: 226px;
	left: 16px;
	z-index: 9000;
}
.post .post-image .button {
	position: absolute;
	top: 28px;
	right: 20px;
}
.post .post-image-slides {
	width: 806px;
	margin: 30px auto;
	position: relative;
}
.post .post-image-slides .slide-control-wrap {
	width: 100%;
	top: 26px;
	left: 0;
}
.post .post-image-slides .image-slides-wrap {
	width: 610px;
	height: 80px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}
.post .post-image-slides .image-slides-wrap.full {
	width: 822px;
}
.post .post-image-slides .image-slides {
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease-in-out;
}
.post .post-image-slides .image-slides .image-slide {
	width: 80px;
	height: 80px;
	border: 1px solid #ebebeb;
	cursor: pointer;
	position: absolute;
	top: 0;
}
.post .post-image-slides .image-slides .image-slide .overlay {
	width: 100%;
	height: 100%;
	border: 8px solid #2b373a;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .2s ease-in;
}
.post .post-image-slides .image-slides .image-slide.selected .overlay {
	opacity: 1;
	visibility: visible;
}
.post .post-content {
	padding: 50px 16px 66px;
	overflow: hidden;
}
.post .post-content.with-title {
	padding-top: 26px;
}
.post .post-content>*:first-child {
	margin-top: 0;
}
.post .post-content .video {
	width: 100%;
	height: 346px;
	margin-top: 32px;
}
.post .post-content .post-banner {
	width: 806px;
	height: 127px;
	margin-top: 50px;
}
.post .post-content .meta-line {
	margin: 20px 0 28px;
}
.post .post-content .meta-line+.post-paragraph {
	margin-top: 0;
}
.post .post-paragraph {
	margin-top: 48px;
}
.post .post-paragraph.half {
	float: left;
	width: 50%;
}
.blog-post-preview .post .post-content {
	padding-top: 0px;
}
.post .post-paragraph .post-title {
	font-size: 1.75em;
	text-align: left;
	margin-bottom: 10px;
	margin-top: 10px;
}
.post .post-paragraph .post-title.small {
	font-size: 1.375em;
}
.post .post-paragraph>p {
	margin-bottom: 30px;
	float: left;
	width: 100%;
}
.post .post-paragraph .post-item-list {
	overflow: hidden;
}
.post .post-paragraph .post-item-list li {
	margin-bottom: 16px;
	padding-left: 26px;
	position: relative;
}
.post .post-paragraph .post-item-list li .bullet-icon {
	color: #2b373a;
	font-weight: 700;
	position: absolute;
	left: 2px;
}
.post .post-paragraph .post-item-list li .bullet-icon.svg-check {
	top: 2px;
	left: 0;
}
.post .post-paragraph .post-item-list li p {
	line-height: 1em;
}
.post .post-paragraph .post-item-list li:last-child {
	margin-bottom: 0;
}
.post .post-paragraph>*:last-child {
	margin-bottom: 0;
}

/*--------------

  	POST TAB

--------------*/
.post-tab {
	position: relative;
}
.post-tab .tab-header {
	border: 1px solid #ebebeb;
	background-color: #fff;
	overflow: hidden;
}
.post-tab .tab-header.primary .tab-item.selected>p {
	border-top-color: #00d7b3;
}
.post-tab .tab-header.secondary .tab-item.selected>p {
	border-top-color: #1396e1;
}
.post-tab .tab-header.tertiary .tab-item.selected>p {
	border-top-color: #e61852;
}
.post-tab .tab-header .tab-item {
	float: left;
	width: 289px;
	height: 60px;
	border-right: 1px solid #ebebeb;
	cursor: pointer;
}
.post-tab .tab-header .tab-item:last-child {
	border-right: none;
}
.post-tab .tab-header .tab-item.selected>p {
	color: #2b373a;
	border-top: 6px solid #2b373a;
	line-height: 52px;
}
.post-tab .tab-header .tab-item>p {
	color: #b2b2b2;
	line-height: 60px;
	text-align: center;
}
.post-tab .tab-content {
	width: 100%;
	border: 1px solid #ebebeb;
	border-top: none;
	background-color: #fff;
	display: none;
	overflow: hidden;
}
.post-tab .tab-content.void {
	border: none;
	background-color: transparent;
}
.post-tab .tab-content.open {
	display: block;
}
.post-tab .tab-content .comment-list {
	border-top: none;
}

/*------------------

  	BLOG AUTHOR

------------------*/
.blog-author {
	background-color: #fff;
	border: 1px solid #ebebeb;
	padding: 45px 32px 50px 118px;
	margin-bottom: 25px;
	position: relative;
}
.blog-author .user-avatar {
	position: absolute;
	top: 37px;
	left: 32px;
}
.blog-author .text-header {
	margin-bottom: 4px;
}
.blog-author .timestamp {
	margin-bottom: 10px;
}
.blog-author .share-links {
	position: absolute;
	top: 35px;
	right: 32px;
}

/*--------------------

  	BLOG COMMENTS

--------------------*/
.blog-comments {
	background-color: #fff;
	border: 1px solid #ebebeb;
	padding: 20px 24px 0;
}
.blog-comments h4 {
	font-size: 1.375em;
	margin-bottom: 16px;
}
.blog-comments .line-separator {
	margin-bottom: 5px;
}
.blog-comments .comment-list {
	border: none;
	padding-left: 0;
	padding-right: 0;
}
.blog-comments .comment-list .comment-wrap {
	padding-left: 94px;
	padding-right: 8px;
}
.blog-comments .comment-list .comment-wrap.comment-reply {
	padding-left: 94px;
	padding-right: 8px;
}
.blog-comments .comment-list .comment-wrap .user-avatar {
	left: 8px;
}
.blog-comments .comment-list .pager {
	margin-right: 8px;
}
.blog-comments .comment-list h3 {
	margin-left: 8px;
}

/*---------------

  	ACCORDION

---------------*/
.accordion {
	border: 1px solid #ebebeb;
}
.accordion.item-faq {
	width: 806px;
	margin: 36px auto 46px;
}
.accordion.primary .accordion-item.selected .accordion-item-header,
.accordion.primary .accordion-item:hover .accordion-item-header {
	border-left-color: #00d7b3;
}
.accordion.secondary .accordion-item.selected .accordion-item-header,
.accordion.secondary .accordion-item:hover .accordion-item-header {
	border-left-color: #1396e1;
}
.accordion.tertiary .accordion-item.selected .accordion-item-header,
.accordion.tertiary .accordion-item:hover .accordion-item-header {
	border-left-color: #e61852;
}
.accordion .accordion-item {
	border-bottom: 1px solid #ebebeb;
	position: relative;
}
.accordion .accordion-item:last-child {
	border-bottom: none;
}
.accordion .accordion-item.selected .accordion-item-header,
.accordion .accordion-item:hover .accordion-item-header {
	border-left-width: 6px;
}
.accordion .accordion-item.selected .svg-arrow {
	fill: #535d5f;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.accordion .accordion-item .svg-arrow {
	width: 7px;
	height: 12px;
	fill: #b2b2b2;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	position: absolute;
	top: 20px;
	right: 22px;
	transition: all .3s ease-in;
}
.accordion .accordion-item .accordion-item-header {
	padding-left: 16px;
	line-height: 50px;
	text-transform: none;
	cursor: pointer;
	border-left: 0 solid transparent;
	transition: all .15s ease-in;
}
.accordion .accordion-item .accordion-item-content {
	padding: 34px 24px 54px 22px;
	border-top: 1px solid #ebebeb;
	display: none;
}
.accordion .accordion-item .accordion-item-content h4 {
	font-size: 1.125em;
	margin-bottom: 26px;
}
.accordion .accordion-item .accordion-item-content p {
	margin-bottom: 46px;
}
.accordion .accordion-item .accordion-item-content>*:last-child {
	margin-bottom: 0;
}

/*--------------

  	COMMENTS

--------------*/
.comment-list {
	border: 1px solid #ebebeb;
	padding: 0 16px 36px;
	background-color: #fff;
	overflow: hidden;
}
.comment-list .comment-wrap {
	padding: 36px 16px 0 104px;
	position: relative;
}
.comment-list .comment-wrap .comment-wrap {
	padding: 0 0 0 88px;
}
.comment-list .comment-wrap .comment-wrap.comment-reply {
	padding: 0 0 0 88px;
	margin-top: 28px;
}
.comment-list .comment-wrap .comment-wrap .user-avatar {
	top: 0;
	left: 0;
}
.comment-list .comment-wrap.comment-reply {
	padding: 0 16px 0 104px;
	margin-bottom: 15px;
}
.comment-list .comment-wrap.comment-reply .user-avatar {
	top: 10px;
}
.comment-list .comment-wrap.comment-reply:last-child {
	margin-bottom: 0;
}
.comment-list .comment-wrap .user-avatar {
	position: absolute;
	top: 36px;
	left: 16px;
}
.comment-list .comment-wrap .comment {
	margin-bottom: 28px;
	position: relative;
}
.comment-list .comment-wrap .comment .text-header {
	display: inline-block;
	margin: 6px 4px 4px 0;
}
.comment-list .comment-wrap .comment .pin {
	position: relative;
	top: -1px;
}
.comment-list .comment-wrap .comment .quote {
	border-left: 6px solid transparent;
	padding: 24px 36px 26px 22px;
	margin: 20px 0;
}
.comment-list .comment-wrap .comment .quote .text-header {
	margin-bottom: 16px;
}
.comment-list .comment-wrap .comment .quote.primary {
	border-left-color: #00d7b3;
}
.comment-list .comment-wrap .comment .quote.secondary {
	border-left-color: #1cbdf9;
}
.comment-list .comment-wrap .comment .quote.tertiary {
	border-left-color: #e61852;
}
.comment-list .comment-wrap .comment .timestamp {
	margin-bottom: 14px;
}
.comment-list .comment-wrap .comment .reply {
	color: #06b99b;
	font-size: 0.75em;
	font-weight: 700;
	position: absolute;
	top: 6px;
	right: 52px;
}
.comment-list .comment-wrap .comment .report {
	color: #b2b2b2;
	font-size: 0.75em;
	position: absolute;
	top: 6px;
	right: 0;
}
.comment-list .comment-wrap .comment.review .recommendation {
	position: absolute;
	top: -8px;
	right: 0;
}
.comment-list .comment-wrap .comment.review .report {
	right: 52px;
}
.comment-list .comment-reply-form {
	overflow: hidden;
}
.comment-list .comment-reply-form textarea {
	margin-bottom: 14px;
}
.comment-list .comment-reply-form label {
	float: left;
	color: #b2b2b2;
}
.comment-list .comment-reply-form .button {
	float: right;
}
.comment-list .line-separator {
	margin-top: 34px;
}
.comment-list h3 {
	margin: 36px 0 36px 16px;
	font-size: 1.375em;
	text-align: left;
}
.comment-list .pager {
	margin-right: 16px;
}

/*------------

  	SHARE

------------*/
.share-links-wrap {
	margin-top: 25px;
	padding: 0 16px;
	overflow: hidden;
}
.share-links-wrap .text-header {
	float: left;
	margin-right: 16px;
	line-height: 30px;
}
.share-links {
	overflow: hidden;
}
.share-links.hoverable li a {
	transition: all .15s ease-in;
}
.share-links.hoverable li a.fb,
.share-links.hoverable li a.twt,
.share-links.hoverable li a.db,
.share-links.hoverable li a.rss,
.share-links.hoverable li a.gplus,
.share-links.hoverable li a.de,
.share-links.hoverable li a.be {
	background-color: #d1d1d1;
}
.share-links.hoverable li a:hover.fb {
	background-color: #355599;
}
.share-links.hoverable li a:hover.twt {
	background-color: #0fccf4;
}
.share-links.hoverable li a:hover.db {
	background-color: #f63f6e;
}
.share-links.hoverable li a:hover.rss {
	background-color: #ffa312;
}
.share-links.hoverable li a:hover.gplus {
	background-color: #e0133a;
}
.share-links.hoverable li a:hover.be {
	background-color: #0d79ab;
}
.share-links.hoverable li a:hover.de {
	background-color: #05cc47;
}
.share-links li {
	float: left;
	margin-right: 12px;
}
.share-links li a {
	display: block;
	width: 30px;
	height: 30px;
	border-radius: 50%;
}
.share-links li a.fb,
.share-links li a.twt,
.share-links li a.db,
.share-links li a.rss,
.share-links li a.gplus,
.share-links li a.de,
.share-links li a.be {
	background-repeat: no-repeat;
	background-position: center;
}
.share-links li a:hover.fb {
	background-color: #4868ae;
}
.share-links li a:hover.twt {
	background-color: #2fd5f9;
}
.share-links li a:hover.db {
	background-color: #fe5e87;
}
.share-links li a:hover.rss {
	background-color: #ffb72d;
}
.share-links li a:hover.gplus {
	background-color: #f42a50;
}
.share-links li a:hover.be {
	background-color: #1b8ec3;
}
.share-links li a:hover.de {
	background-color: #15e159;
}
.share-links li a.fb {
	background-image: url("../images/social/fb.png");
	background-color: #355599;
}
.share-links li a.twt {
	background-image: url("../images/social/twt.png");
	background-color: #0fccf4;
}
.share-links li a.db {
	background-image: url("../images/social/db.png");
	background-color: #f63f6e;
}
.share-links li a.rss {
	background-image: url("../images/social/rss.png");
	background-position: 50% 45%;
	background-color: #ffa312;
}
.share-links li a.gplus {
	background-image: url("../images/social/gplus.png");
	background-color: #e0133a;
}
.share-links li a.be {
	background-image: url("../images/social/be.png");
	background-color: #0d79ab;
}
.share-links li a.de {
	background-image: url("../images/social/de.png");
	background-color: #05cc47;
}
.share-links li:last-child {
	margin-right: 0;
}

/*------------

  	TAGS

------------*/
.tags a:hover {
	text-decoration: underline;
}
.tags.primary a {
	color: #06b99b;
}
.tags.secondary a {
	color: #1396e1;
}
.tags.tertiary a {
	color: #e61852;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1260px) {
	/*--------------

    	POST TAB

  --------------*/
	
	.post-tab .tab-header .tab-item {
		width: 33%;
	}
	
	.post-tab .tab-header .tab-item:nth-child(2) {
		width: 34%;
	}
	/*-----------

    	POST

  -----------*/
	
	.post.blog-post .post-image {
		width: 100%;
		height: auto;
		margin-bottom: 0;
	}
	
	.post.blog-post .post-image .product-preview-image {
		width: 100%;
		height: auto;
	}
	/*-----------------------

    	BLOG POST PREVIEW

  -----------------------*/
	
	.blog-post-preview.v2 .blog-post-preview-item .product-preview-image {
		width: 100%;
		height: auto;
	}
	/*--------------------

    	BLOG COMMENTS

  --------------------*/
	
	.blog-comments {
		margin-bottom: 26px;
	}
}
@media screen and (max-width: 935px) {
	/*-----------

    	POST

  -----------*/
	
	.post .post-image {
		width: 360px;
		height: 210px;
	}
	
	.post .post-image .product-preview-image {
		width: 358px;
		height: 208px;
	}
	
	.post .post-image .slide-control-wrap {
		width: 328px;
		top: 254px;
		left: 15px;
	}
	
	.post .post-image .button {
		width: 120px;
		height: 30px;
		line-height: 30px;
		font-size: 0.75em;
	}
	
	.post .post-image-slides {
		width: 328px;
	}
	
	.post .post-image-slides .image-slides-wrap,
	.post .post-image-slides .image-slides-wrap.full {
		width: 186px;
		margin: 0 auto;
	}
	
	.post .post-content .post-banner {
		width: 100%;
	}
	/*--------------

    	POST TAB

  --------------*/
	
	.post-tab .accordion.item-faq {
		width: 95%;
	}
}
@media screen and (max-width: 630px) {
	/*-----------

    	POST

  -----------*/
	
	.post .post-paragraph.half {
		float: none;
		width: 100%;
	}
	/*--------------

    	POST TAB

  --------------*/
	
	.post-tab .tab-header .tab-item {
		float: none;
		width: 100%;
		border-right: none;
		border-bottom: 1px solid #ebebeb;
	}
	
	.post-tab .tab-header .tab-item:nth-child(2) {
		width: 100%;
	}
	
	.post-tab .tab-header .tab-item:last-child {
		border-bottom: none;
	}
	/*--------------

    	COMMENTS

  --------------*/
	
	.comment-list .comment-wrap {
		padding-left: 60px;
	}
	
	.comment-list .comment-wrap .comment.review .timestamp {
		margin-bottom: 0;
	}
	
	.comment-list .comment-wrap .comment.review .recommendation {
		display: block;
		position: relative;
		top: 0;
		margin: 6px 0;
	}
	
	.comment-list .comment-wrap .comment.review .report {
		position: static;
		margin-top: 4px;
	}
	
	.comment-list .comment-wrap.comment-reply {
		padding-left: 60px;
	}
	
	.comment-list .comment-wrap .user-avatar {
		width: 40px;
		height: 40px;
		left: 6px;
	}
	
	.comment-list .comment-wrap .comment-wrap {
		padding-left: 56px;
	}
	
	.comment-list .comment-wrap .comment-wrap.comment-reply {
		padding-left: 56px;
	}
	/*--------------------

    	BLOG COMMENTS

  --------------------*/
	
	.blog-comments .comment-list .comment-wrap {
		padding-left: 64px;
	}
	
	.blog-comments .comment-list .comment-wrap.comment-reply {
		padding-left: 64px;
	}
}
@media screen and (max-width: 460px) {
	/*-----------

    	POST

  -----------*/
	
	.post .post-image {
		width: 260px;
		height: 152px;
		margin-bottom: 90px;
	}
	
	.post .post-image .product-preview-image {
		width: 258px;
		height: 150px;
	}
	
	.post .post-image .slide-control-wrap {
		width: 242px;
		top: 168px;
		left: 8px;
	}
	
	.post .post-image .button {
		top: 176px;
		left: 50%;
		margin-left: -60px;
	}
	
	.post .post-image-slides {
		width: 100px;
	}
	
	.post .post-image-slides .slide-control-wrap {
		top: -70px;
	}
	
	.post .image-slides-wrap {
		display: none;
	}
	
	.post .post-content .meta-line>*:last-child {
		clear: left;
		float: left;
	}
	
	.post .post-content .video {
		height: 200px;
	}
	
	.share-links-wrap .text-header {
		float: none;
	}
	/*--------------

    	COMMENTS

  --------------*/
	
	.comment-list .comment-wrap .comment .timestamp {
		margin-bottom: 0;
	}
	
	.comment-list .comment-wrap .comment .report,
	.comment-list .comment-wrap .comment .reply {
		position: static;
		display: inline-block;
		margin-bottom: 4px;
	}
	/*-----------------------

    	BLOG POST PREVIEW

  -----------------------*/
	
	.blog-post-preview .blog-post-preview-item .product-preview-image {
		width: 100%;
		height: auto;
	}
	
	.blog-post-preview.v2 .blog-post-preview-item .meta-line>*:last-child {
		clear: left;
		float: left;
	}
	/*------------------

    	BLOG AUTHOR

  ------------------*/
	
	.blog-author {
		padding: 145px 26px 32px;
	}
	
	.blog-author .user-avatar {
		position: absolute;
		top: 28px;
		left: 50%;
		margin-left: -35px;
	}
	
	.blog-author p {
		text-align: center;
	}
	
	.blog-author .share-links {
		top: 105px;
		right: auto;
		left: 50%;
		margin-left: -36px;
	}
}
.author-profile-banner {
	/*background: url("../images/profile_banner.jpg") no-repeat center;*/
	
	background-size: cover;
	min-height: 300px;
}
.author-profile-banner.bannerwithimage img {
	width: 100%;
	background-size: cover;
	height: 350px;
	object-fit: cover;
}
.author-profile-meta-wrap {
	border-top: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
	background-color: #fff;
}
.author-profile-meta {
	min-height: 100px;
	padding-top: 15px;
}
.author-profile-info {
	overflow: hidden;
	padding-left: 300px;
}
.author-profile-info .author-profile-info-item {
	float: left;
	height: 70px;
	border-right: 1px solid #ebebeb;
	padding: 16px 70px 0 32px;
}
.author-profile-info .author-profile-info-item:last-child {
	border-right: none;
	padding-right: 0;
}
.author-profile-info .author-profile-info-item p {
	font-size: 14px;
	line-height: 20px;
}
.author-profile-info .author-profile-info-item p a:hover {
	text-decoration: underline;
}
.author-profile-info .author-profile-info-item p .primary {
	color: #06b99b;
}
.author-profile-info .author-profile-info-item p .secondary {
	color: #1cbdf9;
}
.author-profile-info .author-profile-info-item p .tertiary {
	color: #e61852;
}
.follow-list {
	width: 870px;
	margin: 0 auto;
}
.follow-list .follow-list-item {
	height: 94px;
	padding: 11px 17px 11px 92px;
	border: 1px solid #ebebeb;
	margin-bottom: 14px;
	background-color: #fff;
	position: relative;
}
.follow-list .follow-list-item:last-child {
	margin-bottom: 0;
}
.follow-list .follow-list-item .user-avatar {
	position: absolute;
	top: 11px;
	left: 11px;
}
.follow-list .follow-list-item .fl-item-info {
	float: left;
	height: 70px;
	border-right: 1px solid #ebebeb;
	padding: 0 16px;
}
.follow-list .follow-list-item .fl-item-info:last-child {
	border-right: none;
	padding-right: 0;
}
.follow-list .follow-list-item .fl-item-info.fl-description {
	width: 203px;
	padding: 6px 10px 0 0;
}
.follow-list .follow-list-item .fl-item-info.fl-description .text-header {
	font-size: 1em;
	margin-bottom: 5px;
}
.follow-list .follow-list-item .fl-item-info.fl-description p {
	font-size: 0.75em;
	line-height: 18px;
}
.follow-list .follow-list-item .fl-item-info.fl-reputation {
	width: 108px;
	padding-top: 15px;
}
.follow-list .follow-list-item .fl-item-info.fl-reputation .text-header {
	font-size: 0.75em;
	text-align: center;
}
.follow-list .follow-list-item .fl-item-info.fl-reputation .rating {
	width: 75px;
	margin: 14px auto 0;
}
.follow-list .follow-list-item .fl-item-info.fl-product-items {
	overflow: hidden;
}
.follow-list .follow-list-item .fl-item-info.fl-product-items .product-preview-image {
	float: left;
	margin-right: 14px;
}
.follow-list .follow-list-item .fl-item-info.fl-product-items a:last-child .product-preview-image {
	margin-right: 0;
}
.follow-list .follow-list-item .fl-item-info.fl-button {
	padding-top: 20px;
}
@media screen and (max-width: 1260px) {
	.author-profile-info {
		padding-left: 0;
		padding-top: 15px;
		width: 270px;
		margin: 0 auto;
	}
	
	.author-profile-info .author-profile-info-item {
		float: none;
		border-right: none;
		padding: 0;
		padding-left: 32px;
	}
	
	.author-profile-info .author-profile-info-item p {
		font-size: 0.8125em;
		line-height: 20px;
	}
	
	.author-profile-info .author-profile-info-item p a:hover {
		text-decoration: underline;
	}
	
	.author-profile-info .author-profile-info-item p .primary {
		color: #06b99b;
	}
	
	.author-profile-info .author-profile-info-item p .secondary {
		color: #1cbdf9;
	}
	
	.author-profile-info .author-profile-info-item p .tertiary {
		color: #e61852;
	}
	
	.section .sidebar.author-profile {
		position: static;
	}
}
@media screen and (max-width: 935px) {
	.follow-list {
		width: 598px;
	}
	
	.follow-list .follow-list-item .fl-item-info.fl-product-items {
		display: none;
	}
}
@media screen and (max-width: 630px) {
	.follow-list {
		width: 270px;
	}
	
	.follow-list .follow-list-item {
		height: auto;
		padding: 90px 11px 20px;
	}
	
	.follow-list .follow-list-item .user-avatar {
		left: 50%;
		margin-left: -35px;
	}
	
	.follow-list .follow-list-item .fl-item-info {
		float: none;
		height: auto;
		border-right: none;
		padding: 0;
	}
	
	.follow-list .follow-list-item .fl-item-info.fl-description {
		padding: 0;
		margin: 0 auto 14px;
	}
	
	.follow-list .follow-list-item .fl-item-info.fl-description p {
		text-align: center;
	}
	
	.follow-list .follow-list-item .fl-item-info.fl-reputation {
		display: none;
	}
	
	.follow-list .follow-list-item .fl-item-info.fl-button {
		padding: 0;
	}
	
	.follow-list .follow-list-item .fl-item-info.fl-button .button {
		margin: 0 auto;
	}
}
.section.demo {
	overflow: visible;
}
.section.demo .form-popup {
	margin-bottom: 60px;
}
.section.demo .form-popup:nth-child(odd) {
	float: left;
	clear: both;
}
.section.demo .form-popup:nth-child(even) {
	float: right;
}
.form-popup {
	width: 430px;
	margin: 0 auto;
	border: 1px solid #b133c8;
	background-color: rgba(255, 255, 255, 0.86);
	position: relative;
}
.form-popup.new-message {
	width: 570px;
}
.form-popup.promo {
	width: 770px;
	height: 420px;
	border: none;
}
.form-popup.promo .promo-bg {
	float: left;
	width: 370px;
	height: 100%;
	background: url("../images/dashboard/promo-ad.jpg") no-repeat center;
}
.form-popup.promo .form-popup-content {
	float: right;
	width: 400px;
	height: 100%;
	padding: 56px 32px 38px;
}
.form-popup.promo .form-popup-content .popup-title {
	margin-bottom: 30px;
}
.form-popup.promo .form-popup-content .info {
	font-size: 0.875em;
	line-height: 24px;
	margin-bottom: 24px;
}
.form-popup.promo .form-popup-content .form-popup-content-links {
	margin-top: 40px;
	overflow: hidden;
}
.form-popup.promo .form-popup-content .form-popup-content-links>.button {
	float: left;
	width: 232px;
}
.form-popup.promo .form-popup-content .form-popup-content-links .form-popup-content-links-social {
	float: right;
	width: 94px;
}
.form-popup.promo .form-popup-content .form-popup-content-links .form-popup-content-links-social .button {
	float: left;
	width: 42px;
}
.form-popup.promo .form-popup-content .form-popup-content-links .form-popup-content-links-social .button:last-child {
	float: right;
}
.form-popup .close-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background-color: #101314;
	cursor: pointer;
	position: absolute;
	top: -19px;
	right: -19px;
}
.form-popup .close-btn:hover {
	background-color: #00d7b3;
}
.form-popup .close-btn .svg-plus {
	fill: #fff;
	width: 10px;
	height: 10px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 14px;
	left: 14px;
	pointer-events: none;
}
.form-popup .close-btn.mfp-close {
	opacity: 1;
}
.form-popup .form-popup-headline {
	padding: 36px 22px 30px;
}
.form-popup .form-popup-headline p {
	margin-top: 10px;
	color: #fff;
	line-height: 20px;
}
.form-popup .form-popup-headline.primary {
	background: url("../images/section_headline_bg.png") no-repeat center #00d7b3;
	background-size: cover;
}
.form-popup .form-popup-headline.secondary {
	background: url("../images/section_headline_bg.png") no-repeat center #1cbdf9;
	background-size: cover;
}
.form-popup .form-popup-content {
	padding: 22px 22px 26px;
	overflow: hidden;
}
.form-popup .popup-title {
	font-size: 1.375em;
	margin-bottom: 15px;
}
.form-popup .line-separator {
	margin-bottom: 22px;
}
.form-popup .line-separator.double {
	margin-top: 22px;
}
.form-popup .line-separator.short {
	margin-bottom: 16px;
}
.form-popup input[type="text"],
.form-popup input[type="email"],
.form-popup input[type="password"],
.form-popup input[type="number"],
.form-popup input[type="select"] {
	margin-bottom: 24px;
}
.form-popup .label-check {
	display: inline-block;
	margin-bottom: 22px;
}
.form-popup p {
	font-size: 0.8125em;
	line-height: 1em;
}
.form-popup p.highlighted {
	line-height: 20px;
}
.form-popup p.highlighted span {
	color: #2b373a;
	font-weight: 700;
}
.form-popup p.spaced {
	line-height: 20px;
	margin-bottom: 16px;
}
.form-popup p a {
	font-weight: 700;
}
.form-popup p a:hover {
	text-decoration: underline;
}
.form-popup button {
	margin-top: 18px;
}
.form-popup button.no-space {
	margin: 0;
}
.form-popup .button {
	width: 100%;
}
.form-popup .button.half {
	width: 185px;
	float: left;
}
.form-popup .button.half+.button.half {
	float: right;
}
.form-popup .input-container {
	margin-bottom: 22px;
	position: relative;
}
.form-popup .input-container.field-add {
	padding-right: 36px;
}
.form-popup .input-container textarea {
	height: 200px;
}
.form-popup .input-container .select-block {
	margin-bottom: 0;
}
.form-popup .add-field {
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: 5px;
	right: 0;
	cursor: pointer;
}
.form-popup .add-field .svg-plus {
	width: 11px;
	height: 11px;
	fill: #fff;
	position: relative;
	top: 2px;
}
@media screen and (max-width: 1260px) {
	.section.demo .form-popup {
		margin: 0 auto 60px;
	}
	
	.section.demo .form-popup:nth-child(odd) {
		float: none;
	}
	
	.section.demo .form-popup:nth-child(even) {
		float: none;
	}
}
@media screen and (max-width: 935px) {
	.form-popup.promo {
		width: 400px;
	}
	
	.form-popup.promo .promo-bg {
		display: none;
	}
}
@media screen and (max-width: 630px) {
	.form-popup {
		width: 90%;
	}
	
	.form-popup.promo {
		width: 90%;
		height: auto;
	}
	
	.form-popup.promo .form-popup-content {
		width: 100%;
		height: auto;
		background-color: #fff;
	}
	
	.form-popup.promo .form-popup-content .form-popup-content-links {
		text-align: center;
	}
	
	.form-popup.promo .form-popup-content .form-popup-content-links>.button {
		float: none;
		width: 100%;
	}
	
	.form-popup.promo .form-popup-content .form-popup-content-links .form-popup-content-links-social {
		float: none;
		display: inline-block;
		margin-top: 20px;
	}
	
	.form-popup .button.half {
		width: 100%;
		float: none;
	}
	
	.form-popup .button.half+.button.half {
		margin-top: 22px;
	}
}

/*---------------------

  	BADGES SHOWCASE

---------------------*/
.badges-showcase {
	margin: 0 auto;
}
.badges-showcase.short {
	width: 702px;
}
.badges-showcase .badges-showcase-item {
	padding-top: 192px;
	position: relative;
	margin-bottom: 70px;
}
.badges-showcase .badges-showcase-item .badge {
	position: absolute;
	z-index: 1;
	transition: all .3s ease-in-out;
}
.badges-showcase .badges-showcase-item .badge.big {
	top: 0;
	left: 50%;
	margin-left: -80px;
}
.badges-showcase .badges-showcase-item .badge.big.pinned {
	top: -10px;
}
.badges-showcase .badges-showcase-item .badge.small {
	top: 136px;
	right: 29px;
}
.badges-showcase .badges-showcase-item .badge.locked {
	opacity: 0;
	z-index: 0;
}
.badges-showcase .badges-showcase-item .badge.active {
	opacity: 1;
	z-index: 2;
}
.badges-showcase .badges-showcase-item .badge.active+.badge {
	opacity: 0;
}
.badges-showcase .badges-showcase-item .badge.active:hover {
	opacity: 0;
}
.badges-showcase .badges-showcase-item .badge.active:hover+.badge {
	opacity: 1;
}
.badges-showcase .badges-showcase-item .text-header,
.badges-showcase .badges-showcase-item .badge-description {
	text-align: center;
}
.badges-showcase .badges-showcase-item .text-header {
	font-size: 1.125em;
	margin-bottom: 16px;
}
.badges-showcase .badges-showcase-item .badge-description {
	font-size: 0.75em;
	line-height: 18px;
}
.badges-showcase .badges-showcase-item .badge-progress-title {
	font-size: 0.8125em;
	margin: 34px 0 6px;
}
.badges-showcase .badges-showcase-item .badge-progress {
	margin: 0 auto;
}

/*-----------

  	BADGE

-----------*/
.badge.big {
	width: 160px;
	height: 167px;
}
.badge.small {
	width: 36px;
	height: 37px;
}

/*------------------

  	BADGE BOXES

------------------*/
.badge-boxes {
	overflow: hidden;
}
.badge-boxes .sidebar-item {
	margin-bottom: 26px;
}

/*------------------

  	BADGE LIST

------------------*/
.badge-list {
	width: 228px;
	margin: 0 auto;
}
.badge-list .badge-list-item {
	float: left;
	margin: 0 12px 18px 0;
}
.badge-list .badge-list-item .badge.pinned {
	position: relative;
	top: -5px;
}
.badge-list .badge-list-item:nth-child(5n+5) {
	margin-right: 0;
}
.badge-list.short {
	width: 180px;
	margin-left: auto;
	margin-right: auto;
}
.badge-list.short .badge-list-item:nth-child(5n+5) {
	margin-right: 12px;
}
.badge-list.short .badge-list-item:nth-child(4n+4) {
	margin-right: 0;
}
@media screen and (max-width: 935px) {
	/*---------------------

    	BADGES SHOWCASE

  ---------------------*/
	
	.badges-showcase.short {
		width: 468px;
	}
}
@media screen and (max-width: 630px) {
	/*---------------------

    	BADGES SHOWCASE

  ---------------------*/
	
	.badges-showcase.short {
		width: 234px;
	}
}

/*----------

	CART

----------*/
.cart {
	width: 870px;
	background-color: #fff;
	border: 1px solid #ebebeb;
	margin: 0 auto;
}
.cart .cart-header {
	height: 52px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.cart .cart-header p {
	line-height: 52px;
}
.cart .cart-header>* {
	float: left;
	text-align: center;
}
.cart .cart-header .cart-header-product {
	text-align: left;
}
.cart .cart-header-product,
.cart .cart-item-product {
	width: 416px;
	padding-left: 23px;
}
.cart .cart-header-category,
.cart .cart-item-category {
	width: 142px;
}
.cart .cart-header-price,
.cart .cart-item-price {
	width: 174px;
}
.cart .cart-header-actions,
.cart .cart-item-actions {
	width: 136px;
}
.cart .cart-item {
	padding: 24px 0;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.cart .cart-item>* {
	float: left;
	text-align: center;
}
.cart .cart-item .cart-item-product {
	text-align: left;
}
.cart .cart-item .cart-item-product .item-preview {
	padding-left: 82px;
	padding-top: 4px;
	min-height: 70px;
}
.cart .cart-item .cart-item-product .item-preview .description {
	width: 155px;
}
.cart .cart-item .cart-item-category {
	padding-top: 26px;
}
.cart .cart-item .cart-item-price {
	padding-top: 23px;
}
.cart .cart-item .cart-item-actions {
	padding-top: 16px;
}
.cart .cart-item .cart-item-actions .button.rmv {
	width: 30px;
	height: 30px;
	margin: 0 auto;
	position: relative;
}
.cart .cart-item .cart-item-actions .button.rmv .svg-plus {
	fill: #fff;
	width: 12px;
	height: 12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	top: 9px;
	left: 50%;
	margin-left: -6px;
}
.cart .cart-actions {
	padding: 26px 53px 26px 0;
	overflow: hidden;
}
.cart .cart-actions .button {
	float: right;
	width: 200px;
}
.cart .cart-actions .button.spaced {
	margin-right: 14px;
}
.cart-total {
	height: 70px;
	padding: 0 53px 0 556px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.cart-total.small {
	height: 50px;
	padding: 0 0 0 346px;
}
.cart-total.small p {
	line-height: 50px;
}
.cart-total.small .subtotal,
.cart-total.small .total {
	font-size: 0.875em;
}
.cart-total p {
	line-height: 70px;
}
.cart-total .subtotal,
.cart-total .total {
	float: left;
}
.cart-total .price {
	float: right;
}
.cart-total .subtotal {
	font-size: 0.8125em;
}

/*------------------------

	CART OVERVIEW ITEM

------------------------*/
.cart-overview-item {
	height: 35px;
	overflow: hidden;
	position: relative;
}
.cart-overview-item.bordered {
	border-bottom: 1px solid #ebebeb;
}
.cart-overview-item .text-header {
	float: left;
}
.cart-overview-item .price,
.cart-overview-item .category {
	float: right;
}
.cart-overview-item .price {
	position: relative;
	top: -3px;
}
.cart-overview-item .category {
	position: absolute;
	left: 346px;
}

/*--------------

	FORM BOX

--------------*/
.form-box-items {
	overflow: hidden;
}
.form-box-items.right {
	float: right;
}
.form-box-items.left {
	float: left;
}
.form-box-items.wrap-3-1 {
	width: 74.3%;
}
.form-box-items.wrap-1-3 {
	width: 23%;
}
.form-box-items .form-box-items.wrap-3-1 {
	width: 65.5%;
}
.form-box-items .form-box-items.wrap-1-3 {
	width: 31%;
}
.form-box-items .form-box-item {
	/*width: 570px;*/
	
	width: 100%;
}
.form-box-items .form-box-item:nth-child(odd) {
	float: left;
	clear: both;
}
.form-box-items .form-box-item:nth-child(even) {
	float: right;
}
.form-box-item {
	padding: 0;
	margin: 20px 0 0 0;
	position: relative;
}
.form-box-item.padded {
	padding-bottom: 71px;
}
.form-box-item.not-padded {
	padding-bottom: 0;
}
.form-box-item.not-spaced .line-separator {
	margin-bottom: 0;
}
.form-box-item.spaced {
	padding-bottom: 62px;
}
.form-box-item.spaced .line-separator,
.form-box-item.spaced .input-container {
	margin-bottom: 40px;
}
.form-box-item.spaced .input-container {
	padding-left: 42px;
	position: relative;
}
.form-box-item.spaced .input-container .share-links {
	position: absolute;
	top: 6px;
	left: 0;
}
.form-box-item.has-chart-legend {
	text-align: center;
}
.form-box-item.has-chart-legend h4 {
	text-align: left;
}
.form-box-item.has-chart-legend .chart-legend {
	margin-top: 28px;
}
.form-box-item.graph-bg {
	background: url("../images/dashboard/graph-bg.png") no-repeat center bottom #fff;
	padding-bottom: 54px;
}
.form-box-item h4 {
	margin-bottom: 22px;
}
.form-box-item .line-separator {
	margin-bottom: 22px;
}
.form-box-item .line-separator.top {
	margin-top: 22px;
}
.form-box-item .button {
	width: 100%;
}
.form-box-item .input-container {
	clear: both;
	margin-bottom: 22px;
}
.form-box-item .input-container:last-child {
	margin-bottom: 0;
}
.form-box-item .input-container.top-right {
	position: absolute;
	top: 20px;
	right: 24px;
}
.form-box-item .input-container.half {
	float: left;
	width: 48.85%;
	clear: none;
}
.form-box-item .input-container.half+.half {
	float: right;
}
#register-form input.half {
	float: left;
	width: 48.85%;
	clear: none;
}
#register-form input.half+.half {
	float: right;
}
#register-form input.half2 {
	float: right;
	width: 48.85%;
	clear: none;
}
#register-form input.half2+.half2 {
	float: right !important;
}
#register-form2 input.half {
	float: left;
	width: 48.85%;
	clear: none;
}
#register-form input.half+.half {
	float: right;
}
#register-form2 input.half2 {
	float: right;
	width: 48.85%;
	clear: none;
}
#register-form2 input.half2+.half2 {
	float: right !important;
}
#register-form select.half2 {
	float: right;
	width: 48.85%;
	clear: none;
}
#register-form select.half2+.half2 {
	float: right;
}
.form-box-item .input-container textarea {
	height: 120px;
}
.form-box-item .cart-total:last-child {
	border-bottom: none;
}
.form-box-item .pm-text {
	padding-left: 29px;
	color: #b2b2b2;
	font-size: 0.8125em;
	position: relative;
	top: -8px;
	display: none;
}
@media screen and (max-width: 1260px) {
	/*--------------

  	FORM BOX

  --------------*/
	
	.form-box-items.right,
	.form-box-items.left {
		width: 100% !important;
		float: none;
	}
	
	.form-box-items>.form-box-items.right,
	.form-box-items>.form-box-items.left {
		width: 100%;
		float: none;
	}
	
	.form-box-items .form-box-item {
		float: none;
		width: 100%;
	}
	
	.timeBlock input[type="time"] {
		line-height: 11px !important;
	}
}
@media screen and (max-width: 935px) {
	/*----------

  	CART

  ----------*/
	
	.cart {
		width: 554px;
	}
	
	.cart .cart-header-category,
	.cart .cart-header-price,
	.cart .cart-item-category,
	.cart .cart-item-price {
		display: none;
	}
	
	.cart .cart-total {
		padding-left: 200px;
	}
	
	.select2-selection.select2-selection--multiple {
		width: 100%;
		height: 40px;
		border-color: #b133c8 !important;
	}
}
@media screen and (max-width: 630px) {
	/*----------

  	CART

  ----------*/
	
	.cart {
		width: 270px;
	}
	
	.cart .cart-header-actions {
		display: none;
	}
	
	.cart .cart-header-product {
		width: 100%;
		padding-left: 0;
	}
	
	.cart .cart-header-product p {
		text-align: center;
	}
	
	.cart .cart-item>* {
		float: none;
		margin: 0 auto;
	}
	
	.cart .cart-item .cart-item-product {
		width: 100%;
		padding-left: 0;
	}
	
	.cart .cart-item .cart-item-product .item-preview {
		padding-top: 86px;
		padding-left: 0;
	}
	
	.cart .cart-item .cart-item-product .item-preview .product-preview-image {
		top: 0;
		left: 50%;
		margin-left: -35px;
	}
	
	.cart .cart-item .cart-item-product .item-preview p {
		text-align: center;
	}
	
	.cart .cart-item .cart-item-product .item-preview .description {
		margin: 0 auto;
	}
	
	.cart .cart-total {
		padding-right: 30px;
		padding-left: 30px;
	}
	
	.cart .cart-actions {
		padding-right: 0;
	}
	
	.cart .cart-actions .button {
		float: none;
		margin: 14px auto 0;
	}
	
	.cart .cart-actions .button.spaced {
		margin: 14px auto 0;
	}
	/*--------------

  	FORM BOX

  --------------*/
	
	.form-box-item .input-container.half {
		float: none;
		width: 100%;
	}
	
	.form-box-item .cart-total.small {
		padding-left: 0;
	}
	/*------------------------

  	CART OVERVIEW ITEM

  ------------------------*/
	
	.cart-overview-item .category {
		display: none;
	}
	
	.upload-file .upload-file-progress {
		float: right !important;
		width: 50% !important;
		margin-top: 0 !important;
	}
	
	.datepicker-wrap {
		width: 42% !important;
	}
	
	input.datepicker {
		width: 100%;
	}
}
@media screen and (max-width: 460px) {
	/*--------------

  	FORM BOX

  --------------*/
	
	.form-box-item .input-container.top-right {
		position: static;
	}
	/*------------------------

  	CART OVERVIEW ITEM

  ------------------------*/
	
	.cart-overview-item {
		height: auto;
		margin-bottom: 22px;
	}
	
	.cart-overview-item.bordered {
		padding-bottom: 12px;
		margin-bottom: 0;
	}
	
	.cart-overview-item .text-header {
		width: 180px;
		line-height: 1.3em;
	}
	
	.cart-overview-item .price {
		top: 0;
	}
}
.forum {
	width: 870px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	margin: 0 auto 26px;
	padding-bottom: 6px;
}
.forum>*:last-child {
	border-bottom: none;
}
.forum>*:last-child>*:last-child {
	border-bottom: none;
}
.forum-header {
	overflow: hidden;
	border-bottom: 1px solid #ebebeb;
}
.forum-title,
.forum-replies,
.forum-lastpost {
	float: left;
	height: 50px;
}
.forum-title .text-header,
.forum-replies .text-header,
.forum-lastpost .text-header {
	line-height: 50px;
}
.forum-title {
	width: 470px;
	padding-left: 24px;
}
.forum-replies {
	width: 100px;
	text-align: center;
}
.forum-lastpost {
	width: 298px;
	padding-left: 150px;
}
.forum-subsection {
	padding: 16px 24px;
	border-bottom: 1px solid #ebebeb;
}
.forum-subsection .text-header {
	margin-bottom: 8px;
}
.forum-subsection .description {
	font-size: 0.8125em;
	line-height: 18px;
}
.thread-list .thread-list-item {
	height: 50px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
	position: relative;
}
.thread-list .thread-list-item.pinned .pin {
	top: 17px;
	left: 24px;
	pointer-events: none;
}
.thread-list .thread-list-item.pinned .user-avatar {
	left: 78px;
}
.thread-list .thread-list-item.pinned .forum-title {
	padding-left: 78px;
}
.thread-list .thread-list-item .user-avatar {
	position: absolute;
	top: 12px;
	left: 23px;
}
.thread-list .thread-list-item .forum-lastpost {
	padding-left: 0;
}
.thread-list .thread-list-item .title,
.thread-list .thread-list-item .replies,
.thread-list .thread-list-item .lastpost {
	font-size: 0.8125em;
	line-height: 50px;
}
.thread-list .thread-list-item .title {
	padding-left: 35px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.thread-list .thread-list-item .replies {
	color: #b2b2b2;
}
.thread-list .thread-list-item .lastpost {
	float: right;
	padding-right: 24px;
}
.thread-list .thread-list-item .lastpost span {
	color: #2b373a;
	font-weight: 700;
}
.topic-preview .topic-preview-item {
	padding-bottom: 14px;
	margin-bottom: 16px;
	border-bottom: 1px solid #ebebeb;
}
.topic-preview .topic-preview-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
.topic-preview .topic-preview-item .category,
.topic-preview .topic-preview-item .lastpost {
	font-size: 0.6875em;
}
.topic-preview .topic-preview-item .lastpost {
	margin-top: 4px;
}
.topic-preview .topic-preview-item .lastpost span {
	color: #2b373a;
	font-weight: 700;
}
.thread {
	border: 1px solid #ebebeb;
	background-color: #fff;
}
.thread .thread-title {
	min-height: 64px;
	padding: 19px 32px;
	border-bottom: 1px solid #ebebeb;
}
.thread .thread-title.pinned {
	padding-left: 78px;
	position: relative;
}
.thread .thread-title.pinned .pin {
	top: 26px;
	left: 24px;
}
.thread .thread-title .text-header {
	font-size: 1.375em;
	line-height: 1.3em;
}
.thread .comment-list {
	padding-left: 0;
	padding-right: 0;
	border: none;
}
.thread .comment-list .comment-wrap {
	padding-left: 118px;
	padding-right: 32px;
}
.thread .comment-list .comment-wrap .user-avatar {
	left: 32px;
}
.thread .comment-list h3 {
	margin-left: 32px;
}
@media screen and (max-width: 935px) {
	.forum {
		width: 572px;
	}
	
	.forum-lastpost {
		display: none;
	}
}
@media screen and (max-width: 630px) {
	.forum,
	.forum-title {
		width: 100%;
	}
	
	.forum-title {
		padding-right: 24px;
	}
	
	.forum-replies {
		display: none;
	}
	
	.thread .comment-list .comment-wrap {
		padding-left: 76px;
	}
	
	.thread .comment-list .comment-wrap .user-avatar {
		left: 16px;
	}
	
	.thread .comment-list h3 {
		margin-left: 16px;
	}
}
#footer-top-wrap {
	background-color: #2b373a;
}
#footer-top {
	min-height: 265px;
    padding-bottom: 18px;
	overflow: hidden;
}
#footer-top .company-info {
	float: left;
	width: 270px;
	padding-top: 38px;
	margin-right: 30px;
}
#footer-top .company-info .logo {
	margin-bottom: 20px;
	width: 140px;
}
#footer-top .company-info p {
	color: #b2b2b2;
	font-size: 13px;
	line-height: 1.53846em;
}
#footer-top .company-info .company-info-list {
	margin-top: 15px;
}
#footer-top .company-info .company-info-list .company-info-item {
	margin-bottom: 10px;
}
#footer-top .company-info .company-info-list .company-info-item .icon-present,
#footer-top .company-info .company-info-list .company-info-item .icon-energy,
#footer-top .company-info .company-info-list .company-info-item .icon-user {
	margin-right: 5px;
	color: #fff;
	font-size: 17px;
	position: relative;
	top: 2px;
}
#footer-top .company-info .company-info-list .company-info-item p {
	display: inline-block;
	color: #fff;
}
#footer-top .company-info .company-info-list .company-info-item p span {
	color: #16ffd8;
}
#footer-top .footer-title {
	color: #fff;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1em;
	margin-bottom: 32px;
}
#footer-top .link-info,
#footer-top .twitter-feed {
	float: left;
	padding-top: 38px;
}
#footer-top .link-info {
	width: 250px;
	margin-right: 30px;
}
#footer-top .twitter-feed {
	width: 530px;
}
#footer-top .twitter-feed .tweets li {
	padding-left: 34px;
	margin-bottom: 20px;
	position: relative;
}
#footer-top .twitter-feed .tweets li:last-child {
	margin-bottom: 0;
}
#footer-top .twitter-feed .tweets li:before {
	content: url("../images/twt.png");
	position: absolute;
	top: 3px;
	left: 0;
}
#footer-top .twitter-feed .tweets li .feed-text {
	color: #fff;
	font-size: 0.8125em;
	line-height: 1.53846em;
	margin-bottom: 6px;
}
#footer-top .twitter-feed .tweets li .feed-text a {
	color: #16ffd8;
}
#footer-top .twitter-feed .tweets li .feed-timestamp a {
	color: #b2b2b2;
	font-size: 0.85714em;
}
#footer-bottom-wrap {
	background-color: #21282a;
	position: relative;
}
#footer-bottom {
	min-height: 54px;
}
#footer-bottom p {
	color: #b2b2b2;
	font-size: 13px;
	text-align: center;
	line-height: 52px;
	padding-left: 12px;
	position: relative;
}
#footer-bottom p span {
	position: absolute;
	top: 0;
	left: 0;
}
#footer-bottom p a {
	color: #16ffd8;
}
.social-links {
	margin: 25px 0 0 5px;
	overflow: hidden;
}
.social-links .social-link {
	float: left;
}
.social-links .social-link a {
	display: block;
	position: relative;
}
.social-links .social-link.fb {
	margin-right: 30px;
}
.social-links .social-link.fb a {
	width: 7px;
	height: 14px;
	background: url("../images/fb.png") no-repeat center;
}
.social-links .social-link.twt {
	margin-right: 26px;
}
.social-links .social-link.twt a {
	width: 18px;
	height: 13px;
	background: url("../images/twt.png") no-repeat center;
	top: 1px;
}
.social-links .social-link.db {
	margin-right: 32px;
}
.social-links .social-link.db a {
	width: 16px;
	height: 17px;
	background: url("../images/db.png") no-repeat center;
	top: -1px;
}
.social-links .social-link.rss a {
	width: 12px;
	height: 13px;
	background: url("../images/rss.png") no-repeat center;
	top: 1px;
}
.link-list .link-item {
	position: relative;
	float: left;
	width: 50%;
	margin-bottom: 12px;
}
.link-list .link-item:last-child {
	margin-bottom: 0;
}
.link-list .link-item .bullet {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #fff;
	position: absolute;
	top: 7px;
	left: 0;
}
.link-list .link-item a {
	padding-left: 15px;
	color: #b2b2b2;
	font-size: 13px;
	font-weight: 600;
	line-height: 1em;
	transition: all .15s ease-in;
}
.link-list .link-item a:hover {
	color: #fff;
	padding-left: 19px;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1260px) {
	#footer-top {
		width: 570px;
		position: relative;
	}
	
	#footer-top .link-info:nth-child(2) {
		clear: left;
	}
	
	#footer-top .link-info:nth-child(4) {
		margin-right: 0;
	}
	
	#footer-top .twitter-feed {
		position: absolute;
		top: 0;
		right: 0;
	}
}
@media screen and (max-width: 630px) {
	#footer-top {
		width: 270px;
	}
	
	#footer-top .company-info {
		float: none;
	}
	
	#footer-top .link-info {
		float: none;
		margin-right: 0;
	}
	
	#footer-top .twitter-feed {
		float: left;
		position: relative;
		width: 100%;
	}
	
	#footer-bottom p {
		font-size: 0.75em;
	}
}
.coming-soon-box {
	width: 630px;
	margin: 20px auto 0;
}
.coming-soon-box p {
	text-align: center;
}
.coming-soon-box p br {
	display: none;
}
.coming-soon-box .text-header {
	margin-bottom: 22px;
}
.coming-soon-box .button {
	width: 240px;
	margin: 40px auto 0;
}
@media screen and (max-width: 935px) {
	.coming-soon-box {
		width: 90%;
	}
	
	.coming-soon-box p br {
		display: block;
	}
}
.dashboard-body {
	padding: 70px 0 0 270px;
	position: relative;
}
.dashboard-header {
	width: 100%;
	padding-left: 270px;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9000;
	transition: all .5s ease;
}
.dashboard-header .dashboard-header-item {
	float: left;
	width: 16.25%;
	height: 70px;
	padding: 22px 0 0 14px;
	border-bottom: 1px solid #ebebeb;
	border-right: 1px solid #ebebeb;
	background-color: #fff;
}
.dashboard-header .dashboard-header-item.title {
	padding: 0 0 0 30px;
}
.dashboard-header .dashboard-header-item.title h6 {
	line-height: 70px;
}
.dashboard-header .dashboard-header-item.form {
	float: right;
	width: 35%;
	padding-top: 14px;
	border-right: none;
}
.dashboard-header .dashboard-header-item .dashboard-search {
	position: relative;
}
.dashboard-header .dashboard-header-item .dashboard-search input[type="text"] {
	width: 60%;
	border: none;
}
.dashboard-header .dashboard-header-item .dashboard-search input[type="image"] {
	position: absolute;
	top: -14px;
	right: 70px;
	border-radius: 0;
}
.dashboard-header .dashboard-header-item.back-button {
	width: 100%;
	border: none;
	padding: 0;
	display: none;
}
.dashboard-header .dashboard-header-item.back-button .button {
	width: 100%;
	height: 100%;
	border-radius: 0;
	line-height: 70px;
}
.dashboard-header .dashboard-header-item.back-button .button:before {
	content: url("../images/dashboard/back-icon.png");
	position: relative;
	top: 1px;
	right: 12px;
}
.db-options-button,
.db-close-button {
	width: 70px;
	height: 69px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9000;
}
.db-options-button {
	background-color: #1cbdf9;
	cursor: pointer;
	display: none;
}
.db-options-button img[alt="db-list-right"],
.db-options-button img[alt="close-icon"] {
	position: absolute;
	left: 50%;
}
.db-options-button img[alt="db-list-right"] {
	top: 27px;
	margin-left: -9px;
}
.db-options-button img[alt="close-icon"] {
	top: 28px;
	margin-left: -6px;
	display: none;
}
.db-close-button {
	background-color: #535d5f;
}
.db-close-button img[alt="back-icon"] {
	position: absolute;
	top: 28px;
	left: 50%;
	margin-left: -9px;
}
.db-side-menu-handler {
	width: 70px;
	height: 69px;
	background-color: #2b373a;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9000;
	cursor: pointer;
	display: none;
}
.db-side-menu-handler img[alt="db-list-left"] {
	position: absolute;
	top: 27px;
	left: 50%;
	margin-left: -9px;
}
.stats-meta .pie-chart {
	float: left;
	margin-right: 8px;
}
.stats-meta .pie-chart .svg-plus,
.stats-meta .pie-chart .svg-minus {
	width: 6px;
	height: 6px;
	position: absolute;
	top: 7px;
	left: 50%;
	margin-left: -3px;
}
.stats-meta p {
	color: #8c8c8c;
	font-size: 0.625em;
}
.dashboard-content {
	padding: 30px 0 90px;
}
.dashboard-content .form-box-items .form-box-item {
	width: 48.7%;
}
.dashboard-content .form-box-items .form-box-item.full {
	width: 100%;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1350px) {
	.dashboard-body {
		padding-left: 0;
	}
	
	.side-menu.dashboard.closed {
		opacity: 0;
		visibility: hidden;
	}
	
	.side-menu.dashboard.closed.left {
		left: -270px;
	}
	
	.side-menu.dashboard.closed.right {
		right: -270px;
	}
	
	.side-menu.dashboard .svg-plus {
		display: block;
	}
	
	.db-side-menu-handler {
		display: block;
	}
	
	.dashboard-header {
		max-height: 70px;
		padding-left: 0;
	}
	
	.dashboard-header .dashboard-header-item.title,
	.dashboard-header .dashboard-header-item.form {
		width: 100%;
		float: none;
	}
	
	.dashboard-header .dashboard-header-item.stats {
		width: 33.333333%;
	}
	
	.dashboard-header .dashboard-header-item.title {
		padding-left: 100px;
	}
	
	.dashboard-header .dashboard-header-item:nth-last-child(2) {
		border-right: none;
	}
	
	.dashboard-header .dashboard-header-item .dashboard-search input[type="text"] {
		width: 85%;
	}
	
	.dashboard-header .dashboard-header-item .dashboard-search input[type="image"] {
		right: 0;
	}
	
	.dashboard-header .dashboard-header-item.back-button {
		display: block;
	}
	
	.db-options-button {
		display: block;
	}
	
	.db-close-button {
		display: none;
	}
}
@media screen and (max-width: 630px) {
	.dashboard-header .dashboard-header-item.stats {
		float: none;
		width: 100%;
		border-right: none;
	}
	
	.dashboard-header .dashboard-header-item .dashboard-search input[type="text"] {
		width: 75%;
	}
}
.profile-image {
	margin-bottom: 22px;
	min-height: 70px;
}
.profile-image .profile-image-data {
	float: left;
	padding-left: 80px;
	position: relative;
}
.profile-image .profile-image-data .user-avatar {
	position: absolute;
	top: 0;
	left: 0;
}
.profile-image .profile-image-data .text-header {
	margin-top: 14px;
}
.profile-image .profile-image-data .upload-details {
	font-size: 0.75em;
}
.profile-image .button {
	float: left;
	width: 120px;
	margin: 18px 0 0 80px;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1350px) {
	.dashboard-content .form-box-items .form-box-item {
		float: none;
		width: 100%;
	}
}
@media screen and (max-width: 630px) {
	.profile-image .profile-image-data {
		float: none;
	}
	
	.profile-image .button {
		margin-top: 6px;
	}
}
.profile-notifications {
	margin: 0 auto 60px;
}
.profile-notifications .profile-notification {
	margin-bottom: 14px;
}
.profile-notifications .profile-notification:last-child {
	margin-bottom: 0;
}
.profile-notifications+.pager-wrap {
	text-align: right;
}
.profile-notifications+.pager-wrap .pager {
	display: inline-block;
}
.profile-notification {
	height: 76px;
	padding: 0 36px 0 16px;
	background-color: #fff;
	border: 1px solid #ebebeb;
	overflow: hidden;
	position: relative;
}
.profile-notification .notification-close {
	width: 7px;
	height: 7px;
	position: absolute;
	top: 10px;
	right: 12px;
	background: url("../images/dashboard/notif-close-icon.png") no-repeat center;
	opacity: .5;
	cursor: pointer;
}
.profile-notification .notification-close:hover {
	opacity: 1;
}
.profile-notification p {
	font-size: 0.8125em;
}
.profile-notification .profile-notification-date,
.profile-notification .profile-notification-body {
	float: left;
}
.profile-notification .profile-notification-date {
	width: 106px;
}
.profile-notification .profile-notification-date p {
	color: #b2b2b2;
	line-height: 74px;
}
.profile-notification .profile-notification-body {
	padding-left: 54px;
	position: relative;
}
.profile-notification .profile-notification-body .user-avatar {
	position: absolute;
	top: 17px;
	left: 0;
}
.profile-notification .profile-notification-body p {
	line-height: 74px;
}
.profile-notification .profile-notification-body p span {
	color: #2b373a;
	font-weight: 700;
}
.profile-notification .profile-notification-type {
	float: right;
}
.profile-notification .profile-notification-type .type-icon {
	color: #888;
	font-size: 18px;
	position: relative;
	top: 28px;
}
.profile-notification .profile-notification-type .type-icon.primary {
	color: #00d7b3;
}
.profile-notification .profile-notification-type .type-icon.secondary {
	color: #1396e1;
}
.profile-notification .profile-notification-type .type-icon.tertiary {
	color: #e61852;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 935px) {
	.profile-notifications {
		width: 570px;
		overflow: hidden;
	}
	
	.profile-notifications .profile-notification:nth-child(2n+2) {
		margin-right: 0;
	}
	
	.profile-notifications+.pager-wrap {
		text-align: center;
	}
	
	.profile-notification {
		float: left;
		width: 270px;
		height: 170px;
		margin-right: 30px;
	}
	
	.profile-notification .profile-notification-date {
		margin-right: 80px;
	}
	
	.profile-notification .profile-notification-body .user-avatar {
		top: 0;
	}
	
	.profile-notification .profile-notification-body p {
		line-height: 1.5em;
	}
	
	.profile-notification .profile-notification-type {
		float: none;
	}
}
@media screen and (max-width: 630px) {
	.profile-notifications {
		width: 270px;
	}
	
	.profile-notifications .profile-notification {
		margin-right: 0;
	}
}
.inbox-messages {
	border: 1px solid #ebebeb;
	padding-bottom: 36px;
	background-color: #fff;
}
.inbox-messages .inbox-message {
	border: none;
	border-bottom: 1px solid #ebebeb;
}
.inbox-messages .pager-wrap {
	text-align: right;
}
.inbox-messages .pager-wrap .pager {
	display: inline-block;
	margin: 36px 30px 0 0;
}
.inbox-messages-preview {
	border: 1px solid #ebebeb;
	overflow: hidden;
}
.inbox-messages-preview.full .inbox-message-preview {
	float: none;
	width: 100%;
	height: auto;
}
.inbox-messages-preview.full .inbox-message-preview-body {
	height: auto;
	overflow: hidden;
	border-bottom: none;
	padding-bottom: 26px;
}
.inbox-messages-preview.full .comment-list {
	padding: 0;
	border: 0;
}
.inbox-messages-preview.full .comment-list .comment-wrap {
	padding: 36px 30px 0 116px;
}
.inbox-messages-preview.full .comment-list .comment-wrap.comment-reply {
	padding-top: 56px;
}
.inbox-messages-preview.full .comment-list .comment-wrap.comment-reply .user-avatar {
	top: 66px;
}
.inbox-messages-preview.full .comment-list .comment-wrap.comment-reply .comment-reply-form textarea {
	height: 140px;
}
.inbox-messages-preview.full .comment-list .user-avatar {
	left: 28px;
}
.inbox-messages-preview .inbox-messages,
.inbox-messages-preview .inbox-message-preview {
	float: left;
	height: 730px;
}
.inbox-messages-preview .inbox-messages {
	width: 41%;
	border: none;
	border-right: 1px solid #ebebeb;
	padding-bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar {
	-webkit-appearance: none;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar:vertical {
	width: 12px;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar-thumb {
	background-color: #ebebeb;
	border-radius: 200px;
	border: 4px solid #fff;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar-track {
	background-color: #fff;
}
.inbox-messages-preview .inbox-message-preview {
	width: 59%;
}
.inbox-message-preview {
	background-color: #fff;
}
.inbox-message-preview .inbox-message-preview-header {
	height: 65px;
	border-bottom: 1px solid #ebebeb;
	padding: 0 24px;
}
.inbox-message-preview .inbox-message-preview-header .text-header,
.inbox-message-preview .inbox-message-preview-header .report {
	line-height: 65px;
}
.inbox-message-preview .inbox-message-preview-header .text-header {
	float: left;
	font-size: 1.375em;
}
.inbox-message-preview .inbox-message-preview-header .text-header img {
	position: relative;
	top: -1px;
	left: 6px;
}
.inbox-message-preview .inbox-message-preview-header .report {
	float: right;
	color: #b2b2b2;
	font-size: 0.75em;
}
.inbox-message-preview .inbox-message-preview-body {
	height: 605px;
	/*padding-bottom: 60px;*/
	
	border-bottom: 1px solid #ebebeb;
	overflow-y: auto;
	overflow-x: hidden;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar {
	-webkit-appearance: none;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar:vertical {
	width: 12px;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar-thumb {
	background-color: #ebebeb;
	border-radius: 200px;
	border: 4px solid #fff;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar-track {
	background-color: #fff;
}
.inbox-message-preview .inbox-message-preview-body .message-preview {
	float: left;
	clear: both;
}

/* .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) {

        float: right;

        padding: 42px 80px 0 40px; }

        .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) .user-avatar {

          left: auto;

          right: 24px; }

        .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) p {

          text-align: right; } */
.inbox-message-preview .inbox-reply-form {
	height: 58px;
	padding: 0 145px 0 10px;
	position: relative;
}
.inbox-message-preview .inbox-reply-form input[type="text"] {
	height: 100%;
	border: none;
}
.inbox-message-preview .inbox-reply-form .button {
	position: absolute;
	top: 15px;
	right: 12px;
}
.message-preview {
	max-width: 540px;
	padding: 42px 40px 0 80px;
	position: relative;
}
.message-preview .user-avatar {
	position: absolute;
	top: 40px;
	left: 24px;
}
.message-preview .text-header {
	margin-bottom: 4px;
}
.message-preview .timestamp {
	margin-bottom: 10px;
}
.inbox-message {
	height: 65px;
	background-color: #fff;
	border: 1px solid #ebebeb;
}
.inbox-message.v2 {
	height: 112px;
	padding: 0 54px 0 102px;
	position: relative;
}
.inbox-message.v2 p {
	line-height: 1em;
}
.inbox-message.v2 .inbox-message-actions label {
	position: absolute;
	top: 28px;
	left: 14px;
	margin: 0;
}
.inbox-message.v2 .inbox-message-actions .starred {
	float: none;
	margin: 0;
	position: absolute;
	top: 68px;
	left: 57px;
}
.inbox-message.v2 .inbox-message-author {
	position: static;
	padding-left: 0;
}
.inbox-message.v2 .inbox-message-author .text-header {
	margin-top: 20px;
}
.inbox-message.v2 .inbox-message-author .text-header .message-icon {
	display: inline;
	position: relative;
	top: 2px;
	left: 10px;
}
.inbox-message.v2 .inbox-message-author .user-avatar {
	top: 22px;
	left: 45px;
}
.inbox-message.v2 .inbox-message-content {
	width: 100%;
	max-height: 40px;
	margin-top: 12px;
}
.inbox-message.v2 .inbox-message-content p {
	font-size: 0.75em;
}
.inbox-message.v2 .inbox-message-content .text-header,
.inbox-message.v2 .inbox-message-content .description {
	max-width: 100%;
	line-height: 18px;
}
.inbox-message.v2 .inbox-message-content .text-header {
	margin-right: 8px;
}
.inbox-message.v2 .inbox-message-date {
	margin: 0;
	position: absolute;
	top: 27px;
	right: 28px;
}
.inbox-message.v2 .inbox-message-date p {
	font-size: 0.75em;
}
.inbox-message.v2 .inbox-message-type {
	display: none;
}
.inbox-message .inbox-message-actions,
.inbox-message .inbox-message-author,
.inbox-message .inbox-message-content,
.inbox-message .inbox-message-date,
.inbox-message .inbox-message-type {
	float: left;
}
.inbox-message p {
	font-size: 15px !important;
	line-height: 65px;
}
.inbox-message .inbox-message-actions {
	padding-left: 15px;
}
.inbox-message .inbox-message-actions label {
	float: left;
	margin-top: 19px;
}
.inbox-message .inbox-message-actions .starred {
	float: left;
	width: 16px;
	height: 15px;
	margin: 25px 25px 0 12px;
	position: relative;
	cursor: pointer;
}
.inbox-message .inbox-message-actions .starred img[alt^="star"] {
	position: absolute;
	top: 0;
	left: 0;
}
.inbox-message .inbox-message-actions .starred img[alt^="star"].visible {
	display: block;
}
.inbox-message .inbox-message-actions .starred img[alt^="star"].hidden {
	display: none;
}
.inbox-message .inbox-message-author {
	width: 240px;
	padding-left: 56px;
	position: relative;
}
.inbox-message .inbox-message-author .text-header .message-icon {
	display: none;
}
.inbox-message .inbox-message-author .user-avatar {
	position: absolute;
	top: 12px;
	left: 0;
}
.inbox-message .inbox-message-content {
	width: 45%;
}
.inbox-message .inbox-message-content p {
	float: left;
}
.inbox-message .inbox-message-content .text-header,
.inbox-message .inbox-message-content .description {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 72px;
}
.inbox-message .inbox-message-content .text-header {
	max-width: 22%;
	margin-right: 22px;
}
.inbox-message .inbox-message-content .text-header.normal {
	color: #888;
	font-weight: 600;
}
.inbox-message .inbox-message-content .description {
	max-width: 72%;
	color: #b2b2b2;
}
.inbox-message .inbox-message-date,
.inbox-message .inbox-message-type {
	float: right;
}
.inbox-message .inbox-message-date {
	margin-right: 42px;
}
.inbox-message .inbox-message-type {
	width: 58px;
	height: 65px;
	position: relative;
}
.inbox-message .message-icon {
	color: #888;
	font-size: 26px;
	position: absolute;
	top: 23px;
	left: 0;
}
.inbox-message .message-icon.primary {
	color: #00d7b3;
}
.inbox-message .message-icon.secondary {
	color: #1cbdf9;
}
.inbox-message .message-icon.tertiary {
	color: #e61852;
}
.style-tool-bar {
	height: 53px;
	padding: 0 14px;
	border: 1px solid #ebebeb;
	border-bottom: none;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	overflow: hidden;
	position: relative;
	top: 2px;
}
.style-tool-bar .text-header {
	float: left;
	margin-right: 20px;
	font-size: 0.8125em;
	line-height: 53px;
}
.style-tool-bar .style-tool-bar-options {
	float: left;
	margin-top: 9px;
	overflow: hidden;
}
.style-tool-bar .style-tool-bar-options li {
	float: left;
	border-right: 1px solid #ebebeb;
}
.style-tool-bar .style-tool-bar-options li:first-child {
	border-left: 1px solid #ebebeb;
}
.style-tool-bar .style-tool-bar-options li p {
	padding: 0 14px;
	color: #b2b2b2;
	font-size: 0.8125em;
	font-weight: 700;
	line-height: 32px;
	cursor: pointer;
	transition: all .3s ease;
}
.style-tool-bar .style-tool-bar-options li p:hover {
	color: #2b373a;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1260px) {
	.inbox-messages-preview .inbox-messages,
	.inbox-messages-preview .inbox-message-preview {
		float: none;
		width: 100%;
	}
	
	.inbox-messages-preview .inbox-messages {
		height: 223px;
		border-right: none;
	}
	
	.inbox-messages-preview .inbox-messages .inbox-message:last-child {
		border-bottom: none;
	}
	
	.inbox-messages-preview.full .inbox-message-preview .inbox-message-preview-header {
		border-top: none;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header {
		border-top: 1px solid #ebebeb;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-body {
		width: 100%;
	}
	
	.style-tool-bar {
		display: none;
	}
}
@media screen and (max-width: 935px) {
	.form-popup.new-message {
		width: 80%;
	}
}
@media screen and (max-width: 630px) {
	.inbox-messages-preview.full .comment-list .comment-wrap {
		padding-left: 66px;
	}
	
	.inbox-messages-preview.full .comment-list .user-avatar {
		left: 14px;
	}
}
@media screen and (max-width: 460px) {
	.form-popup.new-message {
		width: 95%;
	}
	
	.inbox-message.v2 {
		padding-left: 50px;
	}
	
	.inbox-message.v2 .inbox-message-actions label {
		top: 40px;
	}
	
	.inbox-message.v2 .inbox-message-actions .starred {
		top: 76px;
		left: 15px;
	}
	
	.inbox-message.v2 .inbox-message-author .text-header .message-icon {
		position: absolute;
		top: 16px;
		left: 14px;
	}
	
	.inbox-message.v2 .inbox-message-author .user-avatar {
		display: none;
	}
	
	.inbox-message.v2 .inbox-message-date {
		top: 21px;
		right: 14px;
	}
	
	.inbox-messages-preview.full .inbox-message-preview .inbox-message-preview-body {
		height: auto;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header {
		height: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header .text-header,
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header .report {
		float: none;
		line-height: 1.5em;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header .report {
		margin-top: 10px;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-body {
		height: 566px;
	}
	/* .inbox-messages-preview .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) {

      padding-right: 24px; } */
	
	.message-preview {
		padding-left: 24px;
	}
	
	.message-preview .user-avatar {
		display: none;
	}
}
.purchases-list {
	border: 1px solid #ebebeb;
	background-color: #fff;
	padding-bottom: 36px;
	overflow: hidden;
}
.purchases-list .pager-wrap {
	float: right;
	margin: 36px 30px 0 0;
}
.purchases-list-header {
	height: 50px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.purchases-list-header>* {
	float: left;
}
.purchases-list-header .text-header {
	line-height: 50px;
}
.purchases-list-header .purchases-list-header-price .text-header,
.purchases-list-header .purchases-list-header-download .text-header,
.purchases-list-header .purchases-list-header-recommend .text-header {
	text-align: center;
}
.purchases-list-header-date,
.purchase-item-date {
	width: 11.9%;
	padding-left: 24px;
}
.purchases-list-header-details,
.purchase-item-details {
	width: 33.6%;
}
.purchases-list-header-info,
.purchase-item-info {
	width: 14.5%;
}
.purchases-list-header-price,
.purchase-item-price {
	width: 11%;
}
.purchases-list-header-download,
.purchase-item-download {
	width: 14.1%;
}
.purchases-list-header-recommend,
.purchase-item-recommend {
	width: 14.9%;
}
.purchase-item {
	height: 120px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.purchase-item>* {
	float: left;
}
.purchase-item-date p {
	font-size: 0.75em;
	line-height: 120px;
}
.purchase-item-details {
	padding-top: 24px;
}
.purchase-item-details .item-preview .description {
	width: 180px;
}
.purchase-item-info {
	padding-top: 24px;
}
.purchase-item-info p {
	font-size: 0.75em;
	line-height: 1em;
	margin-bottom: 6px;
}
.purchase-item-price {
	padding-top: 44px;
}
.purchase-item-price .price {
	text-align: center;
}
.purchase-item-download {
	padding-top: 40px;
}
.purchase-item-download .button {
	margin: 0 auto;
}
.purchase-item-recommend {
	padding-top: 34px;
	text-align: center;
}
.purchase-item-recommend .recommendation-wrap {
	display: inline-block;
	margin-bottom: 12px;
}
.purchase-item-recommend .recommendation-wrap .recommendation:first-child {
	margin-right: 16px;
}
.purchase-item-recommend .text-header {
	font-size: 0.6875em;
}
.recommendation-wrap {
	text-align: center;
}
.recommendation-wrap .recommendation-item {
	display: inline-block;
	margin: 0 100px 34px 0;
}
.recommendation-wrap .recommendation-item:last-child {
	margin-right: 0;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1260px) {
	.purchases-list-header-date,
	.purchase-item-date {
		width: 14.9%;
	}
	
	.purchases-list-header-details,
	.purchase-item-details {
		width: 35.1%;
	}
	
	.purchases-list-header-info,
	.purchase-item-info {
		display: none;
	}
	
	.purchases-list-header-price,
	.purchase-item-price {
		width: 11%;
	}
	
	.purchases-list-header-download,
	.purchase-item-download {
		width: 19.1%;
	}
	
	.purchases-list-header-recommend,
	.purchase-item-recommend {
		width: 19.9%;
	}
}
@media screen and (max-width: 935px) {
	.purchase-item-details .item-preview {
		padding-left: 0;
	}
	
	.purchase-item-details .item-preview .product-preview-image {
		display: none;
	}
	
	.purchases-list-header-date,
	.purchase-item-date {
		width: 22%;
	}
	
	.purchases-list-header-details,
	.purchase-item-details {
		width: 30%;
	}
	
	.purchases-list-header-price,
	.purchase-item-price {
		display: none;
	}
	
	.purchases-list-header-download,
	.purchase-item-download {
		width: 24%;
	}
	
	.purchases-list-header-recommend,
	.purchase-item-recommend {
		width: 24%;
	}
}
@media screen and (max-width: 630px) {
	.purchases-list .pager-wrap {
		float: none;
		margin-right: 0;
		text-align: center;
	}
	
	.purchases-list .pager-wrap .pager {
		display: inline-block;
	}
	
	.purchases-list-header-date,
	.purchases-list-header-download,
	.purchases-list-header-recommend {
		display: none;
	}
	
	.purchases-list-header-details {
		width: 100%;
		text-align: center;
	}
	
	.purchase-item {
		height: auto;
		padding: 24px 0;
	}
	
	.purchase-item>* {
		float: none;
		width: 100%;
	}
	
	.purchase-item .purchase-item-date {
		padding: 0 0 10px;
	}
	
	.purchase-item .purchase-item-date p {
		text-align: center;
		line-height: 1em;
	}
	
	.purchase-item .purchase-item-details {
		padding-top: 0;
	}
	
	.purchase-item .purchase-item-details .item-preview {
		text-align: center;
	}
	
	.purchase-item .purchase-item-details .item-preview .description {
		margin: 0 auto;
	}
	
	.purchase-item .purchase-item-download {
		padding-top: 16px;
	}
	
	.purchase-item .purchase-item-recommend {
		padding-top: 18px;
	}
	
	.recommendation-wrap .recommendation-item {
		margin-right: 20px;
	}
	
	.recommendation-wrap .recommendation-item:last-child {
		margin-right: 0;
	}
}
.pack-boxes {
	overflow: hidden;
	margin: 0 auto 26px;
}
.pack-boxes .pack-box {
	float: left;
	margin-right: 20px;
	box-shadow: 4px 4px 20px #00000029;
}
.pack-boxes .pack-box:nth-child(5n+5) {
	margin-right: 0;
}
.pack-box {
	width: 31.33%;
	padding-top: 24px;
	padding-bottom: 24px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	position: relative;
}
.pack-box2 {
	width: 23%;
	padding-top: 24px;
	padding-bottom: 24px;
	border: 0px !important;
	border-bottom: 4px solid #BA34CD !important;
	background-color: none !important;
	position: relative;
}
.pack-box p {
	text-align: center;
}
.pack-box .pin {
	top: 12px;
	left: -6px;
}
.pack-box .text-header {
	margin-bottom: 32px;
	font-size: 16px;
	font-weight: 600 !important;
	font-style: initial;
}
.pack-box .price {
	line-height: 24px;
	margin-bottom: 18px;
	right: 10px;
}
.pack-box .price span {
	top: -5px;
	left: -7px;
}

/*.pack-box .credit {

    font-size: 0.8125em; padding: 20px 30px 0 30px;}*/
.pack-box .credit {
	font-size: 13px;
	padding: 20px 30px 0 30px;
}
.pack-box .button {
	margin: 28px auto 0;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
.pack-boxes_blog {
	max-width: 1170px;
	padding-left: 6px;
	margin: 0 auto;
	margin-bottom: 6px;
	padding-bottom: 40px;
}
.pack-boxes_blog h2 {
	text-align: center;
	margin: 0px;
	padding: 60px 0 20px;
	text-transform: capitalize;
	color: #2B373A;
}
.pack-boxes {
	width: 1170px;
	padding-left: 6px;
	margin-bottom: 6px;
	padding-bottom: 40px;
}
.pack-boxes h2 {
	text-align: center;
	margin: 0px;
	padding: 60px 0 20px;
	text-transform: capitalize;
	color: #2B373A;
}
.pack-boxes p {
	font-size: 16px;
	line-height: 28px;
	text-align: center;
	color: #8F9FA4;
	font-style: italic;
	font-weight: 200;
}
.pack-boxes .pack-box {
	margin-bottom: 20px;
	margin-top: 26px;
}
.pack-boxes .pack-box:nth-child(5n+5) {
	margin-right: 20px;
}
@media screen and (max-width: 1260px) {
	.pack-boxes {
		width: 706px;
	}
	
	.pack-boxes .pack-box:nth-child(4n+4) {
		margin-right: 20px;
	}
	
	.pack-boxes .pack-box:nth-child(3n+3) {
		margin-right: 0;
	}
}
@media screen and (max-width: 935px) {
	.pack-boxes {
		width: 468px;
	}
	
	.pack-boxes .pack-box:nth-child(3n+3) {
		margin-right: 20px;
	}
	
	.pack-boxes .pack-box:nth-child(2n+2) {
		margin-right: 0;
	}
}
@media screen and (max-width: 630px) {
	.pack-boxes {
		width: 230px;
	}
	
	.pack-boxes .pack-box {
		margin-right: 0;
	}
	
	.pack-boxes .pack-box:nth-child(3n+3) {
		margin-right: 0;
	}
}
.statement-form>label {
	float: left;
	margin: 0 6px;
	line-height: 32px;
}
.datepicker-wrap {
	float: left;
	position: relative;
}
.datepicker-wrap .icon-calendar {
	color: #b2b2b2;
	position: absolute;
	top: 8px;
	right: 8px;
	pointer-events: none;
}
.sale-data {
	border: 1px solid #ebebeb;
	overflow: hidden;
	margin-bottom: 26px;
}
.sale-data .sale-data-item {
	float: left;
	width: 25%;
	border-right: 1px solid #ebebeb;
}
.sale-data .sale-data-item:last-child {
	border-right: none;
}
.sale-data-item {
	height: 130px;
	padding: 65px 0 0 25px;
	background-color: #fff;
	position: relative;
}
.sale-data-item p {
	font-size: 0.8125em;
	line-height: 1em;
}
.sale-data-item .sl-icon {
	color: #00d7b3;
	font-size: 30px;
	position: absolute;
	top: 20px;
	left: 23px;
}
.sale-data-item .text-header.big,
.sale-data-item .price.big {
	float: left;
	margin-right: 12px;
}
.sale-data-item .price span {
	font-size: 0.61111em;
	top: -5px;
	left: -4px;
}
.sale-data-item .sale-data-item-info {
	margin-top: 5px;
}
.sale-data-item .sale-data-item-info .text-header {
	margin-bottom: 2px;
}
.transaction-list {
	padding-bottom: 36px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	overflow: hidden;
}
.transaction-list .transaction-list-item {
	border-bottom: 1px solid #ebebeb;
}
.transaction-list .pager-wrap {
	float: right;
	margin: 36px 32px 0 0;
}
.transaction-list-header {
	height: 50px;
	border-bottom: 1px solid #ebebeb;
	overflow: hidden;
}
.transaction-list-header>* {
	float: left;
}
.transaction-list-header .text-header {
	line-height: 50px;
}
.transaction-list-header-date,
.transaction-list-header-date,
.transaction-list-item-date {
	width: 10%;
	padding-left: 10px;
}
.transaction-list-header-author,
.transaction-list-item-author {
	width: 29.25%;
}
.transaction-list-header-item,
.transaction-list-item-item {
	width: 16%;
}
.transaction-list-header-detail,
.transaction-list-item-detail {
	width: 10.75%;
}
.transaction-list-header-code,
.transaction-list-item-code {
	width: 7.7%;
}
.transaction-list-header-price,
.transaction-list-item-price {
	width: 7.5%;
}
.transaction-list-header-cut,
.transaction-list-item-cut {
	width: 8.55%;
}
.transaction-list-header-earnings,
.transaction-list-item-earnings {
	width: 8.2%;
}
.transaction-list-header-icon,
.transaction-list-item-icon {
	width: 3%;
}
.transaction-list-header-price p,
.transaction-list-header-price .text-header,
.transaction-list-item-price p,
.transaction-list-item-price .text-header,
.transaction-list-header-cut p,
.transaction-list-header-cut .text-header,
.transaction-list-item-cut p,
.transaction-list-item-cut .text-header,
.transaction-list-header-earnings p,
.transaction-list-header-earnings .text-header,
.transaction-list-item-earnings p,
.transaction-list-item-earnings .text-header {
	text-align: center;
}
.transaction-list-item {
	height: 50px;
}
.transaction-list-item>* {
	float: left;
}
.transaction-list-item p {
	font-size: 0.8125em;
	line-height: 50px;
}
.transaction-list-item .transaction-list-item-icon {
	padding-top: 18px;
}
.transaction-icon {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background-color: #b2b2b2;
	position: relative;
}
.transaction-icon.primary {
	background-color: #00d7b3;
}
.transaction-icon.secondary {
	background-color: #1cbdf9;
}
.transaction-icon.tertiary {
	background-color: #e61852;
}
.transaction-icon .svg-plus,
.transaction-icon .svg-minus {
	fill: #fff;
	width: 5px;
	height: 5px;
	position: absolute;
	top: 4px;
	left: 4px;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1260px) {
	.sale-data {
		width: 100%;
		margin: 0 auto 26px;
		border-right: none;
	}
	
	.sale-data .sale-data-item {
		width: 50%;
	}
	
	.sale-data .sale-data-item:nth-child(3n+3) {
		clear: left;
	}
	
	.sale-data .sale-data-item:last-child {
		border-right: 1px solid #ebebeb;
	}
	
	.transaction-list-header-item,
	.transaction-list-item-item {
		width: 31.1%;
	}
	
	.transaction-list-header-cut,
	.transaction-list-item-cut {
		display: none;
	}
}
@media screen and (max-width: 935px) {
	.transaction-list-header-date,
	.transaction-list-item-date {
		width: 23%;
	}
	
	.transaction-list-header-author,
	.transaction-list-item-author {
		width: 25%;
	}
	
	.transaction-list-header-item,
	.transaction-list-item-item {
		width: 36%;
	}
	
	.transaction-list-header-detail,
	.transaction-list-item-detail {
		display: none;
	}
	
	.transaction-list-header-code,
	.transaction-list-item-code {
		display: none;
	}
	
	.transaction-list-header-price,
	.transaction-list-item-price {
		display: none;
	}
	
	.transaction-list-header-earnings,
	.transaction-list-item-earnings {
		width: 12%;
	}
	
	.transaction-list-header-icon,
	.transaction-list-item-icon {
		width: 4%;
	}
}
@media screen and (max-width: 630px) {
	.sale-data {
		border-bottom: none;
	}
	
	.sale-data .sale-data-item {
		width: 100%;
		border-bottom: 1px solid #ebebeb;
	}
	
	.transaction-list {
		padding: 0 15px;
	}
	
	.transaction-list-item {
		height: auto;
		padding: 20px 0px;
	}
	
	.transaction-list-item>* {
		float: none;
		width: 100%;
	}
	
	.transaction-list-item p,
	.transaction-list-item .text-header {
		line-height: 1em;
		text-align: left;
		margin-bottom: 6px;
	}
	
	.transaction-list-item .transaction-list-item-date,
	.transaction-list-item .transaction-list-item-icon {
		padding: 0;
	}
	
	.transaction-list-header-date,
	.transaction-list-header-author,
	.transaction-list-header-earnings,
	.transaction-list-header-icon {
		display: none;
	}
	
	.transaction-list-header-item {
		width: 100%;
	}
	
	.transaction-list-header-item .text-header {
		text-align: center;
	}
	
	.transaction-list-item-detail,
	.transaction-list-item-code,
	.transaction-list-item-price {
		display: block;
	}
}
.graph-stats-list {
	margin: 0 auto 26px;
	overflow: hidden;
}
.graph-stats-list .graph-stats-list-item {
	float: left;
}
.graph-stats-list .graph-stats-list-item:last-child {
	margin-right: 0;
}
.graph-stats-list-item {
	width: 24%;
	float: left;
	margin-left: 15%;
	padding: 18px 22px 0;
}
.graph-stats-list-item p,
.graph-stats-list-item .text-header {
	color: #fff;
}
.graph-stats-list-item h2 {
	font-size: 2.625em;
	margin-bottom: 2px;
}
.graph-stats-list-item p {
	font-size: 0.8125em;
}
.graph-stats-list-item .text-header {
	font-size: 1em;
}
.graph-stats-list-item.green {
	background-color: #00d7b3;
}
.graph-stats-list-item.blue {
	background-color: #108fe9;
}
.graph-stats-list-item.violet {
	background: linear-gradient(45deg, rgba(86, 130, 181, 0.49) 0%, rgb(77, 40, 152) 49%, rgba(187, 52, 205, 0.32) 100%);
	display: flow-root;
	border: 4px solid #fff;
	border-color: #fff;
	box-shadow: 0 2px 10px 0 rgba(2, 2, 2, 0.65);
}
.graph-stats-list-item.red {
	background-color: #ea2e68;
}
.graph-stats-list-item.bars {
	background-image: url("../images/dashboard/graphs/bars.png");
}
.graph-stats-list-item.line {
	background-image: url("../images/dashboard/graphs/line.png");
}
.graph-stats-list-item.step {
	background-image: url("../images/dashboard/graphs/step.png");
}
.graph-stats-list-item.curve {
	background-image: url("../images/dashboard/graphs/curve.png");
}
.form-box-item .chart-filters {
	position: absolute;
	top: 26px;
	right: 24px;
}
.chart-filters {
	overflow: hidden;
}
.chart-filters .chart-filter {
	float: left;
	margin-right: 30px;
	cursor: pointer;
}
.chart-filters .chart-filter:last-child {
	margin-right: 0;
}
.chart-filter p {
	float: left;
	margin-top: 4px;
	font-size: 0.6875em;
	line-height: 1em;
}
.chart-filter .sl-icon {
	float: left;
	margin-right: 8px;
	color: #b2b2b2;
}
.chart-filter .sl-icon.primary {
	color: #00d7b3;
}
.chart-filter .sl-icon.secondary {
	color: #1cbdf9;
}
.chart-filter .sl-icon.tertiary {
	color: #e61852;
}
.chart-filter form {
	position: relative;
	top: -4px;
}
.chart-filter form .select-block select {
	height: 26px;
	border: none;
	padding: 0 26px 0 12px;
	color: #2b373a;
	font-size: 12px;
	font-weight: 700;
	line-height: 26px;
}
.chart-filter form .select-block .svg-arrow {
	top: 8px;
	right: 5px;
}
.chart-filter .chart-legend {
	margin-top: 2px;
}
.chart-filter .chart-legend-item p {
	font-size: 0.6875em;
	margin-top: 0;
}
.form-box-addon {
	border: 1px solid #ebebeb;
	border-top: none;
	padding: 32px 0 32px 48px;
	background-color: #fff;
	position: relative;
	top: -26px;
	overflow: hidden;
}
.form-box-addon .chart-wrap {
	float: left;
	margin-right: 6.8%;
	overflow: hidden;
}
.form-box-addon .chart-legend {
	margin-top: 26px;
}
.form-box-addon .chart-meta {
	margin-top: 4px;
}
.main-activity-pie-chart-wrap {
	float: left;
	width: 100px;
	height: 100px;
	margin-right: 20px;
}
.colors-pie-chart-wrap {
	width: 176px;
	height: 176px;
	margin: 0 auto 30px;
	position: relative;
}
.colors-pie-chart-wrap .chart-description {
	width: 100%;
	text-align: center;
	position: absolute;
	top: 68px;
}
.colors-pie-chart-wrap .chart-description .text-header:first-child {
	font-size: 1.75em;
	margin-bottom: 6px;
}
.colors-pie-chart-wrap .chart-description .text-header:last-child {
	font-size: 0.8125em;
}
.bounce-pie-chart {
	width: 200px;
	height: 200px;
	padding-top: 56px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -100px;
}
.bounce-pie-chart p {
	font-size: 0.6875em;
	text-align: center;
}
.bounce-pie-chart .text-header.big {
	font-size: 3em;
	margin-bottom: 10px;
}
.bounce-pie-chart .text-header.small {
	font-size: 0.8125em;
	margin-bottom: 2px;
}
.chart-legend {
	float: left;
}
.chart-legend.full {
	float: none;
	width: 100%;
}
.chart-legend.full .chart-legend-item {
	margin-bottom: 16px;
}
.chart-legend.inline {
	float: none;
	display: inline-block;
	overflow: hidden;
}
.chart-legend.inline .chart-legend-item {
	float: left;
	margin: 0 20px 0 0;
}
.chart-legend.inline .chart-legend-item:last-child {
	margin-right: 0;
}
.chart-legend .chart-legend-item {
	margin-bottom: 22px;
}
.chart-legend .chart-legend-item:last-child {
	margin-bottom: 0;
}
.chart-legend-item {
	padding-left: 22px;
	position: relative;
	overflow: hidden;
}
.chart-legend-item .chart-legend-item-color {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.chart-legend-item .chart-legend-item-color.lightgreen {
	background-color: #03f1b6;
}
.chart-legend-item .chart-legend-item-color.blue {
	background-color: #108fe9;
}
.chart-legend-item .chart-legend-item-color.violet {
	background-color: #7c5ac2;
}
.chart-legend-item .chart-legend-item-color.red {
	background-color: #ea2e68;
}
.chart-legend-item .chart-legend-item-color.yellow {
	background-color: #ffdc1b;
}
.chart-legend-item p {
	float: left;
	font-size: 0.75em;
	line-height: 15px;
}
.chart-legend-item .text-header {
	float: right;
}
.chart-meta {
	overflow: hidden;
}
.chart-meta .chart-meta-item {
	float: left;
	margin-right: 8%;
}
.chart-meta .chart-meta-item:last-child {
	margin-right: 0;
}
.chart-meta-item .price:first-child,
.chart-meta-item .text-header:first-child {
	font-size: 2.625em;
}
.chart-meta-item .price:first-child>span,
.chart-meta-item .text-header:first-child>span {
	font-size: 0.57143em;
	margin-right: 5px;
	top: -6px;
}
.chart-meta-item .price:first-child {
	margin-bottom: 10px;
}
.chart-meta-item .text-header:first-child {
	margin-bottom: 18px;
}
.chart-meta-item .text-header,
.chart-meta-item p {
	text-align: center;
}
.chart-meta-item .text-header:last-child,
.chart-meta-item p:last-child {
	margin-top: 2px;
	font-size: 0.75em;
}
.plain-text-box .plain-text-box-item {
	margin-bottom: 20px;
}
.plain-text-box .plain-text-box-item:last-child {
	margin-bottom: 0;
}
.plain-text-box .plain-text-box-item p {
	margin-bottom: 20px;
	font-size: 15px;
    line-height: 24px;
}
.plain-text-box .plain-text-box-item p:last-child {
	margin-bottom: 0;
}
.plain-text-box .plain-text-box-item .text-header {
	margin-bottom: 0;
}
.pg-bar-list .pg-bar-list-item {
	margin-bottom: 12px;
}
.pg-bar-list .pg-bar-list-item:last-child {
	margin-bottom: 0;
}
.pg-bar-list-item .pg-bar-list-item-info {
	overflow: hidden;
}
.pg-bar-list-item .pg-bar-list-item-info p {
	font-size: 0.8125em;
}
.pg-bar-list-item .pg-bar-list-item-info .text-header:first-child {
	float: left;
}
.pg-bar-list-item .pg-bar-list-item-info .text-header:nth-child(2) {
	float: right;
}
.pg-bar-list-item .pg-bar-list-item-info .timestamp {
	clear: both;
	color: #888;
}
.recent-activity .recent-activity-item {
	border-bottom: 1px solid #ebebeb;
}
.recent-activity .recent-activity-item:last-child {
	border-bottom: 0;
}
.recent-activity-item {
	height: 60px;
	padding-left: 54px;
	position: relative;
	overflow: hidden;
}
.recent-activity-item p {
	font-size: 0.8125em;
	line-height: 60px;
}
.recent-activity-item .sl-icon {
	color: #888;
	font-size: 18px;
	position: absolute;
	top: 20px;
	left: 6px;
}
.recent-activity-item img[alt="close-icon"] {
	cursor: pointer;
	position: absolute;
	top: 26px;
	right: 7px;
}
.recent-activity-item-timestamp,
.recent-activity-item-info {
	float: left;
}
.recent-activity-item-timestamp {
	width: 15%;
}
.recent-activity-item-timestamp p {
	color: #b2b2b2;
}
.recent-activity-item-info {
	width: 85%;
	padding-left: 32px;
	position: relative;
}
.recent-activity-item-info .user-avatar {
	position: absolute;
	top: 18px;
	left: 0;
}
.popular-items .popular-item {
	border-bottom: 1px solid #ebebeb;
}
.popular-items .popular-item:last-child {
	border-bottom: none;
}
.popular-item {
	height: 70px;
	padding: 20px 20px 0 46px;
	overflow: hidden;
	position: relative;
}
.popular-item .popular-item-info {
	float: left;
}
.popular-item .popular-item-info .product-preview-image {
	position: absolute;
	top: 18px;
	left: 0;
}
.popular-item .popular-item-info .text-header {
	margin-bottom: 4px;
}
.popular-item .popular-item-meta {
	float: right;
}
.popular-item .popular-item-meta .metadata {
	margin-top: 4px;
}
.pie-chart-list {
	width: 520px;
	margin: 0 auto;
	overflow: hidden;
}
.pie-chart-list .pie-chart-item {
	float: left;
	margin: 0 40px 16px 0;
}
.pie-chart-list .pie-chart-item:nth-child(4n+4) {
	margin-right: 0;
}
.pie-chart-item {
	width: 100px;
	position: relative;
}
.pie-chart-item .country-chart {
	width: 100px;
	height: 100px;
	margin: 0 auto 8px;
}
.pie-chart-item p {
	text-align: center;
}
.pie-chart-item p:last-child {
	font-size: 0.625em;
}
.pie-chart-item img[alt="country-image"] {
	position: absolute;
	top: 20px;
	left: 50%;
	margin-left: -30px;
}
.text-icons {
	overflow: hidden;
}
.text-icons .text-icon {
	float: left;
	width: 146px;
	margin: 0 30px 40px 0;
	padding-top: 0;
}
.text-icons .text-icon:nth-child(3n+3) {
	margin-right: 0;
}
.text-icons .text-icon .text-header {
	margin-bottom: 2px;
}
.text-icons .text-icon p:last-child {
	font-size: 0.75em;
}
.text-icon {
	padding: 4px 0 20px 56px;
	position: relative;
}
.text-icon.light p:last-child {
	opacity: .5;
}
.text-icon .ticon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}
.text-icon .ticon .sl-icon {
	color: #fff;
	font-size: 18px;
	position: absolute;
	top: 12px;
	left: 12px;
}
.text-icon .ticon .sl-icon.icon-cup {
	left: 14px;
}
.text-icon .ticon.green {
	background-color: #00b092;
}
.text-icon .ticon.light_green {
	background-color: #79b741;
}
.text-icon .ticon.blue {
	background-color: #525aa8;
}
.text-icon .ticon.red {
	background-color: #c23160;
}
.text-icon .ticon.violet {
	background-color: #b533ca;
}
.text-icon .text-header {
	margin-bottom: 10px;
}
.text-icon p:last-child {
	font-size: 0.8125em;
	line-height: 20px;
}
.slider-wrap {
	text-align: center;
}
.numbers-slider .numbers-slider-item p {
	line-height: 1em;
	text-align: center;
}
.numbers-slider .numbers-slider-item p:last-child {
	font-size: 0.8125em;
	margin-top: 6px;
}
.numbers-slider .numbers-slider-item .text-header.big {
	font-size: 4.5em;
	margin-bottom: 34px;
}
.slider-pager {
	display: inline-block;
	margin-top: 40px;
	overflow: hidden;
}
.slider-pager>a {
	float: left;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #eff0f4;
	margin-right: 8px;
}
.slider-pager>a:last-child {
	margin-right: 0;
}
.slider-pager>a.active {
	background-color: #00d7b3;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 1500px) {
	.form-box-item.has-chart-filter-simple .chart-filters {
		right: auto;
		top: 60px;
		left: 24px;
	}
	
	.form-box-item.has-chart-filter-simple h4 {
		margin-bottom: 54px;
	}
	
	.popular-item {
		padding-right: 0;
	}
	
	.pie-chart-list {
		width: 380px;
	}
	
	.pie-chart-list .pie-chart-item:nth-child(4n+4) {
		margin-right: 40px;
	}
	
	.pie-chart-list .pie-chart-item:nth-child(3n+3) {
		margin-right: 0;
	}
	
	.text-icons {
		width: 322px;
	}
	
	.text-icons .text-icon:nth-child(3n+3) {
		margin-right: 30px;
	}
	
	.text-icons .text-icon:nth-child(2n+2) {
		margin-right: 0;
	}
}
@media screen and (max-width: 1350px) {
	.form-box-item.has-chart-filter-simple .chart-filters {
		top: 26px;
		right: 24px;
		left: auto;
	}
	
	.form-box-item.has-chart-filter-simple h4 {
		margin-bottom: 22px;
	}
	
	.pie-chart-list {
		width: 520px;
	}
	
	.pie-chart-list .pie-chart-item:nth-child(3n+3) {
		margin-right: 40px;
	}
	
	.pie-chart-list .pie-chart-item:nth-child(4n+4) {
		margin-right: 0;
	}
	
	.text-icons {
		width: 520px;
	}
	
	.text-icons .text-icon:nth-child(2n+2) {
		margin-right: 30px;
	}
	
	.text-icons .text-icon:nth-child(3n+3) {
		margin-right: 0;
	}
}
@media screen and (max-width: 1260px) {
	.form-box-addon {
		padding-left: 0;
		text-align: center;
	}
	
	.form-box-addon .chart-wrap {
		float: none;
		display: inline-block;
		margin: 0 0 30px 0;
	}
	
	.form-box-addon .chart-meta-wrap {
		text-align: center;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta {
		display: inline-block;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item {
		margin-right: 50px;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item:last-child {
		margin-right: 0;
	}
	
	.chart-legend.full {
		width: 222px;
		margin-left: auto;
		margin-right: auto;
	}
}
@media screen and (max-width: 935px) {
	.graph-stats-list {
		width: 570px;
		margin-bottom: 0;
	}
	
	.graph-stats-list .graph-stats-list-item {
		margin-bottom: 26px;
	}
	
	.graph-stats-list .graph-stats-list-item:nth-child(2n+2) {
		margin-right: 0;
	}
	
	.graph-stats-list-item {
		width: 270px;
		margin-right: 30px;
	}
	
	.form-box-item.has-chart-filter h4 {
		margin-bottom: 54px;
	}
	
	.form-box-item.has-chart-filter .chart-filters {
		right: auto;
		top: 60px;
		left: 24px;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item {
		margin-bottom: 30px;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item:nth-child(2n+2) {
		margin-right: 0;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item:nth-child(3n+3) {
		clear: left;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item:last-child {
		clear: left;
		margin-left: 40px;
	}
	
	.recent-activity {
		width: 510px;
		margin: 30px auto;
		overflow: hidden;
	}
	
	.recent-activity .recent-activity-item {
		float: left;
		width: 240px;
		height: auto;
		border: 1px solid #ebebeb;
		margin: 0 30px 30px 0;
		padding: 44px 24px 30px;
	}
	
	.recent-activity .recent-activity-item:nth-child(2n+2) {
		margin-right: 0;
	}
	
	.recent-activity .recent-activity-item:last-child {
		border-bottom: 1px solid #ebebeb;
	}
	
	.recent-activity .recent-activity-item p {
		line-height: 1em;
	}
	
	.recent-activity .recent-activity-item .sl-icon {
		top: 12px;
		left: 12px;
	}
	
	.recent-activity .recent-activity-item .recent-activity-item-timestamp,
	.recent-activity .recent-activity-item .recent-activity-item-info {
		width: 100%;
	}
	
	.recent-activity .recent-activity-item .recent-activity-item-timestamp p {
		position: absolute;
		top: 16px;
		left: 36px;
	}
	
	.recent-activity .recent-activity-item .recent-activity-item-info p {
		line-height: 20px;
	}
	
	.recent-activity .recent-activity-item .recent-activity-item-info .user-avatar {
		top: 6px;
		left: -10px;
	}
	
	.recent-activity .recent-activity-item img[alt="close-icon"] {
		top: 14px;
		right: 10px;
	}
	
	.modalLeft {
		border: transparent !important;
	}
	
	#timeCal .ui.input {
		font-size: 1em;
		margin-left: 19%;
	}
	
	.timeBox span.caret {
		float: none !important;
		margin: 4% -4% !important;
	}
	
	.ui.table td {
		width: 33% !important;
		float: left !important;
	}
}
@media screen and (max-width: 630px) {
	.graph-stats-list {
		width: 270px;
	}
	
	.graph-stats-list .graph-stats-list-item {
		margin-right: 0;
	}
	
	.form-box-item.has-chart-filter .chart-filters .chart-filter {
		margin-right: 5px;
	}
	
	.form-box-item.has-chart-filter .chart-filters .chart-filter p,
	.form-box-item.has-chart-filter .chart-filters .chart-filter .text-header {
		display: none;
	}
	
	.form-box-item.has-chart-filter .chart-filters .chart-filter .chart-legend-item p {
		display: block;
	}
	
	.recent-activity {
		width: 240px;
	}
	
	.recent-activity .recent-activity-item {
		float: none;
		margin-right: 0;
	}
	
	.popular-item {
		height: auto;
		padding-bottom: 20px;
	}
	
	.popular-item .popular-item-info,
	.popular-item .popular-item-meta {
		float: none;
	}
	
	.pie-chart-list {
		width: 240px;
	}
	
	.pie-chart-list .pie-chart-item:nth-child(2n+2) {
		margin-right: 0;
	}
	
	.text-icons {
		width: 322px;
	}
	
	.text-icons .text-icon:nth-child(3n+3) {
		margin-right: 30px;
	}
	
	.text-icons .text-icon:nth-child(2n+2) {
		margin-right: 0;
	}
	
	.modalLeft {
		border: transparent !important;
	}
	
	#timeCal .ui.input {
		font-size: 1em;
		margin-left: 19%;
		width: 100%;
	}
	
	.timeBox span.caret {
		float: none !important;
		margin: 11% -11% !important;
	}
	
	.ui.table td {
		width: 33% !important;
		float: left !important;
	}
}
@media screen and (max-width: 460px) {
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item {
		float: none;
		margin-right: 0;
	}
	
	.form-box-addon .chart-meta-wrap .chart-meta .chart-meta-item:last-child {
		margin-left: 0;
	}
	
	.form-box-item.has-chart-filter-full .chart-filters {
		right: auto;
		top: 60px;
		left: 24px;
	}
	
	.form-box-item.has-chart-filter-full h4 {
		margin-bottom: 54px;
	}
	
	.pie-chart-list {
		width: 100px;
	}
	
	.pie-chart-list .pie-chart-item {
		margin-right: 0;
	}
	
	.text-icons {
		width: 146px;
	}
	
	.text-icons .text-icon {
		margin-right: 0;
	}
	
	.text-icons .text-icon:nth-child(3n+3) {
		margin-right: 0;
	}
	
	.dropdownSelectStyle option {
		font-size: 9px;
	}
	
	#timeCal .ui.input {
		font-size: 1em;
		margin-left: 19%;
		width: 100%;
	}
	
	.timeBox span.caret {
		float: none !important;
		margin: 11% -11% !important;
	}
	
	.ui.table td {
		width: 33% !important;
		float: left !important;
	}
	
	.modalLeft {
		border: transparent !important;
	}
}
.upload-file {
	overflow: hidden;
	margin-bottom: 34px;
}
.upload-file.multiupload .upload-file-actions .button {
	visibility: hidden;
}
.upload-file p {
	font-size: 0.8125em;
}
.upload-file .upload-file-actions {
	float: left;
	width: 50%;
}
.upload-file .upload-file-actions .button {
	float: left;
	width: 120px;
	margin-right: 25px;
}
.upload-file .upload-file-actions p {
	float: left;
	line-height: 30px;
}
.upload-file .upload-file-progress {
	float: right;
	width: 342px;
}
.upload-file .upload-file-progress .upload-bar,
.upload-file .upload-file-progress .text-header {
	float: left;
}
.upload-file .upload-file-progress .upload-bar {
	width: 240px;
	top: 1px;
}
.upload-file .upload-file-progress .text-header {
	margin-left: 16px;
	line-height: 30px;
}
.upload-file .upload-file-progress .button {
	float: right;
	width: 30px;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 935px) {
	.upload-file .upload-file-actions,
	.upload-file .upload-file-progress {
		float: none;
		width: 100%;
		overflow: hidden;
	}
	
	.upload-file .upload-file-progress {
		margin-top: 20px;
	}
	
	.upload-file .upload-file-progress .button {
		float: none;
		clear: left;
	}
}
@media screen and (max-width: 460px) {
	.upload-file .upload-file-progress .upload-bar {
		width: 100%;
	}
	
	.upload-file .upload-file-progress .text-header {
		float: none;
		line-height: 1em;
		margin: 0;
		text-align: center;
	}
}
.product-settings {
	width: 30px;
	height: 30px;
	border-radius: 2px;
	background-color: #2b373a;
	position: absolute;
	top: 9px;
	right: 7px;
	z-index: 9000;
	cursor: pointer;
	transition: all .3s ease;
}
.product-settings.primary:hover,
.product-settings.primary.active {
	background-color: #00d7b3;
}
.product-settings.secondary:hover,
.product-settings.secondary.active {
	background-color: #1cbdf9;
}
.product-settings.tertiary:hover,
.product-settings.tertiary.active {
	background-color: #e61852;
}
.product-settings .sl-icon {
	color: #fff;
	font-size: 17px;
	position: relative;
	top: 6px;
	left: 6px;
}
.product-settings+.dropdown {
	box-shadow: 0px 0px 16px 0px rgba(1, 2, 0, 0.2);
	top: 54px;
	right: -8px;
}
.product-settings+.dropdown .dp-triangle {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	position: absolute;
	top: -8px;
	right: 22px;
}
@media screen and (max-width: 1505px) {
	.dashboard-content .column4-wrap {
		width: 870px;
	}
	
	.dashboard-content .column4-wrap .column:nth-child(4n+4) {
		margin-right: 30px;
	}
	
	.dashboard-content .column4-wrap .column:nth-child(3n+3) {
		margin-right: 0;
	}
}
@media screen and (max-width: 935px) {
	.dashboard-content .column4-wrap {
		width: 570px;
	}
	
	.dashboard-content .column4-wrap .column {
		margin-bottom: 60px;
	}
	
	.dashboard-content .column4-wrap .column:nth-child(3n+3) {
		margin-right: 30px;
	}
	
	.dashboard-content .column4-wrap .column:nth-child(2n+2) {
		margin-right: 0;
	}
}
@media screen and (max-width: 630px) {
	.dashboard-content .column4-wrap {
		width: 270px;
	}
	
	.dashboard-content .column4-wrap .column {
		margin-right: 0;
	}
}
.withdraw-history .transaction-history {
	position: relative;
	top: -22px;
}
.transaction-history .transaction-history-item {
	border-bottom: 1px solid #ebebeb;
}
.transaction-history .transaction-history-item:last-child {
	border-bottom: none;
}
.transaction-history-item {
	height: 50px;
	background-color: #fff;
	overflow: hidden;
}
.transaction-history-item p,
.transaction-history-item .text-header {
	font-size: 0.8125em;
	line-height: 50px;
}
.transaction-history-item>* {
	float: left;
}
.transaction-history-item-date {
	width: 23.3%;
}
.transaction-history-item-mail {
	width: 48%;
}
.transaction-history-item-amount {
	width: 17.2%;
}
.transaction-history-item-status {
	width: 11.5%;
}
.transaction-history-item-status p {
	text-align: right;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 630px) {
	.transaction-history-item {
		height: auto;
		padding: 20px 24px 14px;
	}
	
	.transaction-history-item p,
	.transaction-history-item .text-header {
		line-height: 1em;
		margin-bottom: 6px;
	}
	
	.transaction-history-item>* {
		float: none;
		width: 100%;
	}
	
	.transaction-history-item-status p {
		text-align: left;
	}
}
.alert-boxes-preview {
	overflow: hidden;
}
.alert-boxes-preview .alert-boxes-preview-description {
	float: left;
	width: 38%;
}
.alert-boxes-preview .alert-boxes-preview-description p {
	font-size: 0.8125em;
	line-height: 20px;
	margin-bottom: 20px;
}
.alert-boxes-preview .alert-boxes-preview-description p:last-child {
	margin-bottom: 0;
}
.alert-boxes-preview .alert-boxes-preview-description .text-header {
	font-size: 0.875em;
	line-height: 1em;
}
.alert-boxes-preview .alert-boxes-preview-links {
	float: right;
	width: 55%;
}
.alert-boxes-preview .alert-boxes-preview-links .button {
	float: left;
	width: 48%;
	margin-bottom: 20px;
}
.alert-boxes-preview .alert-boxes-preview-links .button:nth-child(2n+2) {
	float: right;
}
.alert-box {
	width: 300px;
	display: none;
	padding: 34px 24px 26px;
	border: 1px solid #ebebeb;
	background-color: #fff;
	box-shadow: 0px 0px 16px 0px rgba(1, 2, 0, 0.2);
	position: relative;
}
.alert-box p {
	font-size: 0.8125em;
	line-height: 20px;
}
.alert-box .text-header {
	font-size: 1em;
	line-height: 1em;
}
.alert-box img[alt="close-icon"] {
	position: absolute;
	top: 10px;
	right: 12px;
	opacity: .5;
	cursor: pointer;
}
.alert-box img[alt="close-icon"]:hover {
	opacity: 1;
}
.alert-box.survey {
	padding-top: 60px;
}
.alert-box.survey p {
	text-align: center;
}
.alert-box.survey .survey-img {
	width: 66px;
	height: 66px;
	position: absolute;
	top: -33px;
	left: 50%;
	margin-left: -33px;
}
.alert-box.survey .survey-img img {
	border-radius: 50%;
}
.alert-box.survey .text-header {
	margin-bottom: 20px;
}
.alert-box.survey .timestamp {
	margin: 10px 0 30px;
}
.alert-box.survey .button {
	width: 100%;
}
.alert-box.review .text-header {
	margin-bottom: 20px;
}
.alert-box.review .timestamp {
	margin: 10px 0 30px;
}
.alert-box.review .review-buttons {
	overflow: hidden;
}
.alert-box.review .review-buttons .button {
	float: left;
	width: 120px;
}
.alert-box.review .review-buttons .button:last-child {
	float: right;
}
.alert-box.review .review-buttons .sl-icon {
	font-size: 18px;
	position: relative;
	top: 3px;
}
.alert-box.review .review-buttons .sl-icon.icon-dislike {
	top: 4px;
}
.alert-box.item {
	min-height: 80px;
	padding: 20px 80px 12px 70px;
}
.alert-box.item .user-avatar {
	position: absolute;
	top: 20px;
	left: 16px;
}
.alert-box.item p.info {
	font-size: 0.6875em;
	line-height: 14px;
}
.alert-box.item p.timestamp {
	font-size: 0.625em;
}
.alert-box.item .sl-icon {
	color: #00d7b3;
	font-size: 18px;
	position: absolute;
	top: 30px;
	right: 20px;
}
.alert-box.message {
	width: 400px;
	height: 140px;
	padding: 34px 40px 0 124px;
}
.alert-box.message.info .message-type {
	background: url("../images/dashboard/alert-info.png") no-repeat 24px 40px #1cbdf9;
}
.alert-box.message.success .message-type {
	background: url("../images/dashboard/alert-success.png") no-repeat 24px 40px #00d7b3;
}
.alert-box.message.error .message-type {
	background: url("../images/dashboard/alert-error.png") no-repeat 24px 40px #ea2e68;
}
.alert-box.message .message-type {
	width: 100px;
	height: 138px;
	position: absolute;
	top: 0;
	left: 0;
}
.alert-box.message .text-header {
	margin-bottom: 20px;
}
.alert-box.message .info {
	overflow: hidden;
}
pre {
	padding: 24px 20px;
	background-color: #f5f5f5;
	border: 1px solid #ebebeb;
}

/*-------------------

  	MEDIA QUERIES

-------------------*/
@media screen and (max-width: 935px) {
	.alert-boxes-preview .alert-boxes-preview-description,
	.alert-boxes-preview .alert-boxes-preview-links {
		float: none;
		width: 100%;
	}
	
	.alert-boxes-preview .alert-boxes-preview-links {
		margin-top: 30px;
	}
}
@media screen and (max-width: 630px) {
	.alert-boxes-preview .alert-boxes-preview-links .button {
		float: none;
		width: 100%;
	}
	
	.alert-boxes-preview .alert-boxes-preview-links .button:nth-child(2n+2) {
		float: none;
	}
	
	.header-wrap {
		background: #f0f0f0;
	}
	
	h1 span {
		color: #4E2A99
	}
}

/*# sourceMappingURL=style.css.map */
.city {
	background: url(../images/cit.png) no-repeat center bottom;
	background-size: contain;
	padding-bottom: 50px;
}
.business {}
.bg_no {
	background: transparent !important;
	min-height: 409px;
}
.business h4 {
	margin-bottom: 5px;
	margin-top: 24px;
}
.ht-banner .ht-banner-img4 {
	width: 80%;
	/*! height: 250px; */
	
	position: absolute;
	/*! top: 80px; */
	/*! left: 175px; */
	
	bottom: -4px;
}

/*====================home slider==============================*/
.cb-slideshow,
.cb-slideshow:after {
	width: 100%;
	/*height: 100%;*/
	
	top: 0px;
	left: 0px;
	z-index: 0;
}
.cb-slideshow:after {
	content: '';
	background: transparent url(../images/pattern.png) repeat top left;
}
.cb-slideshow li span {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	color: transparent;
	background-size: cover;
	background-position: 50% 50%;
	background-repeat: none;
	opacity: 0;
	z-index: 0;
	-webkit-backface-visibility: hidden;
	-webkit-animation: imageAnimation 16s linear infinite 0s;
	-moz-animation: imageAnimation 16s linear infinite 0s;
	-o-animation: imageAnimation 16s linear infinite 0s;
	-ms-animation: imageAnimation 16s linear infinite 0s;
	animation: imageAnimation 16s linear infinite 0s;
}
.cb-slideshow li div {
	position: absolute;
	bottom: 30px;
	left: 0px;
	width: 100%;
	text-align: center;
	opacity: 0;
	color: #fff;
	-webkit-animation: titleAnimation 36s linear infinite 0s;
	-moz-animation: titleAnimation 36s linear infinite 0s;
	-o-animation: titleAnimation 36s linear infinite 0s;
	-ms-animation: titleAnimation 36s linear infinite 0s;
	animation: titleAnimation 36s linear infinite 0s;
}
.cb-slideshow li div h3 {
	font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
	font-size: 240px;
	padding: 0;
	line-height: 200px;
}
.cb-slideshow li:nth-child(1) span {
	background-image: url(../images/home_banner2.jpg);
	-webkit-animation-delay: 6s;
	-moz-animation-delay: 6s;
	-o-animation-delay: 6s;
	-ms-animation-delay: 6s;
	animation-delay: 6s;
}

/* Animation for the slideshow images */
@-webkit-keyframes imageAnimation {
	0% {
		opacity: 0;
		-webkit-animation-timing-function: ease-in;
	}
	
	8% {
		opacity: 1;
		-webkit-animation-timing-function: ease-out;
	}
	
	17% {
		opacity: 1
	}
	
	25% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@-moz-keyframes imageAnimation {
	0% {
		opacity: 0;
		-moz-animation-timing-function: ease-in;
	}
	
	8% {
		opacity: 1;
		-moz-animation-timing-function: ease-out;
	}
	
	17% {
		opacity: 1
	}
	
	25% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@-o-keyframes imageAnimation {
	0% {
		opacity: 0;
		-o-animation-timing-function: ease-in;
	}
	
	8% {
		opacity: 1;
		-o-animation-timing-function: ease-out;
	}
	
	17% {
		opacity: 1
	}
	
	25% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@-ms-keyframes imageAnimation {
	0% {
		opacity: 0;
		-ms-animation-timing-function: ease-in;
	}
	
	8% {
		opacity: 1;
		-ms-animation-timing-function: ease-out;
	}
	
	17% {
		opacity: 1
	}
	
	25% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@keyframes imageAnimation {
	0% {
		opacity: 0;
		animation-timing-function: ease-in;
	}
	
	8% {
		opacity: 1;
		animation-timing-function: ease-out;
	}
	
	17% {
		opacity: 1
	}
	
	25% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}

/* Animation for the title */
@-webkit-keyframes titleAnimation {
	0% {
		opacity: 0
	}
	
	8% {
		opacity: 1
	}
	
	17% {
		opacity: 1
	}
	
	19% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@-moz-keyframes titleAnimation {
	0% {
		opacity: 0
	}
	
	8% {
		opacity: 1
	}
	
	17% {
		opacity: 1
	}
	
	19% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@-o-keyframes titleAnimation {
	0% {
		opacity: 0
	}
	
	8% {
		opacity: 1
	}
	
	17% {
		opacity: 1
	}
	
	19% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@-ms-keyframes titleAnimation {
	0% {
		opacity: 0
	}
	
	8% {
		opacity: 1
	}
	
	17% {
		opacity: 1
	}
	
	19% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}
@keyframes titleAnimation {
	0% {
		opacity: 0
	}
	
	8% {
		opacity: 1
	}
	
	17% {
		opacity: 1
	}
	
	19% {
		opacity: 0
	}
	
	100% {
		opacity: 0
	}
}

/* Show at least something when animations not supported */
.no-cssanimations .cb-slideshow li span {
	opacity: 1;
}
@media screen and (max-width: 1140px) {
	.cb-slideshow li div h3 {
		font-size: 140px
	}
}
@media screen and (max-width: 600px) {
	.cb-slideshow li div h3 {
		font-size: 80px
	}
	
	header {
		min-height: 67px;
	}
	
	.menu-bar {
		display: none;
	}
	
	.banner-wrap {
		background-repeat: no-repeat;
		background: url(../images/mibile_banner.jpg);
		background-size: contain;
	}
	
	.cb-slideshow li:nth-child(1) span {
		background-repeat: no-repeat;
		display: none;
		background-position: top;
		background-size: contain;
	}
	
	.banner {
		padding-top: 10px;
		min-height: 343px !important;
	}
	
	.banner h5 {
		font-size: 22px;
		color: #353535;
	}
	
	.banner h1 {
		font-size: 30px;
		margin-bottom: 10px;
		color: #353535;
		line-height: 36px;
	}
	
	.banner p {
		display: none;
	}
	
	.banner img[alt="banner-img"] {
		display: none;
	}
	
	.city {
		background-size: 234%;
	}
	
	.more_div {
		float: none !important;
		margin: 0 auto !important;
		margin-right: auto !important;
		clear: both;
	}
	
	.service-list .service-item {
		margin-bottom: 0px;
	}
	
	.column3-wrap .column {
		width: 50%;
		padding-top: 77px !important;
		padding-left: 2% !important;
		padding-right: 2% !important;
	}
	
	.search-widget {
		width: 970px;
		height: 122px;
		padding: 36px 0 0 52px;
		border-radius: 4px;
		position: absolute;
		left: 50%;
		margin-left: -485px;
		background: url("../images/searchbar_texture.png") no-repeat center, linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
		background-size: cover;
		border-top: 1px solid #5149a3;
		border-bottom: 1px solid #5149a3;
	}
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 2px 2px 6px #e6e6e6;
}

/*** 



====================================================================

		Property Section

====================================================================



***/
.property-section {
	position: relative;
	padding: 120px 0 80px;
	overflow: hidden !important;
}
.property-section.alternate {
	padding-top: 0;
}
.property-block {
	position: relative;
	margin-bottom: 40px;
	padding: 0px;
	font-family: "Titillium Web", sans-serif;
}
.property-block .inner-box {
	position: relative;
}
.property-block .image-box {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.property-block .image-box .single-item-carousel {
	position: relative;
}
.property-block .image-box .owl-nav {
	position: absolute;
	left: 0;
	width: 100%;
	top: 50%;
	margin-top: -50px;
}
.property-block .image-box .owl-nav .owl-next,
.property-block .image-box .owl-nav .owl-prev {
	position: absolute;
	width: 25px;
	height: 100px;
	text-align: center;
	line-height: 100px;
	font-size: 18px;
	color: #ffffff;
	font-weight: 400;
	background-color: rgba(34, 34, 34, .50);
	-webkit-border-radius: 0 8px 8px 0;
	-moz-border-radius: 0 8px 8px 0;
	-ms-border-radius: 0 8px 8px 0;
	-o-border-radius: 0 8px 8px 0;
	border-radius: 0 8px 8px 0;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .image-box .owl-nav .owl-next {
	left: auto;
	right: 0;
	-webkit-border-radius: 8px 0 0 8px;
	-moz-border-radius: 8px 0 0 8px;
	-ms-border-radius: 8px 0 0 8px;
	-o-border-radius: 8px 0 0 8px;
	border-radius: 8px 0 0 8px;
}
.property-block .image-box .owl-nav .owl-next:hover,
.property-block .image-box .owl-nav .owl-prev:hover {
	background-color: rgba(0, 0, 0, .80);
}
.property-block .image-box .image {
	position: relative;
	margin: 0;
}
.property-block .image-box .image a {
	position: relative;
	display: block;
	z-index: 9;
}
.property-block .image-box .image:before {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 40%;
	width: 100%;
	background: -moz-linear-gradient(top, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.99) 99%, rgba(34, 34, 34, 1) 100%);
	/* FF3.6-15 */
	
	background: -webkit-linear-gradient(top, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.99) 99%, rgba(34, 34, 34, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	
	background: linear-gradient(to bottom, rgba(34, 34, 34, 0) 0%, rgba(34, 34, 34, 0.99) 99%, rgba(34, 34, 34, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00222222', endColorstr='#222222', GradientType=0);
	/* IE6-9 */
	
	content: "";
	z-index: 99;
}
.property-block .image-box .video-link {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
.property-block .image-box .video-link .icon {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
	font-size: 50px;
	color: #ffffff;
	border-radius: 50%;
	background-color: #000000;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms linear;
}
.property-block .inner-box:hover .image-box .video-link .icon {
	-webkit-transform: scale(1.3) rotate(360deg);
	-moz-transform: scale(1.3) rotate(360deg);
	-ms-transform: scale(1.3) rotate(360deg);
	-o-transform: scale(1.3) rotate(360deg);
	transform: scale(1.3) rotate(360deg);
}
.property-block .image-box .image img {
	display: block;
	width: 100%;
	height: 100%;
}

/*

.property-block .image-box .image:after {

    position: absolute;

    content:"";

    height:100%;

    width:100%;

    top:0;

    left:0;

    background: linear-gradient(45deg, rgba(86,130,181,0.5) 0%, rgba(77,40,152,0.5) 49%, rgba(187,52,205,0.5) 100%);

}

*/
.property-block .image-box .for {
	position: absolute;
	left: -75px;
	top: 25px;
	font-size: 13px;
	line-height: 23px;
	color: #ffffff;
	font-weight: 700;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	transition: all 300ms ease;
	padding: 0 80px;
	text-align: center;
	z-index: 9;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .inner-box:hover .for {
	background-color: #2b2b2b;
}
.property-block .inner-box:hover .for:before {
	border-top-color: #2b2b2b;
}
.property-block .image-box .option-box {
	position: absolute;
	display: inline-block;
	left: 0;
	bottom: 0;
	display: block;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	z-index: 9999;
}
.property-block .inner-box:hover .image-box .option-box {
	opacity: 1;
	visibility: visible;
}
.property-block .image-box .option-box li {
	position: relative;
	display: inline-block;
	height: 60px;
	width: 60px;
	background-color: #00c0ff;
	text-align: center;
	margin: 0 -30px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .image-box .option-box li:nth-child(2) {
	z-index: 9;
}
.property-block .inner-box:hover .image-box .option-box li {
	margin: 0 -2px;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}
.property-block .image-box .option-box li:before {
	position: absolute;
	top: 0;
	right: -2px;
	font-size: 20px;
	line-height: 60px;
	color: rgba(255, 255, 255, 0.20);
	content: "|"
}
.property-block .image-box .option-box li a {
	color: #ffffff;
	display: block;
	font-size: 20px;
	line-height: 60px;
	font-weight: 400;
	text-align: center;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .image-box .option-box li a:hover {
	color: #222222;
}
.property-block .image-box .featured {
	position: absolute;
	right: 0;
	top: 25px;
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0 7px;
	z-index: 9;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	transition: all 300ms ease;
}
.property-block .image-box .featured:before {
	position: absolute;
	left: -10px;
	top: 0;
	width: 0;
	height: 0;
	border-top: 20px solid linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	border-left: 10px solid transparent;
	content: "";
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .image-box .info {
	position: absolute;
	bottom: 10px;
	width: 100%;
	padding: 0 20px;
	z-index: 99;
}
.property-block .image-box .info li {
	position: relative;
	float: right;
	text-align: right;
	width: 100%;
	font-size: 12px;
	line-height: 15px;
	color: #ffffff;
	font-weight: 400;
	z-index: 9;
	margin-bottom: 8px;
}
.property-block .image-box .info li i {
	display: inline-block;
	font-size: 16px;
	color: #00c0ff;
	margin-right: 8px;
}
.property-block .image-box .info li a {
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .image-box .info li a:hover {
	color: #00c0ff;
}
.property-block .lower-content {
	position: relative;
	padding: 10px 0 0;
	background: #f5f5f5;
}
.property-block .lower-content .thumb {
	position: absolute;
	right: 25px;
	top: -35px;
	height: 70px;
	width: 70px;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, 0.30);
	overflow: hidden;
	z-index: 99;
}
.property-block .tags {
	position: relative;
	margin-bottom: 7px;
}
.property-block .tags li {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	color: #00c0ff;
	font-weight: 400;
}
.property-block .tags li a {
	color: #00c0ff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block .tags li a:hover {
	color: #222222;
}
element {}
.property-block h3 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 1.2em;
	color: #222222;
	font-weight: 600;
	margin-bottom: 10px;
	text-transform: uppercase;
	text-align: left;
	padding: 0 20px 10px 20px;
	font-weight: 900;
}
.property-block h3 a {
	color: #222222;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.property-block h3 a:hover {
	color: #00c0ff;
}
.property-block .lucation {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #777777;
	font-weight: 400;
	text-align: left;
	margin-bottom: 18px;
	width: 90%;
	margin: 0 auto;
	padding-bottom: 10px;
}
.property-block .lucation i {
	color: #00c0ff;
	font-size: 18px;
	margin-right: 4px;
}
.property-block .property-info {
	position: relative;
	margin-bottom: 30px;
}
.property-block .property-info li {
	position: relative;
	float: left;
	width: 50%;
	padding-left: 20px;
	font-size: 14px;
	line-height: 34px;
	color: #777777;
	cursor: default;
	font-weight: 400;
}
.property-block .property-info li i {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 24px;
	color: #00c0ff;
	line-height: 40px;
}
.property-block .property-price {
	position: absolute;
	width: 100%;
	bottom: -10px;
}
.property-block .property-price .read-more {
	position: relative;
	float: left;
	width: 45%;
	margin-left: 10px;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	transition: all 300ms ease;
	border-radius: 25px;
}
.property-block .property-price .read-more .theme-btn {
	position: relative;
	display: block;
	line-height: 20px;
	padding: 10px 10px;
	font-size: 15px;
	color: #ffffff;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	border-radius: 35px;
}
.property-block .property-price .read-more:hover {
	background-color: #222222;
}
.property-block .property-price .price {
	position: relative;
	float: right;
	width: 40%;
	font-size: 18px;
	line-height: 20px;
	color: #ffffff;
	font-weight: 700;
	padding: 10px 10px;
	background-color: #5e5e5e;
	text-align: center;
	border-radius: 25px;
}
.load-more-btn {
	position: relative;
	margin-bottom: 40px;
}
.load-more-btn a {
	padding: 10px 30px;
	line-height: 21px;
	border-radius: 30px;
	letter-spacing: 1px;
	font-size: 13px;
	font-family: 'Raleway', sans-serif;
}

/*** 



====================================================================

		Popular Places Section

====================================================================



***/
.popular-places-section {
	position: relative;
	padding: 120px 0 110px;
}
.popular-places-section .masonry-items-container {
	position: relative;
	margin: 0 -5px;
}
.popular-places-section .small-item {
	width: 25%;
}
.popular-places-section .medium-item {
	width: 50%;
}
.popular-item {
	position: relative;
	float: left;
	padding: 0 5px;
	margin-bottom: 10px;
}
.popular-item .inner-box {
	position: relative;
}
.popular-item .image-box {
	position: relative;
}
.popular-item .image {
	position: relative;
	overflow: hidden;
	margin-bottom: 0;
}
.popular-item .image:before {
	position: absolute;
	left: -25%;
	top: -50%;
	height: 60%;
	width: 150%;
	content: "";
	opacity: 0;
	background-color: #00c0ff;
	transform: skewY(25deg);
	-webkit-transition: all 500ms linear;
	-moz-transition: all 300ms linear;
	-ms-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 400ms linear;
}
.popular-item .image-box:hover .image:before {
	height: 200%;
	opacity: 0.90;
}
.popular-item .image img {
	display: block;
	width: 100%;
	height: auto;
}
.popular-item .info-box {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	padding: 25px 30px;
}
.popular-item .category {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 12px;
	font-family: "Raleway", sans-serif;
}
.popular-item .place {
	position: relative;
	display: block;
	text-align: left;
	font-size: 30px;
	line-height: 1.2em;
	color: #ffffff;
	font-weight: 500;
	margin-bottom: 5px;
}
.popular-item .place a {
	display: inline-block;
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.popular-item .place a:hover {
	color: #222222;
}
.popular-item .properties {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 400;
}
.popular-item .properties a {
	display: inline-block;
	color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.popular-item .properties a:hover {
	color: #222222;
}
.popular-item .view-all {
	position: absolute;
	right: 0;
	bottom: 0;
	padding-right: 25px;
	padding-bottom: 30px;
	opacity: 0;
	visibility: hidden;
}
.popular-item .image-box:hover .view-all {
	visibility: visible;
	opacity: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}
.popular-item .view-all:before {
	position: absolute;
	top: 7px;
	right: 100%;
	width: 0px;
	height: 4px;
	background-color: #ffffff;
	content: '';
	margin-right: 12px;
}
.popular-item .image-box:hover .view-all:before {
	width: 60px;
	-webkit-transition: width 300ms ease;
	-moz-transition: width 300ms ease;
	-ms-transition: width 300ms ease;
	-o-transition: width 300ms ease;
	transition: width 300ms ease;
	-webkit-transition-delay: 600ms;
	-moz-transition-delay: 600ms;
	-ms-transition-delay: 600ms;
	-o-transition-delay: 600ms;
	transition-delay: 600ms;
}
.popular-item .view-all:after {
	position: absolute;
	top: 16px;
	right: 100%;
	width: 0px;
	height: 2px;
	background-color: #ffffff;
	content: '';
	margin-right: 12px;
}
.popular-item .image-box:hover .view-all:after {
	width: 40px;
	-webkit-transition: width 300ms ease;
	-moz-transition: width 300ms ease;
	-ms-transition: width 300ms ease;
	-o-transition: width 300ms ease;
	transition: width 300ms ease;
	-webkit-transition-delay: 900ms;
	-moz-transition-delay: 900ms;
	-ms-transition-delay: 900ms;
	-o-transition-delay: 900ms;
	transition-delay: 900ms;
}
.popular-item .view-all a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 700;
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.popular-item .view-all a:hover {
	color: #222222;
}
.popular-places-section .load-more-btn {
	margin-bottom: 0;
	margin-top: 30px;
}
.log_bg {
	background: url(../images/login.jpg) no-repeat;
	background-size: cover;
}
.regiter_bg {
	background: url(../images/regiter.jpg) no-repeat bottom;
	background-size: cover;
}
.regiter_bg2 {
	background: url(../images/regiter2.jpg) no-repeat bottom;
	background-size: cover;
}
.demo {
	padding-bottom: 60px;
}
.serviceBox {
	font-family: 'Roboto', sans-serif;
	color: rgba(0, 0, 0, 0.5);
	margin: 0 15px;
	position: relative;
}
.serviceBox:after {
	content: '';
	height: 12px;
	width: 12px;
	background-color: #fff;
	border: 2px solid #BA34CD;
	border-radius: 50%;
	position: absolute;
	left: -4px;
	bottom: -2px;
}
.serviceBox .service-icon {
	color: #FE214A;
	font-size: 70px;
	text-align: center;
	line-height: 170px;
	height: 150px;
	width: 150px;
	margin: 0 0 25px;
	border-radius: 50% 50% 50% 0;
	background: linear-gradient(to bottom, #EBEDEC, #E8E8E8);
	box-shadow: 0 0 3px #909090;
	display: block;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease 0s;
}
.serviceBox:hover .service-icon {
	font-size: 80px;
	box-shadow: 0 0 10px #909090;
}
.serviceBox .service-icon:before,
.serviceBox .service-icon:after {
	content: '';
	height: 90%;
	width: 90%;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	border-radius: 50% 50% 50% 0;
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
}
.serviceBox .service-icon:after {
	height: 80%;
	width: 80%;
	background-color: #fff;
	border-radius: 50%;
}
.serviceBox .service-content {
	padding: 0 20px 15px;
	border-left: 2px solid #d3d3d3;
}
.serviceBox .title {
	color: #BA34CD;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: left;
	text-transform: uppercase;
	margin: 0 0 10px;
	line-height: 24px;
	min-height: 72px;
}
.serviceBox .description {
	font-size: 15px;
	text-align: justify;
	line-height: 28px;
	margin: 0;
}
.serviceBox.pink:after {
	border-color: #FF7BD1;
}
.serviceBox.pink .service-icon {
	color: #FF7BD1;
}
.serviceBox.pink .service-icon:before {
	background-color: #FF7BD1;
}
.serviceBox.pink .title {
	color: #FF7BD1;
}
.serviceBox.purple:after {
	border-color: #B65EE8;
}
.serviceBox.purple .service-icon {
	color: #B65EE8;
}
.serviceBox.purple .service-icon:before {
	background-color: #B65EE8;
}
.serviceBox.purple .title {
	color: #B65EE8;
}
.serviceBox.blue:after {
	border-color: #6986FE;
}
.serviceBox.blue .service-icon {
	color: #6986FE;
}
.serviceBox.blue .service-icon:before {
	background-color: #6986FE;
}
.serviceBox.blue .title {
	color: #6986FE;
}
@media only screen and (max-width:1200px) {
	.serviceBox {
		margin: 0;
	}
}
@media only screen and (max-width:990px) {
	.serviceBox {
		margin: 0 0 40px;
	}
}
.mruni {
	margin: 28px 0 0 !important;
}
#myVideo {
	position: absolute;
	top: 0px;
	right: 0;
	height: 100%;
	background: none;
	bottom: 0;
	width: 100%;
}
.banner-wrap2::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
	z-index: 1;
}
@media only screen and (max-width:990px) {
	.banner-wrap2 {
		position: relative;
		background: url(../images/property.jpg);
		background-size: cover;
	}
	
	#myVideo {
		display: none;
	}
	
	.banner {
		min-height: 655px !important;
	}
	
	.banner.banner-v2 h2 {
		font-size: 26px;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.banner.banner-v2 .search-widget-form {
		margin: 0 10%;
		width: 80%;
	}
	
	.banner.banner-v2 .search-widget-form ul {
		margin-bottom: 20px;
	}
	
	.banner.banner-v2 .search-widget-form li {
		font-size: 16px;
	}
	
	.banner.banner-v2 .cright {
		float: none;
		clear: both;
		width: 80%;
		margin: 0 auto;
		margin-top: 20px !important;
	}
	
	.pack-box {
		width: 100%;
	}
	
	.pack-boxes {
		width: 80%;
		margin: 0 auto;
		padding: 0px;
	}
	
	.property-block .property-price .price {
		font-size: 15px;
	}
	
	.pack-box2 {
		padding: 20px;
	}
	
	.popular-item .info-box {
		padding: 10px;
	}
	
	.popular-item.masonry-item.medium-item {
		position: inherit !important;
		left: 0px !important;
		top: 0px !important;
		right: 0px !important;
	}
	
	.pack-boxes_blog .column3-wrap .column {
		padding: 10px !important;
		width: 100%;
	}
	
	.property-block h3 {
		font-size: 16px;
	}
	
	.property-block .property-info li {
		padding-left: 20px;
	}
	
	.p_col6 {
		float: none;
		width: 100%;
	}
	
	.p_col4 {
		float: none;
		width: 100%;
	}
}

/*====================property-contact=======================*/
.property_contact {
	width: 100%;
	background: url(../images/co_bg.png) no-repeat bottom;
	position: relative;
	background-size: cover;
	clear: both;
	display: table;
	padding: 60px 0;
}
.property_contact h2 {
	text-align: center;
	margin: 0px;
	padding: 0 0 15px 0;
	color: #2B373A;
}
.property_contact p {
	text-align: center;
	color: #2B373A;
	line-height: 22px;
	font-size: 14px;
}
.p_containar {
	max-width: 1170px;
	margin: 0 auto;
}
.p_col6 {
	width: 40%;
	margin: 0 auto;
}
.p_col4 {
	width: 35%;
	float: right;
}
.p_col4 h2 {
	font-size: 40px;
	color: #B133C8;
	margin: 0px;
	padding: 150px 0 20px 0;
}
.p_col4 p {
	font-size: 22px;
	padding-top: 20px;
	line-height: 30px;
}
.p_col4 p span {
	vertical-align: middle;
	color: #B133C8;
}
@media only screen and (max-width:990px) {
	.p_col6 {
		float: none;
		width: 100%;
		padding: 20px;
	}
	
	.p_col4 {
		float: none;
		width: 100%;
		padding: 20px;
	}
	
	.b_min_h {
		min-height: 487px !important;
	}
}
.vector {
	position: absolute;
	width: 25%;
	bottom: -500px;
	left: 30px;
}
.vector img {
	width: 100%;
}
.clock {
	position: absolute;
	width: 13%;
	top: 158px;
	right: 104px;
}
.clock img {
	width: 100%;
	-webkit-animation: zoom 50s;
	/* Chrome, Safari, Opera */
	
	animation: zoom 50s;
}
.phone {
	position: absolute;
	width: 11%;
	top: 75px;
	left: 184px;
}
.phone img {
	width: 100%;
}
.top {
	position: absolute;
	width: 12%;
	bottom: 90px;
	right: 242px;
}
.top img {
	width: 100%;
}
.hrs {
	position: absolute;
	width: 6%;
	bottom: 274px;
	right: 84px;
}
.hrs img {
	width: 100%;
}
.swing {
	animation: swing ease-in-out 1s infinite alternate;
	transform-origin: center -20px;
}
.swing:after {
	content: '';
	position: absolute;
	z-index: 0;
	border-bottom: none;
	border-right: none;
	transform: rotate(45deg);
}

/* nail */
.swing:before {
	content: '';
	position: absolute;
	z-index: 5;
}
@keyframes swing {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(-1deg);
	}
}
.g2 {
	width: 600px !important;
}
.log_mid {
	margin: 0 auto !important;
	float: none !important;
}
.icon {
	float: left;
	width: 50px;
	margin: 15px 0 18px 0;
}
.icon img {
	width: 100%;
}
.pd_new {
	padding: 90px 0 !important;
}
.rrrr_widh {
	width: 100%;
}
.box {
	width: 40%;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.2);
	padding: 35px;
	border: 2px solid #fff;
	border-radius: 20px/50px;
	background-clip: padding-box;
	text-align: center;
}
.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	transition: opacity 500ms;
	visibility: hidden;
	opacity: 0;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
	z-index: 9999999 !important;
}
.popup {
	margin: 70px auto;
	padding: 0px;
	border: double;
	border-width: 6px;
	border-color: #b133c8;
	background: #fff !important;
	width: 50%;
	display: flow-root;
	position: relative;
	z-index: 99999999999999999999 !important;
	transition: all 5s ease-in-out;
}
.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
	position: absolute;
	top: 0px;
	right: 10px;
	font-size: 30px;
	/*! font-weight: bold; */
	
	text-decoration: none;
	color: #b133c8;
	z-index: 99999999999999999999999999999 !important;
}
.popup .close:hover {
	color: #06D85F;
}
.popup .content {
	max-height: 30%;
	overflow: auto;
}
@media screen and (max-width: 700px) {
	.box {
		width: 70%;
	}
	
	.popup {
		width: 70%;
	}
}

/*===========================9.05.2019=========================*/

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	
	position: fixed;
	/* Stay in place */
	
	z-index: 1;
	/* Sit on top */
	
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	
	height: 100%;
	/* Full height */
	
	overflow: auto;
	/* Enable scroll if needed */
	
	background: rgba(0, 0, 0, 0.8);
	padding-top: 100px;
	z-index: 99999999;
}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 5% auto 15% auto;
	/* 5% from the top, 15% from the bottom and centered */
	
	border: 1px solid #888;
	width: 80%;
	/* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
	position: absolute;
	right: 35px;
	top: 15px;
	font-size: 40px;
	font-weight: bold;
	color: #000;
} 
#registerModal .close {
	right: 15px;
	/*top: 15%;*/
	
	font-size: 32px;
}
.close:hover,
.close:focus {
	color: #f44336;
	cursor: pointer;
}
.form-popup.rrrr_widh {
	width: 43%;
	margin: 0 auto;
	float: none !important;
	background: #fff;
}
.profile-pic img {
	border-radius: 50%;
}
#profile_picture {
	float: right;
	margin-top: 42px;
}

/*================profile rate===================*/
.rate_left {
	width: 40%;
	float: left;
}
.rate_right {
	float: right;
	text-align: right;
}
.r_l_w70 {
	width: 80% !important;
	float: left;
	border-radius: 0px !important;
}
.r_l_w30 {
	width: 20%;
	float: left;
	border-radius: 0px !important;
}
.r_sub_btn {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	color: white;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	cursor: pointer;
	text-align: center;
	border: none;
}
.rate_area {
	width: 100%;
	background: #fff;
	padding: 20px;
	font-family: "Titillium Web", sans-serif;
}
.rate_area table {
	width: 100%;
	border-collapse: collapse;
	margin: 0px auto;
	margin-top: 15px;
	margin-bottom: 0px;
}

/* Zebra striping */
.rate_area tr:nth-of-type(odd) {
	background: #eee;
}
.rate_area th {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	color: white;
	font-weight: bold;
}
.rate_area td,
th {
	padding: 10px;
	border: 1px solid #00d7b3;
	text-align: left;
	font-size: 14px;
	font-weight: bold;
}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {
	.button5 {
		padding: 10px 34px !important;
	}
	
	.rate_area table {
		width: 100%;
	}
	/* Force table to not be like tables anymore */
	
	.rate_area table,
	thead,
	tbody,
	th,
	td,
	tr {}
	/* Hide table headers (but not display: none;, for accessibility) */
	
	.rate_area thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	.rate_area tr {
		border: 1px solid #ccc;
	}
	
	.rate_area td {
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 50%;
	}
	
	.rate_area td:before {
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%;
		padding-right: 10px;
		white-space: nowrap;
		/* Label the data */
		content: attr(data-column);
		color: #000;
		font-weight: bold;
	}
}

/* CSS for slider in property page */
.callbacks {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}
.callbacks li {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}
.callbacks img {
	display: block;
	position: relative;
	z-index: 1;
	height: auto;
	width: 100%;
	height: 420px;
	border: 0;
}
.callbacks .caption {
	display: block;
	position: absolute;
	z-index: 2;
	font-size: 20px;
	text-shadow: none;
	color: #fff;
	background: url(../images/h_bg.png) no-repeat center;
	left: 0;
	top: 37%;
	background-size: 100%;
	right: 0;
	padding: 10px 20px;
	margin: 0;
	max-width: none;
}
.callbacks_nav {
	position: absolute;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	top: 52%;
	left: 0;
	opacity: 0.7;
	z-index: 3;
	text-indent: -9999px;
	overflow: hidden;
	text-decoration: none;
	height: 61px;
	width: 38px;
	background: transparent url(../images/themes.gif) no-repeat left top;
	margin-top: -45px;
}
.callbacks_nav:active {
	opacity: 1.0;
}
.callbacks_nav.next {
	left: auto;
	background-position: right top;
	right: 0;
}
.caption {
	font-family: "Titillium Web", sans-serif;
	text-align: center;
	font-size: 32px !important;
	padding: 10px 0 !important;
}
.countryCode {
	margin-left: 0%;
	padding-right: 0px !important;
	text-align: right;
}
.countryCode button.btn {
	border-bottom: 1px solid #ccc !important;
	border-radius: 0px;
	border: none;
}
.countryCode {
	padding-right: 0;
}
input.button.primary.popupBtn {
	width: 100%;
}
button#menu1 {
	width: 80%;
}
#bookBox {
	padding-top: 5% !important;
}
.timeBox {
	width: 100%;
	text-align: center;
	margin-left: 0%;
	padding: 0% 10%;
	height: 60px;
	margin-top: -10%;
}
.Book_tandc {
	padding-top: 0px;
	padding-left: 5px;
}
.ui.container {
	display: block;
	max-width: 100% !important;
	padding: 0px !important;
}
.ui[class*="left icon"].input>input {
	padding-left: 0em !important;
	margin: 0 auto !important;
	text-align: center !important;
}
.timeBox span.caret {
	float: right;
	margin: 7% 0%;
	position: relative;
	z-index: 9999999;
	right: 20px;
	display: none;
}
.timeBox ul.dropdown-menu {
	right: 14%;
	top: 82%;
	border-radius: 3px;
}
.callNumber input {
	border-bottom: 1px solid #692ba5 !important;
	border-radius: 0px;
	border: none;
	height: 40px;
}
a.big.secondary.wfav.back-btn {
	text-decoration: none;
	color: #692ba5;
}
.timeBox .btn-default:hover {
	color: #333 !important;
	background-color: transparent !important;
}
.countryCode .btn-default:hover {
	color: #333;
	background-color: transparent !important;
	border-color: #adadad;
}
.timeBox .btn-default.focus,
.timeBox .btn-default:focus {
	background-color: transparent !important;
}
.countryCode .btn-default.focus,
.countryCode .btn-default:focus {
	background-color: transparent !important;
}
.timeBox ul.dropdown-menu {
	width: 100% !important;
}
.timeBox ul.dropdown-menu li {
	width: 25%;
	float: left;
}
.askPopupBtn {
	padding: 1% 0% 6%;
}
.askPopupBtn .button.big.wfav {
	padding-left: 72px;
	height: 45px;
	line-height: 20px;
}
.askPopupBtn .button {
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}

/**** OFFICE SELECTED DROPDOWN ****/
.dropSelector {
	background-color: rgb(255, 255, 255);
	cursor: pointer;
	float: left;
	position: relative;
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: rgb(215, 215, 215);
	border-image: initial;
	border-radius: 2px;
	margin: 2% 0% 7%;
	z-index: 9999999999999;
}
.innerStyle {
	float: left;
	padding: 12px 54px 12px 12px;
}
.dropPriceStyle {
	color: rgb(27, 25, 35);
	font-size: 15px;
	font-weight: 500;
	margin: 0px 0px 4px;
}
.deskStyle {
	color: rgb(75, 75, 75);
	font-size: 13px;
	font-weight: 500;
	margin: 0px;
}
.newlineStyle {
	color: rgb(10, 151, 103);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.9px;
	margin-bottom: 0px;
	padding-left: 16px;
	text-transform: uppercase;
}
.icon-arrow-down {
	color: #444;
	cursor: pointer;
	font-size: 20px;
	position: absolute;
	right: 9px;
	top: 25px;
}
.dropdownSelectStyle {
	-webkit-appearance: none;
	cursor: pointer;
	display: block;
	font-size: 17px;
	height: 100%;
	left: 0px;
	opacity: 0;
	position: absolute; 
	top: 0px;
	width: 100%;
}
form#reused_form input {
	border: none !important;
	border-radius: 0px !important;
	box-shadow: none !important;
	border-bottom: 1px solid #ccc !important;
}

/*#myModal .modal-dialog {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    background-color: #fff !important;
    z-index: 999999 !important;
}*/
#myModal .modal-dialog {
	width: 100%;
	margin: 2 auto;
	background-color: #fff !important;
	position: fixed !important;
	z-index: 999999 !important;
	display: contents !important;
}
#myModal .modal-content {
	margin: 0 auto !important;
	width: 100% !important;
	border-radius: 0px !important;
	box-shadow: none !important;
	border: 0px !important;
	padding: 0% 6% !important;
}
div#myModal {
	padding: 0px !important;
	background-color: #fff !important;
	position: fixed !important;
	z-index: 999999999999 !important;
}
div#myModal .modal-body {
	border-bottom: none !important;
}
#myModal .modal-header {
	border-bottom: none !important;
}
.modalLeft {
	border-right: 1px solid #ccc;
	padding: 2% 5% !important;
}
.modalRight {
	padding: 2% 5% !important;
}
#timeCal .ui.input {
	font-size: 1em;
	width: 100%;
}
.ui.popup.calendar.bottom.right.transition.hidden {
	width: 200px !important;
}
.ui.calendar .ui.table.hour {
	min-width: 10em !important;
	margin-left: 11% !important;
}
.ui.popup.calendar.bottom.right.transition.visible.animating.scale.out {
	width: 230px !important;
}
table.ui.celled.center.aligned.unstackable.table.four.column.hour {
	width: 230px !important;
	margin-left: 0% !important;
}
.ui.calendar .ui.table tr td {
	border: transparent !important;
}
.ui.calendar .ui.table tr td:hover {
	background-color: #ccc !important;
	border: transparent !important;
}

/*.overlay1 {
	position: relative;
	top: 0;
	bottom: 0;
  left: 0;
  right: 0;
  background: transparent;
	transition: opacity 200ms;
  visibility: visible;
	opacity: 1;
	&.light {
    background: rgba(255,255,255,0.5);
  }
  .cancel {
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: default;
  }
  &:target {
    visibility: visible;
    opacity: 1;
  }
}

.popup {
	margin: 75px auto;
	padding: 20px;
	background: #fff;
	border: 1px solid #666;
	width: 300px;
	box-shadow: 0 0 50px rgba(0,0,0,0.5);
	position: relative;
  .light & {
    border-color: #aaa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  }
  h2 {
    margin-top: 0;
    color: #666;
    font-family: "Trebuchet MS", Tahoma, Arial, sans-serif;
  }
  .close {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 20px;
    right: 20px;
    opacity: 0.8;
    transition: all 200ms;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #666;
    &:hover {
      opacity: 1;
    }
  }
  .content {
    max-height: 400px;
    overflow: auto;
  }
  p {
    margin: 0 0 1em;
    &:last-child {
      margin: 0;
    }
  }
}*/
.overlay1 {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999999999;
	background: transparent;
	transition: opacity 500ms;
	visibility: visible;
	opacity: 1;
}
.overlay:target {
	visibility: visible;
	opacity: 1;
}

/*.otpFormBox {
    position: absolute;
    width: 600px;
    background-color: transparent;
    border: none;
    height: 380px;
    margin-left: -3%;
    margin-top: -13%;
}*/
.otpFormBox {
	position: fixed;
	width: 100%;
	background-color: transparent;
	border: none;
	height: 100%;
}
.popupOtp {
	margin: 27px auto;
	padding: 0px;
	border: 1px solid;
	border-color: #b133c8;
	border-radius: 0px !important;
	background: #fff !important;
	width: 330px;
	display: flow-root;
	position: relative;
	z-index: 99999999999999999999 !important;
	transition: all 5s ease-in-out;
	box-shadow: 0px 0px 10px 0px #ccc;
}

/*.popupOtp {
    margin: 4.5% auto;
    padding: 0px;
    border: 1px solid;
    border-color: #b133c8;
    border-radius: 0px !important;
    background: #fff !important;
    width: 330px;
    display: flow-root;
    position: relative;
    z-index: 99999999999999999999 !important;
    transition: all 5s ease-in-out;
    box-shadow: 0px 0px 10px 0px #ccc;
    height: auto;
}*/
.popupOtp .close {
	position: absolute;
	top: 7px;
	right: 30px;
	transition: all 200ms;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #000;
	opacity:1;
}
.popupOtp .close:hover {
	color: #06D85F;
}

/*..popupOtp .content {
    max-height: 30%;
    overflow: auto;
    width: 100%;
    padding-top: 9%;
}
popup button.button.mid.dark.text-center {
    margin: 0 auto;
	margin-top:30px;
}*/
.popupOtp .content {
	max-height: 150px;
	/* overflow: auto; */
	
	width: 100%;
	padding-top: 9%;
}
.popupOtp .content input#otp {
	margin-bottom: 12px;
}
.popupOtp .button {
	margin-top: 20px;
}

/*div#popup1 {
    position: absolute;
}
div#popup2 {
    position: absolute;
}*/
div#popup1 .popupOtp {
	margin: 27px auto;
	padding: 3% 3%;
}
.close:hover,
.close:focus {
	color: #888 !important;
}
@media screen and (max-width: 700px) {
	.box {
		width: 70%;
	}
	
	.popupOtp {
		width: 70%;
	}
}
span.otp-time {
	float: right;
}
.dropdownSelectStyle option {
	font-size: 9px;
}
.commonModal .modal-content {
	border-radius: 4px !important;
	border: none !important;
}
.commonModal .modal-title {
	font-size: 20px;
}
.commonModal p {
	line-height: 20px;
}
.commonModal input.button.primary.popupBtn {
	height: 44px;
	font-size: 16px;
}

/***** PROPERTY NEW CSS *******/
.property-list-box {
	width: 48%;
	background: #fff;
	display: flow-root;
	float: left;
	margin: 1%;
	box-shadow: rgba(5, 10, 58, 0.1) 0px 10px 20px 0px;
}
.pro_img_new {
	width: 50%;
	float: left;
}
.pro_d_new {
	width: auto;
	float: left;
	padding-top: 0px !important;
	background: #fff !important;
	border-top: 4px dotted #8b2fb6;
}
.pro_d_new h3 {
	text-align: left;
	padding-left: 15px;
	padding-top: 5px;
	text-transform: uppercase;
	font-weight: 900;
	margin-bottom: 30px;
}
.pro_d_new .lucation {
	text-align: left;
	margin: 0px 15px auto;
}
.pro_info_new {
	margin-bottom: 5px !important;
}
.pro_info_new li {
	padding-left: 15px !important;
	width: 25% !important;
	line-height: 30px !important;
}
.pro_d_new p {
	text-align: left;
	padding: 0 0 12px 15px;
	margin: 0px;
	line-height: normal;
}

/*.width25_new {
    width: 25% !important;
    float: left !important;
    margin-left: 15px !important;
}*/
.width25_new {
	width: 45% !important;
	float: left !important;
	margin-left: 15px !important;
}

/***** COMPARE BTN *****/
.footCompare {
	position: fixed;
	z-index: 1;
	bottom: 24px;
	right: 24px;
	will-change: transform;
}
.footCompare .compareBtn {
	position: relative;
}
.footCompare .compareBtn .sTOdGz {
	background-color: #2874f0;
	transition: background-color .2s ease-in;
}
.footCompare .compareBtn .sTOdGz .G934d8 {
	display: inline-block;
	padding-left: 24px;
	padding-top: 12px;
}
.footCompare .compareBtn ._1h5zc_ .compareValue {
	display: inline-block;
	position: relative;
}
.footCompare .compareBtn ._1h5zc_ .compareValue .proValue {
	position: absolute;
	top: -15px;
	margin-left: 14px;
	border-radius: 2px;
	background-color: rgba(0, 0, 0, .2);
	padding: 3px;
	pointer-events: none;
	display: inline-block;
	height: 22px;
	width: 22px;
	text-align: center;
}
.footCompare .compareBtn ._1h5zc_ {
	font-size: 14px;
	border-radius: 2px;
	color: #fff;
	position: absolute;
	bottom: 8px;
	right: 8px;
	cursor: pointer;
	font-weight: 500;
	height: 40px;
	width: 144px;
	/*background-color: #2874f0;*/
	
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}
.success .successIcon {
	text-align: center;
	font-size: 48px;
	float: none;
	margin: 0 auto;
	color: #306eda;
}

/*.validation-error {
    font-size: 12px;
    position: absolute;
    margin: -3% 0%;
    bottom: 21px;
    text-align: center;
    display: block;
    color: red;
}*/
form#register-form2 button.button.mid.dark {
	width: 100%;
	margin: 10px 0px;
}

/*#registerModal .modal-content {
    width: 100%;
}*/
button.button.mid.dark.registerBtn {
	width: 100%;
}
#registerModal hr.line-separator {
	margin-bottom: 0px;
}
.commonModal .modal-header {
	border-bottom: none;
	padding-bottom: 0px;
}
.commonModal h4 {
	font-family: "Titillium Web";
	font-weight: 700;
	font-size: 1.375em;
	    margin-bottom: 26px;
}
.commonModal button.close {
	right: 15px;
	/* top: 15%; */
	    font-size: 32px;
    
    opacity: 1;
}
.commonModal input::placeholder {
	font-size: 0.8125em;
}
.form-popupOTP {
	width: 100%;
	margin: 0 auto;
	border: 1px solid #b133c8;
	background-color: rgb(255, 255, 255, 0.9);
	position: relative;
}
span.checkbox.primary.primary.rememberCheckBox {
	float: left;
	margin-top: -5px !important;
	margin-bottom: 0px !important;
	border-color: #b133c8 !important;
}
input[type="radio"]:checked+label .checkbox.primary,
input[type="checkbox"]:checked+label .checkbox.primary {
	border-color: #b133c8 !important;
	background-color: #b133c8 !important;
}
span.rememberCheck {
	float: right;
}
form#login-form .label-check {
	margin-bottom: 10px;
}
form#login-form p a {
	color: #b133c8;
}
form#login-form p a:hover,
form#login-form p a:focus {
	color: #b133c8 !important;
}
figure img.img-compare {
	height: 220px;
}
.icon.iconRight {
	float: none;
	margin: 0 auto;
	font-size: 60px;
	color: #b133c8;
}
.view-more a.button.primary {
	float: right;
	margin-right: 3%;
	height: 40px;
	width: 150px;
	font-size: 16px;
	line-height: 2.5;
}
ul#successMsg li {
	color: green;
}
.popupOtp .content a {
	color: #2b373a;
}
.popupOtp .content a:hover {
	color: #b133c8 !important;
}
.countryCode select {
	styling background-color: white;
	border: none;
	border-bottom: 1px solid #ccc;
	border-radius: 0px;
	display: inline-block;
	font: inherit;
	line-height: 1.5em;
	padding: 0px 0px 0px 6px;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
}

/*.countryCode select {
    width: 100%;
    height: 40px;
    padding: 0 20px 0 10px;
    border: 1px solid #b133c8;
    border-radius: 4px;
    color: #000;
    line-height: 40px;
    -webkit-appearance: caret !important;
    cursor: pointer;
}*/
.countryCode select.minimal {
	background-image: linear-gradient(45deg, transparent 50%, gray 50%), linear-gradient(135deg, gray 50%, transparent 50%), linear-gradient(to right, #ccc, #ccc);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
}
.countryCode select.minimal:focus {
	/* background-image: none; */
	/* background-position: calc(100% - 15px) 1em,
 calc(100% - 20px) 1em,
 calc(100% - 2.5em) 0.5em; */
	
	background-size: 5px 5px, 5px 5px, 1px 1.5em;
	background-repeat: no-repeat;
	/* border-color: green; */
	
	outline: 0;
}
.countryCode select:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #000;
}
.ui.icon.input input {
	cursor: pointer;
}
div#bookBox input.button.primary.popupBtn {
	height: 39px;
	font-size: 16px;
}
.centerErrorMsg {
	text-align: center;
	display: block;
}
ul.post-item-list.facility-ul .facility {
	padding: 1px;
}
.documentListImage img {
	float: left;
	padding: 0% 1%;
	height: 170px;
	width: 170px;
}
.documentListImage img {
	float: left;
	margin-right: 2%;
	height: 170px;
	width: 170px;
	border: 5px solid #fff;
	box-shadow: 0px 0px 4px 0px #888;
}
.crossDelete {
	position: absolute;
	z-index: 999999;
	height: 25px;
	width: 25px;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
	border: 1px solid rgba(0, 0, 0, .06);
	border-radius: 50%;
	font-size: 10px;
	line-height: 26px;
	color: #878787;
	text-align: center;
	cursor: pointer;
}
.documentListImage {
	position: relative;
}

/***** SliderTop Section *****/
.form-popup.new-message {
	width: 570px;
	margin: 100px auto;
	background-color: #fff;
}
.tab {
	float: left;
	background-color: #f1f1f1;
	width: 100%;
	height: 100%;
}
.tab button {
	display: block;
	background-color: inherit;
	color: black;
	padding: 16px 16px 16px 10px;
	width: 50%;
	float: left;
	border: 1px solid #e6e3e3;
	border: none;
	margin: 0px;
	outline: none;
	text-align: left;
	font-weight: 900;
	cursor: pointer;
	transition: 0.3s;
	font-size: 14px;
	font-family: "Titillium Web", sans-serif;
}
.tab button.active {
	background-color: #fff;
	border-left: 4px solid #8E2FB8;
}
.tab button img {
	width: 25px;
	vertical-align: middle;
	margin-right: 5px;
}
.tabcontent {
	float: left;
	padding: 0px 0px 0 0;
	width: 55%;
	border-left: none;
	height: 100%;
}
.tabcontent ul {
	margin: 0px;
	padding: 0px 0 0 0px;
	list-style: none;
}
.tabcontent ul li {
	margin: 0px;
	padding: 0px;
}
.tabcontent ul li a {
	font-size: 14px;
	font-weight: 300;
	margin: 0px;
	padding: 0 20px 0 20px;
	font-family: "Titillium Web", sans-serif;
	color: #000;
	display: block;
	line-height: 58px;
}
.tabcontent ul li a:hover {
	background: #f6f6f6;
}
.tabcontent ul li a img {
	width: 25px;
	vertical-align: middle;
	margin-right: 5px;
}
.newClose {
	position: absolute;
	right: 27%;
	font-size: 20px;
	font-weight: bold;
	color: #fff;
	width: 40px;
	top: 28%;
	z-index: 9999;
	height: 40px;
	border-radius: 50%;
	background: -moz-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(86, 130, 181, 1)), color-stop(49%, rgba(77, 40, 152, 1)), color-stop(100%, rgba(187, 52, 205, 1)));
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}
.form-popup-content.pd_off {
	padding: 0px;
}

/****** JOB POST VIEW *****/
.job-wrap {
	position: relative;
	background: url(../images/job-list-bg.jpg);
	height: 268px;
	padding-top: 215px;
	background-size: cover;
}
.form-box-items.wrap-3-1 {
	width: 74.3%;
}
.form-box-items.left {
	float: left;
}
.form-box-items {
	overflow: hidden;
	padding: 0px 20px 20px 20px;
	background: #fff;
}
.upload-file {
	overflow: hidden;
	margin-bottom: 34px;
}
.upload-file .upload-file-actions {
	float: left;
	width: 100%;
	position: relative;
	margin: 0.5% 0%;
}
.upload-file .upload-file-progress {
	float: right;
	width: 342px;
}
.upload-file .upload-file-progress .upload-bar {
	width: 240px;
	top: 1px;
}
.upload-file .upload-file-progress .upload-bar,
.upload-file .upload-file-progress .text-header {
	float: left;
}
.input-container.half.zipinput {
	float: none !important;
}
.upload-file .upload-file-actions .button {
	float: left;
	width: 120px;
	margin-right: 25px;
}
.upload-btn-wrapper input[type="file"] {
	font-size: 100px;
	position: absolute;
	cursor: pointer;
	left: 0;
	top: 0;
	opacity: 0;
	height: 20px;
}
.sidebar-item.range-feature {
	padding: 1% 0% 3%;
}
.slider-container.theme-edragon.tertiary {
	margin: 0;
	width: 100% !important;
}
.timeBlock input[type="time"] {
	height: 35px;
	padding: 0px 10px 0px 10px;
	border: 1px solid #b133c8;
	width: 42%;
	line-height: 40px;
}
.timeBlock .timeFrom {
	float: left;
}
.timeBlock .timeTo {
	float: right;
}
.timeBlock span.timeText {
	padding-left: 6%;
	line-height: 35px;
}
.timeBlock input[type="time" i] {
	padding-top: 0%;
}

/******* END JOB POST VIEW *****/

/***********Book Viewing datepicker ************/
.btnDatepicker {
	margin: 0 auto;
	width: 80% !important;
}
.bookViewingDate {
	margin: 0 auto;
	width: 80% !important;
	display: block !important;
}
.date-select .calendar_popup {
	width: 230px !important;
}
.date-select {
	margin-top: -1.2% !important;
}
.date-select.calendar_popup .icon {
	text-align: center;
	margin-left: 47% !important;
}
.date-select .select span.text {
	line-height: 15px !important;
}
.date-select .select span.num {
	font-size: 24px !important;
	line-height: 35px !important;
}
.date-select .select {
	width: 75px !important;
	height: 90px !important;
}
.date-select .buttons a {
	width: 115px !important;
	height: 40px !important;
	padding-top: 4%;
}
.date-select .buttons a:hover {
	color: #fff;
}
.date-select .buttons a.btn-ok {
	width: 115px !important;
	margin-left: 1px !important;
}
.date-select .buttons a.btn-cancel:hover {
	background: #D95005;
	color: #fff !important;
}
.date-select .buttons a.btn-ok:hover {
	color: #fff !important;
}
.date-select .select:hover span {
	color: #FFF;
	font-size: 9px;
}

/***********Book Viewing datepicker ************/
.limitText {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
img.smImgFixHeight {
	height: 65px !important;
}
.button.primary:hover {
	color: #e3e3e3 !important;
}
.button.big.secondary.wfav:focus,
.button.big.secondary.wfav:hover {
	color: #e3e3e3 !important;
}
.footCompare .compareBtn ._1h5zc_:focus,
.footCompare .compareBtn ._1h5zc_:hover {
	color: #e3e3e3 !important;
}
.read-more.width25.width25_new a :focus,
.read-more.width25.width25_new a:hover {
	color: #e3e3e3 !important;
}
.price.width25.width25_new:focus,
.width25.width25_new:hover {
	color: #e3e3e3 !important;
}
.property-price .read-more .theme-btn:focus,
.property-price .read-more .theme-btn:hover {
	color: #e3e3e3 !important;
}
.property-price .price:focus,
.property-price .price:hover {
	color: #e3e3e3 !important;
}
.regiter_bg .demo a:focus,
.regiter_bg .demo a:hover {
	color: #e3e3e3 !important;
}
.regiter_bg2 .demo a:focus,
.regiter_bg2 .demo a:hover {
	color: #e3e3e3 !important;
}
.link-list .link-item a:focus,
.link-list .link-item a:hover {
	color: #e3e3e3 !important;
}
.button.big.wfav.purchase span.icon-wallet {
	font-size: 20px;
	position: absolute;
	top: 20px;
	left: 38px;
}
.modal-backdrop.in {
	filter: alpha(opacity=50);
	opacity: .5;
	position: relative !important;
}
.close.closeBtnNew {
	top: 10%;
	right: 1%;
	font-size: 24px;
	z-index: 9999999;
}
.profile-edit {
	position: absolute;
	z-index: 999999;
	top: 32%;
	/*right: 7%;**/
	
	position: initial;
}

/**********************

Property Banner Start


**********************/
.proSlider,
.proSlider>div {
	background-position: center center;
	display: block;
	width: 100%;
	height: 315px;
	/* height: 100vh; */
	
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #000;
	overflow: hidden;
	-moz-transition: transform .4s;
	-o-transition: transform .4s;
	-webkit-transition: transform .4s;
	transition: transform .4s;
}
.proSlider>div {
	position: absolute;
}
.proSlider>i {
	color: #5bbd72;
	position: absolute;
	font-size: 60px;
	margin: 20px;
	top: 40%;
	text-shadow: 0 10px 2px #223422;
	transition: .3s;
	width: 30px;
	padding: 10px 13px;
	background: #fff;
	background: rgba(255, 255, 255, .3);
	cursor: pointer;
	line-height: 0;
	box-sizing: content-box;
	border-radius: 3px;
	z-index: 4;
}
.proSlider>i svg {
	margin-top: 3px;
}
.proSlider>.left {
	left: -100px;
}
.proSlider>.right {
	right: -100px;
}
.proSlider:hover>.left {
	left: 0;
}
.proSlider:hover>.right {
	right: 0;
}
.proSlider>i:hover {
	background: #fff;
	background: rgba(255, 255, 255, .8);
	transform: translateX(-2px);
}
.proSlider>i.right:hover {
	transform: translateX(2px);
}
.proSlider>i.right:active,
.proSlider>i.left:active {
	transform: translateY(1px);
}
.proSlider:hover>div {
	transform: scale(1.01);
}
.hoverZoomOff:hover>div {
	transform: scale(1);
}
.proSlider>ul {
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 4;
	padding: 0;
	margin: 0;
	transform: translateX(-50%);
}
.proSlider>ul>li {
	padding: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	list-style: none;
	float: left;
	margin: 10px 10px 0;
	cursor: pointer;
	border: 1px solid #fff;
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}
.proSlider>ul>.showli {
	background-color: #7EC03D;
	-moz-animation: boing .5s forwards;
	-o-animation: boing .5s forwards;
	-webkit-animation: boing .5s forwards;
	animation: boing .5s forwards;
}
.proSlider>ul>li:hover {
	background-color: #7EC03D;
}
.proSlider>.show {
	z-index: 1;
}
.hideDots>ul {
	display: none;
}
.showArrows>.left {
	left: 0;
}
.showArrows>.right {
	right: 0;
}
.proSlider>div span {
	display: block;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	bottom: 0;
	color: #fff;
	text-align: center;
	padding: 0;
	width: 100%;
}
.slider-desc {
	position: absolute;
	z-index: 999999;
	bottom: 10%;
	left: 2%;
}
@keyframes boing {
	0% {
		transform: scale(1.2);
	}
	
	40% {
		transform: scale(.6);
	}
	
	60% {
		transform: scale(1.2);
	}
	
	80% {
		transform: scale(.8);
	}
	
	100% {
		transform: scale(1);
	}
}

/* -------------------------------------- 

#slider2 {
    max-width: 100%;
    margin: 0px 10px;
}*/
ul.discription-list li::-webkit-scrollbar {
	width: 6px;
}
ul.discription-list li::-webkit-scrollbar-track {
	border-radius: 10px !important;
	box-shadow: inset 0 0 6px #fff !important;
	-webkit-box-shadow: inset 0 0 6px #fff !important;
	-moz-box-shadow: inset 0 0 6px #fff !important;
	background: #000 !important;
}
ul.discription-list li::-webkit-scrollbar-thumb {
	border-radius: 10px !important;
	box-shadow: inset 0 0 6px #fff !important;
	-webkit-box-shadow: inset 0 0 6px #fff !important;
	-moz-box-shadow: inset 0 0 6px #fff !important;
	background: #CCC !important;
}
.compareDisData {
	border: 1px solid #f0f0f0;
	margin-bottom: 1.5%;
}
.compareList1 {
	width: 23.6%;
	padding: 0% 1%;
	float: left;
	border-right: 1px solid #f0f0f0;
	margin-left: 1.1%;
	margin-bottom: 1.1%;
	margin: 1.5% 0% 1.5% 1.2%;
}
.compareList1 h4::after {
	content: "";
	display: block;
	width: 50px;
	height: 2px;
	background-color: #000;
	margin: 5% 0% 0%;
}

/******* LATEST PROPERTY ******/
.LatestPro.author-items-v2 {
	width: 100%;
	background-color: #fff;
	padding: 2% 2%;
	display: inline-block;
}
.LatestPro.author-items-v2 .item-preview {
	width: 33%;
	float: left;
	padding: 2px 15px 0 92px;
	position: relative;
	margin-bottom: 3%;
}
.LatestPro .item-preview a p.text-header {
	font-size: 15px;
}
.LatestPro .category.tiny {
	font-size: 12px;
}
.LatestPro .metadata .meta-item p {
	display: inline-block;
	margin-left: 5px;
	color: #b2b2b2;
	font-size: 0.825em;
}
.LatestPro .product-preview-image.small {
	width: 84px;
	height: 70px;
}

/**** ADD SLIDER ICON *****/
.slideText {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 9999;
}
.sliderFav li {
	list-style: none;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 3% 5%;
	margin: 0% 0%;
}
.sliderFav {
	width: 150px;
	text-align: left;
	padding-left: 12px;
}
.sliderFav li a {
	color: #fff;
}
.sliderFav li a:hover {
	color: #ccc !important;
}
.sliderFav li {
	list-style: none;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 1% 5%;
	margin: 0% 0%;
	border-radius: 2px;
	box-shadow: 0px 0px 12px 0px #ccc;
}
.agreeBox {
	height: 30px;
}
.agreeBox .checkbox {
	margin-top: -4%;
}
.button.big.wfav span.icon-info {
	font-size: 20px;
	position: absolute;
	top: 20px;
	left: 38px;
}
.carousel-indicators li {
	background-color: #000 !important;
	font-size: 30px !important;
	width: 15px !important;
	height: 15px !important;
}
.carousel-indicators li:active {
	background-color: #8c2fb6;
}
.carousel-indicators {
	bottom: -5% !important;
}
.newProTab li {
	list-style: none;
	display: inline-block;
	padding: 0;
	border-right: 2px solid #ccc;
	border-bottom: 2px solid #ccc;
	margin-left: 5%;
	width: 42%;
	text-align: center;
	background: #fff;
	line-height: 34px;
	border-radius: 25px;
	margin-top: 10px;
}
.newProTab a {
	color: #777 !important;
	cursor: pointer;
}
.newProTab .icon-question {
	margin-right: 1px;
}
.askAgreeBox {
	height: 30px;
	display: inline-flex;
}
.askAgreeBox .checkbox {
	margin-top: -3% !important;
}
#myModal .modal.commonModal {
	position: fixed !important;
	z-index: 999999 !important;
}
#myModal .askForm div {
	padding-left: 0px;
}
#myModal .newlineStyle {
	padding-left: 0px !important;
}
.tandc {
	padding-top: 3px;
	padding-left: 5px;
}
.view-more {
	margin-left: 44%;
	margin-top: 30px;
}
.compare-image-box {
	height: 225px;
}
.compare-image-box .proSlider .image img {
	height: 230px !important;
	width: 100%;
}
.compare-image-box .proSlider .left {
	top: 20% !important;
}
.compare-image-box .proSlider .right {
	top: 20% !important;
}
.author-bio .user-avatar.medium {
	width: 100%;
	height: 155px;
}

/*********** Chat Module Css ***************/
.inbox-messages {
	border: 1px solid #ebebeb;
	padding-bottom: 0px;
	background-color: #fff;
}
.inbox-messages .inbox-message {
	border: none;
	border-bottom: 1px solid #ebebeb;
	/*cursor: pointer;*/
}

/*.inbox-messages .inbox-message:hover{background: #ebebeb;}*/
.inbox-messages .inbox-message.active {
	background: #ebebeb;
}
.inbox-messages .pager-wrap {
	text-align: right;
}
.inbox-messages .pager-wrap .pager {
	display: inline-block;
	margin: 36px 30px 0 0;
}
.inbox-messages-preview {
	border: 1px solid #ebebeb;
	overflow: hidden;
}
.inbox-messages-preview.full .inbox-message-preview {
	float: none;
	width: 100%;
	height: auto;
}
.inbox-messages-preview.full .inbox-message-preview-body {
	height: auto;
	overflow: hidden;
	border-bottom: none;
	padding-bottom: 26px;
}
.inbox-messages-preview.full .comment-list {
	padding: 0;
	border: 0;
}
.inbox-messages-preview.full .comment-list .comment-wrap {
	padding: 36px 30px 0 116px;
}
.inbox-messages-preview.full .comment-list .comment-wrap.comment-reply {
	padding-top: 56px;
}
.inbox-messages-preview.full .comment-list .comment-wrap.comment-reply .user-avatar {
	top: 66px;
}
.inbox-messages-preview.full .comment-list .comment-wrap.comment-reply .comment-reply-form textarea {
	height: 140px;
}
.inbox-messages-preview.full .comment-list .user-avatar {
	left: 28px;
}
.inbox-messages-preview .inbox-messages,
.inbox-messages-preview .inbox-message-preview {
	float: left;
	height: 403px;
}
.inbox-messages-preview .inbox-messages {
	width: 41%;
	border: none;
	border-right: 1px solid #ebebeb;
	padding-bottom: 0;
	overflow-y: auto;
	overflow-x: hidden;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar {
	-webkit-appearance: none;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar:vertical {
	width: 12px;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar-thumb {
	background-color: #ebebeb;
	border-radius: 200px;
	border: 4px solid #fff;
}
.inbox-messages-preview .inbox-messages::-webkit-scrollbar-track {
	background-color: #fff;
}
.inbox-messages-preview .inbox-message-preview {
	width: 100%;
}
.inbox-message-preview {
	background-color: #fff;
}
.inbox-message-preview .inbox-message-preview-header {
	height: 45px;
	border-bottom: 1px solid #ebebeb;
	padding: 0 24px;
}
.inbox-message-preview .inbox-message-preview-header .text-header,
.inbox-message-preview .inbox-message-preview-header .report {
	line-height: 45px;
}
.inbox-message-preview .inbox-message-preview-header .text-header {
	float: left;
	font-size: 14px;
}
.inbox-message-preview .inbox-message-preview-header .text-header img {
	position: relative;
	top: -1px;
	left: 6px;
}
.inbox-message-preview .inbox-message-preview-header .report {
	float: right;
	color: #b2b2b2;
	font-size: 0.75em;
}
.inbox-message-preview .inbox-message-preview-body {
	height: 300px;
	width: 100%;
	/* padding-bottom: 60px; */
	
	border-bottom: 1px solid #ebebeb;
	overflow-y: auto;
	overflow-x: hidden;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar {
	-webkit-appearance: none;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar:vertical {
	width: 12px;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar-thumb {
	background-color: #ebebeb;
	border-radius: 200px;
	border: 4px solid #fff;
}
.inbox-message-preview .inbox-message-preview-body::-webkit-scrollbar-track {
	background-color: #fff;
}
.inbox-message-preview .inbox-message-preview-body .message-preview {
	float: left;
	clear: both;
}

/*  .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) {
        float: right;
        padding: 20px 80px 15px 40px; background: #fff; }
        .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) .user-avatar {
          left: auto;
          right: 24px; }
        .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) p {
          text-align: right; } */
.inbox-message-preview .inbox-reply-form {
	height: 58px;
	padding: 0 145px 0 0px;
	position: relative;
}
.inbox-message-preview .inbox-reply-form input[type="text"] {
	height: 100%;
	border: none;
}
.inbox-message-preview .inbox-reply-form .button {
	position: absolute;
	top: 15px;
	right: 12px;
	float: right;
	width: 100px;
}
.message-preview {
	max-width: 540px;
	padding: 20px 40px 15px 80px;
	background: #f6f6f6;
	width: 100%;
	position: relative;
}
.message-preview .user-avatar {
	position: absolute;
	top: 18px;
	left: 24px;
}
.message-preview .text-header {
	margin-bottom: 4px;
}
.message-preview .timestamp {
	margin-bottom: 0px;
}
.inbox-message {
	height: 65px;
	background-color: #fff;
	border: 1px solid #ebebeb;
}
.new-inbox-message {
	height: 71px !important;
}
.inbox-message.v2 {
	height: 112px;
	padding: 0 54px 0 102px;
	position: relative;
}
.inbox-message.v2 p {
	line-height: 1em;
}
.inbox-message.v2 .inbox-message-actions label {
	position: absolute;
	top: 28px;
	left: 14px;
	margin: 0;
}
.inbox-message.v2 .inbox-message-actions .starred {
	float: none;
	margin: 0;
	position: absolute;
	top: 68px;
	left: 57px;
}
.inbox-message.v2 .inbox-message-author {
	position: static;
	padding-left: 0;
}
.inbox-message.v2 .inbox-message-author .text-header {
	margin-top: 20px;
}
.inbox-message.v2 .inbox-message-author .text-header .message-icon {
	display: inline;
	position: relative;
	top: 2px;
	left: 10px;
}
.inbox-message.v2 .inbox-message-author .user-avatar {
	top: 22px;
	left: 45px;
}
.inbox-message.v2 .inbox-message-content {
	width: 100%;
	max-height: 40px;
	margin-top: 12px;
}
.inbox-message.v2 .inbox-message-content p {
	font-size: 0.75em;
}
.inbox-message.v2 .inbox-message-content .text-header,
.inbox-message.v2 .inbox-message-content .description {
	max-width: 100%;
	line-height: 18px;
}
.inbox-message.v2 .inbox-message-content .text-header {
	margin-right: 8px;
}
.inbox-message.v2 .inbox-message-date {
	margin: 0;
	position: absolute;
	top: 27px;
	right: 28px;
}
.inbox-message.v2 .inbox-message-date p {
	font-size: 0.75em;
}
.inbox-message.v2 .inbox-message-type {
	display: none;
}
.inbox-message .inbox-message-actions,
.inbox-message .inbox-message-author,
.inbox-message .inbox-message-content,
.inbox-message .inbox-message-date,
.inbox-message .inbox-message-type {
	float: left;
}
.inbox-message p {
	font-size: 0.8125em;
	line-height: 65px;
}
.inbox-message .inbox-message-actions {
	padding-left: 15px;
}
.inbox-message .inbox-message-actions label {
	float: left;
	margin-top: 19px;
}
.inbox-message .inbox-message-actions .starred {
	float: left;
	width: 16px;
	height: 15px;
	margin: 25px 25px 0 12px;
	position: relative;
	cursor: pointer;
}
.inbox-message .inbox-message-actions .starred img[alt^="star"] {
	position: absolute;
	top: 0;
	left: 0;
}
.inbox-message .inbox-message-actions .starred img[alt^="star"].visible {
	display: block;
}
.inbox-message .inbox-message-actions .starred img[alt^="star"].hidden {
	display: none;
}
.inbox-message .inbox-message-author {
	width: 240px;
	padding-left: 56px;
	position: relative;
}
.inbox-message .inbox-message-author .text-header .message-icon {
	display: none;
}
.inbox-message .inbox-message-author .user-avatar {
	position: absolute;
	top: 12px;
	left: 0;
}
.inbox-message .inbox-message-content {
	width: 18%;
}
.inbox-message .inbox-message-content p {
	float: left;
}
.inbox-message .inbox-message-content .text-header,
.inbox-message .inbox-message-content .description {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.inbox-message .inbox-message-content .text-header {
	max-width: 22%;
	margin-right: 22px;
}
.inbox-message .inbox-message-content .text-header.normal {
	color: #888;
	font-weight: 600;
}
.inbox-message .inbox-message-content .description {
	max-width: 100%;
	color: #b2b2b2;
}
.inbox-message .inbox-message-date,
.inbox-message .inbox-message-type {
	float: right;
}
.inbox-message .inbox-message-date {
	margin-right: 42px;
}
.inbox-message .inbox-message-type {
	width: 58px;
	height: 65px;
	position: relative;
}
.inbox-message .message-icon {
	color: #888;
	font-size: 18px;
	position: absolute;
	top: 23px;
	left: 0;
	cursor: pointer;
}
.inbox-message .message-icon.primary {
	color: #00d7b3;
}
.inbox-message .message-icon.secondary {
	color: red;
	border: 4px double;
	padding: 5px;
	border-radius: 50%;
	margin-top: -7px;
	cursor: pointer;
}
.inbox-message .message-icon.tertiary {
	color: #e61852;
}

/************************************************/

/*-------------------
  	MEDIA QUERIES
-------------------*/
@media screen and (max-width: 1260px) {
	.inbox-messages-preview .inbox-messages,
	.inbox-messages-preview .inbox-message-preview {
		float: none;
		width: 100%;
	}
	
	.inbox-messages-preview .inbox-messages {
		height: 223px;
		border-right: none;
	}
	
	.inbox-messages-preview .inbox-messages .inbox-message:last-child {
		border-bottom: none;
	}
	
	.inbox-messages-preview.full .inbox-message-preview .inbox-message-preview-header {
		border-top: none;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header {
		border-top: 1px solid #ebebeb;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-body {
		width: 100%;
	}
	
	.style-tool-bar {
		display: none;
	}
}
@media screen and (max-width: 935px) {
	.form-popup.new-message {
		width: 80%;
	}
}
@media screen and (max-width: 630px) {
	.inbox-messages-preview.full .comment-list .comment-wrap {
		padding-left: 66px;
	}
	
	.inbox-messages-preview.full .comment-list .user-avatar {
		left: 14px;
	}
}
@media screen and (max-width: 460px) {
	.form-popup.new-message {
		width: 95%;
	}
	
	.inbox-message.v2 {
		padding-left: 50px;
	}
	
	.inbox-message.v2 .inbox-message-actions label {
		top: 40px;
	}
	
	.inbox-message.v2 .inbox-message-actions .starred {
		top: 76px;
		left: 15px;
	}
	
	.inbox-message.v2 .inbox-message-author .text-header .message-icon {
		position: absolute;
		top: 16px;
		left: 14px;
	}
	
	.inbox-message.v2 .inbox-message-author .user-avatar {
		display: none;
	}
	
	.inbox-message.v2 .inbox-message-date {
		top: 21px;
		right: 14px;
	}
	
	.inbox-messages-preview.full .inbox-message-preview .inbox-message-preview-body {
		height: auto;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header {
		height: auto;
		padding-top: 20px;
		padding-bottom: 20px;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header .text-header,
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header .report {
		float: none;
		line-height: 1.5em;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-header .report {
		margin-top: 10px;
	}
	
	.inbox-messages-preview .inbox-message-preview .inbox-message-preview-body {
		height: 566px;
	}
	/*    .inbox-messages-preview .inbox-message-preview .inbox-message-preview-body .message-preview:nth-child(even) {
      padding-right: 24px; } */
	
	.message-preview {
		padding-left: 24px;
	}
	
	.message-preview .user-avatar {
		display: none;
	}
}

/*******************************************/

/*******************************************/
.w_59 {
	width: 59% !important;
}
.chat_m {
	width: 176px !important;
	margin-left: 10px !important;
}
.pic_ture {
	float: left;
	margin: 21px 0;
	cursor: pointer;
}
.chat_t_box {
	width: 84% !important;
}

/*********************************************/
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message {
	float: right;
	padding: 42px 80px 0 40px;
}
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message .user-avatar {
	left: auto;
	right: 24px;
	\
}
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message p {
	text-align: right;
}
.inbox-messages-preview .inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message {
	float: right;
	padding: 20px 80px 15px 40px;
	background: #fff;
}
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message {
	float: right;
	padding: 20px 80px 15px 40px;
	background: #fff;
}
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message .user-avatar {
	left: auto;
	right: 24px;
}
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message p {
	text-align: right;
}
.inbox-message-preview .inbox-message-preview-body .message-preview.login-user-message {
	float: right;
	padding: 20px 80px 15px 40px;
	background: #fff;
}

/***********************Alert Bar*******************************/
.alert.restrict {
	padding: 20px;
	background-color: #f44336;
	color: white;
}
.restrict .closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}
.restrict .closebtn:hover {
	color: black;
}
.setBackgroundColour {
	background: red !important;
	/ color: white;
}
.setCursorPointer {
	cursor: pointer;
}
.new-user-avatar img {
	border-radius: 50% !important;
	height: 40px !important;
	width: 40px !important;
}

/*********** End Chat Module Css ***************/
.dashboard-header-item.stats.bid_h1 h6,
.dashboard-header-item.stats.bid_h1 p {
	text-align: left;
	line-height: 35px;
	padding: 0 20px;
	background: #f5f5f5;
	margin-top: 10px;
	border: 1px solid #dddcdc;
}
.allJobsCard {
	background-color: #fcfcfc;
	padding: 2% 2%;
	border: 1px solid #eee;
}
.profile-pic img {
	width: 100px;
	height: 100px;
}
.activeBids .form-box-items.my-bid-box {
	margin-bottom: 20px;
}
.my-bid-box {
	padding: 2% 2%;
	color: #999;
	background-color: #fff;
	box-shadow: 0px 0px 7px 2px #eee;
}
.my-bid-info p {
	color: #8c8c8c;
	line-height: 20px;
	font-size: 12px;
}
.my-bid-info label {
	font-size: 16px;
	color: #333;
}

/***** Seller Rate Card *****/
.seller-rate-btn {
	padding: 2% 2%;
}
.seller-rate-btn button#btnSubmit {
	width: 30%;
	height: 40px;
	font-size: 14px;
}
.seller-rate-input select {
	height: 40px;
	line-height: 40px;
	border: 1px solid #b133c8;
	border-radius: 4px;
}
.seller-rate-input input {
	height: 40px;
	line-height: 40px;
	border: 1px solid #b133c8;
	border-radius: 4px;
	width: 100%;
}
.g-bg {
	background-color: #f0f0f0;
}
.w-bg {
	background-color: #fff;
}

/*.browse-result-service {
    padding: 14px 16px;
}*/
.browse-result-service {
	padding: 14px 16px;
	width: 97%;
	margin-left: 1.5%;
}
.rate-category {
	/*width: 88%;*/
	
	color: #888;
}
.rate-category h3 {
	text-align: left;
	line-height: 25px;
	margin: 0;
}
.service-sub-cat {
	margin-bottom: 3px;
	color: var(--grey30);
	font-size: 16px;
	line-height: 21px;
}
.rate-cat-type {
	color: var(--grey50);
	font-size: 14px;
	line-height: 17px;
}
.category-price {
	/*width: 10%;
    float: right;*/
	
	margin-top: 1%;
	text-align: right;
}
.BrowseResultService--priceLabel--d05016 {
	white-space: nowrap;
}
.price-from {
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	color: #888;
}
.service-price {
	font-size: 18px;
	font-weight: 700;
	line-height: 20px;
	color: #888;
}
.activeBids p {
	color: #999;
	line-height: 18px;
}
@media screen and (max-width:767px) {
	header .account-actions {
		float: right;
		margin: 73px 11px 8px 0 !important;
		width: 100%;
		text-align: center;
		padding: 0 20px;
	}
	
	header .account-actions .button:last-child {
		float: right;
		margin-right: -24px;
	}
	
	header .account-actions .button {
		margin-right: 10px;
		margin-left: 0px !important;
	}
	
	header .logo-mobile {
		width: 51%;
		left: 30%;
		top: 15px;
	}
	
	.business h4 {
		text-align: left;
	}
	
	.business h4 span {
		padding-right: 6px;
	}
	
	.ht-banner {
		padding: 30px 0 30px 0 !important;
		min-height: auto;
	}
	
	.bg_no {
		min-height: 210px !important;
	}
	
	#subscribe-banner .subscribe-content .subscribe-form input[type="email"] {
		float: left;
		width: 60%;
		margin-right: 5%;
		height: 43px;
		line-height: 43px;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		font-size: 15px;
	}
	
	#subscribe-banner .subscribe-content .subscribe-form {
		margin: 10px 0 0 0;
		float: left;
		width: 100%;
	}
	
	#subscribe-banner .subscribe-content .subscribe-header .subscribe-title {
		text-align: center;
	}
	
	#subscribe-banner .subscribe-content .subscribe-header p {
		text-align: center;
	}
	
	#subscribe-banner {
		min-height: 210px;
	}
	
	.dash_menu ul li {
		float: none;
		margin-top: 10px;
	}
	
	.dash_menu ul li a.active {
		width: 100%;
	}
	
	.dashboard-header.dashboard-header-new {
		display: grid !important;
	}
	
	.dashboard-header {
		max-height: inherit !important;
	}
	
	.dashboard-header .dashboard-header-item.title {
		width: 100% !important;
	}
	
	.dashboard-header .dashboard-header-item.stats {
		width: 100% !important;
	}
	
	.dashboard-header .dashboard-header-item.back-button {
		width: 100% !important;
	}
	
	.dashboard-header .dashboard-header-item.back-button .button {
		line-height: 48px !important;
	}
	
	.d2_box .text-icon {
		min-height: 160px !important;
	}
	
	.form-box-item .button {
		width: 100% !important;
		margin: 4px 0 0 0;
	}
	
	.dash_menu ul li {
		float: none !important;
	}
	
	.reviews h1 {
		color: #000 !important;
	}
	
	.my-bid-box {
		padding: 4% 2% !important;
	}
	
	.sidebar-item.author-bio {
		border: 4px double #AB32C5;
	}
	
	.section .content .headline.buttons,
	.dashboard-content .headline.buttons {
		height: 70px
	}
	
	.section .content .headline.buttons::before,
	.dashboard-content .headline.buttons::before {
		height: 70px
	}
	
	.graph-stats-list-item {
		margin-left: 0% !important;
		width: 100% !important;
	}
	
	.seller_b_right {
		margin-right: 0% !important;
		width: 100% !important;
		float: right !important;
		margin-left: 0% !important;
	}
	
	.button.mid-short {
		margin-top: 43px !important;
	}
	
	.graph-stats-list-item.violet {
		background: linear-gradient(45deg, rgba(86, 130, 181, 0.83) 0%, rgba(77, 40, 152, 0.59) 49%, rgba(187, 52, 205, 0.59) 100%) !important;
	}
	
	.regiter_bg2 {
		background-position: initial !important;
	}
	
	.view-more {
		margin-left: 28%;
		margin-top: 110px;
		margin-bottom: 51px;
	}
	
	.property-list-box {
		width: 100%;
		margin: 0%;
	}
	
	.graph-stats-list-item {
		margin-left: 0px !important;
	}
	
	.m-width50 {
		width: 46% !important;
		margin: 2%;
		padding: 10px;
		border: 1px solid #5E5E5E;
	}
	
	.service-list.small .service-item .outer-ring {
		left: 32%;
		top: 20px;
	}
	
	.service-list.small .service-item h3 {
		text-align: center;
	}
	
	.service-list.small .service-item p {
		text-align: center;
	}
	
	.service-list .service-item {
		padding: 87px 10px 0 !important;
	}
	
	.service-list.small .service-item {
		width: 44%;
		border: 1px solid #bfbfbf;
		margin: 3% !important;
	}
	
	.column4-wrap.service-list,
	.column3-4-wrap.service-list {
		margin: 0px !important;
		width: 100%;
	}
	
	#services.services-v2 {
		padding: 20px 0 20px 0;
	}
	
	#subscribe-banner .subscribe-content .subscribe-form .button {
		float: right;
		width: 35%;
		margin: 0;
	}
	
	.tabcontent ul li {
		white-space: normal;
	}
	
	.tabcontent ul li .button5 {
		font-size: 16px !important;
	}
	
	.pakecge-area {
		padding: 40px 0 10px 0 !important;
	}
	
	.bidPackegeBdy {
		float: left;
		width: 100%;
		overflow-x: scroll;
	}
	
	.bidPackegeBdy .table-striped {
		width: auto;
		max-width: inherit;
		white-space: nowrap;
		border-collapse: collapse;
	}
	
	.bidPackegeBdy .main-bg-table th {
		float: none;
		width: 130px;
		display: inline-block;
		border-right: none;
		border-left: none;
	}
	
	.bidPackegeBdy .table-striped tbody tr td {
		float: none;
		width: 130px;
		display: inline-block;
	}
}
.search-form input[type="text"] {
	padding: 0 60px 0 20px;
	border-radius: 25px !important;
}
select {
	border: 1px solid #d1d1d1;
	box-shadow: 0px 1px 2px #fff !important;
	border-radius: 0px;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="url"]
{
	    border: 1px solid #d1d1d1;
    box-shadow: 0px 1px 2px #fff;
    border-radius: 0px;
	
}
input[type="date"] {
	border: 1px solid #d1d1d1;
	box-shadow: 0px 1px 2px #fff;
	border-radius: 0px;
}
textarea {
	border: 1px solid #d1d1d1;
	box-shadow: 0px 1px 2px #fff !important;
	height: 0px;
	border-radius: 0px;
}
input[type="time"] {
	border: 1px solid #d1d1d1;
	box-shadow: 0px 1px 2px #fff !important;
	padding: 0 20px;
	border-radius: 25px;
	width: 100%;
	height: 35px;
	line-height: 35px;
}
.doc-container label.rl-label.document-label {
	margin: 9px 0 !important;
}
header .account-actions {
	float: right;
	margin: 26px 0px 0 0px;
}
header .account-actions .button {
	margin-right: 0px;
	margin-left: 10px;
}
.menu-bar .search-form {
	right: 6px;
}
.service-list.small .service-item h3 {
	margin-top: 0px;
	margin-bottom: 10px;
}
.service-list.small .service-item {
	margin-top: 20px;
	margin-bottom: 20px;
}
#services.services-v2 {
	min-height: 346px;
}
.ser_banner {
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}
.ser_banner h2 {
	color: #fff;
}
.ser_banner p {
	color: #fff;
	text-align: center;
}
.service-content_l h3 {
	margin: -23px 0 20px 0;
	padding: 0px;
}
.service-icon2 {
	float: left;
	margin-right: 20px;
}
.ser_p_abox2 {
	margin: 0px !important;
	margin-bottom: 20px;
}
.post-paragraph h3 {
	margin-bottom: 22px !important;
}
.serviceBox2 h3 {
	text-align: left;
	margin: 0px 0px 10px 0px !important;
}
.graph-stats-list-item {
	width: 24%;
	float: left;
	margin-left: 26% !important;
	margin-top: 30px;
	padding: 18px 22px 30px;
}
.graph-stats-list-item.red2 {
	background-color: #ea2e68;
}
.graph-stats-list-item h2 {
	font-size: 2.625em;
	color: #fff;
	margin-bottom: 6px;
}

/*seller profile*/
.seller_pic {
	width: 100%;
	margin-bottom: 10px;
}
.seller_pic img {
	width: 100%;
	border: 6px double #5470AF;
}
.text_m {
	text-align: left !important;
	background: #f6f6f6;
	padding: 6px 10px;
}
.edu_border {
	border: 1px solid #ebebeb !important;
}
.in_p_padd {
	padding: 144px 21px 0px !important;
	margin-right: 30px !important;
}
.in_p_padd img {
	width: 100% !important;
}
.in_p_padd .text-header {
	padding-bottom: 8px;
}
.product-item .button.mid {
	font-size: 12px;
	height: 25px;
	line-height: 25px;
	width: 80px;
}

/*BID PAGE*/
.bid_bg {
	background: #fff;
	padding: 30px;
}
.bid_bg h2 {
	float: none !important;
}
.bid_icon {
	width: 100% !important;
}
.bid_icon p {
	font-size: 16px !important;
}
.bid_se1 {
	width: 100% !important;
	background: #fff;
	display: flow-root;
	padding: 0px 20px;
	margin-top: 20px;
}
.bid_h1 {
	width: 30% !important;
	float: left;
	padding: 20px 0;
	text-align: center !important;
	border-right: 1px solid #b2b2bd;
}
.bid_h1 p {
	font-size: 18px !important;
}
.bid_se2 {
	width: 100% !important;
	background: #fff;
	display: flow-root;
	padding: 20px 20px;
	margin-top: 20px;
}
.bid_se2 h2 {
	font-size: 20px;
	color: #000;
	padding-bottom: 30px;
}
.bid_w {
	width: 100% !important;
}
.bid_se2 p {
	font-size: 13px;
	color: #666;
	padding-bottom: 10px;
	padding: 0px 0 10px 0 !important;
	margin: 0px !important;
}
.bid_se2 p a {
	margin-right: 5px !important;
	color: #306EDA;
	font-weight: bold;
}
.bid_se_r {
	float: right;
	width: auto !important;
}
.bid_w .product-info {
	width: 290px !important;
}
.bid_box_4 {
	width: 40%;
	margin: 2% 5%;
	float: left;
}
.bid_box_8 {
	width: 80%;
	margin: 5%;
	float: left;
}
.bid_box_10 {
	width: 90%;
	margin: 5%;
}
.bid_box_bbb {
	width: 90% !important;
	margin: 0 auto !important;
	margin-bottom: 25px !important;
}
.bid_box_4 input.datepicker {
	width: 126px !important;
}
.width_50p {
	width: 48%;
	float: left;
}
.width_50pr {
	width: 48%;
	float: right;
	background: #f6d2fc;
	border-top: 4px solid #b233c8;
	padding: 20px 20px 4px 20px;
}
.width_50pr li {
	margin-bottom: 16px;
}
.width_50pr li p {
	margin: 0px;
	padding: 0px;
	color: #000;
}
.width_50pr li .bullet-icon.svg-check {
	float: left;
	display: block;
	color: #000;
	margin-top: 7px;
	margin-right: 10px
}
.width_50pr img {
	width: 100%;
	display: block;
}
.pay_icon {
	width: 100px;
	float: right;
}
.pay_icon img {
	width: 100%;
}
.pay_pro {
	width: 100%;
	clear: both;
	background: #f0f0f0;
	padding: 20px;
}
.payement_info {
	width: 100%;
	padding: 0px 20px;
	margin-bottom: 20px;
	background: #f6f6f6;
	border: 4px double #000;
}
.payement_info h3 {
	font-size: 18px;
	text-align: left;
	margin: 12px 0;
	text-transform: uppercase;
	color: #000;
}
.payement_info .info-box {
	font-size: 30px;
	margin-right: 10px;
	color: #000;
	vertical-align: middle;
}
.mile_left {
	width: 70%;
	padding: 30px;
	float: left;
}
.mile_left h2 {
	font-size: 20px;
	color: #000;
	margin: 0px;
	padding: 0 0 15px 0;
}
.mile_left p {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	line-height: 22px;
}
.m_l_b1 {
	width: 100%;
	display: flow-root;
	padding: 10px;
	margin: 10px 0;
	border: 3px solid #edebee;
}
.m_l_b1 h3 {
	font-size: 16px;
	text-align: left;
}
.m_l_b1 h3 span {
	padding-right: 10px;
	vertical-align: middle;
}
.mile_right {
	width: 30%;
	background: #f8f6f9;
	text-align: center;
	padding: 30px;
	float: left;
}
.mile_right h2 {
	font-size: 14px;
	color: #000;
	margin: 0px 0 10px 0;
	background: #fff;
	padding: 8px 0 8px 0;
}
.mile_right p {
	font-size: 12px;
	margin: 0px;
	padding: 0px;
	line-height: 18px;
}
.mb_t_box_a {
	width: 40%;
	float: right;
	border: 2px solid #edebee;
	height: 40px;
}
.dollar {
	width: 38px;
	height: 38px;
	font-size: 18px;
	background: #edebee;
	text-align: center;
	line-height: 38px;
	font-weight: bold;
	float: left;
}
.d_text {
	border: none !important;
	background: none;
	width: 60% !important;
	float: left;
	font-size: 14px;
	color: #000;
	height: 38px;
	line-height: 30px;
}
.m_icon1 {
	width: 30%;
	margin: 15px auto;
	float: none;
}
.m_icon1 img {
	width: 100%;
}
.w_59 {
	width: 100% !important;
}
.chat_m {
	width: 137px !important;
	margin-left: 10px !important;
}
.pic_ture {
	float: left;
	margin: 21px 0;
	cursor: pointer;
}
.chat_t_box {
	width: 84% !important;
	float: right;
	margin: 10px 0;
}
label>.radio,
label>.checkbox {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 1px solid #fff;
	position: relative;
	margin: 0px 10px 0 0;
	top: 5px;
	background: linear-gradient(45deg, rgb(86, 130, 181) 0%, rgb(77, 40, 152) 49%, rgb(187, 52, 205) 100%);
}
label>.radio span {
	width: 6px;
	height: 6px;
	background-color: #fff;
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 5px;
}
.pay_area {
	width: 100%;
    /* border: 1px solid #b5b5b5; */
    display: inline-block;
    background: #ffffff;
    margin-bottom: 20px;
    box-shadow: 1px 1px 12px #dedede;
    border-radius: 9px;
}
.pay_area p {
	font-size: 14px;
	padding: 0px 15px;
	margin: 0px;
	line-height: 50px;
}
.pay_area p img {
	float: left;
	width: 79px;
	padding: 3px 5px;
	background: #fff;
	margin-top: 12px;
	margin-right: 10px;
	border: 1px solid #b5b5b5;
}
.pay_card {
	width: 60%;
	float: left;
}
.pay_datr {
	width: 30%;
	float: left;
}
.pay_redio {
	width: 10%;
	float: left;
	position: relative;
}

/* Hide the browser's default radio button */
.pay_redio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 12px;
	right: 10px;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.pay_redio:hover input~.checkmark {
	background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.pay_redio input:checked~.checkmark {
	background-color: #2196F3;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.pay_redio input:checked~.checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.pay_redio .checkmark:after {
	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
.d2_box .text-icon p {
	text-align: left !important;
}
.dropdown.hover-effect>.dropdown-item>a {
	color: #000 !important;
}
.graph-stats-list-item {
	margin-left: 0%;
}
.seller_b_right {
	margin-right: 23%;
	float: right !important;
	margin-left: 0% !important;
}
label.rl-label {
	margin-top: 20px !important;
    margin-bottom: 4px;
    font-size: 14px;
}
.author-profile-banner {
	background: url("../images/profile_banner.jpg") no-repeat center;
	background-size: cover;
	min-height: 300px;
}
.product-description.portfolio-product-dis {
	height: auto !important;
}
.product-list.grid.column4-wrap .product-item.column.in_p_padd {
	min-height: 0px !important;
height: auto !important;
}
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 2px 2px 6px #e6e6e6;
}
.sticky2 {
	position: fixed;
	top: 0;
	width: 100%;
}
.transaction-list-header-date,
.transaction-list-item-date {
	border-right: 1px solid #ebebeb;
}
.form-box-item.w_100.spaced p {
	margin-bottom: 0px;
}
.transaction-list {
	padding-bottom: 0px;
}
.banner.banner-v2 h2 {
	color: #fff;
}
.property_c {
	color: #704AC7;
	background: linear-gradient(110deg, #B533CA, #4F3E9F);
	font-family: 'Roboto', sans-serif;
	padding: 0 30px 30px;
	margin: 44px 7px 0;
	border-radius: 20px 20px 70px 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	z-index: 1;
}
.property_c p {
	color: #2b373a !important;
	text-align: left !important;
}
.property_c:before {
	content: '';
	background: #f5f5f5;
	width: calc(100% - 30px);
	height: calc(100% - 30px);
	border-radius: 10px 10px 55px 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
	transform: translateX(-50%) translateY(-50%);
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
}
.property_c .service-icon {
	background: linear-gradient(110deg, #B533CA, #4F3E9F);
	font-size: 40px;
	text-align: center;
	line-height: 100px;
	width: 100px;
	height: 97px;
	margin: 0 0 15px;
	border-radius: 15px;
	transform: translateY(-20px) translateX(-37px);
	position: relative;
	z-index: 1;
}
.property_c .service-icon i {
	transition: all 0.3s ease 0s;
}
.property_c:hover .service-icon i {
	transform: rotateX(360deg);
}
.property_c .service-icon:before {
	content: "";
	background: #f5f5f5;
	width: 91px;
	height: 86px;
	border-radius: 10px;
	transform: translateX(-50%)translateY(-50%);
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
}
.property_c:hover .service-icon:before {
	opacity: 1;
}
.property_c .title {
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 0 0 10px;
}
.property_c .title:after {
	content: '';
	display: block;
	clear: both;
	background-color: #704AC7;
	height: 7px;
	width: 25px;
	margin: 5px 0 0;
	border-radius: 10px;
}
.property_c .description {
	font-size: 13px;
	line-height: 23px;
}
.property_c.green,
.property_c.green .service-icon {
	color: #10ac84;
	background: linear-gradient(110deg, #1dd1a1, #10ac84);
}
.property_c.green .title:after {
	background-color: #10ac84;
}
.property_c.pink,
.property_c.pink .service-icon {
	color: #E03F7B;
	background: linear-gradient(110deg, #FB638C, #E03F7B);
}
.property_c.pink .title:after {
	background-color: #E03F7B;
}
.property_c.blue,
.property_c.blue .service-icon {
	color: #2e86de;
	background: linear-gradient(110deg, #54a0ff, #2e86de);
}
.property_c.blue .title:after {
	background-color: #2e86de;
}
@media only screen and (max-width:990px) {
	.property_c {
		margin: 20px 7px 50px;
	}
}
.property_c .service-icon span img {
	padding-top: 8px;
}
.sidebar right {
	z-index: -111 !important;
}
#subscribe-banner-wrap {
	position: relative;
}
#footer-top-wrap {
	position: relative;
}

/* Extra styles for the cancel button */
.cancelbtn {
	width: auto;
	padding: 10px 18px;
	background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
	text-align: center;
	margin: -60px 0 12px 0;
	position: relative;
}
img.avatar {
	width: 30%;
	border-radius: 50%;
	border: 6px solid #fff;
	box-shadow: inset 0 1.5px 3px 0 rgba(0, 0, 0, .30), 0 1.5px 3px 0 rgba(0, 0, 0, .30);
}
.name_d_area {
	width: 100%;
	margin: -72px 0 0 0;
	background: #e8e9eb;
	text-align: center;
	border-bottom: 1px solid #d1d2d4;
	padding: 73px 0px 10px;
}
.name_d_area h2 {
	font-size: 22px;
	color: #141414;
	text-align: center;
	margin: 0px;
	padding: 0 0 3px 0;
	font-weight: bold;
}
.name_d_area p {
	font-size: 14px;
	color: #141414;
	text-align: center;
	margin: 0px;
	padding: 0 0 0px 0;
}
.modal .container {
	padding: 35px;
	width: 100%;
}
span.psw {
	float: right;
	padding-top: 16px;
}

/* The Modal (background) */
.modal {
	display: none;
	/* Hidden by default */
	
	position: fixed;
	/* Stay in place */
	
	z-index: 1;
	/* Sit on top */
	
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	
	height: 100%;
	/* Full height */
	
	overflow: auto;
	/* Enable scroll if needed */
	
	background-color: #000000a1;
	/* Black w/ opacity */
	
	padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
	background-color: #f5f5f7;
	box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.34);
	margin: 5% auto 15% auto;
	/* 5% from the top, 15% from the bottom and centered */
	
	border: 1px solid #cccbcb;
	/*width: 30%; */
	/* Could be more or less, depending on screen size */
}
.modal-header {
	padding: 20px !important
}

/* The Close Button (x) */
.close2 {
	cursor: pointer;
	position: absolute;
	top: 72%;
	right: 3%;
	font-size: 18px;
	padding: 0;
	transform: translate(0%, -50%);
	width: 30px;
	height: 30px;
	line-height: 30px;
	background: #939393;
	color: #fff;
	border-radius: 50%;
}
.close2:hover,
.close2:focus {
	color: #000;
	background: #fff;
	cursor: pointer;
}

/* Add Zoom Animation */
.animate {
	-webkit-animation: animatezoom 0.6s;
	animation: animatezoom 0.6s
}
@-webkit-keyframes animatezoom {
	from {
		-webkit-transform: scale(0)
	}
	
	to {
		-webkit-transform: scale(1)
	}
}
@keyframes animatezoom {
	from {
		transform: scale(0)
	}
	
	to {
		transform: scale(1)
	}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
	span.psw {
		display: block;
		float: none;
	}
	
	.cancelbtn {
		width: 100%;
	}
}
.imgcontainer2 {
	text-align: center;
	margin: 0px 0 5px 0;
	position: relative;
}
img.avatar2 {
	width: 16%;
	border-radius: 50%;
	border: 6px solid #fff;
	box-shadow: inset 0 1.5px 3px 0 rgba(0, 0, 0, .30), 0 1.5px 3px 0 rgba(0, 0, 0, .30);
}
.name_d_area2 {
	width: 100%;
	margin: 0px 0 0 0;
	text-align: center;
}
.name_d_area2 h2 {
	font-size: 22px;
	color: #141414;
	text-align: center;
	margin: 0px;
	padding: 0 0 0px 0 !important;
	font-weight: bold;
}
.name_d_area2 p {
	font-size: 14px;
	color: #141414;
	text-align: center;
	margin: 0px;
	padding: 0 0 0px 0;
}
.payment_area_padding {
	padding: 80px 170px !important;
}
.post-btn {
	background: #05ecc5;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
.search-btn {
	background: #acacac;
	box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
.hire-scope {
	width: 100%;
}
.hire-scope .icon {
	width: 40px;
	float: left;
	margin: 0 15px 0 0 !important;
	padding: 0px !important;
}
.hire-scope .icon img {
	width: 100%;
}
.modal-dialog {
	width: 100% !important;
}
@media screen and (max-width:767px) {
	.graph-stats-list-item {
		margin-left: 0px !important;
	}
}
.sub-banner {
	width: 100%;
	margin: 0px !important;
	position: relative;
	padding: 0px !important;
}
.sub-banner h2 {
	width: 29%;
	padding: 20px;
	position: absolute;
	background: linear-gradient(45deg, rgba(86, 130, 181, 0.76) 0%, rgba(77, 40, 152, 0.78) 49%, rgba(187, 52, 205, 0.77) 100%);
	font-size: 50px;
	font-weight: 900;
	text-align: center;
	top: 50px;
	right: 0px;
}
.sub-banner h2 span {
	font-size: 25px;
	font-weight: bold;
}

/*=========================service=======================*/
.w_haif {
	width: 47%;
	margin-right: 3%;
	float: left;
}
.ser_p_abox {
	width: 33%;
	float: left;
	padding-right: 20px;
}
.ser_p_abox2 {
	width: 45%;
	float: left;
	padding-right: 20px;
}
.serviceBox2 {
	padding: 51px 0px 56px 70px;
	position: relative;
}
.serviceBox2:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	transform: scale3d(1.08, 1.08, 1.08);
	transition: all 0.33s ease 0s;
}
.serviceBox2:hover:before {
	opacity: 1;
	transform: scale3d(1, 1, 1);
}
.serviceBox2 .service-icon2 {
	width: 50px;
	padding: 10px;
	font-size: 30px;
	color: #ff5157;
	text-align: center;
	border: 2px solid #02ae91;
	position: absolute;
	top: 55px;
	left: 0;
	transition: all 0.3s ease 0s;
}
.serviceBox2 .service-icon2 img {
	width: 100%;
	display: block;
}
.serviceBox2:hover .service-icon2 {
	transform: translateY(20px);
}
.serviceBox2 .service-icon2:before,
.serviceBox2 .service-icon2:after {
	content: "";
	height: 2px;
	background: #02ae91;
	position: absolute;
	top: -20px;
	left: 10px;
	right: 10px;
	transition: all 0.3s ease 0s;
}
.serviceBox2 .service-icon2:after {
	top: auto;
	bottom: -20px;
	left: 10px;
	right: 10px;
}
.serviceBox2:hover .service-icon2:before {
	top: -25px;
	transform: rotate(90deg);
}
.serviceBox2:hover .service-icon2:after {
	transform: rotate(-90deg);
	bottom: -25px;
}
.serviceBox2 .title {
	display: block;
	font-size: 16px;
	font-weight: 700;
	text-align: left;
	color: #474747;
	margin: 10px 0 0px 0;
	position: relative;
}
.serviceBox2 .description {
	font-size: 13px;
	color: #807d7d;
	text-align: left;
	line-height: 20px;
	margin: 0;
}
@media only screen and (max-width:990px) {
	.serviceBox2 {
		margin-bottom: 30px;
	}
}
@media only screen and (max-width:767px) {
	.serviceBox2:before {
		transform: scale3d(1, 1, 1);
	}
	
	.serviceBox2 .service-icon2 {
		top: 30px;
	}
	
	.service-list .service-item {
		width: 33.33%;
	}
	
	.sub-banner img {
		width: 100% !important;
	}
	
	.sub-banner {
		float: left;
		width: 100%;
	}
	
	.sub-banner h2 {
		width: 100%;
		font-size: 20px;
		padding: 10px;
		top: 6px;
		position: relative;
	}
	
	.sub-banner h2 span {
		font-size: 15px;
	}
	
	#myHeader2 {
		position: inherit !important;
	}
	
	.ser_p_abox {
		width: 100%;
		margin-right: 0px;
		padding-right: 0;
	}
	
	.serviceBox2 {
		padding: 51px 0px 20px 70px;
		margin-bottom: 0px !important;
	}
	
	.ser_p_abox2 {
		width: 100%;
	}
	
	.section .content .headline,
	.dashboard-content .headline {
		height: auto;
		margin-top: 20px;
	}
	
	.section .content .headline::before,
	.dashboard-content .headline::before {
		height: 100% !important;
	}
	
	.dropdown.hover-effect>.dropdown-item>a {
		color: #b0b0b0 !important;
	}
	
	.modal-cus {
		width: 100% !important;
	}
	
	.section .content .headline h4,
	.dashboard-content .headline h4 {
		float: none;
		text-align: left !important;
		padding-left: 15px;
	}
	
	.sellerImage .product-preview-image img {
		height: 70px !important;
		width: 70px !important;
		margin-top: 3%;
	}
	
	.search-seller.sellers .seller-item .seller-info {
		overflow: auto !important;
	}
	
	.author-profile-banner.bannerwithimage img {
		display: none;
	}
	
	.post .post-paragraph {
		margin-top: 20px;
		float: left;
		width: 100%;
	}
}
@media only screen and (max-width:480px) {
	.serviceBox2 .service-icon2 {
		top: 40px;
	}
}
footer {
	position: relative;
}
.serviceBox_l {
	text-align: center;
}
.serviceBox_l .service-icon_l {
	display: inline-block;
	width: 120px;
	height: 120px;
	line-height: 95px;
	border-radius: 50%;
	border: 15px solid #4f399d;
	font-size: 45px;
	color: #4f399d;
	margin-bottom: 15px;
	position: relative;
	transition: all 0.3s ease 0s;
}
.serviceBox_l:hover .service-icon_l {
	line-height: 105px;
	border-width: 10px;
	font-size: 52px;
}
.serviceBox_l .service-icon_l:before {
	content: "";
	width: 15px;
	height: 0;
	margin: 0 auto;
	position: absolute;
	bottom: -100px;
	left: 0;
	right: 0;
	transition: all 0.3s ease 0s;
}
.serviceBox_l:hover .service-icon_l:before {
	transform: rotateY(360deg);
}
.serviceBox_l .service-content_l {
	padding: 20px 15px 0;
	border-radius: 0%;
	overflow: hidden;
	z-index: 1;
	position: relative;
}
.serviceBox_l .service-content_l:before {
	content: "";
	width: 100%;
	height: 65px;
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 75px;
	cursor: pointer;
}
.serviceBox_l .title {
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	text-transform: capitalize;
	margin: 0 0 40px 0;
}
.serviceBox_l .description {
	font-size: 15px;
	color: #6f6f6f;
	line-height: 27px;
}
.serviceBox_l.blue .service-icon {
	border-color: #1169e4;
	color: #1169e4;
}
.serviceBox_l.blue .service-icon_l:before,
.serviceBox_l.blue .service-content:before {
	background: #1169e4;
}
.serviceBox_l.green .service-icon_l {
	border-color: #1e9239;
	color: #1e9239;
}
.sticky2 {
	position: fixed;
	top: 0;
	width: 100%;
}
#myHeader2 {
	top: 80px !important;
}
.bid_h1 {
	border: none !important;
}
.product-list.list .product-item .w_54 {
	width: 20px !important;
}
.modal-cus {
	position: relative;
	padding: 15px;
	width: 45% !important;
	margin: 0 auto !important;
}
@media only screen and (max-width:767px) {
	.modal-cus {
		width: 100% !important;
	}
	
	.section .content .headline h4,
	.dashboard-content .headline h4 {
		float: none;
		text-align: left !important;
		padding-left: 15px;
	}
	
	.link-list .link-item {
		width: 100%;
	}
	
	.model-con-new {
		width: 80% !important;
	}
}
.model-con-new {
	width: 100%;
}
.width-50 {
	width: 46% !important;
	margin: 2%;
}
.width-100 {
	width: 92% !important;
	margin: 2% 4%;
}
div#bookViewingModal .timeBox {
	width: 100% !important;
	display: block;
	text-align: center;
	margin-left: 0%;
	padding: 0% 1%;
	margin: 0 1% !important;
	border-color: #ac33c6 !important;
}
div#bookViewingModal p.text-center.selectDatePara {
	color: #000;
}
@media only screen and (max-width:767px) {
	.commonModal .modal-title {
		font-size: 14px;
	}
	
	#timeCal .ui.input {
		margin: 0px !important;
	}
	
	.LatestPro.author-items-v2 .item-preview {
		width: 100%;
		padding-bottom: 10px;
	}
	
	.ui.container {
		width: auto!important;
		margin-left: 0;
		margin-right: 0;
		padding: 16px 0 0 0 !important;
		margin: 0px !important;
	}
	
	.compare-boxes .compare-box {
		width: 100% !important;
	}
	
	.compare-common-discription {
		width: 100% !important;
	}
	
	.compareList1 {
		width: 90%;
		padding: 0 5%;
	}
	
	.modal-content {
		width: 67%;
	}
	
	.banner {
		min-height: 362px;
		padding-top: 10px;
		position: relative;
		height: 362px;
	}
}
#ui-id-1 {
	width: 400px !important;
	background: #fff;
	height: 400px;
	overflow: scroll;
}
.ui-menu-item {
	line-height: 40px;
	background: #eee;
	padding: 0 15px !important;
	margin-bottom: 3px;
	border-left: 3px solid #512899;
	cursor: pointer;
	display: block;
}
.ui-menu-item:hover {
	color: #fff;
	background: #512899;
}
.mg-menu {
	width: 100%;
	float: left;
}
.mg-menu li {
	margin: 0.5% !important;
	width: 49%;
	float: left;
	padding: 5px !important;
	background: #E9E9E9;
}
.mg-menu li a {
	padding: 5px 10px !important;
	line-height: normal !important;
}
.fa.fa-angle-right.float-right {
	float: right;
}
.clear {
	clear: both;
}
.pakecge-area {
	max-width: 1170px;
	margin: 0 auto;
	padding: 60px 0;
}
#zipcodeWrap {
	display: flow-root;
}
.favourites-area {
	max-width: 1170px;
	margin: 0 auto;
	padding-top: 60px;
}
.favourites-area .product-preview-image {
	height: 193px !important;
}
.favourites-area .product-list.grid .product-item {
	padding: 208px 13px 4px !important;
}
.favourites-area .product-list.grid .product-item .product-preview-actions:hover .preview-actions {
	opacity: 9 !important;
	visibility: visible;
	margin-top: 20%;
}
.fevo-icon {
	float: right;
	cursor: pointer;
}
.search-form input[type="text"],
input[type="number"] {
	height: 33px !important;
	line-height: 33px !important;
}

/*seller-list-css*/
#result_list .row {
	border-bottom: 2px solid #e6e7e8;
}
#result_list .result_item.h {
	background: #F9F9F9;
}
#result_list .row .user_avatar {
	width: 20%;
	float: left;
	margin-right: 2%;
	padding: 20px 0;
}
#result_list .row .user_avatar img {
	width: 100%;
}
#result_list .row .user_content {
	width: 78%;
	float: left;
	padding: 20px 0;
}
#result_list .row .user_content .u_header {}
#result_list .row .user_content .u_header:after {
	content: " ";
	display: block;
	height: 1px;
	overflow: hidden;
	clear: both;
}
#result_list .row .user_content .u_header h3 {
	float: left;
	font-size: 1.4em;
	color: #404C6B;
	margin: 0px;
	padding: 3px 0;
}
#result_list .row .user_content .u_header .ab {
	float: left;
}
#result_list .row .user_content .u_header .ab:after {
	content: " ";
	display: block;
	height: 1px;
	overflow: hidden;
	width: 100%;
	clear: both;
}
#result_list .row .user_content .u_header .ab .verified_user {
	float: left;
	background: url(../images/verified_user.png) center center / contain no-repeat;
	text-indent: -999em;
	overflow: hidden;
	display: block;
	width: 25px;
	height: 25px;
	margin: 0 5px;
}
#result_list .row .user_content .u_header .ab .premium_membership {
	float: left;
	background: url(../images/premium_membership.png) center center / contain no-repeat;
	text-indent: -999em;
	overflow: hidden;
	display: block;
	width: 25px;
	height: 25px;
	margin: 0 5px;
}
#result_list .row .user_content .u_header .ab .top_5 {
	float: left;
	background: url(../images/top_5.png) center center / contain no-repeat;
	text-indent: -999em;
	overflow: hidden;
	display: block;
	width: 35px;
	height: 28px;
	margin: -1px 5px 0;
}
#result_list .row .user_content .u_header .ab .online {
	float: left;
	display: block;
	margin: 3px 5px 0;
	position: relative;
	padding: 0 0 0 15px;
	color: #6d6e71;
	font-size: .8em;
}
#result_list .row .user_content .u_header .ab .online span {
	float: left;
	background: url(../images/online.png) center center / contain no-repeat;
	text-indent: -999em;
	overflow: hidden;
	display: block;
	width: 12px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
}
#result_list .row .user_content .u_header .ab a {
	color: #6d6e71;
}
#result_list .row .user_content .u_header .ab a:hover {
	color: #6d6e71;
	text-decoration: none;
}
.popover {
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.31);
	border: none;
}
.popover h3 {
	background: #f9f5ea;
	text-align: center;
	color: #c66505;
	border-bottom: 1px solid #eabe31;
}
.popover .popover-body {
	color: #556080;
}
#result_list .row .user_content .u_content p {
	color: #404C6B;
	font-size: .8em;
	padding: 0px;
	line-height: 15px;
	margin: 0px 0 8px;
}
#result_list .row .user_content .u_tags {}
#result_list .row .user_content .u_tags:after {
	content: " ";
	display: block;
	height: 1px;
	overflow: hidden;
	width: 100%;
	clear: both;
}
#result_list .row .user_content .u_tags .ico {
	display: block;
	float: left;
	background: url(../images/tags.png) center center / contain no-repeat;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
#result_list .row .user_content .u_tags ul {
	float: left;
	list-style: none;
	margin: 0;
	padding: 0;
}
#result_list .row .user_content .u_tags ul li {
	list-style: none;
	float: left;
	margin-right: 6px;
	line-height: normal;
}
#result_list .row .user_content .u_tags ul li a {
	color: #939598;
	display: block;
	font-size: 1.1em;
	line-height: 18px;
}
#result_list .row .user_content .u_tags .view_more {
	float: left;
	color: #404C6B;
	line-height: 18px;
	font-weight: bold;
	font-size: .8em;
}
#result_list .row .user_content .u_details {
	padding-top: 10px;
}
#result_list .row .user_content .u_details:after {
	content: " ";
	display: block;
	height: 1px;
	overflow: hidden;
	width: 100%;
	clear: both;
}
#result_list .row .user_content .u_details .u_country {
	color: #404C6B;
	font-size: .8em;
	float: left;
	margin-right: 25px;
}
#result_list .row .user_content .u_details .u_country .ico {
	display: block;
	float: left;
	background: url(../images/country_flag.png) center center / contain no-repeat;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
#result_list .row .user_content .u_details .jobs_finished {
	color: #404C6B;
	font-size: .8em;
	float: left;
	margin-right: 10px;
}
#result_list .row .user_content .u_details .jobs_finished .ico {
	display: block;
	float: left;
	background: url(../images/jobs_finished.png) center center / contain no-repeat;
	width: 20px;
	height: 20px;
	margin-right: 10px;
}
#result_list .row .user_content .u_details .earned {
	color: #404C6B;
	font-size: .8em;
	float: left;
	margin-right: 10px;
}
#result_list .row .user_content .u_details .rating {
	color: #404C6B;
	font-size: .8em;
	float: left;
	margin-right: 10px;
}
#result_list .row .user_content .u_details .rating .rating_value {
	float: left;
	background: #404C6B;
	color: #fff;
	padding: 2px 4px;
	border-radius: 4px;
	margin-right: 4px;
	font-size: .8em;
}
#result_list .row .user_content .u_details .rating .rating_stars {
	float: left;
}
#result_list .row .user_content .u_details .rating .rating_stars span {
	background: url(../images/rating.png) center center / contain no-repeat;
	display: block;
	float: left;
	width: 12px;
	height: 12px;
	margin-top: 4px;
	margin-right: 1px;
}
#result_list .row .user_content .u_details .rating .rating_stars span.v {
	background: url(../images/rating_v.png) center center / contain no-repeat;
}
#result_list .row .user_content .u_details .rating .reviews {
	float: left;
}
#result_list .row .hire_col {
	text-align: center;
}
#result_list .row .fvalue {
	text-align: center;
	font-size: 1.4em;
	font-weight: 700;
	color: #404C6B;
	padding: 35px 0 25px;
}
#result_list .row .hire_btn {
	text-align: center;
	font-size: 16px;
	color: #fff;
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	padding: 6px 25px;
	border-radius: 5px;
	border: 0;
	font-weight: 100;
}
nav {
	float: left;
	display: flow-root !important;
	width: 100%;
}
.search-seller.sellers .seller-item .price-info {
	width: 100% !important;
	padding: 0px !important;
	border-right: none;
}
.search-seller.sellers .seller-item .author-data {
	padding: 0px !important;
	height: auto !important;
}
.button.dark-light.float-right {
	float: right;
	margin: 10px 0;
}
.button.dark-light.float-left {
	float: left;
	margin: 10px 0;
}
ul.rating.col-md-12 {
	margin: 0px !important;
}
.search-seller.sellers .seller-item {
	height: auto !important;
	padding: 10px 0 0 10px;
	margin-bottom: 14px;
	display: flow-root !important;
	overflow: auto;
}
.sellerBtn {
	margin-top: 13% !important;
}
.sub-banner img {
	width: 100%;
}
.dropdown-item2 {
	border-color: #2b373a;
	position: relative;
}
.dropdown-item2>a {
	padding-left: 30px;
	color: #6a7779;
	transition: all .2s ease-in;
}
.dropdown-item2>a {
	display: block;
	padding-left: 15px;
	line-height: 50px;
	color: #9e9e9e;
	font-size: 0.875em;
	font-weight: 700;
}
.dropdown-item3 {
	border-color: #2b373a;
}
.dropdown-item3 {
	border-bottom: 1px solid #ebebeb;
	position: relative;
}
.dropdown-item3>a {
	padding-left: 60px;
	color: #6a7779;
	transition: all .2s ease-in;
}
.dropdown-item3>a {
	display: block;
	padding-left: 15px;
	line-height: 50px;
	/* color: #2b373a; */
	font-size: 0.875em;
	font-weight: 700;
}
@media only screen and (max-width:767px) {
	.banner .search-widget {
		height: 288px;
	}
	
	.banner .search-widget-form .select-block {
		display: block !important;
	}
	
	.search-widget-form .select-block {
		width: 100%;
		background: #fff !important;
	}
}

/*=========================new design=======================*/
.main-bg-table {
	background: -webkit-linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
}
.main-bg-table th {
	color: #fff;
}
.add-employee-input .button.mid-short {
	width: 72px;
}
dropdown notifications no-hover open {
	height: 20em;
	overflow: hidden;
	overflow-y: scroll;
}
.card-item {
	height: 113px !important;
	padding: 10px 0 0 93px;
	margin-bottom: 14px;
}
.wrap-text {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	width: 562px;
}
.notification-scroll {
	height: 29em;
	overflow: hidden;
	overflow-y: scroll;
	z-index: 9999999999999;
}
.button-text-center {
	justify-content: center;
	display: flex;
	align-items: center;
}
.text-wrap {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 168px;
}
.product-list .product-item .product-info.scroll-card {
	overflow-y: auto !important;
	margin-bottom: 0px !important;
	height: 52px !important;
}
.pargraph-size {
	color: #999999 !important;
	float: left;
	list-style: none;
}
.rating-inner {
	width: 21px !important;
	font-size: 11px !important;
	background: #306eda;
	float: left;
	color: #fff;
	text-align: center;
	font-weight: bold;
	padding: 2px 0 !important;
	margin: 0 6px 0 0 !important;
	border-radius: 5px;
}
.seller-name {
	font-size: 13px !important;
	letter-spacing: 1px;
}
.card-text {
	overflow: hidden !important;
}
.text-wrap-2 {
	text-overflow: ellipsis;
	width: 301px !important;
	display: block !important;
	overflow: hidden;
	white-space: nowrap;
}
.heading-bid.heading-width {
	width: 50% !important;
	float: left !important;
}
.mark-font {
	font-size: 12px !important;
	width: 100px !important;
}
.inbox-message-preview .inbox-reply-form.buyer-reply-form input[type="text"] {
	width: 300px !important;
}
.inbox-reply-form.buyer-reply-form.text-box-size {
	padding: 0 0px 0 0px !important;
}
.message-preview select#duplicate_message_id {
	width: 9%!important;
	height: 16px!important;
	padding: 0px !important;
	margin-right: 102px;
	border-radius: 3px !important;
}
.message-preview button.duplicateBtn {
	margin-left: 0 !important;
}
.userMsgBoard img {
	width: 40px;
	height: 40px;
}
.product-list.grid.column4-wrap .product-item.column.in_p_padd.portfolio-card {
	min-height: 325px !important;
	height: 350 !important;
min-height: 200px !important;
height: 240px !important;
}
.text-header.tiny.employee-content {
	display: inline !important;
}
.product-list.list .product-item .price-info.card-table {
	width: 177px !important
}
.place-bid-left-new .product-list .price-info.w_54.chat-award {
	width: 108px !important;
}
.description-2 {
	width: 47% !important;
}
.wrap-text-2 {
	max-width: none !important;
}
.load-more {
	margin-left: auto;
	margin-top: 22px;
	padding: 0;
	    font-size: 14px;
}
.image-size {
	width: 106px;
	height: 106px;
	border-radius: 5px;
	border-radius: 50%;
}
.inner-card {
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 13px;
}
.inner-card h2 {
	margin: 0 0 5px 0 !important;
	font-size: 22px;
}
.icons-width {
	width: 15%;
}
.bid-card {
	background: #fff;
	padding: 10px 10px;
	margin-bottom: 20px;
	border-radius: 10px;
}
.text-center-2 {
	text-align: center;
	font-size: 19px;
	border-right: 1px solid #e4e3e3;
}
.text-center-2 h6 {
	margin: 0 !important;
	font-size: 16px;
	color: #632ca4;
	text-transform: unset;
}
.text-center-2 label {
	margin-bottom: 10px !important;
}
.rate-card h6 {
	font-size: 20px;
}
.checked {
	color: orange;
}
.rating-card1 {
	background: orange;
	padding: 2px 10px;
	border-radius: 4px;
	color: #fff;
}
.review-card-1 p {
	line-height: 1;
	font-size: 17px;
	margin-top: 10px;
}
.job-note {
	font-size: 15px !important;
	color: #632ca4 !important;
	font-weight: bolder;
}
.description-note p {
	line-height: 1.5;
}
.total-review {
	color: #632ca4;
	font-weight: bolder;
}
.chat-button-inner {
	margin: 6px 9px 0 0 !important;
	width: 43%;
}
.job-card-days h5 {
	background: #ffb100;
	height: 22px;
	width: 96px;
	box-shadow: 3px 2px 7px #9696966b;
	color: #fff;
	font-size: 11px;
	padding: 5px 8px;
	position: absolute;
	right: -12px;
	top: 2px;
	border-radius: 2px 0 0 2px;
}
.dot {
	height: 17px;
	width: 17px;
	background-color: green;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	right: 7%;
	top: 66%;
	border: 3px solid #fff;
}
.tick-2:before {
	content: '';
	width: 13px;
	height: 13px;
	background: #00d728;
	position: absolute;
	border-radius: 50%;
	top: 83px;
	left: 99px;
	border: 2px solid #fff;
}
.tick-3:before {
	content: '';
	width: 13px;
	height: 13px;
	background: red;
	position: absolute;
	border-radius: 50%;
	top: 83px;
	border: 2px solid #fff;
	left: 99px;
}
.online-offline-sign {
	margin-left: 21px;
	font-size: 11px;
}
.icons-prmium {
	text-align: left;
}

/* AC service page card designe */
.ac-service-1 {
	margin-bottom: 20px;
	background: linear-gradient(to right, #fff 95%, #632ca4 68%);
	padding: 7px;
	border-radius: 5px;
	box-shadow: 3px 3px 11px #c5c2c2;
	position: relative;
	overflow: hidden;
}
.inner-card-2 h2 {
	margin: 0 0 7px 0 !important;
	font-size: 22px;
}
.card-tag {
	padding: 0;
}
.image-size-1 {
	width: 50%;
}
.card-tag span {
	text-transform: unset;
	color: #632ca4;
	background: #6b6b6b;
	padding: 3px;
	border-radius: 3px;
	color: #fff;
	margin-right: 3px;
}
.card-tag {
	line-height: 2;
}
.image-width-3 {
	float: left;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	margin-right: 5px
}
.profile-name h6 {
	color: #636363;
	text-transform: unset;
	margin-left: 36px;
	font-size: 10px;
}
.image-size-1 {
	margin-left: 10px;
}
.inner-rating-content {
	float: left;
}
.inner-rating-content h6 {
	margin-left: 0px;
}
.review-inner {
	background: #ffffff;
	color: #632ca4;
	text-align: center;
	padding: 3px;
	border-radius: 50%;
}
.inner-rating-content {}
.right-card-width {
	width: 98%;
}
.rating-side .main-row {
	margintop: 10px;
}
.inner-2 h6 {
	color: #fff;
	text-transform: unset;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-word-break: break-all;
	/* This is the dangerous one in WebKit, as it breaks things wherever */
	
	word-break: break-all;
	/* Instead use this non-standard one: */
	
	word-break: break-word;
	/* Adds a hyphen where the word breaks, if supported (No Blink) */
	
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.online-card a {
	color: #fff;
}
.online-card {
	margin-top: 4px;
}
.hire-contact-btn {
	margin-top: 13px;
}
.hire-contact {
	text-align: center;
	margin-top: 8px;
	font-size: 12px;
	color: #fff;
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	padding: 6px 25px;
	border-radius: 5px;
	border: 0;
	/* font-weight: 100; */
}
.inner-rating {
	width: 33px;
}
.price-tag h1 {
	font-size: 25px;
	color: #632ca4;
	line-height: 0px !important;
}
.inner-rating {
	margin-left: 5px;
	margin-top: 5px;
}
.inner-badge {
	min-width: 10px;
	/* padding: 12px 14px; */
	
	height: 32px;
	width: 32px;
	justify-content: center;
	align-items: center;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	color: #632ca4;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	background-color: #fff;
	border-radius: 50%;
	margin-left: 4px;
}
.employee-card a {
	font-size: 13px;
	white-space: nowrap;
}
.heading-product {
	background: #546cae;
	padding: 14px;
}
.recent-product {
	box-shadow: 0 0 10px #e3e1e3;
	background: #fff;
	margin-top: 15px;
}
.inner-content-4 h5 {
	color: #969696;
	text-transform: unset;
	font-weight: 500;
}
.inner-content-5 h5 {
	color: #969696;
	text-transform: unset;
	font-weight: 500;
}
.inner-content-3 h5 {
	text-align: left;
	color: #969696;
	text-transform: unset;
	font-weight: 500;
	padding-left: 5px;
}
.updates-inner {
	background: #fff;
	padding: 8px;
	margin-bottom: 15px;
	height: 100%;
	align-items: center;
	display: flex;
}
.updates-inner p {
	margin-top: 10px;
}
.image-size-2 {
	width: 73%;
}
.main-profile .main-profile {
	width: 114px;
	border-radius: 50%;
	height: 112px;
	margin: auto;
	display: block;
	border: 2px solid #fff;
}
.main-profile {
	background: #546cae;
	padding: 7px;
}
.purchase h5 {
	color: #353535;
	text-transform: unset;
	font-weight: 500;
	color: #969696;
}
.inner-balance {
	text-align: center;
}
.post-a-job {
	margin: auto;
	display: block;
	border-radius: 24px;
	margin-bottom: 9px;
}
.image-size-3 {
	display: block;
	margin: auto;
	width: 92%;
	margin-left: 8px;
}
.image-size-4 {
	display: block;
	margin: auto;
	width: 53%;
}
.services-page h5 {
	text-align: left;
	border-bottom: 1px solid #fff;
}
.purchase {
	padding-bottom: 8px;
}
.services-page h5 {
	background: #9c78c7;
	margin: 0;
	color: #fff;
	padding: 13px 4px;
}
.title-heading h5 {
	font-weight: bold;
	color: #632ca4;
}
.title-heading {
	border-bottom: 1px solid #f2f0f0;
}
.user-name h5 {
	font-size: 17px;
	color: #632ca4 !important;
	text-transform: unset;
}
.border-heading {
	margin: auto;
	width: 80px;
	height: 4px;
	left: 106px;
	background: #632ca4;
	border-radius: 16px;
}
.notification-heading {
	margin-top: 15px;
}
.notification-update {
	margin-bottom: 22px;
}
.wallet-image {
	margin-top: 9px;
}
.price-tag-1 h5 {
	color: #b133c8;
	font-weight: 700;
}
.purchase span {
	color: #b133c8;
	font-weight: 700;
}
.main-row h6 {
	font-weight: 500 !important;
}
.description-note-2 p {
	font-weight: 500;
}
.tags {
	padding: 12px;
}
.heading-name h2 {
	padding: 0 !important;
	border-bottom: none !important;
	font-weight: 700 !important;
	margin-bottom: 0px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 360px) {
	.row-setting {
		display: flex;
	}
	
	.chat-button-inner {
		width: 16%;
	}
	
	.icons-width {
		width: 14%;
	}
	
	.row-setting2 {
		display: flex;
	}
	
	.bid-card {
		max-width: 58%;
	}
	
	.employee-card-icons {
		width: 9%;
		float: left;
	}
	
	.profile-main-head {
		display: flex;
	}
	
	.icons-width {
		width: 9%;
	}
	
	.inner-rating-content {
		display: block;
	}
	
	.inner-rating {
		width: 46px;
	}
	
	.inner-rating-content {
		float: none;
	}
	
	.rating-high {
		width: 36px;
		margin: auto;
	}
	
	.tick-2:before {
		content: '';
		width: 10px;
		height: 10px;
		background: #00d728;
		position: absolute;
		border-radius: 50%;
		top: 13px;
		left: 22px;
	}
	
	.tick-3:before {
		content: '';
		width: 10px;
		height: 10px;
		background: red;
		position: absolute;
		border-radius: 50%;
		top: 13px;
		left: 22px;
	}
	
	.online-offline {
		margin-left: 14px;
	}
	
	.hire-contact-btn {
		margin-bottom: 15px;
	}
	
	.hire-contact {
		margin-left: 15px;
	}
	
	.icons-prmium {
		text-align: left !important;
	}
	
	.icons-width {
		max-width: 6%;
	}
	
	.updates-inner p {
		font-size: 11px;
		margin: 0;
	}
	
	.inner-rating-content {
		width: 27em;
	}
	
	.hide-coloum {
		display: none;
	}
	
	.image-reasponsive {
		max-width: 50px;
		max-height: 50px;
		border-radius: 50%;
	}
	
	.heading-name h2 {
		font-size: 17px;
	}
	
	.card-tag-2 {
		width: 84%;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	
	.card-tag span {
		font-size: 11px;
	}
	
	.description-note-2 p {
		font-size: 11px;
	}
	
	#result_list .row .hire_btn {
		font-size: 10px;
		display: flex;
	}
	
	.inner-main-card {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	.inner-badge {
		background-color: #fff;
		color: #632ca4;
	}
	
	.inner-2 h6 {
		color: #555;
	}
	
	.main-row {
		text-align: center;
		margin-top: 25px;
	}
	
	.dot {
		position: absolute;
		left: 19%;
		top: 37%;
		border: 3px solid #fff;
	}
	
	.inner-badge {
		margin: auto;
	}
	
	.hire-contact {
		margin-left: 72px;
	}
	
	.rating-high {
		border-radius: 50%;
		background: #632ca4;
	}
	
	.inner-rating-content {
		width: 100%;
	}
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 480px) {
	.row-setting {
		display: flex;
	}
	
	.chat-button-inner {
		width: 16%;
	}
	
	.icons-width {
		width: 14%;
	}
	
	.row-setting2 {
		display: flex;
	}
	
	.bid-card {
		max-width: 58%;
	}
	
	.employee-card-icons {
		width: 9%;
		float: left;
	}
	
	.profile-main-head {
		display: flex;
	}
	
	.icons-width {
		width: 9%;
	}
	
	.inner-rating {
		width: 46px;
	}
	
	.inner-rating-content {
		float: none;
	}
	
	.rating-high {
		width: 36px;
		margin: auto;
	}
	
	.tick-2:before {
		content: '';
		width: 10px;
		height: 10px;
		background: #00d728;
		position: absolute;
		border-radius: 50%;
		top: 13px;
		left: 22px;
	}
	
	.tick-3:before {
		content: '';
		width: 10px;
		height: 10px;
		background: red;
		position: absolute;
		border-radius: 50%;
		top: 13px;
		left: 22px;
	}
	
	.online-offline {
		margin-left: 14px;
	}
	
	.hire-contact-btn {
		margin-bottom: 15px;
	}
	
	.hire-contact {
		margin-left: 15px;
	}
	
	.heading-name {
		text-align: left;
	}
	
	.icons-prmium {
		text-align: left !important;
	}
	
	.icons-width {
		max-width: 6%;
	}
	
	.updates-inner p {
		font-size: 11px;
		margin: 0;
	}
	
	.inner-rating-content {
		width: 100%;
	}
	
	.hide-coloum {
		display: none;
	}
	
	.image-reasponsive {
		max-width: 50px;
		max-height: 50px;
		border-radius: 50%;
	}
	
	.heading-name h2 {
		font-size: 17px;
	}
	
	.card-tag-2 {
		width: 84%;
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}
	
	.card-tag span {
		font-size: 11px;
	}
	
	.description-note-2 p {
		font-size: 11px;
	}
	
	#result_list .row .hire_btn {
		font-size: 13px;
	}
	
	.inner-main-card {
		padding-right: 0px;
		padding-left: 0px;
	}
	
	.inner-badge {
		background-color: #632ca4;
		color: #fff;
	}
	
	.inner-2 h6 {
		color: #555;
	}
	
	.main-row {
		text-align: center;
		margin-top: 25px;
	}
	
	.dot {
		position: absolute;
		left: 14%;
		top: 68%;
		border: 3px solid #fff;
	}
	
	.inner-badge {
		margin: auto;
	}
	
	.hire-contact {
		margin-left: 72px;
	}
	
	.ac-service-1 {
		border-radius: 6px;
	}
	
	.rating-high {
		border-radius: 50%;
		background: #632ca4;
	}
}
.subPopFrmBdy {
	float: left;
	width: 100%;
}
.list-group .my-bid-box {
	margin-bottom: 20px;
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 768px) {
	.row-setting {
		display: flex;
	}
	
	.chat-button-inner {
		width: 16%;
	}
	
	.icons-width {
		width: 14%;
	}
	
	.row-setting2 {
		display: flex;
	}
	
	.bid-card {
		max-width: 92%;
	}
	
	.image-reasponsive {
		width: 112px;
		height: 128px;
	}
	
	.employee-card-icons {
		width: 9%;
		float: left;
	}
	
	.profile-main-head {
		display: flex;
	}
	
	.icons-width {
		width: 9%;
	}
	
	.inner-rating {
		width: 46px;
	}
	
	.inner-rating-content {
		float: none;
		width: 100%;
	}
	
	.rating-high {
		width: 36px;
		margin: auto;
	}
	
	.tick-2:before {
		content: '';
		width: 10px;
		height: 10px;
		background: #00d728;
		position: absolute;
		border-radius: 50%;
		top: 13px;
		left: 22px;
	}
	
	.tick-3:before {
		content: '';
		width: 10px;
		height: 10px;
		background: red;
		position: absolute;
		border-radius: 50%;
		top: 13px;
		left: 22px;
	}
	
	.online-offline {
		margin-left: 14px;
	}
	
	.hire-contact-btn {
		margin-bottom: 15px;
	}
	
	.hire-contact {
		margin-left: 15px;
	}
	
	.heading-name {
		text-align: left;
	}
	
	.icons-prmium {
		text-align: center;
	}
	
	.inner-2 h6 {
		white-space: nowrap;
	}
	
	.updates-inner p {
		font-size: 11px;
		margin: 0;
	}
	
	.mile_right {
		width: 100%;
		padding: 30px 20;
	}
	
	.mile_left {
		width: 100%;
		padding: 30px;
	}
	
	.reviews .list-group {
		padding: 0 20px;
	}
	
	.reviews h1 {
		padding: 0 20px;
	}
	
	.subPopFrmBdy #recommendation-popup {
		margin-bottom: 0 !important;
	}
	
	.transaction-list .transaction-list-item div {
		margin-bottom: 10px;
	}
	
	.upload-file {
		overflow: hidden;
		margin-bottom: 0px;
	}
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
	.bid-card {
		width: 100%;
	}
}

/* Buyer projects */
.tablink-2 {
	background-color: #8c9bc5;
	color: white;
	float: left;
	border: none;
	outline: none;
	cursor: pointer;
	padding: 7px 16px;
	font-size: 17px;
	width: 25%;
}
.tablink-2:hover {
	background-color: #894cd1;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent-2 {
	display: none;
	padding: 22px 20px;
	height: 100%;
	background: #fff;
	margin-top: 15px;
	margin-bottom: 32px;
	border-radius: 10px;
}
.main-heading h3 {
	border-bottom: 1px solid #999999;
	padding: 15px 0;
}
.buyer-project {
	margin-top: 15px;
}
.buyer-project .table td {
	color: #969696;
}
.inner-job-btn {
	float: right;
	margin-top: 15px;
	margin-right: 17px;
}
.tablinks-3 {
	background: linear-gradient(to right, #9731bb 0%, #5361ac 100%);
	/* padding: 50px; */
	
	height: 65px;
	padding: 14px;
}
.tabcontent-2 thead {
	background: #00d7b3;
	color: #fff;
}
.inner-heading h4:after {
	content: '';
	position: absolute;
	height: 3px;
	top: 26px;
	left: 22px;
	width: 40px;
	background: #5361ac;
}
.checkbox-inner {
	display: block;
	position: absolute;
	z-index: 99999;
	height: 14px;
	width: 20px;
	opacity: 0;
}
.scroll-popup {
	height: 14em;
	overflow: hiddden;
	overflow: hidden;
	overflow-y: scroll;
}
.popup-heading-bg {
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	border-radius: 5px 5px 0 0;
}
.popup-heading-bg h4 {
	color: #fff;
}
.popup-add-remove {
	z-index: 99999999999999999999999;
}
.compare-align {
	position: absolute;
	bottom: 42px !important;
	right: 0px !important;
}
.radio-popup-scroll {
	height: 15em;
	overflow: hidden;
	overflow-y: scroll;
}
.heart-icon-align {
	* margin-left: 25px;
}
.approved-button {
	font-size: 12px;
}
.sent-button-align {
	height: 40px !important;
}
.star-rating-bid {
	margin-top: 0px !important;
}
.card-property-align {
	width: 100%;
	height: 24em;
}
.card-property-align h3 {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 70%;
}
.cross-button-btn {
	color: #fff;
	opacity: 0.7;
}
.cross-button-btn:hover {
	opacity: 1;
}
.pack-boxes {
	width: 1170px;
	padding-left: 6px;
	margin-bottom: 6px;
	padding-bottom: 40px;
}
@media screen and (min-width:768px) and (max-width:1100px) {
	.mainfinalclass{
		width: 32px !important;
    border-radius: 50%;
    background: #632ca4;
    padding: 7px;
	}
	.dropdown.hover-effect>.dropdown-item>a {
		color: #b0b0b0 !important;
	}
}
.tag-width .select2.select2-container.select2-container--default {
	width: 500px !important;
}
.tag-width .select2-selection.select2-selection--multiple {
	height: 135px;
}
@media only screen and (max-width: 800px) and (min-width: 600px) {
	.bgchange-respo-mobile {
		background: #ececec;
		height: 333px !important;
		border-radius: 7px;
	}
	
	.bgchange-respo-mobile .row.main-row-2 {
		width: 39%;
		display: inline-grid !important;
	}
	
	.mt-porfolio {
		margin-bottom: 0px;
	}
	
	.ac-service-1 {
		background: #fff !important;
		border: 2px solid #cbcbcb;
	}
	
	.icons-width {
		width: 4% !important;
	}
	
	.bgchange-respo-mobile {
		background: #ececec;
		height: 160px;
	}
	
	.right-card-width {
		width: 100% !important;
		background: #000;
	}
}
@media only screen and (max-width: 600px) and (min-width: 480px) {
	.mainfinalclass{
		width: 32px !important;
    border-radius: 50%;
    background: #632ca4;
    padding: 7px;
	}
	.dialogwidthmodelbox {
    max-width: 100% !important;
}
.contentwidthcalnderboc{
		min-width:80% !important;
	}
	.bgchange-respo-mobile {
		background: #ececec;
		height: 195px !important;
		border-radius: 7px;
	}
	
	.bgchange-respo-mobile .row.main-row-2 {
		width: 39%;
		display: inline-grid !important;
	}
	
	.mt-porfolio {
		margin-bottom: 0px;
	}
	
	.ac-service-1 {
		background: #fff !important;
		border: 2px solid #cbcbcb;
	}
	
	.icons-width {
		width: 4% !important;
	}
	
	.bgchange-respo-mobile {
		background: #ececec;
		height: 160px;
	}
	
	.right-card-width {
		width: 100% !important;
		background: #000;
	}
	
	.becomebuyer-main {
		width: 85% !important;
		box-shadow: 3px 2px 10px #cdcdcd !important;
		border: none !important;
		border-radius: 5px !important;
		margin: auto;
	}
	
	.responsive-card-sv {
		background: #632ca4 !important;
		height: 113px;
	}
	
	.inner-rating {
		margin: auto;
		display: block;
	}
	
	.inner-badge {
		margin: auto;
	}
	
	.online-card a {
		color: white !important;
	}
	
	.rating-high {
		margin: auto;
		display: block;
	}
	
	.right-card-width {
		width: 100% !important;
	}
}
@media only screen and (max-width: 768px) and (min-width: 600px) {
	.right-card-width {
		background: #9136a1;
	}
	.mainstatesdashboard {
    background: url(../images/statesdashboard.png);
    background-size: contain;
    height: 209px !important;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 12px;
	    border-radius: 26px;
}
	
	.bgchange-respo-mobile .row.main-row-2 {
		width: 37%;
		display: inline-grid !important;
	}
	
	.inner-badge {
		margin: auto;
	}
}

/******************************freeLANCE BID CARD*******************/
h2 .company-name-sec {
	font-size: 14px !important;
	color: #5e3494 !important;
}
.show-read-more .more-text {
	display: none;
}
.icons-veryfy li {
	float: left;
	padding-right: 11px;
	font-size: 20px;
	color: #000;
}
.icons-veryfy {
	margin-bottom: -4px;
}
.icons-veryfy li .fa-mobile {
	font-size: 29px;
}
.tags-style h6 {
	border-bottom: 1px solid #e6e6e6;
	text-transform: none;
	color: #0acbaa;
	width: 442px;
	text-overflow: ellipsis;
	overflow: hidden;
	margin: 0;
	padding: 5px 0;
	/* margin-top: 80px !important; */
	line-height:2;
	margin-top: 1px;
	font-weight: 600;
	font-size: 13px;
	/* margin-bottom: 4px; */
}
.mt-bidplace {
	margin-top: 0 !important;
}
.content-line {
	white-space: nowrap;
	text-overflow: ellipsis;
	width: 100%;
	overflow: hidden;
}

/********************************read more****************************/
.more-text-2 {
	display: none;
}
.read-more {
	color: #7037a4 !important;
}
.card-shadow {
	box-shadow: 5px 5px 10px #e2dfdf;
	position: relative;
}
.icons-veryfy {
	display: inline-flex;
}
.icons-width-2 {
	width: 22px;
}
.butn-section {
	display: grid;
}
.butn-section button {
	width: 100% !important;
}
.rate-card {
	padding-top: 36px;
}
.icon-wallet-main img {
	background: #8e8e8e;
	padding: 9px;
	border-radius: 7px;
}

/***************************responsive*****************/
@media only screen and (max-width: 480px) and (min-width: 320px) {
	.totalvaluemain{
		float:none !important;
	}
	.ot-bottom-left-main {
    position: relative;
    top: 10px !important;
    left: 229px !important;
    z-index: 999;
}
.ot-top-left-main {
    left: 237px !important;
    top: 10px !important;
}
	.timeBox{
		padding: 0% 0% 0% 0% !important;
	}
	.ratecardlisttoppi .container {
	padding: 0px 0px !important;
	}
	.contntwrapop{
		    width: 155px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

	}
	
		ol.progtrckr li {
    width: 40% !important;
	    white-space: nowrap;
		font-size: 8px!important;
}
input#sellerAssignTL {
    margin-left: 59px;
}
ol.progtrckr li.progtrckr-todo:before {
    content: "";
    color: silver;
    background-color: white;
    font-size: 2.2em;
    bottom: -28px !important;
    border: 2px solid #05ecc5;
    padding: 6px !important;
    border-radius: 20px 20px 20px 0;
    transform: rotate(45deg);
}
ol.progtrckr li.progtrckr-todo {
    font-size: 8px!important;
}
ol.progtrckr li.progtrckr-done:before {
    content: "\2713";
    color: white;
    background: -webkit-linear-gradient(
45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%);
    height: 2.2em;
    width: 2.2em;
    line-height: 20px;
    border: none;
    border-radius: 20px 20px 20px 0px;
}
	.mrhub{
		margin-bottom:10px;
	}
	.teamChatMember{
		height: 77px !important;
	}
	.spanmini{
		display:inline-block !important;
	}
	.widthsamejjh{
		    min-width: 87% !important;
			    margin: 15px;
    padding: 5px;
	}
	.containeruibnjhjk{
	padding: 0 !important;
}
	.js-cookie-consent-agree {
    background: #222;
    border: none;
    padding: 5px 25px !important;
    font-size: 15px !important;
}
.cookie-consent__message {
    font-size: 14px !important;
    color: #fff;
}
.bg-success {
    background: linear-gradient(
45deg
, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%) !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 12px !important;
    /* top: 50%; */
}
	.samplemoden{
		    height: 212px;
	}
	.mainsectiontopper{
		padding-bottom: 22px;
	}
	.nonedesktop{
		display:none;
	}
	.imgsocialmobile{
		display:block !important;
	}
.imgsectionpart {
    background: #fff0 !important;
    border-radius: 0 60px 500px 0;
}
.frontbox{
	margin-top: 32px !important;
	font-size: 26px !important;
}
.imgsectionpart2 {
    background: #fff0 !important;

}
	.myhjk {
    margin-top: 20px !important;
    float: left;
}
.respospce{
	margin-bottom:15px;
}
.widthlibh{
	width: 100% !important;
}
.numberone{
	display:none;
}
	#sidepanel{
		width: 100% ;
        min-width: 100%;
	    height: 100% ;
	}
	.widthmainforpass{
		min-width:90% !important;
	}
.searchmaincontent{
   line-height:3;
}
	.reqtxtboxestop2{
		margin-bottom:10px;
	}
	.pad-topmain0{
		padding-top:0px !important;
	}
	.responsive-modelcontent{
		    width: 93% !important;
			    margin: 2px;
	}
	.mainfinalclass{
	width: 32px !important; 
	border-radius: 50%;
    background: #632ca4;
	padding:7px;
	
}
	.fc-view-harness.fc-view-harness-active{
		    height: 305px !important;
	}
	.totaltimemain{
		margin-top: 15px;
	}
	.chartdiv{
		margin-left:0 !important;
		
		
	}
	.contentwidthcalnderboc{
		min-width:80% !important;
	}
	.modelmainsystem{
		position: absolute;
    top: -19px !important;
    left: 20px !important;
	}
	.widthresponsivegive{
		    min-width: 64% !important;
    background: #fff !important;
	}
	.modelmainsystem4 {
    position: absolute;
    top: -40px;
    left: -190px;
    width: 792px !important;
}
.modelmainsystem3 {
    position: absolute;
    top: -40px !important;
    left: -190px !important;
    width: 792px !important;
}
.modelmainsystem2 {
    position: absolute;
    top: -40px !important;
    left: -190px !important;
    width: 792px !important;
	
}
	.dialogwidthmodelbox {
    max-width: 100% !important;
}
	.main-graphbgchange{
		margin-top:15px !important;
	}
	.mainstatesdashboard {
    background: url(../images/statesdashboard.png);
    background-size: contain;
    height: 209px !important;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 12px;
	    border-radius: 26px;
}
	.section-bg-main-ser{
	    margin-bottom:12px;	
	}
	.section-main-heading1 h2 {
    text-align: center;
    margin-bottom: 37px ;
    font-size: 33px !important;
    text-transform: uppercase;
    color: #9136a1;
}
.section-main-heading1 h2::before {
    content: 'All users data';
    position: absolute;
    top: 18px;
    color: #e9e9e94a;
    font-size: 45px !important;
    left: 59px !important;
    z-index: 0;
}
.section-main-heading2 h2 {
    text-align: center;
    margin-bottom: 37px ;
    font-size: 33px !important;
    text-transform: uppercase;
    color: #9136a1;
}
.section-main-heading2 h2::before {
    content: 'All users data';
    position: absolute;
    top: 18px;
    color: #e9e9e94a;
    font-size: 45px !important;
    left: 113px !important;
    z-index: 0;
}
	.main-alignment-icons a {
		color: #000 !important;
	}
	
	.main-alignment-icons a:hover {
		color: #000 !important;
	}
	
	.call-phone-seller a {
		color: #000 !important;
	}
	
	.call-phone-seller a:hover {
		color: #000 !important;
	}
	
	.more-inf-btn {
		color: #000 !important;
	}
	
	.in-protprice-tag {
		margin-top: 0px !important;
	}
	
	.main-alignment-icons {
		height: 29px !important;
		display: block !important;
		align-items: center !important;
	}
	
	.heading-name h2 {
		margin-bottom: 2px !important;
	}
	
	.inner-pagemain {
		background: #fff !important;
		padding: 7px 35px !important;
		color: #fff !important;
		width: 100% !important;
		text-align: center !important;
		position: absolute !important;
		right: 0 !important;
		bottom: 0 !important;
		border-radius: 0px !important;
		box-shadow: 2px 3px 10px #969696 !important;
	}
	
	.inner-pagemain .call-message {
		padding: 6px 15px !important;
		color: #555;
		font-weight: 600;
	}
	
	.call-image-icons-svg {
		width: 33px !important;
	}
	
	.pad-0-main {
		padding: 0 !important;
	}
	
	.rating-high {
		width: 33px;
		padding: 7px;
	}
	
	.rate-ph {
		margin: 10px 0;
	}
	
	.inner-2 h6 {
		font-size: 9px;
		color: #353535 !important;
	}
	
	.ac-service-1 {
		border: 2px solid #cbcbcb;
		box-shadow: none !important;
	}
	
	.inner-rating {
		margin: auto;
		text-align: center;
		display: block;
	}
	
	.rating-high {
		margin: auto;
		text-align: center;
		display: block;
	}
	
	.bgchange-respo-mobile .row.main-row-2 {
		width: 42%;
		float: left;
		height: 61px;
	}
	
	.bgchange-respo-mobile {
		background: #ececec;
		height: 160px;
	}
	
	.services-counter-number {
		display: flex;
		align-items: center;
		height: 60px !important;
		justify-content: center;
	}
	
	.tablein-responsive-mobile {
		box-shadow: 4px 4px 10px #c7c7c7;
		border-radius: 6px;
		margin-bottom: 27px;
		display: block !important;
	}
	
	.mobile-side-cont {
		padding: 6px 19px;
	}
	
	.message-content-hide {
		width: 184px;
		white-space: nowrap;
		text-overflow: ellipsis;
		overflow: hidden;
	}
	
	.mobile-side-cont h6 {
		text-transform: capitalize;
		font-size: 14px;
	}
	
	.button-accpet-dec {
		width: 71px;
		float: left;
		margin-right: 5px;
	}
	
	.button-accpet-dec-2 {
		width: 80px;
		margin-left: 35px !important;
		margin: 0px;
	}
	
	.main-h4-cattego {
		font-weight: 500;
		color: #4e4e4e;
		font-size: 17px;
		margin-bottom: 0;
	}
	
	.pl-padding-pr {
		padding-left: 0px !important;
		padding-right: 0px !important;
	}
	
	.hidemobile-siderespo {
		display: none;
	}
	
	.main-line-table {
		display: block !important;
	}
	
	.tbale-design-main {
		background: #fff;
		border-radius: 5px;
		box-shadow: 3px 4px 10px #bdbdbd;
	}
	
	.inner-page-table-design {
		padding: 3px 16px;
	}
	
	.main-line-table {
		background: #f0f0f0;
		margin-top: 6px;
		margin-bottom: 15px;
	}
	
	.inner-page-table-design h6 {
		font-size: 14px;
		text-transform: capitalize !important;
	}
	
	.button-details-lead {
		background: #8838b4;
		border: none;
		padding: 8px;
		font-size: 13px;
		font-weight: 600;
		margin: 6px 14px;
	}
	
	.add-lead-iamges {
		background: #ab12ff;
		width: 67px;
		padding: 15px;
		margin: auto;
		border-radius: 50%;
		border: 4px solid #fff;
	}
	
	.text-coontent-main {
		color: #969696;
	}
	
	.added-main-tab h6 {
		text-align: center;
		font-size: 18px;
		color: #fff;
	}
	
	.main-col-bg {
		background: #353535 url("../images/promo2_texture.png");
		padding: 4px;
		border-radius: 5px 5px 0 0;
	}
	
	.bg-main-totaly {
		background: #fff;
		color: #000 !important;
		max-width: max-content;
		margin: auto;
		padding: 6px;
		border-radius: 30px;
		margin-top: 9px;
	}
	
	.border-bottom-main {
		border-bottom: 1px solid #969696;
	}
	
	.m-o-0 {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	
	.table20 {
		width: 28% !important;
	}
	
	.date-border-chnge {
	
	}
	
	.mb-00-select {
		margin-bottom: 0 !important;
		background: #fff !important;
	}
	
	.seler-btn-respo {
		margin-top: 20px !important;
	}
	
	.respo-main-wishlist {
		position: absolute !important;
		right: 20px !important;
		top: -67px !important;
	}
	
	.width-align-respo-cont {
		width: auto !important;
	}
	
	.mb-main-butn {
		margin-bottom: 6px;
	}
	
	.button-pop-up-main {
		text-overflow: ellipsis;
		overflow: hidden;
		white-space: nowrap;
		padding: 0px 8px;
		width: 100px;
	}
	
	
	
	.close-button-align {
		position: absolute;
		top: -10px;
		right: 0;
	}
	
	.ma-0-main {
		margin: 0 !important;
	}
	
	.model-top-p0 {
		padding-top: 0px !important;
	}
	
	.model-bx-margin-0 {
		margin: 0 !important;
		width: 100% !important;
	}
	
	.howworkpar {
		font-size: 22px !important;
	}
	
	.threarepar {
		font-size: 13px !important;
	}
	
	.font-size-main-respo {
		font-size: 16px !important;
	}
	
	.butto-rag-respo {
		line-height: 1.2;
	}
	
	.pp-00-main {
		padding: 0 !important;
	}
	
	.width-of-popup-main {}
	
	.button-main-add-2 {
		background: transparent !important;
		border: none !important;
	}
	
	.button-main-add-2 .requirementbtn {
		box-shadow: none !important;
	}
	
	.becomebuyer-main {
		width: 85% !important;
		box-shadow: 3px 2px 10px #cdcdcd !important;
		border: none !important;
		border-radius: 5px !important;
		margin: auto;
	}
	
	.mt-m172 {
		margin-top: 172px;
	}
	
	.table-design .thread-responsive {
		display: revert !important;
	}
	
	.table-design {}
	
	.content-feedback {
		height: 118px !important;
	}
	
	.height-of-contentmain {
		height: 65px !important;
	}
	
	.section .content .headline,
	.dashboard-content .headline {
		height: 72px !important;
	}
	
	.content-seller-buy {
		float: left !important;
	}
	
	.bg-main-wall .graph-stats-list-item.violet {
		background: #464646 !important;
	}
	
	.bg-main-wall .graph-stats-list-item {
		width: 91% !important;
	}
	
	.bg-main-wall {
		height: 391px !important;
		width: 362px !important;
		margin: auto;
		border-radius: 11px;
	}
	
	.text-center-2 {
		width: 33% !important;
	}
	
	.text-center-2 label {
		font-size: 11px;
	}
	
	.text-center-2 h6 {
		font-size: 11px;
	}
	
	.rate-card {
		padding-top: 0px;
	}
	
	.responsive-float {
		float: left;
	}
	
	.row-setting2 {
		display: table-caption;
	}
	
	.inner-card {
		padding-bottom: 13px 0;
	}
	
	.description-note p {
		font-size: 11px !important;
	}
	
	.icons-veryfy {
		display: block !important;
	}
	
	.icons-veryfy li {
		display: contents;
	}
	
	.icons-width-2 {
		margin-right: 8px;
	}
	
	.image-size {
		width: 50px !important;
		height: 50px !important;
		border-radius: 50% !important;
		border: none !important;
	}
	
	.dot {
		position: absolute !important;
		left: 52px !important;
		top: 29px !important;
	}
	
	.job-card-days h5 {
		top: -116px;
	}
	
	.rate-card {
		display: -webkit-inline-box !important;
	}
	
	.rate-card h6 {
		margin-right: 25px;
	}
	
	.rate-card span {
		margin-top: 14px;
	}
	
	.review-card-1 {
		margin-left: 14px;
	}
	
	.tags-style h6 {
	    width: auto;
    line-height: 2;
	}
	.job-card-days h5 {
    margin-top: -70px !important;
}
	
	.chat-res-chk {
		margin-right: 20px !important;
	}
	
	#frame #sidepanel #chat_contacts ul li.contact {
		padding: 6px 0 63px 8px !important;
	}
	
	#frame #sidepanel #chat_contacts ul li.contact .wrap span {
		position: absolute;
		left: 0;
		top: 51px;
	}
	
	ol.progtrckr[data-progtrckr-steps="6"] li {
		width: 25% !important;
	}
}

/***************************************/
.no-verify {
	opacity: 0.3;
}
.read-conten {
	font-size: 13px !important;
}
.read-more-show {
	cursor: pointer;
	color: #ed8323;
}
.read-more-hide {
	cursor: pointer;
	color: #ed8323;
}
.hide_content {
	display: none;
}
.testr {
	float: left;
	margin-right: 4px;
}
.tser {
	width: 86% !important;
}

/********************chats changes****************/
.chat-p-c h3 {
	color: #555 !important;
	margin-left: 13px;
}
.dot-online {
	height: 8px;
	width: 8px;
	background: #6db74e;
	position: absolute;
	border-radius: 50%;
	left: 6px;
	top: 15px;
}
.icons-choose {
	position: absolute;
	font-size: 21px !important;
	top: 9px;
	right: 10px;
	z-index: 999999999;
	color: #969696;
}
.box-inner-att {
	padding: 17px 61px 20px 14px !important;
	border-radius: 5px;
}

/***************************************************/
.hire-contact-2 {
	text-align: center;
	margin-top: 8px;
	font-size: 12px;
	color: #fff;
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	padding: 4px 21px;
	border-radius: 5px;
	border: 0;
	/* font-weight: 100; */
}
.add-btn-ot {
	position: relative;
	top: 10px;
	left: 191px;
	z-index: 999;
}
.messages.msg_sent:before {
	content: '';
	position: absolute;
	border-top: 5px solid transparent;
	border-left: 10px solid #ae33c7;
	border-bottom: 5px solid transparent;
	right: 5px;
	bottom: 6px;
}
.messages.msg_receive:before {
	content: '';
	position: absolute;
	border-top: 5px solid transparent;
	border-right: 10px solid #546dae;
	border-bottom: 5px solid transparent;
	left: 5px;
	bottom: 6px;
}
.bg-receive {
	background: #546dae !important;
}
.bg-send {
	background: #ae33c7 !important;
}
.chats-icons-inner {
	background: #000;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 15px;
	bottom: 14px !important;
	;
	z-index: 999999999999;
	border-radius: 50%;
}

/********************************chast pulse********************/
.pulse {
	display: block;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #a932c4;
	cursor: pointer;
	box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
	animation: pulse 2s infinite;
}
.pulse:hover {
	animation: none;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-box-shadow: 0 0 0 0 rgba(26, 146, 204, 0.4);
	}
	
	70% {
		-webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
	}
	
	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
	}
}
@keyframes pulse {
	0% {
		-moz-box-shadow: 0 0 0 0 rgba(26, 146, 204, 0.4);
		box-shadow: 0 0 0 0 rgba(165, 132, 201, 0.7);
	}
	
	70% {
		-moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
		box-shadow: 0 0 0 10px rgba(165, 132, 201, 0);
	}
	
	100% {
		-moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
		box-shadow: 0 0 0 0 rgba(165, 132, 201, 0);
	}
}
.comment-chat {
	font-size: 21px !important;
	/* align-items: center; */
	
	display: flex !important;
	align-items: center;
	justify-content: center;
	color: #fff;
	margin-top: 11px;
}
.chat-icons .fa-plus:before {
	display: none;
}
.chat-icons .fa-minus:before {
	display: none;
}
.image-upload>input {
	display: none;
}
.collpase-potfolio {}
.btn-shape {
	background: linear-gradient(to bottom right, #5575b1, #a832c4);
	padding: 3px 34px;
	color: #fff;
	border-radius: 24px;
	position: relative;
	box-shadow: 3px 3px 7px #8e8a8a;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	margin: 0 5px;
	transition: all 0.3s linear;
	cursor: pointer;
}
.btn-shape i {
	display: none;
}
.vert-move {
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 0.3s infinite alternate;
}
.vert-move {
	-webkit-animation: mover 1s infinite alternate;
	animation: mover 0.3s infinite alternate;
}
@-webkit-keyframes mover {
	0% {
		transform: translateY(0);
	}
	
	100% {
		transform: translatey(-5px);
	}
}
@keyframes mover {
	0% {
		transform: translateY(0);
	}
	
	100% {
		transform: translatey(-8px);
	}
}
.btn-shape:hover {
	color: #fff !important;
	border-radius: 24px;
}
.btn-shape:hover i {
	display: block;
	position: absolute;
	transition: all 0.5s ease;
	top: 14px;
	right: 17px;
	color: #fff;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-ms-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}
.pl-chat {
	padding-left: 0 !important;
}
.location-service {
	font-size: 11px;
	margin-bottom: 0;
	color: #bdbdbd;
}
.company-name-sec {
	margin-bottom: 0;
}
.portolio-img img {
	width: 243px;
	border-radius: 6px;
	height: 170px;
	margin: auto;
	cursor: pointer;
	display: block;
	object-fit: cover;
}
.portfolio-bg-img .glyphicon.glyphicon-chevron-left {
	font-size: 12px !important;
	color: #000 !important;
	position: absolute;
	left: -6px;
	top: 79px;
	border: 5px solid #05ecc5;
	z-index: 1;
	box-shadow: 3px 3px 10px #05ecc5;
}
.portfolio-bg-img .glyphicon.glyphicon-chevron-right {
	font-size: 12px !important;
	color: #000 !important;
	position: absolute;
	left: -15px;
	top: 79px;
	border: 5px solid #05ecc5;
	box-shadow: 3px 3px 10px #05ecc5;
	z-index: 1;
}
.portfolio-bg-img {
	background: #3f0079 url("../images/bg-price-tag.jpg");
	border-radius: 8px;
	padding: 10px 23px;
	margin-top: 12px;
	box-shadow: 0 0 10px #969696;
}
.portfolio-bg-img .carousel-control {
	width: 0% !important;
	color: #000!important;
}
.tags-bg-inner {
	background: #05ecc5;
	color: #2b373a;
	padding: 0px 5px;
	margin: 0 3px;
	border-radius: 13px;
}
.backgroud-modal-box {
	width: 40% !important;
	margin: 140px auto !important;
}
.modal-pop-up-img {
	width: 100% !important;
}
.group-chat-name {
	width: 126px!important;
	text-align: left;
	white-space: nowrap!important;
	text-overflow: ellipsis!important;
	overflow: hidden!important;
}
.messge-card-icons {
	width: 28px;
	justify-content: center;
	display: flex;
	align-items: center;
	height: 46px;
	margin-left: 8px;
}
.img-add-people {
	display: none !important;
	width: 17px;
	margin-right: -14px;
}
.drop-down-icons {
	width: 42px !important;
	background-color: transparent !important;
	border: none !important;
}
.drop-down-icons .dropdown-menu {
	min-width: 120px !important;
}
.readmrpar {
	font-size: 12px !important;
}
.support-chat-fix {
	position: fixed;
	width: 250px !important;
	z-index: 999999999;
}
.sidepanel-scroll {
	padding-bottom: 34px;
}
.chats-spacing {
	padding-top: 30px;
}
.service-clr {
	color: #555 !important;
	margin-left: 17px;
	margin-top: 7px;
}
.chat-width-100 {
	width: 220px !important;
}
.align-content {
	display: inline !important;
}
.mt-porfolio {
	margin-top: 10px;
}
.chat-box-12 {
	width: 292px;
}
.panel-footer {
	padding: 0 !important;
}
.post-btn-add {
	cursor: pointer;
}
@media only screen and (max-width: 480px) and (min-width: 320px) {
	.portfolio-bg-img .glyphicon.glyphicon-chevron-left {
		top: 39px;
	}
	.dialogwidthmodelbox {
    max-width: 100% !important;
}
	.portfolio-bg-img .glyphicon.glyphicon-chevron-right {
		top: 39px;
	}
	
	.portolio-img img {
		width: 83px;
		border-radius: 6px;
		height: 90px;
		margin: auto;
		display: block;
		object-fit: cover;
	}
	
	.responsive-card {
		min-width: 90% !important;
		padding: 20px 5px !important;
	}
	
	.support-chat-fix {
		position: fixed;
		width: 294px !important;
		z-index: 999999999;
	}
	
	.sidepanel-scroll {
		padding-bottom: 37px;
	}
	
	.chats-icons-inner {
		position: fixed;
		right: 5px;
		bottom: 50px !important;
	}
	
	.chat-width-100 {
		width: 264px !important;
	}
	
	.camra-open-des {
		max-width: 37px !important;
		border-radius: 50%;
		height: 37px;
		background: #ffffff !important;
		color: #000;
		border: 4px solid #27d0cc;
	}
	
	.my-camra-shape {
		width: 240px !important;
		height: 240px !important;
		border: 7px solid #bf45d5 !important;
		border-radius: 50%;
		justify-content: center;
		display: flex;
		align-items: center;
		margin: auto;
		overflow: hidden;
	}
	
	.take-snapshot-des {
		border-radius: 50% !important;
	}
	
	.camra-btn-alo {
		position: relative;
		top: 232px !important;
		left: 66% !important;
	}
	
	.camra-icons {
		color: #bf45d5;
		font-size: 13px;
	}
}
@media only screen and (max-width: 768px) and (min-width: 480px) {
	.padding-top-margin-add {
		padding-top: 10px !important;
	}
	
	.margin-bottom-main-branch {
		margin-bottom: 0 !important;
	}
	.dialogwidthmodelbox {
    max-width: 100% !important;
}
	.becomebuyer-main {
		width: 85% !important;
		box-shadow: 3px 2px 10px #cdcdcd !important;
		border: none !important;
		border-radius: 5px !important;
		margin: auto;
	}
	
	.chat-width-100 {
		width: 255px !important;
	}
	
	.table-design .thread-responsive {
		display: revert !important;
	}
}
@media only screen and (max-width: 600px) and (min-width: 500px) {
	.portolio-img img {
		width: 143px;
		border-radius: 6px;
		height: 150px;
		margin: auto;
		display: block;
		object-fit: cover;
	}
	
	.responsive-card {
		min-width: 90% !important;
		padding: 20px 5px !important;
	}
}
@media only screen and (max-width: 700px) and (min-width: 600px) {
	.portolio-img img {
		width: 193px;
		border-radius: 6px;
		height: 150px;
		margin: auto;
		display: block;
		object-fit: cover;
	}
	
	.responsive-card {
		min-width: 90% !important;
		padding: 20px 5px !important;
	}
}
@media only screen and (max-width: 768px) and (min-width: 480px) {
	.mainstatesdashboard {
    background: url(../images/statesdashboard.png);
    background-size: contain;
    height: 209px !important;
    background-repeat: no-repeat;
    width: 100%;
    margin-bottom: 12px;
	    border-radius: 26px;
}
	.support-chat-fix {
		position: fixed;
		width: 294px !important;
		z-index: 999999999;
	}
	
	.height-of-contentmain {
		height: 65px !important;
	}
	
	.content-seller-buy {
		float: left !important;
		text-align: left !important;
	}
}
@media only screen and (max-width: 933px) and (min-width: 768px) {
	.in-protprice-tag {
		margin-top: 0px !important;
	}
	
	.support-chat-fix {
		position: fixed;
		width: 243px !important;
		z-index: 999999999;
	}
	
	.height-of-contentmain {
		height: 65px !important;
	}
	
	.content-seller-buy {
		float: left !important;
		text-align: left !important;
	}
}
.left-icons-arrow {
	background: #fff;
	opacity: 1 !important;
	height: 36px;
	width: 35px;
	justify-content: center;
	display: flex !important;
	align-items: center;
	border-radius: 28px;
}
.right-icons-arrow {
	background: #fff;
	opacity: 1 !important;
	height: 36px;
	width: 35px;
	justify-content: center;
	display: flex !important;
	align-items: center;
	border-radius: 28px;
}
.icons-opacity {
	opacity: 1 !important;
}
.camra-open-des {
	max-width: 37px !important;
	border-radius: 50%;
	height: 37px;
	background: #ffffff !important;
	color: #000;
	border: 4px solid #27d0cc;
}
.my-camra-shape {
	width: 240px !important;
	height: 240px !important;
	border: 7px solid #bf45d5 !important;
	border-radius: 50%;
	justify-content: center;
	display: flex;
	align-items: center;
	margin: auto;
	overflow: hidden;
	box-shadow: 2px 0px 25px #bf45d5;
}
.take-snapshot-des {
	border-radius: 50% !important;
}
.camra-btn-alo {
	position: relative;
	top: 232px;
	left: 66%;
}
.camra-icons {
	color: #bf45d5;
	font-size: 13px;
}
.camra-btn-alo {
	position: relative;
	top: 232px;
	left: 30%;
}
.morecontent span {
	display: none;
}
.morelink {
	display: block;
}
.read-more-less-btn {
	display: inline !important;
	color: #632ca4;
	font-size: 12px;
	font-weight: 700;
}
.sell-tag-man {
	width: 34%;
}
@media only screen and (max-width: 600px) and (min-width: 480px) {
	.sell-tag-man {
		width: 29px !important;
	}
	.teamChatMember{
		height: 77px !important;
	}
	.spanmini{
		display:inline-block !important;
	}
	.image-reasponsive {
		width: 52px!important;
		height: 52px!important;
	}
	
	.icons-width {
		width: 5%;
	}
	
	.heading-name h2 {
		text-align: left;
		margin-left: 75px !important;
	}
	
	.profile-main-head .inner-employee-card {
		width: 50%!important;
	}
	
	.profile-main-head {
		width: 75%!important;
	}
	
	.profile-main-head .employee-card {
		width: 5% !important;
	}
	
	.profile-main-head .inner-employee-card .image-width-3 {
		width: 32px !important;
		height: 32px !important;
		;
	}
	
	.employee-card {
		margin-top: 9px;
	}
	
	.inner-rating-main {
		font-size: 32px !important;
		color: #fff;
		/* margin: auto; */
		/* display: block; */
		margin-left: 49px !important;
	}
	
	.tick-2:before {
		content: '';
		width: 13px!important;
		height: 13px!important;
		background: #00d728!important;
		position: absolute!important;
		border-radius: 50%!important;
		top: 37px!important;
		left: 52px!important;
	}
	
	.tick-3:before {
		content: '';
		width: 13px!important;
		height: 13px!important;
		background: red;
		position: absolute!important;
		border-radius: 50%!important;
		top: 37px!important;
		left: 52px!important;
	}
}
@media only screen and (max-width: 900px) and (min-width: 600px) {
	.modal-box-feed {
		width: 95% !important;
	}
	
	.respo-hei {
		padding: 10px !important;
		padding-top: 37px !important;
	}
	
	.main-close {
		top: -31px !important;
	}
	
	.modal-box-feed {
		margin: 0px !important;
	}
	
	.content-feedback {
		padding: 13px 17px 20px 10px !important;
		margin-bottom: 17px;
	}
	
	.content-feedback h5 {
		text-align: left !important;
		padding-left: 103px !important;
	}
	
	.content-feedback p {
		text-align: left !important;
		padding-left: 104px !important;
	}
	
	.img-feed {
		float: left !important;
	}
	
	.respo-track {
		width: auto !important;
		white-space: nowrap;
		overflow-x: scroll;
		padding: 0px 15px;
		margin-top: 0px;
	}
}
@media only screen and (max-width: 600px) and (min-width: 480px) {
	.sidebar-item.author-reputation.full .pie-chart {
		width: 116px !important;
		height: 66px !important;
		margin: 0 auto 20px !important;
		padding-top: 4px !important;
	}
	
	.modal-box-feed {
		width: 95% !important;
	}
	
	.respo-hei {
		padding: 10px !important;
		padding-top: 37px !important;
	}
	
	.main-close {
		top: -31px !important;
	}
	
	.modal-box-feed {
		margin: 0px !important;
	}
	
	.content-feedback {
		padding: 13px 17px 20px 10px !important;
		margin-bottom: 17px;
	}
	
	.content-feedback h5 {
		text-align: left !important;
		padding-left: 103px !important;
	}
	
	.content-feedback p {
		text-align: left !important;
		padding-left: 104px !important;
	}
	
	.img-feed {
		float: left !important;
	}
	
	.respo-track {
		width: auto !important;
		white-space: nowrap;
		overflow-x: scroll;
		padding: 0px 15px;
		margin-top: 0px;
	}
}
@media only screen and (max-width: 480px) and (min-width: 320px) {
	.padding-top-margin-add {
		padding-top: 10px !important;
	}
	
	.margin-bottom-main-branch {
		margin-bottom: 0 !important;
	}
	
	.modal-box-feed {
		width: 95% !important;
	}
	
	.LoaderBalls {
		left: 40% !important;
	}
	
	.respo-hei {
		padding: 10px !important;
		padding-top: 37px !important;
	}
	
	.main-close {
		top: -31px !important;
	}
	
	.modal-box-feed {
		margin: 0px !important;
	}
	
	.content-feedback {
		padding: 13px 17px 20px 10px !important;
		margin-bottom: 17px;
	}
	
	.content-feedback h5 {
		text-align: left !important;
		padding-left: 103px !important;
	}
	
	.content-feedback p {
		text-align: left !important;
		padding-left: 104px !important;
	}
	
	.img-feed {
		float: left !important;
	}
	
	.respo-track {
		width: auto !important;
		white-space: nowrap;
		overflow-x: scroll;
		padding: 0px 15px;
		margin-top: 0px;
	}
	
	.sell-tag-man {
		width: 29px !important;
	}
	
	.image-reasponsive {
		width: 52px!important;
		height: 52px!important;
	}
	
	.icons-width {
		width: 5%;
	}
	
	.profile-main-head .inner-employee-card {
		width: 50%!important;
	}
	
	.profile-main-head {
		width: 75%!important;
	}
	
	.audio-desi {
		width: 112px !important;
		height: 79px !important;
	}
}
.inner-rating-main {
	font-size: 32px !important;
	color: #fff;
	/* margin: auto; */
	/* display: block; */
	
	margin-left: 8px;
}
.location-head {
	color: #0009;
	font-weight: 800;
}
.c-icon {
	color: #632ca4;
}

/************************tab side responsive********************/
@media only screen and (max-width: 1100px) and (min-width: 768px) {
	video {
		width: 100%;
		height: 162px;
		object-fit: cover;
	}
	
	.inner-2 h6 {
		text-align: center;
		font-size: 8px;
	}
	
	.inner-badge {
		margin: auto;
	}
	
	.bgchange-respo-mobile .row.main-row-2 {
		width: 64%;
		display: inline-grid;
	}
}
@media only screen and (max-width: 768px) and (min-width: 630px) {
	.icons-width {
		width: 4%!important;
	}
	
	.sell-tag-man {
		width: 27px!important;
	}
	
	.image-reasponsive {
		width: 88px !important;
		height: 88px !important;
	}
	
	.location-head {
		color: #0009;
		font-weight: 800;
	}
	
	.heading-name h2 {
		padding: 0 !important;
		border-bottom: none !important;
		font-weight: 700 !important;
		margin-bottom: 0px!important;
	}
	
	.tick-2:before {
		content: '';
		width: 13px!important;
		height: 13px!important;
		background: #00d728!important;
		position: absolute!important;
		border-radius: 50%!important;
		top: 37px!important;
		left: 52px!important;
	}
	
	.tick-3:before {
		content: '';
		width: 13px!important;
		height: 13px!important;
		background: red;
		position: absolute!important;
		border-radius: 50%!important;
		top: 37px!important;
		left: 52px!important;
	}
}

/*********************************pricetag***********************/
.price-tag-card {
	cursor: pointer;
	background: #fff;
	padding: 7px;
	border-radius: 10px;
	margin-top: 8px;
	box-shadow: 2px 2px 6px #d5d5d5;
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.price-tag-card h6 {
	margin: 0;
	font-size: 16px;
}
.price-tag-card p {
	margin: 0;
	font-size: 10px;
}
.portfolio-bg-img-2 {
	background: #3f0079 url("../images/bg-price-tag.jpg");
	border-radius: 8px;
	padding: 10px 23px;
	margin-top: 12px;
	box-shadow: 0 0 10px #969696;
}
.conten-area-timer {
	background: #a932c43d;
	max-width: max-content;
	padding: 3px 6px;
	border-radius: 15px;
	margin-top: 4px !important;
	color: #a932c4;
}
.clock-timing {
	background: #a932c4;
	padding: 3px;
	border-radius: 12px;
	color: #fff;
	font-size: 10px !important;
}
.price-tag-2 {
	font-size: 22px;
	font-weight: 700;
	color: #5575b1;
	text-align: right;
}
.price-tag-card:hover {
	-moz-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.btn-align-portfolio-price {
	margin: auto;
	display: table;
	background: #d47be466 !important;
	padding: 5px 0;
	border-radius: 32px;
}

/****************************************h1**************************************/
.comming-soon-dropdown-home {
	color: #fff;
	font-size: 36px;
	text-align: center;
	text-transform: uppercase !important;
}
.selling-start-h2 {
	margin-bottom: 35px;
	font-size: 36px;
	text-align: center;
	text-transform: uppercase !important;
	color: #fff;
}
.selling-start-h2 span {
	color: #E96CFF;
}
.video-sizing {
	width: 249px;
	height: 173px;
	object-fit: cover;
}
.audio-desi {
	width: 252px;
	height: 112px;
	object-fit: cover;
}
.buyer-login-heading {
	float: left;
	line-height: 90px;
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	margin: 0 auto;
	text-transform: capitalize !important;
}
.heading-about {
	font-size: 60px;
	line-height: 50px;
	margin: 0 0 20px 0;
	color: #000;
	float: left;
	width: 100%;
	text-transform: capitalize !important;
	text-align: left !important;
}
.gdpr-heading-m {
	font-size: 1.75em !important;
	text-align: left !important;
	margin-bottom: 10px !important;
	margin-top: 10px !important;
	text-transform: capitalize !important;
	color: #000 !important;
	margin-bottom: 8px;
}
.howitwork-heading {
	font-size: 30px;
	font-weight: bold;
	color: #2b373a;
	margin: 0px;
	padding: 0 0 20px 0;
	text-transform: capitalize !important;
	text-align: left !important;
}
.sub-bner-main h1 {
	width: 29%;
	padding: 20px;
	position: absolute;
	background: linear-gradient(45deg, rgba(86, 130, 181, 0.76) 0%, rgba(77, 40, 152, 0.78) 49%, rgba(187, 52, 205, 0.77) 100%);
	font-size: 50px;
	font-weight: 900;
	text-align: center;
	top: 50px;
	right: 0px;
	width: 41%;
	color: #fff;
	text-transform: capitalize !important;
}
.sub-bner-main h1 span {
	font-size: 25px;
	font-weight: bold;
	color: #fff;
}
@media only screen and (max-width: 768px) and (min-width: 200px) {
	.howitwork-heading {
		font-size: 20px;
	}
	
	.sub-bner-main h1 {
		width: 100%;
		font-size: 20px;
		padding: 10px;
		top: 6px;
		position: relative;
	}
	
	.sub-bner-main h1 span {
		font-size: 15px;
	}
	
	.rate-ph {
		background: #874bbc;
		padding: 0px;
		box-shadow: 3px 3px 11px #874bbc;
		border-right: 1px solid #fcfcfc;
	}
	
	.rate-ph h2 {
		color: #fff !important;
		padding: 16px;
	}
}

/*****************h1*************/
.rate-ph h2 {
	font-size: 18px;
	font-size: 18px;
	color: #632ca4;
	line-height: 0px !important;
}
.rate-ph h2 span {
	color: #E96CFF;
	color: #E96CFF;
}
.rate-ph {
	text-align: center;
	margin: 22px 0;
}
.icon-phone-pre {
	font-size: 22px !important;
	color: #fff;
}
.pre-contact {
	padding: 9px !important;
}
.input-same-shape {
	height: 34px !important;
	border-radius: 5px !important;
}
.btn-sech-chneg {
	padding: 6px 32px;
	border-radius: 5px;
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	color: #fff;
}
.place-prixe-tag {
	background: #05ecc5;
}
.place-prixe-tag .price-tag-2 {
	color: #000000;
}
.place-prixe-tag .conten-area-timer {
	background: #ffffff;
}

/***************************report-block************/
.report-block .dropdown {
	width: 0 !important;
	border: none !important;
	background-color: transparent !important;
	position: absolute;
	top: 4px;
	left: 30px;
}
.report-block .dropdown-menu {
	min-width: 90px !important;
}
.report-block {
	margin-left: 0px;
	margin-top: 7px;
}
.eye-square {
	position: absolute;
	right: 27px;
	top: 23px;
	font-size: 15px;
}
.sub-squre-bp {
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
	font-size: 11px;
	padding: 5px;
	border-radius: 4px;
	color: #fff;
	margin-left: 7px;
	white-space: normal
}
.width-menu-icon {
	width: 18px;
}
.bg-attachment-fi {
	background: #eaeaea;
	border-radius: 5px;
	/* box-shadow: 0 0 10px #e4e4e4; */
	
	border: 1px solid #d5d5d5;
	padding: 14px 0;
}
.attcahment-btn {
	background: #a932c4;
	padding: 7px 22px;
	border-radius: 4px;
	line-height: 7;
	color: #fff;
}
.image-size {
	width: 106px;
	height: 106px;
	border-radius: 10%;
	border: 5px double #05ecc5;
}
@media only screen and (max-width: 480px) and (min-width: 320px) {
	.heading-name {
		margin-left: 60px;
	}
	
	.sidebar-item.author-reputation.full .pie-chart {
		width: 116px !important;
		height: 66px !important;
		margin: 0 auto 20px !important;
		padding-top: 4px !important;
	}
	
	.tablinks-3 {
		background: linear-gradient(to right, #9731bb 0%, #5361ac 100%);
		padding: 50px;
		height: 50px;
		padding: 8px;
		overflow-x: scroll;
	}
	
	.table20 {
		width: 28% !important;
	}
	
	.tablink-2 {
		background-color: #8c9bc5;
		color: white;
		float: left;
		border: none;
		outline: none;
		cursor: pointer;
		padding: 7px 0;
		font-size: 9px!important;
		width: 25%;
	}
}
.card-property-align {
	height: auto;
}
.becomebuyer-header h4 {
	color: #fff !important;
}
.becomebuyer-header {
	background: url(../images/section_headline_bg.png) no-repeat center, #05ecc5 !important;
	border-radius: 5px 5px 0px 0px !important;
}
.becomebuyer-main {
	width: 35%;
	box-shadow: 3px 2px 10px #cdcdcd !important;
	border: none !important;
	border-radius: 5px !important;
}

/******************************************************************************************************************************************web feedback********************************/
.web-feedback {
background: #9136a1;
    padding: 10px 32px;
    position: fixed;
    color: #ffff;
    right: -42px;
    top: 192px;
    z-index: 9999999999;
    transform: rotate(-90deg);
    border-radius: 8px 8px 0px 0px;
	font-weight: 700;
}
.web-feedback a:hover {
	color: #fff;
}
.modal-bg-op {
	background: rgba(0, 0, 0, 0.5) !important;
}
.modal-box-feed {
	width: 39%;
	border-radius: 3px !important;
	background: #fff !important;
}
.content-feedback {
	padding: 50px 24px;
	text-align: center;
	box-shadow: 5px 5px 13px #e4e4e4;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	height: 258px;
}
.content-feedback p {
	text-align: center;
	font-weight: 500;
	color: #999 !important;
	line-height: 1.5;
	font-size: 13px;
}
.content-feedback h5 {
	text-align: center;
	color: #555 !important;
}
.img-feed {
	width: 50px;
	background: #cecfff5e;
	height: 92px;
	width: 92px;
	padding: 24px;
	transition: all 0.3s ease-in-out;
	border-radius: 6px;
}
.content-feedback:hover {
	box-shadow: 6px 20px 17px #e4e4e4 !important;
	-moz-transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	-o-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	transform: translateY(-15px);
	transition: all 0.3s ease-in-out;
}
.content-feedback:hover .img-feed {
	-moz-transform: translateY(-8px);
	-webkit-transform: translateY(-8px);
	-o-transform: translateY(-8px);
	-ms-transform: translateY(-8px);
	transform: translateY(-15px);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.main-close {
	right: 6px !important;
	top: 14px  !important;
	font-size: 32px !important;
	    color: #000 !important;
    opacity: 1;
}
.chat-box-main-module {
	position: absolute;
	z-index: 99999;
}
.chat-window-newadmin {
	bottom: -37px !important;
}
.feedback-page-popup-main {
	padding: 15px;
}
.textarea-feedback {}
.packagebutn {
	padding: 11px 41px !important;
	border-radius: 4px !important;
	font-size: 14px !important;
}
.field_icon {
	top: 10px !important;
}
.date-border-chnge {

	border: 1px solid #c9c9c9 !important;
	border-radius: 0px !important;
}
.cover-letter-radio-btn {
	float: left;
	margin-right: 9px;
}
.mb-m4 {
	margin-bottom: 5px !important;
	padding: 10px 15px 2px !important;
}
.mb-m4 input {
	margin-right: 5px !important;
}
.main-subscribe-input {
	margin-right: 0% !important;
}
.main-subscribe-btn {
	float: left !important;
}
.before-content-main {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	/* border-top: 11px solid #818181; */
	/* border-bottom: 10px solid transparent; */
	
	right: -7px;
	top: 4px;
	/* transform: rotate(45deg); */
	
	border-bottom: 12px solid #ffdb6d;
	border-right: 12px solid transparent;
}
.table-design td {
	font-size: 13px !important;
}
.table-design {
	display: block !important;
	width: 100% !important;
	overflow-x: inherit !important;
	-webkit-overflow-scrolling: touch !important;
}
.radio-main-right {
	float: left;
	margin-right: 10px;
}
.payment-payment-page {
	font-size: 22px;
	color: #9136a1;
	background: #fbe7ff;
	/* width: 62px; */
	/* height: 62px; */
	/* border-radius: 50%; */
	
	padding: 0px 12px;
	margin-top: 12px;
	border-radius: 8px;
	text-align: center;
	box-shadow: 2px 2px 5px #d9d9d9;
}
.mb-00 {
	margin-bottom: 0;
}
.font-si-large {
	font-size: 14px;
	background: #fff;
	padding: 8px;
	border-left: 5px solid #5370ad;
	border-radius: 3px;
	box-shadow: 4px 4px 10px #e0e0e0;
}
.bg-changeble-payment {
	background: #fff;
	padding: 32px !important;
	border-left: 7px solid #5975af;
	margin-bottom: 20px;
}

/*****************************************quantity************************/
.quantity {
	position: relative;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
input[type="number"] {
	-moz-appearance: textfield;
}
.quantity input {
	width: 68px;
	height: 42px !important;
	line-height: 1.65;
	float: left;
	display: block;
	padding: 0;
	margin: 0;
	padding-left: 6px;
	border: 2px solid #9136a1;
}
.quantity input:focus {
	outline: 0;
}
.quantity-nav {
	float: left;
	position: relative;
	height: 42px;
}
.quantity-button {
	position: relative;
	cursor: pointer;
	border-left: 2px solid #9136a1;
	width: 20px;
	text-align: center;
	color: #333;
	font-size: 13px;
	font-family: "Trebuchet MS", Helvetica, sans-serif !important;
	line-height: 1.7;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.quantity-button.quantity-up {
	position: absolute;
	height: 50%;
	top: 0;
	border-bottom: 2px solid #9136a1;
	background: #9136a1 !important;
	color: #fff;
}
.quantity-button.quantity-down {
	position: absolute;
	bottom: 0px;
	height: 50%;
	background: #9136a1 !important;
	color: #fff;
}
.input-main-checkbox {
	display: block !important;
	float: left;
	margin-right: 6px;
}
.spacing-main-modelpopup {
	padding: 20px;
}
.close-button-align {
	position: absolute;
	top: -10px;
	right: 0;
}
.index-main-portal {
	z-index: 0 !important;
}
.m-l-r-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}
.tbale-main-bgbackground {
	background: #fff !important;
	background: #fff !important;
}
.bg-change-gray-white {
	background: #fff !important;
	padding: 20px 44px !important;
	margin-bottom: 15px;
}
.currency-main-bold {
	font-size: 33px;
	background: #eaeaea;
	text-align: center;
	border-radius: 7px;
}
.amount-main-wallet {
	background: #969696;
	padding: 1px 11px;
	border-radius: 7px;
}
.content-fixed {
	color: #fff;
	text-align: center;
	font-size: 16px;
	margin-top: 7px;
}
.mar-bold-bottom {
	margin-bottom: 15px;
}
.amount-main-in-out-pay {
	font-size: 25px !important;
	background: #e3beea;
	padding: 14px 53px;
	border-radius: 45px;
	color: #9136a1 !important;
	margin-bottom: 0 !important;
	border: 2px dashed #9136a1;
}
.overdlow-ten-display {
	overflow: auto !important;
}
.button-main-line {
	display: inline !important;
	text-align: center;
	padding: 8px 42px;
	border-radius: 4px;
}
.p-00-main {
	padding: 60px 0px 2px 0 !important;
}
.main-line-table {
	display: none;
}
.new-table-design tr {}
.email-very-table {
	background: #f3f3f3;
	padding: 2px 7px;
	/* margin-bottom: 10px !important; */
	
	line-height: 2;
	color: #575757;
	font-weight: bold;
	border-radius: 2px;
}
.email-very-table:hover {
	color: #fff !important;
}
.table-hover>tbody>tr:hover {
	background-color: #a932c4 !important;
	color: #fff !important;
	transition: all 0.5s ease-in-out;
	transform: scale(1.05);
	border-radius: 10px;
}
.mobile-number-email-verfy {
	background: #353535;
	padding: 10px 3px 26px;
	text-align: center;
	border-radius: 6px;
}
.email-mobile-veryfy h6 {
	margin-top: 0;
	margin-bottom: 6px;
}
.email-mobile-veryfy h6 a {
	color: #fff;
}
.button-call-caht {
	background: #50409b;
	padding: 5px 42px;
	border-radius: 3px;
	color: #fff;
}
.mt-main-10 {
	margin-top: 15px;
}
.callbuttonmain {
	height: 29px;
	width: 29px;
	background: #3b6fcd;
	/* position: absolute; */
	
	border-radius: 50%;
	/* left: 6px; */
	/* top: 15px; */
	
	color: #fff !important;
	box-shadow: 2px 2px 5px #969696;
	float: right;
	margin-left: 6px;
}
.img-add-call-chat {
	width: 14px;
}
h3.panel-title.chat-heading.pl-chat.group-chat-name:hover {
	border-bottom: 1px solid #000 !important;
}
h3.panel-title.chat-headiicon_minim.fa.fa-chevron-downng.pl-chat.group-chat-name.service-clr:hover {
	border-bottom: 1px solid #000 !important;
}
.p-o-main {
	padding: 0 !important;
}
.time-manage-border {
	margin-top: 3px;
	border-radius: 0 !important;
	border-color: #c9c9c9 !important;
}
.mt-main {
	margin-top: 15px;
}
.mt-main-7px {
	margin-top: 7px;
}
.anker-buttonpopup-desi {
	color: #343434;
	line-height: 2;
	font-weight: 600;
}
.button-show-details {
	text-align: right;
}
.button-properly-spacing {
	padding: 4px 6px !important;
}
.ot-bottom-left-main {
	position: relative;
	top: 5px ;
	left: 185px ;
	z-index: 999;
}
.ot-top-left-main {
	left: 237px ;
	top: -25px ;
}
.status-succes {
	font-size: 11px;
	background: #9136a1;
	max-width: max-content;
	padding: 3px 9px;
	margin-top: 3px;
	border-radius: 3px;
	color: #fff;
}
.main-content-suffer {
	padding: 8px !important;
}
.box-width-align-tocontent {
	width: 40% ;
	
}
.input-main-cls-half {
	padding: 3px !important;
	width: 45px !important;
	height: 42px !important;
	border-radius: 7px !important;
}
.font-trans-weight {
	line-height: 2;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 11px;
	color: #353535;
}
.tablein-responsive-mobile {
	display: none;
}
.followe-number {
	display: block;
	text-align: center;
	font-size: 23px;
	background: #9136a1;
	color: #fff;
	padding: 5px 0px;
	border-radius: 5px;
	margin-bottom: 5px;
}
.followes-add {
	background: #ffffff;
	width: 84px;
	margin-top: 6px;
	padding: 6px;
	box-shadow: 4px 5px 10px #c7c7c7;
	border-radius: 5px;
}
.followes-add p {
	text-align: center;
	color: #353535 !important;
	font-weight: 600;
}
.border-remove {
	border: none !important;
	border-radius: 50%;
}

/***********************************counter-css*****************************/
.services-counter h6 {
	font-weight: 600;
	text-transform: capitalize;
}
.services-counter-number span {
	cursor: pointer;
}
.services-counter-number .minus,
.services-counter-number .plus {
	width: 34px;
	height: 33px;
	background: #f2f2f2;
	padding: 0 5px 8px 5px;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	font-size: 24px;
}
.services-counter-number input {
	height: 33px;
	width: 68px;
	text-align: center;
	font-size: 15px;
	border: 1px solid #f2f2f2;
	display: inline-block;
	vertical-align: middle;
	margin: -4px;
}
.main-boc-inner {}
.amounyof-counter {
	font-size: 23px !important;
	color: #525252;
	margin-bottom: 0;
}
.amounyof-counter span {
	font-size: 10px;
	color: #c127cb;
	border-radius: 62px !important;
}
.services-name-fac {
	font-size: 15px;
	margin-bottom: 0px;
	color: #818181;
}
.services-counter-number {
	display: flex;
	align-items: center;
	height: 100px;
}
.main-boc-inner {
	box-shadow: 4px 4px 10px #d5d5d5;
	border-radius: 4px;
	padding: 15px;
}
.inner-box-counter {
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 10px;
}
.counter-time {
	font-size: 13px !important;
	position: relative;
	top: -3px;
	background: #a932c41a !important;
}
.review_wrap {
	border-radius: 5px;
	outline: none;
	text-align: left;
}
.review_wrap a {
	color: #333;
	text-decoration: none;
}
.review_wrap .review_head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
@media only screen and (max-width: 991px) {
	.review_wrap .review_head {
		flex-wrap: wrap;
	}
}
.review_wrap .review_head a {
	display: flex;
	align-items: center;
	outline: none;
}
@media only screen and (max-width: 991px) {
	.review_wrap .review_head a {
		width: 100%;
	}
}
.review_wrap .review_head a:focus {
	color: #444444;
}
.review_wrap .review_head img {
	height: 35px;
	width: 33px;
}
.review_wrap .review_head .rating_star {
	display: flex;
	justify-content: center;
}
@media only screen and (max-width: 991px) {
	.review_wrap .review_head .rating_star {
		margin-top: 20px;
		width: 100%;
	}
}
.review_wrap .review_head .rating_star img {
	width: 35px;
	height: 32px;
	display: inline-block;
}
.review_wrap .review_comment {
	display: flex;
	flex-wrap: wrap;
}
.review_wrap .review_comment p {
	height: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.review_wrap .review_comment p.active {
	height: auto;
	overflow: auto;
}
.review_wrap .review_comment a {
	width: 100%;
	color: #c127cb;
	font-weight: bold;
	cursor: pointer;
}
.review_wrap .review_comment a:hover,
.review_wrap .review_comment a:focus {
	color: #c127cb !important;
}
.review_wrap h3 {
	display: inline-block;
	padding-top: 5px;
	margin: 0;
}
.review_wrap h3 span {
	font-size: 16px;
}
.feedback_title {
	display: inline-block !important;
	font-size: 22px;
	margin-bottom: 20px;
	margin-top: 0;
	border-bottom: none !important;
}
@media only screen and (min-width: 991px) {
	.feedback_title {
		font-size: 30px;
	}
}
.main-p-colorfll {
	color: #353535 !important;
}
.font-main-counter {
	font-size: 14px;
	color: #969696;
}
.checkbox-main-count {
	display: block !important;
	float: left;
	margin-right: 6px !important;
	margin-top: -1px !important;
	width: 18px !important;
	max-width: 62px !important;
	height: 17px !important;
}
.font-label-main {
	font-size: 14px !important;
}
.services-counter .form-check {
	margin-top: 13px;
}
.rating-high {
	width: 25px !important;
	margin: auto;
	display: block;
}
.call-image-icons-svg {
	width: 21px !important;
	margin: auto !important;
	text-align: center !important;
	display: block;
}
.inner-pagemain {
	background: #fff;
	padding: 7px 42px;
	color: #fff;
	max-width: max-content;
	text-align: center;
	position: absolute;
	right: 0;
	bottom: 0;
	border-radius: 22px 0 0 0;
	box-shadow: 2px 3px 10px #969696;
}
.inner-pagemain .call-message {
	padding: 6px 9px;
	color: #555;
	font-weight: 600;
}
.seller-name-main-des {
	font-size: 29px !important;
}
.mt-profilemain {
	margin-top: 15px !important;
}
.main-online-test {
	font-size: 12px;
}
.mt-profile-name {
	margin-top: 30px !important;
}
.icon-caht-profile {
	width: 20px;
}
.chat-icons-mainsjdd {
	width: 20px;
}
.logo-member {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	margin: auto;
	display: block;
}
.text-xn-fon {
	text-align: center;
}
.ankertag-border:hover {
	border-bottom: 1px solid #969696;
}
.mt-porfolio {
	margin-bottom: 0px;
}
.rating-system-main {
	color: #9136a1;
	margin-bottom: 0px;
}
.rating-system-main span {
	color: #000 !important;
	font-size: 11px;
}
.logo-for-seller {
	width: 100px;
	margin: auto;
	display: block;
	border-radius: 50%;
}
.profile-seller-booking {
	box-shadow: 3px 3px 10px #dbdbdb;
	border-radius: 6px;
	padding: 15px;
}
.booking-deatals p {
	text-align: center;
}
.main-booking-counter {
	box-shadow: 3px 3px 10px #dbdbdb;
	border-radius: 6px;
	padding: 15px;
}
.list-sadow-main {
	box-shadow: 3px 3px 10px #dbdbdb !important;
	border-radius: 6px !important;
}
.mtand-mb {
	margin-top: 31px;
	margin-bottom: 31px;
}
.apprrovebtn-cancelbtn .fl-left {
	margin-right: 12px;
}
.buttons-main-aappp {
	display: flex;
	justify-content: center;
}
.have-hired-buyer {
	font-size: 16px !important;
}
.border-main-headline {
	border-top: 1px solid #efefef;
}
.image-size-ques {
	width: 106px;
	height: 106px;
	border-radius: 50%;
	box-shadow: 3px 3px 10px #bcbcbc;
}
.main-sim-name {
	font-size: 17px !important;
	text-align: center;
}
.label-font-check {
	font-size: 15px !important;
}
.accept-decline-nbtntble {
	width: 90px !important;
	height: 30px !important;
	margin: auto !important;
	margin-bottom: 5 !important;
}

/******myratebooing*******/
.myratebooing {
	padding: 0 10px;
}
.myratebooing:not(:checked)>input {
	position: absolute;
	top: -9999px;
}
.myratebooing:not(:checked)>label {
	float: right;
	width: 1em;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	font-size: 30px;
	color: #ccc;
}
.myratebooing:not(:checked)>label:before {
	content: '★ ';
}
.myratebooing>input:checked~label {
	color: #ffc700;
}
.myratebooing:not(:checked)>label:hover,
.myratebooing:not(:checked)>label:hover~label {
	color: #deb217;
}
.myratebooing>input:checked+label:hover,
.myratebooing>input:checked+label:hover~label,
.myratebooing>input:checked~label:hover,
.myratebooing>input:checked~label:hover~label,
.myratebooing>label:hover~input:checked~label {
	color: #c59b08;
}
.add-quant input {
	width: 68px;
	height: 42px !important;
	line-height: 1.65;
	float: left;
	display: block;
	padding: 0;
	margin: 0;
	padding-left: 6px;
	border: 2px solid #9136a1;
	text-align: left !important;
}
.main-alignment-icons {
	height: 44px;
	display: flex;
	align-items: center;
}
.more-inf-btn {
	color: #fff;
}
.in-protprice-tag {
	margin-top: -40px;
}
.main-alignment-icons a {
	color: #fff;
}
.main-alignment-icons a:hover {
	color: #fff !important;
}
.call-phone-seller h6 {
	margin-bottom: -6px;
}
.call-phone-seller a {
	color: #fff;
}
.call-phone-seller a:hover {
	color: #fff !important;
}
/***************************************************************************************************************************************************************************************************************************************************************************************************** dashboard data css  ******************************************************************************************************************************************************************************************************************************/

.inner-dashboard-data{
	background:#142232 url("../images/promo1_texture.png");
	border-radius:15px;
	padding:10px;
}
.dashboard-data-main{
	margin-top:15px;
	margin-bottom:15px;
}
.profile-of-services h2{
	color:#fff;
	    margin-top: 8px;
    margin-bottom: 0px;
	text-align:center;
}
.profile-of-services p{
	text-align:center;
}
.demo-image-circle{
	border-radius:50%;
	width:100px;
	height:100px;
	object-fit:cover;
	    margin: auto;
    display: block;
}
.service-total{
	    background: #ae6eff;
    padding: 12px;
    border-radius: 13px;
    /* color: #fff !important; */
    height: 164px;
}
.service-total h4{
	color:#fff;
	
}
.service-total p{
	color:#fff;
	text-align:center; 
}
.piechart-design{
	margin-top:20px;
}
.piechart-design .canvasjs-chart-credit{
	display:none;
}
.numberof-service{
	margin-top:20px;
	margin-bottom:20px;
}
.data-all{
	    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 5px 6px 24px #d3d3d3;
	margin-bottom:15px;
	-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.data-all:hover{
-moz-transform: translateY(-15px);
-webkit-transform: translateY(-15px);
-o-transform: translateY(-15px);
-ms-transform: translateY(-15px);
transform: translateY(-10px);
background:#9136a1;
color:#fff;
}
.data-all:hover h4{
	color:#fff;
}
.data-all:hover p{
	 background: #fff;
	   color: #000;
}
.numberof-service{

}
.data-all p {
    text-align: center;
    background: #464247;
    width: 61px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #fff;
    border-radius: 4px;
}
.data-all h4{
    margin: 0;
    font-weight: 600;
    color: #7e7e7e;
    font-size: 15px;
	line-height:1.3; 
}
.section-main-heading1 h2{
	    text-align: center;
    margin-bottom: 37px;
    font-size: 42px;
    text-transform: uppercase;
    color: #9136a1;

}
.section-main-heading2 h2{
	    text-align: center;
    margin-bottom: 37px;
    font-size: 42px;
    text-transform: uppercase;
    color: #9136a1;

}
.section-main-heading1 h2::before{
content: 'All users data';
    position: absolute;
    top: 18px;
    color: #e9e9e94a;
    font-size: 78px;
    left: 109px;
    z-index: 0;
}
.section-main-heading2 h2::before{
content: 'Self data';
    position: absolute;
    top: 18px;
    color: #e9e9e94a;
    font-size: 71px;
    left: 30px;
    z-index: 0;
    white-space: nowrap;
}
.section-bg-main-ser{
		background:#fff;
	    padding: 26px;
		border-radius: 15px;
}
.charts-of-graph2 .barchart canvas{
	    height: 342px    !important;
    width: 98% !important;
    margin-left: 21px;
}
.activity.panel{
	border-radius:20px;
}
.blue-for-graph{
	background:#0291ff;
	height:15px;
	width:15px;
}
.yellow-for-graph{
	background:#ffbc35;
	height:15px;
	width:15px;
}
#chartdiv {
  width: 98%;
  height: 415px;
    
    margin-left: 21px;

}
.main-graphbgchange{
     border-radius: 20px;
	  border: 1px solid transparent;
	      box-shadow: 0 1px 1px rgb(0 0 0 / 5%);
		      background-color: #fff;	
}
#chartdiv a{
	display:none !important;
	color:#fff !important;
} 

.amcharts-legend-balloon {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.04s;
  transition: opacity 0.3s 0.04s;
  visibility: hidden;
}

.amcharts-legend-balloon > div {
  position: relative;
  background-color: #fff;
  background-color:#0291ff;
  border: 2px solid #000;
  padding: 4px 8px;
  left: -50%;
}

.amcharts-legend-balloon > div:after,
.amcharts-legend-balloon > div:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.amcharts-legend-balloon > div:after {
  border-color: rgba(0, 0, 0, 0);
  border-top-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

.amcharts-legend-balloon > div:before {
  border-color: rgba(0, 0, 0, 0);
  border-top-color: inherit;
  border-width: 9px;
  margin-left: -9px;
}
/* ACTIVE STATE */

.amcharts-legend-balloon.active {
  opacity: 1;
  -webkit-transition: opacity 0s 0s;
  transition: opacity 0s 0s;
  visibility: visible;
}
.sign-graphmain{
	padding:0px 15px;
}
.red-for-graph{
	background:#d66b6c !important;
	    height: 15px;
    width: 15px;
}
.green-for-graph{
	background:#9cc580 !important;
	    height: 15px;
    width: 15px;
}
.inner-monthtotal{
	float:left;
}
.inner-monthtotal span{
    background: #f8f8f8;
    color: #fff;
    padding: 0px 6px;
    width: 42px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 3px;
    font-size: 12px;
    color: #000;
}
.pond-inr-ruppe{
	position: absolute;
    left: -93px;
    top: 262px;
    transform: rotate(-90deg);
}
.pond-inr-ruppe2{
	position: absolute;

    left: -22px;
    top: 282px;

    transform: rotate(-90deg);
}
/***********************************************states design************************************/
.mainstatesdashboard{
	background:url("../images/statesdashboard.png");
	    background-size: cover;
    height: 149px;
    background-repeat: no-repeat;
    width: 100%;
	
}
.mainstatesdashboard h2{
	color:#fff;
	 padding-top: 16px;
    font-size: 42px;
}
.mainstatesdashboard p{
	color:#fff;

}
.main-addirns{
	    width: 54px;
        margin-top: 46px;
     opacity: 0.4;
}
.stets-dashboard {
	margin-top:20px;
}
.btn-shwde{
	
}
.font-trans-weight {
	      line-height: 2;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    background: #9136a1;
    border-radius: 3px;
    padding: 5px 8px;
    margin: 0 4px;
}
.font-trans-weight2 {
	      line-height: 2;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 11px;
    color: #fff;
    background: #5575b1;
    border-radius: 3px;
    padding: 5px 8px;
    margin: 0 4px;
}
.m-top-main{
	    margin: -4px !important;
}
.mtmaincontent{
    margin-top: 19px !important;
}  
.mainrequestbuttonmain{
	background:linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%) !important;
	margin-bottom:15px;
}
.mt-maintopper-section{
	margin:0 !important;
}
.calender-main-cions{
	margin-left:11px;
}
/**********************************************************new issue css**************************/
.mianclassfalultbg{
	    background: #f6f6f6;
    border-radius: 7px;
    box-shadow: 1px 1px 1px #e2e2e2;
	width:100% !important;
}
.mininputright{
	float:right !important;
	
}
.textareanewsec{
	width:100% !important;
}
.width-costmanagment{
		max-width: 843px !important;
	}
	.mt-mainia{
		margin-bottom:15px;
	}
	.mb-topiya{
		margin-bottom:6px;
	}
	.mtmaniafirst{
		margin-top:15px;
	}
	.proimarycost-managermnetbtn{
    width: 100px !important;
    height: 33px !important;
    line-height: 20px !important;
    font-size: 13px !important;
	    margin-top: 14px;
}
.totalvaluemain{
background: #e8e8e8;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 14px;
    width: 185px;
    border-radius: 3px;
	       float: right;
}
.gstecmaple{
	width:52px !important;
}
.matter-mainmt{
	margin-top:10px;
}
.mzero{ 
	padding:0 !important;
	}
	.wraptext{
		white-space:nowrap;
	}
	.priceservicename{
		    width: 202px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	}
	.buttonmonter{
		    text-align: center;
    margin-top: 1px !important;
    font-size: 12px;
    color: #fff;
    background: #095bbc!important;
    padding: 9px 11px !important;
    padding: 5px;
    border-radius: 3px;
    float: right!important;
    font-size: 11px!important;
    white-space: nowrap;
    font-weight: 600;
	}
	.pricetableinc{
		    white-space: nowrap;
	}
	.mt-control{
		margin-top:10px;
	}
	.m-bcalled{
		margin-bottom:15px;
	}
	.tablewithalign2{
		width: 12%;
		padding:23px !important;
	}
	.tablewithalign{
		width: 12%;
		
	}
	.dialogwidthmodelbox{
		max-width: 50% ;
	}
	.modal-content .modal-content{
		width:100% !important;
	}

.bookingbidmain{
	 margin: 0;
	 margin-top:10px !important;
}
.descriptionaddmnul{
	background:#f6f6f6;
	padding: 13px;
    border-radius: 8px;
}
.my-bid-box:hover .descriptionaddmnul label{
	color:#000 !important;
}
.my-bid-box:hover .descriptionaddmnul p{
	color:#000 !important;
}
.mybid-1 label{
	font-size:12px !important;
	white-space:nowrap;
}
.audiowidthset{
	    width: 233px;
    margin-top: 62px;
}
.modelmainsystem.modal {
	    background: rgba(0, 0, 0, 0) !important;
		background:transparent !important;
}
.modelmainsystem4.modal {
	    background: rgba(0, 0, 0, 0) !important;
		background:transparent !important;
}
.modelmainsystem{
    position: absolute;
    top: -50px;
	left: -80px;
		overflow:initial !important;
	height:auto !important;
}
.modelmainsystem2.modal {
	    background: rgba(0, 0, 0, 0) !important;
		background:transparent !important;
}
.modelmainsystem3.modal {
	    background: rgba(0, 0, 0, 0) !important;
		background:transparent !important;
}
.modelmainsystem2{
	    position: absolute;
    top: -50px;
	left: 80px;
	overflow:initial !important;
	height:auto !important;
}
.modelmainsystem3{
	    position: absolute;
    top: -50px;
	left: 250px;
		overflow:initial !important;
	height:auto !important;
}
.modelmainsystem4{
	    position: absolute;
    top: -50px;
	left: -200px;
		overflow:initial !important;
	height:auto !important;
}
.bgmainanydesk{
	    background: #fff;
    padding: 13px;
    border-radius: 12px;
}
.modelmainsystem2 .modal-content{
	width: 21% !important;
	    background: #fff !important;
	
}
.modelmainsystem4 .modal-content{
	width: 21% !important;
	    background: #fff !important;
	
}
.modelmainsystem3 .modal-content{
	width: 21% !important;
	    background: #fff !important;
	
}
.modelmainsystem .modal-content{
	width: 21% !important;
	    background: #fff !important;
	
}



.range-slider {
  width: 205px;
  text-align: center;
  position: relative;
}

  .rangeValues {
    display: block;
  }

.ramger input[type=range] {
  -webkit-appearance: none;
  border: 1px solid white;
  width: 160px;
  position: absolute;
  left: 8px;
}

.ramger input[type=range]::-webkit-slider-runnable-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;

}

.ramger input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
  margin-top: -4px;
    cursor: pointer;
      position: relative;
    z-index: 1;
}

.ramger input[type=range]:focus {
  outline: none;
}

.ramger input[type=range]:focus::-webkit-slider-runnable-track {
  background: #ccc;
}

.ramger input[type=range]::-moz-range-track {
  width: 300px;
  height: 5px;
  background: #ddd;
  border: none;
  border-radius: 3px;
}

.ramger input[type=range]::-moz-range-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
  
} 


/*hide the outline behind the border*/

.ramger input[type=range]:-moz-focusring {
  outline: 1px solid white;
  outline-offset: -1px;
}

.ramger input[type=range]::-ms-track {
  width: 300px;
  height: 5px;
  /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
  background: transparent;
  /*leave room for the larger thumb to overflow with a transparent border */
  border-color: transparent;
  border-width: 6px 0;
  /*remove default tick marks*/
  color: transparent;
    z-index: -4;

}

.ramger input[type=range]::-ms-fill-lower {
  background: #777;
  border-radius: 10px;
}

.ramger input[type=range]::-ms-fill-upper {
  background: #ddd;
  border-radius: 10px;
}

.ramger input[type=range]::-ms-thumb {
  border: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #21c1ff;
}

.ramger input[type=range]:focus::-ms-fill-lower {
  background: #888;
}

.ramger input[type=range]:focus::-ms-fill-upper {
  background: #ccc;
} 

.innertopchekc input[type="radio"],.innertopchekc input[type="checkbox"]{
	display:block !important;
}

.themoniter{
	margin-top:12px;
}
.topdiebuntn{
	    text-align: right !important;
    padding: 0px 13px 5px 0 !important;
	}
	.headermodelmain{
		    padding: 0px !important;
    border: none !important;
	}
	.buttonmaincont{
		    padding: 4px 13px;
    margin-left: auto;
    display: block;
    margin-right: 14px; 
    margin-bottom: 6px;
	}
	.headermodelmain{
	   padding:0 !important;	
	}
	.closebtnhaha span{
	position: absolute;
    top: -18px;
    right: -30px;
    font-size: 29px;
	}
	.ratecardlisttoppi .container{
		padding: 0px 16px ;
	}
	
	.labelnext{
		padding:0px 16px;
	}
	.headermodelbor{ 
		border:none !important;
		padding:6px !important;
	}
	.butonsenfilter{
		background:linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%) !important;
		border:none !important;
	}
	.butonsenfilter:focus{
		outline:none !important; 
	}
	.lablemaincalender{
		 margin-top:20px;
	}
	.contentwidthcalnderboc{
		width:40% !important;
	}
	/***************************the main top bank**************/
	.innercallbank{
		width:100%;
		display:flex;
		
	}
	.colummainbank{
		width:33%;
	}
	.togglemainread{
		    background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
    text-align: center;
    width: 98px;
    padding: 13px;
    margin-top: 10px;
    color: #fff;
    box-shadow: 1px 1px 14px #5157a7;
	font-weight:600;
    border-radius: 25px;
	}
	.togglemainread:hover{
		color:#fff !important;
	}
	.innerreadmorevtn{
		text-align: center;
    margin-top: 26px;
    margin-bottom: 12px;
	}
	/*******************4-1-2021*********************************/
	.rate-ph h2 {
    padding: 0px;
    height: 31px;
    align-items: center;
    display: flex;
    justify-content: center;
	    font-size: 14px;
}
.location-head.ankertag-border p{
	    width: 172px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
	margin-bottom:0;
}
.card-tag {
    padding: 0px 13px !important;
}

.totaltimemain{
   color: red;
    background: #ffdcdc;
    padding: 11px;
    text-align: center;
    border-radius: 5px;
    font-size: 16px;	
}
.maintopspacing{
	margin-top:32px;
	margin-bottom:32px;
	background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 1px 1px 1px #e2e0e0;
}
.maintopstil{
	background:#fff;
	padding:8px ;
	margin-top:10px;
	border-radius: 8px;
    box-shadow: 1px 1px 1px #e4e4e4;
}
.maintopstil .jobseakingpr{
	color:#333 !important;
	font-size: 15px !important;
    font-weight: 600;
}
.imagesearchbgchange{
	background: #7a139c;
    padding: 8px;
    border-radius: 50%;
    margin-top: 5px !important;
    width: 33px;
}
.maintopstil select{ 
	line-height:20px !important
}
.maintopstil .reqtxtboxestop{
	background:#095bbc !important;
}
.searchmaincontent{
	    
	    text-align: center;
}
.mainfinalclass{
	width: 22px ; 
	
}
.portfoliomainimageclick img{
	width:100%;
	height:400px;
	object-fit:cover;
}
.reqtxtboxestop2{
	width: 100%;
    float: left;
    border: none;
    border-radius: 8px !important;
    background-color: #aeaeae ;
    padding: 5px 11px;
    color: #ffffff;
    font-size: 14px;
    box-shadow: none!important;
}
.searchmaincontent{
	background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%);
    padding: 11px;
    border-radius: 7px;
    color: #fff;
    font-size: 17px;
}
.addContentForCallIcon{
	display: flex;
    float: right;
}








/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.welcometextindex{
	text-transform:uppercase;
	color:#fff;
	text-align:center;
}
.goolefabiocns{
	font-size:18px !important;
}
.signupcolorclick{
	color: #a932c4;
}

.web-feedback:hover{
	color:#fff !important;
}
.web-feedback:focus{
	color:#fff !important;
}
.walletbuttondesign{
	background: #04ebc4;
    padding: 4px 20px;
    border-radius: 3px;
    color: #000;
    font-weight: 800;
}
.walletbuttondesign span{
	color:#000 !important;
}
.input-container.speech #record{
    padding: 7px;
    border-radius: 3px;
    color: #e8e8e8;
	background:#969696;
	margin-top:10px !important;
}
#uploadAudioBtn .btn.btn-primary{
	background:linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%) !important;
	    font-size: 12px;
    font-weight: 600;
    padding: 8px 21px;
}
.signupcolorclick{
	font-size:14px !important;
}
span.rememberCheck {
    float: right;
	font-size:14px;
	}
	.button.mid{
		color:#fff !important;
	}
	.questionmainsec{
		color: #000 !important;
		line-height: 21px !important;
	}
	.answermainsec{
		color: #a8a8a8 !important;
		line-height: 21px !important;
	}
	.thespays{
		padding:10px !important; 
		margin-bottom:10px;
	}
	.label-check{
		    font-size: 14px !important;
	}
	.faqques{
		    font-size: 14px !important;
    padding: 4px 15px !important;
    margin: 0px;
    line-height: 22px !important;
	color:#555;
	}
	.faqans{
		  font-size: 14px !important;
    padding: 4px 15px !important;
    margin: 0px;
    line-height: 22px !important;
	color:#999;
	}
	.mttopmainia{
		margin-top:10px;
	}
	.font-zise{
		font-size:14px !important;
	}
	.bellmain{
		    color: #aeaeae;
			    font-size: 25px !important;
	}
	.mainfbfoter{
		font-size: 22px !important; 
    color: #dedede;
    margin-right: 28px;
	}
	.widthmainforpass{
		width:30% !important;
	}
	.form-control{
		height:40px !important;
	}
	.bgassociay{
		background: #fff;
    /* padding: 0; */
    border-radius: 8px;
    box-shadow: 6px 5px 37px #666464;
	}
	.select2-search.select2-search--inline{
		width:100% !important;
		
	}
	.margin-btmmain{
		margin-bottom:15px;
	}
	.formactionmrbotttom input{
		margin-bottom:8px !important;
	}
	.widthmaincol{
		    width: 3.333333% !important; 
			padding-right: 3px !important;
	}
	.fontcol label{
		font-size:14px ;
		
	}
	.font-trans-weight:hover{
		color:#fff;
	}
	.mborbho{
		    margin-bottom: 17px;
	}
	.date-border-chnge{
		font-size:14px;
	}
	select{
		font-size:14px !important;
	}
	textarea{
		font-size:14px !important;
	}
	.mainul li a{
		font-size: 14px !important; 
	}
	#mainLoader{
		    background: #00000059;
	}
	.multi-select-component{
		height:auto;
		border-radius:1px;
		padding: 8px;
	}
	.violet h3{
		color:#fff;
	}
	.txtsecmainreq.maintopstil .col-md-2 input{
		background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%) !important;
    padding: 8px 53px !important;
    font-size: 17px !important;
    color: #fff !important;
	}
	.hire_btn:hover{
		color:#fff;
	}
	.modal-content{
		width: 80% !important;
	}
	@media only screen and (max-width: 600px) {
  .btn_wi{
			
    	margin: 35px !important;
		}
	}
	.howitwork-heading{
		    font-size: 50px !important;
			color:#fff !important;
	}
	.bannervalue{
		    background: #f9d2ff;
    padding: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    color: #c217da;
	}
	.innerbg{
		    background-color: #f8f7f8 !important;
	}
	.imgtaskjy{
		    width: 62px;
	}
	.widthlibh{
		
		    padding: 8px 12px; 
	}
	.hire-scope{
		
	    background: #fff;
    padding: 14px;
    border-radius: 12px;
    box-shadow: 1px 1px 10px #e0e0e0;
	overflow:hidden;
}
.mtmainss{
	margin-top:92px ;
   margin-bottom:20px;
}
.numberone{
color: #999;
    position: relative;
    right: -70px;
    font-size: 162px;
    top: -68px;
    opacity: 0.1;

}
.myhjk{
	    margin-top: -170px;
}
.frontbox{
	text-align: left;
    font-size: 34px;
    color: #4b4b4b;
    margin-top: 82px;
}
.maincouing{
        background: #fbeaff;
    padding: 0;
	position:relative;
}
.maincouing2{
        background: #eeefff;
    padding: 0;
	position:relative;
}
.imgsize{
	width:87%;
}
.imgsectionpart{
	    background: #fff;
    border-radius: 0 60px 500px 0;
	box-shadow: 51px 0px 0px #edc1fe;
}
.imgsectionpart2{
	    background: #fff;
    border-radius:  60px 0 0 500px ;
	    float: right;
		
    box-shadow: -51px 3px 0px #b2c8ff;
}
.sectionheadingseller p{
	color:#3d3d3d;
}
.iconsimagemain{
	    width: 62px;
}
.samplemoden{
	    box-shadow:1px 1px 10px #cfcfcf;
    border-radius: 6px;
    padding: 16px;
	position:relative;
	overflow:hidden;
	margin-bottom:20px;
	    height: 282px;
	background: #fff;
}
.iconsimagemain2{
	position: absolute;
    width: 192px;
    opacity: 0.02;
    transform: rotate(220deg);
    bottom: 120px;
    right: -50px;
}
.newsectionforring{
	background:url(../images/bgcont.jpg);
	width:100%;
	height:auto;
	background-size:cover;
	padding-top:60px;
		padding-bottom:60px;
}
.imgsocialmobile{
		display:none;
	}
	.bg-success {
    background: linear-gradient(45deg, rgba(86, 130, 181, 1) 0%, rgba(77, 40, 152, 1) 49%, rgba(187, 52, 205, 1) 100%) !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 72px;
    /* top: 50%; */
}
.cookie-consent__message{
	    font-size: 22px;
    color: #fff;
}
.js-cookie-consent-agree{
	
	background: #222;
    border: none;
    padding: 7px 33px !important;
    font-size: 17px !important; 
}
.mlleft{
margin-left: 22px;
}
.borevlo{
	border-color:#d1d1d1 !important;
}
.lehyhuh{
	    margin-left: -17px;
}
.msg_container_base{
	margin:6px !important;
} 
@media only screen and (max-width: 480px) and (min-width: 360px){
	.bginstall{
		display: flex;
    overflow: scroll;
	}
	.messages.msg_receive:before{
    content: '';
    position: absolute;
    border-top: 5px solid transparent;
    border-right: 0px solid #546dae;
    border-bottom: 0px solid transparent;
    left: 5px;
    bottom: 6px;
	}
	.messages.msg_sent:before {
    content: '';
    position: absolute;
    border-top: 0px solid transparent;
    border-left: 0px solid #ae33c7;
    border-bottom: 0px solid transparent;
    right: 5px;
    bottom: 6px;
}
.messages.msg_sent{
  border-radius:8px 8px 0px 8px	
}
.messages.msg_sent p{
	color:#fff !important;
}
.messages.msg_receive{
     border-radius:0px 8px 8px 8px;	
     background: #fff !important;
    box-shadow: 1px 1px 24px #e6e6e6;
}
.messages > p {
    font-size: 13px;
    margin: 0 0 0.2rem 0;
    line-height: 15px;
    color: #5d5d5d !important;
}
.bg-send {
    background: #646de9 !important;
}
.chat-window{
	top:0;
}
.chat-window > div > .panel{
	    border: 1px solid #fff !important;
		box-shadow: 1px 91px 90px #fff;
}
.addContentForCallIcon a{
	font-size:19px;
}
.addContentForCallIcon a i{
	color:#fff !important;
}
.addContentForCallIcon button{
	background:none !important;
}
.msg_container_base .msg_container .avatar img{
	border-radius:50px;
}
.top-bar{
      
}
.padding-margin-alig{
       padding-right: 14px !important;
    margin-top: 4px;	
}
.dot-online {
    height: 12px;
    width: 12px;
    background: #6db74e;
    position: absolute;
    border-radius: 50%;
    left: 3px;
    top: 13px;
    border: 2px solid #ffff;
}
.top-bar .fa {
    color: #fff !important;
}
.panel-default>.panel-heading {
    color: #333;
    background-color: #646de9 !important;
    border-color: #848be0;
	    border-radius: 0;
}
.panel-heading.top-bar h3{
	color:#fff !important;
}
	.row.chat-window.col-xs-5.col-md-3{
		height: 98% !important;
    max-width: 107% !important;
    max-height: 100% !important;
    width: 107% !important;
	}
	.msg_container_base {
    background: #fff;
    margin: 0;
    padding: 0 10px 10px;
       min-height: 562px !important;
    max-height: 572px !important;
    overflow-x: hidden;
}
.chat-box-12 {
    width: 100%;
}
#sidepanel{
   height:100%;	
}
	#frame #sidepanel {
    width: 96% !important;
    min-width: 58px ;
    margin-right: 9px;
    max-width: 100% !important;
}
	ol.progtrckr li {
    width: 25% !important;
	    white-space: nowrap;
		font-size: 8px!important;
}
ol.progtrckr li.progtrckr-todo:before {
    content: "";
    color: silver;
    background-color: white;
    font-size: 2.2em;
    bottom: -28px !important;
    border: 2px solid #05ecc5;
    padding: 6px !important;
    border-radius: 20px 20px 20px 0;
    transform: rotate(45deg);
}
ol.progtrckr li.progtrckr-todo {
    font-size: 8px!important;
}
ol.progtrckr li.progtrckr-done:before {
    content: "\2713";
    color: white;
    background: -webkit-linear-gradient(
45deg, rgba(86,130,181,1) 0%, rgba(77,40,152,1) 49%, rgba(187,52,205,1) 100%);
    height: 2.2em;
    width: 2.2em;
    line-height: 20px;
    border: none;
    border-radius: 20px 20px 20px 0px;
}
	.bginstall{
	    background: #dadada;
    margin: 1px -8px;
    border-radius: 6px;
    padding: 6px 0px;
		
	}
	.m-auto{
		margin:auto;
		display:block;
		text-align:center;
	}
	.add-employee-input .button.mid-short{
		margin-left: 0 !important;
	}
}

.add-employee-input input
{ 
    margin-bottom: 10px;
} 

.table-custum th{
	border-bottom:none !important;
	white-space:nowrap;
	    padding-bottom: 19px !important;
    padding-top: 19px !important;
}
.table-custum tr{
	border-bottom:1px solid  #ddd;
}
.table-custum2{
	    background: #514ca4;
}
.table-custum{
	background:#ecebfb;
	border-radius:10px;
	    box-shadow: 0px 0px 33px #dadada;
	border:none !important;
}
.first-radius{
	border-radius:10px 0 0 0; 
}
.first-radius2{
	border-radius: 0 10px 0 0 ; 
}
#profile-info-form{
	background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 3px 1px 15px #e9e9e9;
}
/**********************blog css*************************/

.card-ten-top .card {
  width: 100%;
  border-radius: 20px;
  background: #4d2898;
  overflow: hidden;
  padding: 14px;
  position: relative;
      margin: 10px 0 !important;
}
.card-ten-top .card header.user {
  display: flex;
  gap: 12px;
}
.card-ten-top .card header.user img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.card-ten-top .card header .user-info-name {
  letter-spacing: 0.4px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.card-ten-top .card header .user-info-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.588);
}
.card-ten-top .card main p {
  font-size: 14px;
  color: #fff;
  margin-top: 16px;
  line-height: 1.7;
}
.card-ten-top .card section {
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.card-ten-top .card section .users-avatars {
  margin-right: 21px;
  display: flex;
  align-items: center;
}
.card-ten-top .card section .users-avatars img {
  height: 32px;
  width: 32px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #191A1D;
  margin-right: -21px;
}
.card-ten-top .card section p {
  color: rgba(255, 255, 255, 0.508);
  font-size: 12px;
  margin-left: 10px;
}
 .card-ten-top .card section p.comment {
  margin-left: auto;
}

@media only screen and (max-width: 1250px) and (min-width: 1200px){
    .searchcircle {
		background: #fff;
		padding: 12px;
		box-shadow: 1px 1px 20px #e7e7e7;
		border-radius: 5px; 
		width: 102% !important;
	}
}

.ui-icon.ui-icon-circle-triangle-e{
   float:right;	
}
.select2.select2-container.select2-container--default{
	    overflow: hidden;
    overflow-y: scroll;
}
.mrt-align{
	    margin-bottom: 18px !important;
	}
	.tabcontSrol {
		    overflow: hidden;
    overflow-x: scroll;
    height: 500px;
    overflow-y: scroll;
	}
	
	::selection{
		 background:#4d2898;
		 color:#fff;
	}
.table>thead>tr>th{
  text-align:center;
}
.modal-backdrop.show {
    opacity: 0 !important;
    z-index: -1 !important;
}
.rightprofile{
	float:right !important;
}
@media only screen and (max-width: 320px) and (min-width: 200px){
	.rightprofile{
	float:none !important;
}
}
@media only screen and (max-width: 360px) and (min-width: 320px){
	.rightprofile{
	float:none !important;
}
}
@media only screen and (max-width: 480px) and (min-width: 360px){
	.rightprofile{
	float:none !important;
}
}
@media only screen and (max-width: 600px) and (min-width: 480px){
	.rightprofile{
	float:none !important;
}
}
@media only screen and (max-width: 768px) and (min-width: 600px){
	.rightprofile{
	float:none !important;
}
}
@media only screen and (max-width: 1024px) and (min-width: 768px){
	.rightprofile{
	float:none !important;
}
}
@media only screen and (max-width: 1262px) and (min-width: 1024px){
	.rightprofile{
	float:none  !important;
}
}