@media (min-width: 1025px) {
	.mobile,
	.tablet,
	.mobile-tablet {
		display: none !important;	
	}
}

@media (min-width: 768px) {
	.mobile { display: none !important; }
}

html {
	scroll-behavior: smooth;
	font-size: 14px;
}

body {
	font-size: 16px;
	margin: 0;
	padding: 0;
	font-family: 'Ubuntu';
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	color: #2C2C2C;
	background: #f5f5f5;
	min-height: 100vh;
	padding-top: 4rem;
	box-sizing: border-box;
}

.errors {
	font-weight: 600;
	color: #b02;
}

.success {
	font-weight: 600;
	color: #184;
}

button, .button-link {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 6rem;
	min-height: 1.25rem;
	font-size: 1rem;
	padding: 0.6rem 1rem;
	color: #f5f5f5;
	background: #184;
	border: 2px solid #184;
	cursor: pointer;
	transition: 0.2s;
	box-sizing: border-box;
	width: max-content;
}

.button-link.logout, button.cancel, .button-link.cancel {
	background: #f5f5f5;
	color: #888;
	border-color: #888;
}

button i, .button-link i {
	display: inline-block;
	margin-right: 0.5rem;
}

button:hover, .button-link:hover {
	background: #f5f5f5;
	color: #184;
	border-color: #184;
}


button.addline {
	min-width: initial;
}

button.addline i {
	margin: 0;
}


.button-link.pdf {
	background-color: #b02;
	border-color: #b02;
	margin-right: 1rem;
}

.button-link.pdf:hover {
	background-color: transparent;
	color: #b02;
}

.button-link.pdf i {
	font-size: 180%;
}


img, video {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: #2C2C2C;
	transition: 0.2s;
}

a:hover {
	color: #184;	
}

h1, h2, h3, h4, h5, h6 {
	font-style: normal;
	font-weight: bold;
	margin-top: 0;
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.25;
}

h3 {
	font-size: 2rem;
	line-height: 1.5;
}

h4 {
	font-size: 1.5rem;
	line-height: 1.5;
}



.header {
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	width: 100%;
	height: 4rem;
	background: #FFFFFF;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	font-size: 1rem;
	padding: 0.75rem 3rem;
}


.page {
	padding: 0;
	margin: 0;
	background: #F5F5F5;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.page .wrapper {
	padding: 2rem 2rem;
}

.flex { display: flex; }
.space-between { display: flex; justify-content:space-between; }
.space-evenly { display: flex; justify-content:space-evenly; }
.space-around { display: flex; justify-content:space-around; }
.vcenter { display: flex; align-items:center; }
.vbottom { display: flex; align-items:flex-end; }
.allcenter { display: flex; align-items:center; justify-content:center; }

.fit { width: 100%; }














.form {
	min-width: 25rem;
	padding: 3rem;
	background: #FFFFFF;
	border-radius: 0;
	box-sizing: border-box;
	position: relative;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.form h3 {
	margin-top: 0;
	margin-bottom: 2rem;
}

.form-headers {
	display: flex;
	justify-content: space-around;
	margin-bottom: 1rem;
}

.report .form-headers {
	justify-content: flex-start;
}

.form-headers h3,
.form-headers h4 {
	color: #0A0A0A;
	opacity: 0.3;
	position: relative;
	transition: 0.2s;
}

.form-headers .active h3,
.form-headers .active h4 {
	color: #333333;
}

.form-headers .active h3, .form-headers h3:hover,
.form-headers .active h4, .form-headers h4:hover {
	opacity: 1;
}

.form-headers h3:before, .form-headers .active h3:before, .form-headers h3:hover:before,
.form-headers h4:before, .form-headers .active h4:before, .form-headers h4:hover:before {
	display: block;
	opacity: 1;
	position: absolute;
	content: '';
	width: calc(100% + 0.5rem);
	height: 0.15rem;
	bottom: -0.2rem;
	left: -0.25rem;
	background: #184;	
	transition: 0.2s;
}

.form-headers h3:before,
.form-headers h4:before {
	opacity: 0;
}

.inputs-header {
	margin-bottom: 0;
}

.form-inputs {
	margin-bottom: 2rem;
}

.form .input, .form .inputs-box {
	position: relative;
	margin-bottom: 1rem;
	width: 100%;
	transition: 0.2s;
}	

.form .input-hidden,
.form .input-hidden.inputs-box {
	width: 0;
	height: 0;
	opacity: 0;
	transform: scale(0);
}


.form textarea {
	width: 100%;
	height: 80px;
	border: 1px solid #D7D9DB;
	box-sizing: border-box;
	border-radius: 0;
	outline: none;	
}

.form .input > span {
	position: absolute;
	top: 1rem;
	left: 1rem;
	color:  #8B8C8B;
	transition: .2s;
	z-index: 1;
	font-size: 1rem;
}

.form .input.required span:before, .required-notes:before {
	display: block;
	content: '*';
	position: absolute;
	font-size: 1rem;
	color: #e14;
	color: #EB5757;
	top: 0;
	left: -0.6rem;
	z-index: 10;
}

.form .input > span.active {
	top: 0.5rem;
	font-size: 0.8rem;
	color: #8B8C8B;
}

.form .input > span.active:before {
	font-size: 0.8rem;
}


.form input[type=text],.form input[type=number],
.form input[type=phone],
.form input[type=email],
.form input[type=password],
.form select {
	width: 100%;
	display: block;
	height: 4rem;
	border: 1px solid #D7D9DB;
	box-sizing: border-box;
	border-radius: 0;
	outline: none;
	padding: 1rem 0.7rem 0 1rem;
	font-size: 1rem;
	color: #2C2C2C;
	position: relative;
	z-index: 2;
	background: transparent;
	transition: .2s;
}

.form input[type=text]::placeholder,.form input[type=number]::placeholder,
.form input[type=phone]::placeholder,
.form input[type=email]::placeholder,
.form input[type=password]::placeholder,
.form select::placeholder {
	color: #2C2C2C;
}

.form input[type=text]:hover,.form input[type=number]:hover,
.form input[type=phone]:hover,
.form input[type=email]:hover,
.form input[type=password]:hover,
.form select:hover {
	border-color: #656564;
}


.form select {
	padding: 0 1rem;
	width: max-content;
}

/*.form select option:first-child {
	color: #999;
}*/

.validation-text {
	margin: 0;
	font-size: 0.8rem;
	line-height: 1.5;
	color: #EB5757;
}

.form .input.validation-error input, .input.validation-error input:hover {
	border-color: #F03D43;
}

.form .input.validation-error .validation-text {
	display: block;	
}

.required-notes {
	font-size: 0.9rem;
	position: relative;
	padding-left: 0.7rem;
	margin-bottom: 1rem;
}

.form p {
	font-size: 0.9rem;
	margin-bottom: 1rem;
}


.required-notes:before {
	top: -5%;
	left: 0;
}

#positions.form-inputs {
	margin-bottom: 0.5rem;
}

.flex.position {
	width: max-content;
}

.position .input {
	margin: 0;
}


.position .input input[type=text] {
	width: 6rem;
}

.position .input input[type=text].input-price {
	width: 7.5rem;
	text-align: right;
}


.form.metalls {
	padding: 1rem;
	width: min-content;
}

.form.metalls-history {
	width: auto;
}

.form.metalls thead {
	position: sticky;
	top: 4rem;
	z-index: 10;
}

.form.metalls input[type=text],.form input[type=number],
.form.metalls input[type=phone],
.form.metalls input[type=email],
.form.metalls input[type=password],
.form.metalls select {
	min-width: 6rem;
	min-height: initial;
	height: initial;
	padding: .2rem;
	margin: 0;
}

.form.metalls tbody tr:hover td {
	background: #dfe;
}

.form.metalls tr td:first-child input[type=text] {
	width: 20rem;
}

.form.metalls tr td:nth-child(2) input[type=text] {
	width: 22rem;
}

.form.metalls tr td:nth-child(3) input[type=text] {
	width: 18rem;
}

.form.metalls tr td:nth-child(4) input[type=text] {
	width: 6rem;
}

.form.metalls .input {
	margin: 0;
}

.form.metalls table td {
	padding: 0;
}

.form.metalls-history table td {
	padding: 0 3px;
}

.form.metalls table .disabled td * {
	color: #cbb;
}

.form.metalls input[type=checkbox],
.form.metalls input[type=radio] {
	display: initial;
}

.form.metalls .checkbox label:before, .form.metalls .radio label:before {
	display: none;
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
}

.form.metalls .checkbox label, .form.metalls .radio label {
    padding-left: 1.25rem;
    margin-top: -1.75rem;
    margin-bottom: 0;
}

.form.metalls .input-price {
	text-align: right;
	width: 6rem;
}


.form.metalls.clients {
	padding: 0;
}

.form.metalls.clients table {
	width: calc(100rem - 10rem);
	box-sizing: border-box;
}

.form.metalls.clients table td {
	padding: 10px;
	width: initial;
}



.form.metalls.agreements {
	width: initial
}

.form.metalls.agreements table {
	width: 100%;
}

.form.metalls.agreements table tr.checked td {
	color: #bbb;
}

tr.disabled {
	color: #cbb;
	color: #9ab;
}

/*
input[type=checkbox],
input[type=file]:not(.input-file) {
    display: none;
}

/*.checkbox {
    margin-top: 0.6944rem;
}*/
/*
.checkbox label {
    display: inline-block;
    cursor: pointer;
    position: relative;
	padding-left: 2rem;
/*	font-size: 0.8333rem;*/
/*	color: #2C2C2C;
	transition: 0.2s;
}
/*
.checkbox label:before {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	content: "";
	width: 1.5rem;
	height: 1.5rem;
	box-sizing: border-box;
	border: 0.0694rem solid #D7D9DB;
    left: 0;
    top: 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	line-height: 1;
	transition: 0.4s;
}

input[type=checkbox]:checked + label:before {
	border-color: #184;
	color: #184;
	content: "\f00c";
/*	background: url("../img/checkbox.svg");
	background-size: contain;
	background-repeat: no-repeat;
    filter: hue-rotate(190deg) brightness(1.2);*/
/*	
}

.input-file label {
	cursor: pointer;
}

.input-file label:hover {
	color: #184;	
}


*/




input[type=checkbox],
input[type=radio],
input[type=file] {
    display: none;
}

.checkbox, .radio {
	display: flex;
	align-items: center;
}

.checkbox label, .radio label {
    display: inline-block;
    display: inline-flex;
	align-items: center;
	justify-content: center;
    cursor: pointer;
    position: relative;
	padding-left: 2.25rem;
	color: #184;
	transition: 0.2s;
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.checkbox label:before, .radio label:before {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	content: "";
	width: 1.85rem;
	height: 1.85rem;
	box-sizing: border-box;
	border: 1px solid #D7D9DB;
    left: 0;
    top: 0.25rem;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	line-height: 1;
	transition: 0.2s;
	font-size: 1rem;
	/* padding-top: 0.1rem; */
}

.checkbox label:hover:before, .radio label:hover:before {
	border-color: #656564;
}

input[type=checkbox]:checked + label:before {
	content: "\f00c";
	background: #184;
	color: #fff;
}

.radio label:before {
	border-radius: 50%;
    top: 0;
	padding-top: 0rem;
}

/*input[type=radio]:checked + label:before {
	border-width: 0.5rem;
}*/

input[type=radio]:checked + label:before {
	content: "\f00c";
	background: #184;
	color: #fff;	
	
}

input.disabled,
input.disabled + span {
	opacity: 0.4;
}

.bank-details {
	display: none;
}

.bank-details.active {
	display: block;
}


.data-line {
	display: flex;
	align-items: flex-end;
}

.data-label {
	font-size: 0.8rem;
	color: #8B8C8B;	
}

.data-value {
	line-height: 1.4;
	font-size: 1rem;
	font-weight: 600;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}







.menu {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	flex-grow: 10;
	text-transform: uppercase;
}

.menu-toggler {
	display: none;	
}

.menu ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-transform: uppercase;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu ul li {
	margin-right: 2rem;
	transition: 0.2s;
	position: relative;
	display: block;
}

.menu ul li:before, .menu ul li.active:before, .menu ul li:hover:before {
	display: block;
	opacity: 1;
	position: absolute;
	content: '';
	width: calc(100% + 1rem);
	height: 0.2rem;
	bottom: -0.2rem;
	left: -0.5rem;
	background: #184;
	background: linear-gradient(90deg,#184,#fff,#ed0);
	background: linear-gradient(90deg,#184,#4c8,#184);
	transition: 0.2s;
}

.menu ul li:before {
	opacity: 0;
}

.menu ul li.has-child {
	padding-right: 1.5rem;
}

.menu ul li.has-child:after {
	display: block;
	position: absolute;
	top: 0;
	right: 0.5rem;
	transition: 0.2s;
	content: "\f107";
	font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.menu ul.sub-menu {
	display: block;
	padding: 1rem;
	width: max-content;
	position: absolute;
	top: 100%;
	left: -0.5rem;
	transform: scale(0);
	opacity: 0;
	transition: 0.2s;
	background: #fff;
	box-shadow: 0 4px 4px rgba(0,0,0,0.2);
}

.menu ul li.has-child:hover ul.sub-menu {
	transform: none;
	opacity: 1;
}

.menu ul.sub-menu li {
	display: block;
	margin-left: 0;
	margin-bottom: 1rem;
}

















































.selector-wrapper {
	padding-top: 1.4rem;
}

.selector-wrapper span {
	text-transform: uppercase;
}

.selector {
	display: inline-flex;
	align-items: center;
	position: relative;
}

.selector ul {
	position: relative;
	list-style: none;
	padding: 0 2.2222rem 0 1.1111rem;
	margin: 0;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	box-sizing: border-box;
	height: 1.1111rem;
	width: min-content;
	background: #FFFFFF;
	border-bottom: 0.0694rem solid rgba(0, 0, 0, 0);
	border-left: 0.0694rem solid rgba(0, 0, 0, 0);
	border-right: 0.0694rem solid rgba(0, 0, 0, 0);
}

.selector ul:after {
	display: block;
	content: '';
	top: 0.1389rem;
	right: 1.1111rem;
	position: absolute;
	width: 0.5555rem;
	height: 0.5555rem;
	background: url(../img/triangle-arrow.svg) no-repeat center;
	background-size: contain;
}

.selector ul:hover {
	height: initial;
	border-bottom: 0.0694rem solid rgba(0, 0, 0, 0.1);
	border-left: 0.0694rem solid rgba(0, 0, 0, 0.1);
	border-right: 0.0694rem solid rgba(0, 0, 0, 0.1);
	box-shadow: 0.2083rem 0.2083rem 0.2083rem (0,0,0,0.1);	
	transition: .2s;
}

.selector ul:hover:after {
	transform: rotate(180deg);
	transition: .2s;
}

.selector ul li {
	height: 1.1111rem;
	line-height: 1.1111rem;
	margin-bottom: 1.1111rem;
	text-transform: uppercase;
	color: #184;
	order: 2;
}

.selector ul li:hover {
	color: #184;
}

.selector ul li.active {
	order: 1;
}

.language-selector {
	margin-right: 0.75rem;
}

.phone-selector {
	font-size: 1.5rem;
	line-height: 1;
	margin-left: 4rem;
}


.phone-selector ul {
	height: 1.5rem;
	padding-right: 2.25rem;
	width: max-content;
}

.phone-selector ul:after {
	top: 0.35rem;
	right: 0.8rem;
}

.phone-selector ul li {
	height: 1.5rem;
	font-size: 1.5rem;
	line-height: 1.2; 
}

.action-button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 3.8889rem;
	border-radius: 6px;
	box-sizing: border-box;
	border: 0.0694rem solid #184;
	background: #184;
	outline: none;
	margin-bottom: 1.1111rem;
	padding: 0.4861rem 1.7361rem;
	font-family: Circe;
	font-size: 1.1111rem;
	color: #FFFFFF;
	cursor: pointer;
	margin-bottom: 1.5278rem;
	transition: 0.2s;
}

.action-button.light, .action-button:hover {
	background: #FFFFFF;
	color: #184;
	transition: 0.2s;
}

 .action-button.light:hover {
 	background: #184;
	color: #FFFFFF;
}

.action-button[disabled], .action-button.light[disabled] {
	background: #ccc !important;
	color: #666 !important;
	border-color: #5c110c !important;
	cursor: default !important;
}

.action-button.dismiss {
	background: #aaa;
	border-color: #aaa;
}

.action-button.dismiss:hover {
	background: none;
	color: #DA291C;
}

.user-block {
	position: relative;
	padding: 0 2rem;
}

.user-avatar {
	height: 100%;
	display: flex;
	align-items: center;
}

.user-avatar div {
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
    width: 1.6667rem;
    height: 1.6667rem;
    cursor: pointer;
    background: #184;
	border: 1px solid #184;
    display: flex;
    align-items: center;
    justify-content: center;
    Color: #fff;
    text-transform: uppercase;
	border-radius: 50%;
	transition: 0.2s;
}

.user-avatar div i {
	color: #fff;
	font-size: 1rem;
}

.user-avatar div:hover {
	background: #fff;
 	color: #184;
}

.user-avatar div:hover i {
	color: #184;	
}

.user-avatar.sign-in div {
	padding: 0.5rem 1rem;
    width: auto;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.user-avatar div span {
	margin-left: 1rem;
}

.user-menu {
	position: absolute;
	top: 4.0972rem;
	right: 0;
	width: 17.3611rem;
	background: #FFFFFF;
	border-radius: 0;
	border: 0.0694rem solid rgba(0,0,0,0.1);
	display: none;
	box-sizing: border-box;
}

.user-block:hover .user-menu {
	display: block;
}

.user-menu-header {
	display: flex;
	align-items: center;
	padding: 0.8333rem 1.1111rem;
	border-bottom: 0.0694rem solid rgba(0,0,0,0.1);
}

.user-menu-header .user-avatar > div {
	width: 2.7778rem;
	height: 2.7778rem;
}

.user-menu-header .user-avatar > div i {
	font-size: 1.75rem;
}

.user-info {
	margin-left: 0.6944rem;
}

.user-info p {
	font-size: 0.9722rem;
	line-height: 1.25;
	color: #4F4F4F;
	margin: 0;
}

.user-info p strong {
	font-weight: bold;
	font-size: 1.1111rem;
}

.user-menu ul {
	list-style: none;
	margin: 0.8333rem 0;
	padding: 0;
	font-size: 1.1111rem;
}

.user-menu ul li {
	margin: 0;
	padding: 0.8333rem 1.6667rem;
}

.user-menu ul li a:not(:hover) {
	color: #656564;
}

.user-menu .action-button {
	min-width: initial;
	min-height: 3.3333rem;
	width: calc(100% - 2.2222rem);
	margin: 0 auto 1.1111rem auto;
}





.registration-page {
	display: flex;
	align-items: center;
	justify-content: center;
}







.cpanel {
	padding-left: 18.3333rem;
	min-height: calc(100vh - 4.1667rem);
	box-sizing: border-box;
}

@media (min-width:1025px) {
	.cpanel.about {
		background-position: 9rem;	
	}
}

.sidebar {
	position: absolute;
	top: 4.1667rem;
	left: 0;
	width: 18.3333rem;
	min-height: calc(100vh - 4.1667rem);
	height: calc(100% - 4.1667rem);
	background: #FFFFFF;
/*	background-image: url(/assets/img/money-bg.jpg);*/
/*	background-repeat: no-repeat;*/
	background-position: top center;
	background-size: contain;
	padding-top: 1.5rem;
	box-sizing: border-box;
	z-index: 2;
}

.sidebar-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 18.3333rem;
    height: 100%;
    background: #fff;
    background-image: url(/assets/img/tourist.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.05;
    z-index: 1;
}

.sidebar-toggler {
	display: none;
}

.sidebar-inner {
	position: sticky;
	top: 4.1667rem;
	z-index: 10;
}

.sidebar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sidebar ul li {
	display: flex;
	align-items: center;
	position: relative;
}

.sidebar ul li, .sidebar h3 {
	margin: 0;
	padding: 0.8333rem 1.667rem;
}

.sidebar ul li a:not(:hover) {
	color: #656564;
}

.sidebar ul li:before {
	display: block;
	content: '';
	position: absolute;
	width: 0.2778rem;
	height: calc(100% - 0.5rem);
	top: 0.25rem;
	left: 0;
	background: transparent;
	transition: 0.2s;
}

.sidebar ul li.active:before, .sidebar ul li:hover:before {
	background: #184;
}

.counter {
	min-width: 1.1805rem;
	min-height: 1.1805rem;
	width: 1.5rem;
	height: 1.5rem;
	background: #184;
	border-radius: 50%;
	color: #FFFFFF;
	font-family: Roboto;
	font-style: normal;
	font-weight: bold;
	font-size: 0.9722rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 1rem;
}

.notice, .notice a {
	display: flex;	
	align-items: center;
}

.notice i {
	color: #184;	
	font-size: 1.5rem;
}

.notice .counter {
	margin-left: 0.2rem;
}

.cpanel .wrapper {
	padding: 1.6667rem 2.7778rem;
	overflow-x: scroll;
}

.personal-settings-wrapper {
/*	min-height: calc(100vh - 13.8889rem);*/
	display: flex;
	align-items: center;
	justify-content: center;
}

.personal-settings {
	background: #FFFFFF;
	border-radius: 0;
	padding: 2.2222rem;
	width: 52.2222rem;
}


.personal-settings h3 {
	margin-bottom: 1.9286rem;
}

.personal-settings .form-inputs {
	margin-bottom: 0;
}

.personal-settings .form-inputs .required-notes {
	margin-bottom: 1.6667rem;
}

.personal-settings .form-inputs .row {
	margin-bottom: 2.0833rem;
}

.personal-settings .form-inputs .field {
	width: calc(50% - 1rem);
	display: flex;
}

.personal-settings .form-inputs .field .input {
/*	margin-bottom: 0;*/
	width: 100%;
}

.personal-settings .form-inputs .field.gender {
	justify-content: space-between;
}

.personal-settings .form-inputs .field.gender > div {
	width: 4.5833rem;
	height: 3.8889rem;
	border: 0.1389rem solid #FFBABB;
	box-sizing: border-box;
	border-radius: 0;
	outline: none;
	padding: 0.4861rem 1.7361rem;
	font-size: 1.1111rem;
	color: #2C2C2C;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0;
}

.personal-settings .form-inputs .field.gender > div.active {
	border-color: #184;
	background: #184;
	color: #FFFFFF;
}

.personal-settings .form-inputs .sub-action-link{
	cursor: pointer;
}

.personal-settings .form-inputs .sub-action-link img {
    height: 1.25rem;
    margin: 0.2778rem;
    vertical-align: bottom;
}

.personal-settings .form-inputs .sub-action-link span {
	transition: .4s;
}

.personal-settings .form-inputs .sub-action-link:hover span {
	color: #184;
}

.personal-settings .form-inputs .checkboxes {
	margin-top: 2.0833rem;
}

.personal-settings .form-inputs .action-button {
	margin-bottom: 0;
	margin-top: 2.0833rem;
}

@media (min-width: 768px) {
	.user-inputs {
		flex-basis: 45%;	
	}
}

.avatar-form {
	text-align: center;	
}

.avatar-img {
/*	background: #184;*/
	width: 20rem;
	height: 20rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
	margin-bottom: 1rem;
	position: relative;
	z-index: 10;
}

 .img-loader {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	align-items: center;
	justify-content: center;
	z-index: 1;
}

 .img-loader p {
	color: #fff;
	font-size: 1.25rem;
}

 .img-loader.visible {
	z-index: 100;
}

.picture-bg {
	width: 100%;
	height: 100%;
	transition: 1s;
	background:url(/images/users/default_avatar.png);
	background-position: center;
	background-size: cover;
	transition: 0.4s;
	z-index: 10;
}

.pmadv-images-container {
	position: relative;
}

.pmadv-images-container .scroll-more {
	/*position: absolute;
	padding-top: 2rem; */
	bottom: 0;
	left: 0;
	width: 100%;
	color: #888;
	text-align: center;
	background: linear-gradient(0deg,white,transparent);
	z-index: 100;
}

.pmadv-images {
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	/*overflow-Y: scroll;
    height: 50vh;*/
	position: relative;
}



.pmadv-images .avatar-form {
	margin-right: 1rem;
	margin-bottom: 2rem;
/*	border: 1px solid #184;*/
	border-radius: .5rem;
	width: 10.5rem;
}

.pmadv-images .avatar-form:not(:last-child) {
	margin-right: 1rem;
	margin-bottom: 2rem;
}

.pmadv-images .avatar-img {
	width: 10.5rem;
	height: 10.5rem;
	border-radius: .5rem;
	margin-bottom: .5rem;
}

.pmadv-images .checkbox {
	transform: scale(0.8);
}

.user-menu-header .user-avatar > div.picture-bg {
	background:url(/images/users/default_avatar.png);
	background-position: center;
	background-size: cover;
}

.popup-form {
	position: absolute;
	top: 4.1667rem;
	left: 18.3333rem;
	width: calc(100% - 18.3333rem);
	height: calc(100vh - 8.3333rem);
	background: rgba(101,101,100,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999;
	display: none;
}

.popup-form.active {
	display: flex;
}

/*.popup-form .form .close-button {
	background-image: url(../img/cross-light.svg);
}*/

.banner {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 35rem;
	width: 100%;
	background: url(../img/banner-bg-full.jpg) center no-repeat;
	background-size: cover;
}

.banner-content h2 {
	color: #333;
	text-align: center;
	margin-bottom: 0;
	font-size: 3.5rem;
}

.banner-content h2 span {
	text-transform:uppercase;
	position: relative;
}

.banner-content h2 span:before {
	display: block;
	position: absolute;
	content: '';
	width: calc(100% + 0.5rem);
	height: 0.2778rem;
	bottom: -0.2rem;
	left: -0.25rem;
	background: #184;	
}

.container.fit, .fit {
	width: 100%;
}

.container.fit .content {
	padding: 6rem;
}

.page .container.fit:first-child .content {
	padding-top: 2rem;	
}

.image-text {
	display: flex;
	align-items: strech;
}

.image-text p {
	text-align: justify;
}

.image-text:nth-of-type(odd) > div:nth-of-type(1) {
	flex-basis: 65%;
	order: 1;
	padding: 3rem 3rem 3rem 0;
}

.image-text:nth-of-type(odd) > div:nth-of-type(2) {
	flex-basis: 35%;
	order: 2;
}

.image-text:nth-of-type(even) > div:nth-of-type(1) {
	flex-basis: 65%;
	order: 2;
	padding: 3rem 0 3rem 3rem;
}

.image-text:nth-of-type(even) > div:nth-of-type(2) {
	flex-basis: 35%;
	order: 1;
}

.image-text .image-text-img {
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}

.image-text .image-text-img:before {
	display: block;
	position: absolute;
	content: '';
	top: -1rem;
	right: -0.2778rem;
	width: 0.2778rem;
	height: calc(100% + 2rem);
	background: #184;
/*	box-shadow: -0.2778rem 0 0.2778rem rgba(0,0,0,0.3);*/
}

.image-text:nth-of-type(even) .image-text-img:before {
	right: initial;
	left: -0.2778rem;
}

.image-text:nth-of-type(odd) .image-text-img:after {
	display: block;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #f5f5f5 0%, transparent 50%);
}

.image-text:nth-of-type(even) .image-text-img:after {
	display: block;
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 50%, #f5f5f5 100%);
}

.about {
	background: url('../img/swiss-map.jpg') center no-repeat fixed;
	background-size: cover;
}

.underline {
	position: relative;
	width: auto;
}

.underline:before {
	display: block;
	position: absolute;
	content: '';
	width: calc(100% + 0.5rem);
	height: 0.1389rem;
	bottom: -0.2rem;
	left: -0.25rem;
	background: linear-gradient(90deg,#ed0,#f5f5f5);
}

.container.red {
	background: #184;
	color: #fff;
}

.container.red .underline:before, .container.red .image-text .image-text-img:before {
	background: #fff;
}

.container.red .image-text:nth-of-type(odd) .image-text-img:after,
.container.red .image-text:nth-of-type(even) .image-text-img:after {
	display: none;
}


.pm-banner {
	width: 100%;
	/* height: 40rem; */
	overflow: hidden;
	padding: 0;
	display: flex;
	justify-content: center;
	background: url(../img/banner.jpg);
	background-size: cover;
	background-position: center;
}

.pm-banner-content {
	padding: 1rem 10rem;
	display: flex;
	align-items: center;
	flex-direction: column;
	color: #184;
}

.pm-banner-content h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-family: 'Corinthia';
    font-size: 7rem;
    font-weight: 400;
}

.pm-banner-content h1 span {
	display: block;
	font-size: 2.75rem;
	font-family: AvantGardeGothicC;
}

.pm-banner-content h2 {
	text-align: center;
	font-size: 3rem;
}

.pm-banner-content h3 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 0;
}

.pm-banner-features ul li {
	list-style: none;
	transition: 0.5s;
	font-size: 1.5rem;
	line-height: 2;
	font-weight: 600;
	color: #fff;
	transform: translateX(-50rem);
}

.pm-banner-features:last-child ul li {
	transform: translateX(50rem);
}

.pm-banner-features ul li i {
	color: #fff;
	display: inline-block;
	margin-right: 1rem;
	transition: .2s;
}

.pm-banner-features ul li.visible {
	transform: none;	
}

.pm-banner-features a {
	color: #fff;
	border-bottom: 0.1389rem solid transparent;
}

.pm-banner-features a:hover i {
	/*border-bottom: 0.1389rem solid #fff;*/
	transform: scale(1.25);
}

.pm-banner-features ul li:nth-child(2) { transition-delay: 0.3s; }
.pm-banner-features ul li:nth-child(3) { transition-delay: 0.6s; }
.pm-banner-features ul li:nth-child(4) { transition-delay: 0.9s; }
.pm-banner-features ul li:nth-child(5) { transition-delay: 1.2s; }
.pm-banner-features ul li:nth-child(6) { transition-delay: 1.5s; }
.pm-banner-features ul li:nth-child(7) { transition-delay: 1.8s; }
.pm-banner-features ul li:nth-child(8) { transition-delay: 2.1s; }

.pm-banner-1 {
	background-image: url(../img/banner-1.jpg);
}

/*.pm-banner-1 .pm-banner-content > div > div:first-child {
	opacity: 0;
}*/

.pm-banner-1 .pm-banner-features ul li,
.pm-banner-1 .pm-banner-features ul li i,
.pm-banner-1 .pm-banner-features ul li a {
	color: #184;	
	line-height: 1.5;
}

.pm-banner-2 {
	background-image: url(../img/banner2.jpg);
}

.pm-banner-2 .pm-banner-content > div > div:first-child {
	opacity: 0;
}

.pm-banner-2 .pm-banner-features ul li,
.pm-banner-2 .pm-banner-features ul li i,
.pm-banner-2 .pm-banner-features ul li a {
	color: #fff;	
	line-height: 1.5;
}

.features {
	background: #fff;
}

.features h2 {
	margin-left: auto;
	margin-right: auto;
}

.features .content {
	position: relative;
}

.features .content .picture {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12rem;
}

.features .content .picture img {
	width: 20rem;
	margin: 0 auto;
}


.features-icons > div {
	position: absolute;
	transform: translateX(-50%);
	transform: translateY(-50%);
	width: 15rem;
	text-align: center;
}

.features-icons > div img {
	height: 4.1667rem;
	display: block;
	margin: 0 auto;
	margin-bottom: 0.4rem;
	transition: 0.3s;
}

.features-icons > div img:hover {
	height: 4.5667rem;
	margin-bottom: 0;
}



.features-icons > div:nth-of-type(1) { top: 45%; left: 20%; }
.features-icons > div:nth-of-type(2) { top: 30%; left: 35%; }
.features-icons > div:nth-of-type(3) { top: 30%; right: 35%; }
.features-icons > div:nth-of-type(4) { top: 45%; right: 20%; }
.features-icons > div:nth-of-type(5) { bottom: 15%; left: 20%; }
.features-icons > div:nth-of-type(6) { bottom: 0%; left: 35%; }
.features-icons > div:nth-of-type(7) { bottom: 0%; right: 35%; }
.features-icons > div:nth-of-type(8) { bottom: 15%; right: 20%; }


.referal .image-text-img {
	background-size: contain;
    background-repeat: no-repeat;
    height: 20rem;	
}

.referal .image-text-img:before {
	display: none;
}

.referal .image-text p {
	font-size: 140%;
}

.referal .image-text div:nth-of-type(1) {
	order: 2;
	padding: 3rem 0 3rem 3rem;
}
	
.referal .image-text div:nth-of-type(2) {
	order: 1;
}
	


ul.cross li {
	list-style: none;
}

ul.cross li i {
	color: #184;
	display: inline-block;
	margin-right: 1rem;
	transform: rotate(45deg);
}




footer {
    background: #861a12;
    background: #5c110c;
    background: #456;
	background: linear-gradient(#53a,#15b);
    color: #fff;
    padding: 2rem;
	position: relative;
	z-index: 10;
}

footer a:hover {
	color: #bce;
	color: #ed0;
}
	
.footer-inner {
	width: 90%;
	margin: 0 auto 0 auto;
	display: flex;
	justify-content: space-between
}

.footer-menu {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.footer-menu > * {
	width: 20%;	
}

.footer-info {
	flex-basis: 60%;
}

.footer-contact {
	text-align: right;
}

.footer-contact p {
	margin-bottom: 0;
}

.footer-contact img {
	width: 15rem;
}

.footer-contact p.footer-phone {
	font-size: 175%;
	margin-top: 0.25rem;
}

footer a:not(:hover) {
	color: #fff;
}

.copyright {
	width: 90%;
	text-align: center;
	margin: 2rem auto 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.2);
	font-family: Sans, Arial;
	font-size: 70%;
}

.copyright a img {
	width: 4rem;
	filter: brightness(100);
}

.trusted-icons {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 4rem;
}

.trusted-icons > div {
	margin-right: 4rem;	
}


.popup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100rem;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.6);
	transform: scale(0);
	transition: opacity .75s;
	opacity: 0;
	z-index: 0;
}

.popup-container.active {
	transform: none;
	opacity: 1;
	z-index: 9999;
}

.popup-window {
	transition: 0.2s;
	transform: scale(0);
}

.popup-container.active .popup-window {
	transform: scale(1);
}

.popup-container .form {
	display: none;
}


.popup-container .form.active {
	display: block;
}
	

.robots {
	display: flex;
	flex-wrap: wrap;
	align-items: strech;
	justify-content: space-between;
}

.robot {
	flex-basis: 48%;
	background: #fff;
	padding: 0;
}

.robot-inner {
	padding: 2rem;	
}

.robot-inner h3 {
	margin-bottom: 0;
}

.robot-img {
	width: 100%;
	height: 20rem;
	background-position: center;
	background-size: cover;
}

.robot-params {
	display: flex;
}

.robot-params > div:not(:last-child) {
	padding-right: 1rem;
}

.investors {
	padding: 10rem;	
}

/*.investors .robot {
	flex-basis: 32%;
}*/

.success-message {
	color: #080;
}

.error-message {
	color: #DA291C;
	font-weight: 600;
}


.msg-preview {
	display: flex;
	align-items: center;
	background: #fff;
	border: 0.0694rem solid transparent;
	transition: 0.2s;
	margin-bottom: 1rem;
}

.msg-preview:hover {
	border-top-color:#184;
	border-bottom-color:#184;
}

.msg-info, .msg-text {
	padding: 1rem;
}

.msg-text {
	flex-grow: 1;
	position: relative;
}

.msg-text .reply-block {
	position: absolute;
	right: 2rem;
	top: 50%;
	text-align: right;
	max-width: 50rem;
	max-height: 4rem;
	overflow: hidden;
	font-size: 70%;
	color: #ccc;
}

.msg-text .reply-block span {
	font-size: 120%;
	color: #888;
}

.msg-date {
	font-size: 70%;
}


.msg-preview .counter {
	margin-right: 1rem;
}


.msg-container {
	position: relative;
}

.msg-window {
	max-height: 60vh;
    overflow-y: scroll;
    overflow-x: hidden;
}

.msg-single {
	max-width: 70%;
	padding: 1rem;
	background: #fff;
	margin: 1rem auto;
}

.msg-single.send {
	margin-right: 0;
	border-right: 0.1389rem solid #184;
}

.msg-single.recep {
	margin-left: 0;
	border-left: 0.1389rem solid #184;
}

.msg-single .msg-info, .msg-single .msg-text {
	padding: 0; 
}

.reply-form {
	width: 100%;
	display: flex;
	align-items: strech;
	min-height: 3.8889rem;
	margin-top: 3rem;
}

.reply-form textarea {
	flex-grow: 1;
	margin-right: 2rem;
	outline: none;
}

.reply-form button {
	width: 10rem;
	margin: 0;
}


.numbers {
	display: flex;
	align-items: strech;
	justify-content: space-between;
}

.numbers > div {
	flex-basis: 23%;
	border-bottom: 0.1389rem solid #184;
}

/*.numbers > div:not(:last-child) {
	padding-right: 2rem;	
}*/

.number {
	width: 6rem;
	height: 6rem;
	background: #184;
	color: #fff;
	font-size: 3rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.contact .image-text:nth-of-type(odd) .image-text-img:after {
	display: none;
}

.contact .image-text:nth-of-type(odd) > div:nth-of-type(1) {
	flex-basis: 40%;
}

.contact .image-text:nth-of-type(odd) > div:nth-of-type(2) {
	flex-basis: 60%;
}

.contact .image-text-img iframe {
	width: 100%;
	height: 42rem;
	border: none;
	box-shadow: 0 0 0.2779rem rgba(0,0,0,0.5);
}

.contact .image-text-img iframe:not(:last-child) {
	margin-bottom: 1rem;
}

.balans-history {
	display: flex;
	
}

.balans-history h3 {
	margin-bottom: 0;
}

.balans-history > div {
	padding-right: 3rem;
}

.balans-history .form {
	width: initial;
}

table {
	border-collapse: collapse;
}

table th {
	background: #587;
	color: #fff;
	font-weight: 600;
	padding: 0.5rem;
	font-size: 1rem;
}

table td {
	font-weight: 400;
	padding: 0.5rem;
	font-size: 1rem;
	background: #eee;
}

table tr:nth-of-type(odd) td {
	background: #fff;
}

table .td-num {
	text-align: right;
}


table .result td {
	font-weight: 600;
	background: #587 !important;
	color: #fff;
}

table .checkbox {
	width: max-content;
	margin: 0 auto;
}

.deposit {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: initial;
    padding: 0 1rem;
    height: 2rem;
    font-size: 1rem;
    color: #fff;
    background: #184;
    border: 0.1389rem solid #184;
    transition: 0.2s;
    font-weight: 400;
    vertical-align: top;
	margin-left: 1rem;
}

.deposit:hover {
	color: #184;
	background: #fff;
}


.payment_systems {
	display: flex;
	flex-wrap: wrap;
}

.payment_systems a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: 150px;
	background: #fff;
	border: 0.1389rem solid #184;
	padding: 20px;
	margin-bottom: 20px;
}


.payment_systems a:not(:last-child) {
	margin-right: 20px;
}


.payment_systems a img {
	width: 100%;	
}



.cpanel-text {
	background: #fff;
	border-top: 0.0694rem solid #184;
	border-bottom: 0.0694rem solid #184;
	padding: 1rem;
	margin-bottom: 3rem;
}

.user-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: 0.2s;
}

.user-line.admin p,.user-line.saler p {
	color: #9A291C;
}

.user-line.disabled * {
	color: #ccc;
}

.user-line .avatar-img {
	width: 3rem;
	height: 3rem;
	margin-bottom: 0;
	margin-right: 2rem;
}

.user-line:not(:last-child) {
	border-bottom: 1px solid #53a;
}

.user-line:hover {
	background: #fff;
}

.user-data {
	display: flex;
	flex-grow: 10;
	align-items: center;
	justify-content: space-between;
	padding-right: 1rem;
	padding-left: 1rem;
}

.user-data > p {
	flex-basis: 25%;	
}

.user-data .pm-rate {
	flex-grow: 1;	
}

.user-data > div {
	padding-left: 2rem;	
}

.user-data > div:first-child {
	flex-grow: 1;
	padding-left: 0;
}

.user-data .action-button {
	margin-bottom: 0;
	min-height: initial;
	width: initial;
	line-height: 1;
	margin-left: 2rem;
}

.user-data .pm-rate {
	transform: scale(0.7);	
}

.pmadv-line {
	display: flex;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.pmadv-line .pmadv-img {
	width: 15rem;
	min-width: 15rem;
	height: 15rem;
	overflow: hidden;
}

.pmadv-line:hover .pmadv-img .picture-bg {
	transform: scale(1.1);
}

.pmadv-data {
	display: flex;
	flex-grow: 10;
	justify-content: space-between;
	align-items: flex-start;
	background: #fff;
	border-bottom: 0.0694rem solid #184;
	height: 15rem;
	padding: 1rem;
	box-sizing: border-box;
	position: relative;
}

.pmadv-descr {
	flex-basis: 65%;
	margin-right: 2rem;
	position: relative;
	height: 13rem;
	overflow: hidden;
	z-index: 10;
	position: relative;
}

.pmadv-for-sale, .pmadv-for-sale-text {
	position: absolute;
	z-index: 1;
	bottom: 1rem;
	right: 1rem;
	color: #53a;
}

.pmadv-for-sale-text a:not(:hover) {
	color: #53a;
}

.pmadv-for-sale i {
	color: #53a;
	opacity: 0.1;
	font-size: 8rem;
}

.pmadv-for-sale-text {
    z-index: 90;
    bottom: 0;
    opacity: 1;
	left: 1rem;
	bottom: 1rem;
	background: linear-gradient(90deg, #fff, #fff, transparent); 
}

.pmadv-descr:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg,rgba(255,255,255,1),transparent);
}

.pmadv-descr h3 {
	margin-bottom: 1rem;	
}

/*.user-line:hover .pmadv-descr {
	background: #F5F5F5;	
}*/

.pmadv-info {
	flex-basis: 30%;
    height: 13rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pmadv-info p {
	margin: 0;
	margin-bottom: 0.25rem;
}

.pmadv-price {
	font-size: 150%;
	font-weight: 900;
	color: #184;
}

.pmadv-descr .pm-rate {
	transform: scale(0.7) translateX(2rem);
	margin-bottom: 0.4rem;
}

.pmadv-text * {
	background: none !important;
}

.pmadv-info form {
/*	position: absolute;
	left: 0;
	bottom: 1rem;
	width: 100%;*/
	margin: 0;
	
}

.pmadv-data .action-button {
	min-height: initial;
	margin: 0;
}

.pmadverts {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.pmadverts > * {
	width: 23.5%;
	margin-right: 2%;
}

.pmadverts > *:nth-of-type(4n) {
	margin-right: 0;
}

.pmadverts > *:hover . {
	
}

.pmadverts .pmadv-line {
	display: block;
}

.pmadverts .pmadv-line .pmadv-img {
	width: 100%;
	min-width: 100%;
	height: 15rem;
    border: 6px solid #fff;
    box-sizing: border-box;	
}

.pmadverts .pmadv-header {
	font-size: 1.3333rem;
    line-height: 1.2;
	max-height: 3rem;
    overflow: hidden;
	margin-top: 1rem;
}


.pmadverts .pmadv-descr {
	flex-basis: 100%;
	margin-right: 0;
	overflow: hidden;
}

.pmadverts .pmadv-descr p {
	margin-top: 0;
	margin-bottom: .5rem;
}


.pmadverts.masters-list {
	align-items: strech;	
}

.pmadverts.masters-list > * {
	width: 18.5%;
	margin-right: 1.5%;
	background: #fff;
	/*border-bottom: 0.0694rem solid #184;*/
	margin-bottom: 2rem;
}

.pmadverts.masters-list .pmadv-line {
	margin-bottom: 0;	
}

.pmadverts.masters-list .pmadv-data, .pmadverts.masters-list .pmadv-descr {
	border: none;
	height: auto;
}

.pmadverts.masters-list .pmadv-descr:after {
	display: none;	
}

.pmadverts.masters-list .pmadv-descr .pm-rate {
	transform: none;
	margin: 0 auto 1rem auto;
}

.pmadverts.masters-list .user-rang {
	margin: 1rem auto;	
}

.half {
	width: 50%;	
}

.filter .form {
	background: #184;
	background: linear-gradient(#184,#ed0,transparent);
	width: 100%;
    padding: 1rem 3.3333rem 3rem;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	color: #123;
}

.filter .form .half > deiv:not(:last-child) {
	padding-right: 2rem;	
}

.filter-header, .filter-inputs {
	display: flex;	
}

.filter-header > div, .filter-inputs > div {
	flex: 1;
}

.filter-header > div.grow, .filter-inputs > div.grow {
	flex-grow: 2;	
}

.filter-header {
	font-size: 1.5rem;
	color: #fff;
}

.filter-header > div {
	padding: 0 1.5rem;
}

.filter .form input,
.filter .form input:hover,
.filter .form select,
.filter .form .action-button {
	background: #fff;
	color: #184;
	font-size: 1.5rem;
	padding: 0.25rem 1rem;
	border: 0.0694rem solid #D7D9DB;

}

.filter .form .action-button:hover {
	background: #184;
	border-color: #184;
	color: #fff;
}


.single-adv-content {
	display: flex;
	justify-content: space-between;	
}

.single-adv-content .flexslider {
	width: 45%;
	min-width: 45%;
	max-width: 45%;
	margin-right: 3%;
}

.single-adv-info {
	width: 50%;	
}

.price {
	font-weight: 900;
	color: #184;
	margin:0;
}

.pm-rate {
	position: relative;
	width: 10rem;
	height: 1.8333rem;
}

.pm-rate-pos, .pm-rate-neg {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-size: 10rem;
	background-repeat: no-repeat;
	background-position: top right;
	background-image: url(../img/rate-v2-pos.png);
	z-index: 1;
}

.pm-rate .pm-rate-neg {
	background-image: url(../img/rate-v2-neg.png);
	z-index: 2;
}

.master-info {
	margin-top: 3rem;
}

.master-info h3 {
	margin-bottom: 0;	
}

.master-info .avatar-img {
	width: 6rem;
	height: 6rem;
	margin-right: 2rem;
	margin-bottom: 0;
}

.master-social {
	font-size: 125%;
	font-weight: 600;
}

.master-social i {
	color: #184;
	margin-left: 1rem;
}

.master-info .pm-rate {
	transform: scale(0.6) translateX(-3.2rem);
}

.user-rang {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #aaa;
	width: 6rem;
	height: 2rem;
	text-transform: uppercase;
	border: 0.0694rem solid #aaa;
	transition: .2s;
}

.user-rang.pro {
	background: #184;
	border: 0.0694rem solid #184;
}

a:hover .user-rang {
	background: #fff;
	color: #184;
}

.reviews .pm-rate {
	transform: scale(0.7) translateX(2rem);
	margin-bottom: 0.4rem;
}

.waiting .avatar-img {
	margin-bottom: 0;
	margin-right: 1rem;
	width: 4rem;
	height: 4rem;
}

.master-contacts {
	padding: 0 3rem;	
	font-size: 1.5rem;
	text-align: center;
	margin-top: 3rem;
}

.master-contacts i {
	width: 2rem;	
}

.master-about .flexslider {
	width: 40%;
	min-width: 40%;
	max-width: 40%;
	margin-left: 3%;
}

.cats-checks-list {
	columns: 2
}

.display-none {
	display: none;
}

.pro-only {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	color: #fff;
	z-index: 1000;
	display: none;
}


.tariff-table {
	width: 100%;	
}

.tariff-table > div {
	display: flex;
	width: 100%;
	border-bottom: 1px solid #184;
	min-height: 2.5rem;
	padding: .5rem;
	align-items: center;
}

.tariff-table > div > div {
	width: 15%;	
}

.tariff-table > div > div:first-child {
	width: 40%;
	padding-right: 2rem;
}

.tariff-header {
	font-weight: 600;
	font-size: 1.25rem;
}

.tariff-header span {
	display: block;
	font-size: 1rem;
	color: #888;
}

.tariff-option .fas {
	font-size: 1.5rem;	
}

.tariff-option .fa-check {
	color: green;	
}

.tariff-option .fa-times {
	color: red;	
}

.tariff-option > div:not(:first-child) {
	font-size: 1.2rem;
	font-weight: 600;
}

.tariff-forms {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.tariff-forms > form {
	width: 30%;	
}

.tariff-forms > form h3 {
	text-align: center;
	margin-bottom: 0;
}

.tariff-forms .per-month {
	text-align: center;
	margin-top: 0;
	color: #888;
}


.action-button#addToCartButton,
.action-button#goToCartButton {
	width: 0;
	margin: 0;
	transform: scale(0);
	opacity: 0;
	transition: 0.2s;
	display: none;
}

.action-button#addToCartButton.active,
.action-button#goToCartButton.active {
	display: flex;
	width: max-content;
	transform: scale(1);
	opacity: 1;
}

.number-control {
	margin: 0;
	padding: 0 1rem;
	font-size: 2rem;
	line-height: 1;
	width: 3rem;
}

.input-number-container {
	display: none;	
}

.input-number-container.active {
	display: flex;	
}

.input-number {
	margin: 0 1rem;
	width: 3rem;
	text-align: center;
}

.basket-notice p {
	text-transform: uppercase;
	padding-right: .5rem;
	margin: 0;
}

.basket-content {
	flex-grow: 1;	
}

.basket-position, .basket-position-controls {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.basket-position:nth-of-type(1) {
	margin-top: 1rem;
}

.basket-position {
	padding: 0.5rem 0;
	position: relative;
}

.basket-position:not(:first-child) {
	border-top: 1px solid #184;
}

.basket-position:hover {
	background: rgba(0,180,60,0.03);
}

.basket-position > div {
	padding: 0 0.5rem;
}

.basket-position > div:first-child {
	padding-left: 0;
}

.basket-position > div:last-child {
	padding-right: 0;
}

.basket-position-image {
	width: 2rem;
	height: 3rem;
	background-size: cover;
	background-position: center;
}

.basket-position-header {
	text-align: left;
	flex-grow: 1;
	padding: 0 0.5rem;
}

.basket-position-price {
	white-space: nowrap;
	text-align: right;
	padding: 0 0.5rem;
}

.basket-position-sum {
	min-width: 6rem;
	font-size: 110%;
	font-weight: 600;
	padding: 0 0.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.basket-position-phone {
	width: 10rem;
	text-align: right;
}

.basket-position-email {
	text-align: right;
}

.basket-position-delete {
	position: relative;
	cursor: pointer;
	color: #184;
	padding: 0 1rem;
}

.basket-info {
	flex-basis: calc(100% - 3rem);
}

.basket-position .basket-position {
	border-bottom: none;
	padding: 0;
}

.popup-notice {
	position: absolute;
	left: 75%;
	bottom: 90%;
	display: flex;
	border-top: 1px solid rgba(0,180,60,0.35);
	border-bottom: 1px solid rgba(0,180,60,0.35);
	background: #fff;
	color: rgba(0,180,60,0.35);
	transition: 0.3s;
	transform: scale(0);
	opacity: 0;
	z-index: 1000;
}


.basket-position-delete:hover .popup-notice {
	transform: scale(1);
	opacity: 1;
}

.basket-position-recover {
	display: none;
	background: rgba(245,245,245,0.8);
	align-items: center;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.basket-position-recover-button {
	position: relative;
	cursor: pointer;
	color: #184;
	padding: 0 1rem;
}

.basket-position-recover-button:hover .popup-notice {
	transform: scale(1);
	opacity: 1;
}

.basket-position.removed .basket-position-recover {
	display: flex;
}

.basket-position.notinstock .basket-position-recover-button {
	display: none;	
}

.basket-position-delete {
	z-index: 999999;	
}

.basket-position.removed:not(.notinstock) .basket-position-delete  {
	transform: scale(0);
	opacity: 0;
}

.total {
	width: 100%;
	padding: 1rem 1rem 0 1rem;
	box-sizing: border-box;
	font-size: 150%;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 2px solid rgba(0,180,60,1);
}
		

.client-form {
	padding: 1.5rem;
	margin: 0 0 0 2rem;
	display: flex;
	align-items: center;
	position: sticky;
	top: 6rem;
}

.client-form .form-inputs {
	width: 100%;
	margin: 0;
}

.client-form .button, .client-form button {
	margin: 0;	
}



.location {
	position: relative;
}

.location .location-selector-box {
	position: absolute;
	left: -5rem;
	top: 3rem;
	transform: scale(0);
	opacity: 0;
	width: 25rem;
	height: 100vh;
	z-index: 100;
	/*transition: 0.2s;*/
}

.location:hover .location-selector-box {
	transform: scale(1);
	opacity: 1;
}

.location-selector {
	position: absolute;
	left: 0;
	top: 0;
	transform: scale(0);
	opacity: 0;
	transition: 0.2s;
	margin: 0;
    padding: 10px;
    width: max-content;
	min-width: 26rem;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border-radius: 10px;
	z-index: 100;
}

.location .fa-angle-down {
	transition: 0.2s;	
}

.location:hover .fa-angle-down {
	transform: rotate(180deg);
}

.location:hover .location-selector, .location-selector.active, .location-selector:hover {
	transform: scale(1);
	opacity: 1;
}

.location-title {
	cursor: pointer;
	color: #53a;
	height: 4.1667rem;
	display: flex;
	align-items: center;
}

.location-title:hover {
	color: #184;	
}

.location-selector select {
	padding: 5px;
    height: auto;
}


.store-about {
	padding: 1rem 3rem;	
}


.amount-notes span {
	font-weight: 600;
}

.amount-notes span, .amount-notes i {
	color: #53a;
	cursor: pointer;
	transition: 0.2s;
}

.amount-notes span:hover, .amount-notes i:hover {
	color: #184;
}

.small {
	font-size: 80%;
	opacity: 0.8;
}


.fiz .suggestions-wrapper {
	display: none !important;
}


.big-opt-options {
	opacity: 0;
	transform: scale(0);
	max-height: 0;
	display: flex;
	column-gap: 10px;
	transition: 0.2s;
}

.big-opt.active .big-opt-options {
	opacity: 1;
	transform: scale(1);
	max-height: 100px;
}

.big-opt-options .checkbox label:before, .big-opt-options .radio label:before {
	width: 1rem;
	height: 1rem;
}

.big-opt-options .checkbox label {
	padding-left: 1.25rem;
	font-size: 1rem;
}

.radio-class .checkbox, .radio-class .radio,
.radio-class .checkbox label, .radio-class .radio label {
	align-items: flex-start;
}

/*
@media (max-width: 1440px) {


	body { font-size: 1.1111rem; }
	
	h1 { font-size: 2.7778rem; }
	h2 { font-size: 2.2222rem; }
	h3 { font-size: 1.6667rem; }
	h4 { font-size: 1.25rem; }


	.header {
		height: 4.1667rem;
		font-size: 0.9028rem;
	}

	.logo-kortros {
		width: 8.1944rem;
		margin: 0 1.3889rem;
	}

	.selector-wrapper {
		padding-top: 1.4rem;
	}

	.selector ul {
		padding: 0 2.2222rem 0 1.1111rem;
		height: 1.1111rem;
	}

	.selector ul:after {
		top: 0.1389rem;
		right: 1.1111rem;
		width: 0.5555rem;
		height: 0.5555rem;
	}

	.selector ul:hover {
		height: initial;
	}

	.selector ul li {
		height: 1.1111rem;
		line-height: 1.1111rem;
		margin-bottom: 1.1111rem;
	}

	.language-selector {
		margin-right: 0.75rem;
	}

	.phone-selector {
		font-size: 1.5rem;
		margin-left: 4rem;
	}


	.phone-selector ul {
		height: 1.5rem;
		padding-right: 2.25rem;
	}

	.phone-selector ul:after {
		top: 0.35rem;
		right: 0.8rem;
	}

	.phone-selector ul li {
		height: 1.5rem;
		font-size: 1.5rem;
		line-height: 1;
	}

	.menu {
		margin-left: 3rem;
	}

	.menu-toggler {
		padding-right: 3rem;
		height: 1.5973rem;
	}

	.menu-toggler:after {
		top: -0.0694rem;
		right: .5rem;
		width: 1.7361rem;
		height: 1.5973rem;
	}

	.menu-toggler span {
		font-size: 1.1111rem;
	}

	.menu ul li {
		margin-left: 2rem;
	}

	.user-avatar div {
		width: 1.6667rem;
		height: 1.6667rem;
	}


	.user-menu {
		top: 4.0972rem;
		left: -1.7361rem;
		width: 17.3611rem;
		border-radius: 0.2778rem;
	}

	.user-menu-header {
		padding: 0.8333rem 1.1111rem;
	}

	.user-menu-header .user-avatar > div {
		width: 2.7778rem;
		height: 2.7778rem;
	}

	.user-info {
		margin-left: 0.6944rem;
	}

	.user-info p {
		font-size: 0.9722rem;
	}

	.user-info p strong {
		font-size: 1.1111rem;
	}

	.user-menu ul {
		margin: 0.8333rem 0;
		font-size: 1.1111rem;
	}

	.user-menu ul li {
		padding: 0.8333rem 1.6667rem;
	}

	.user-menu .action-button {
		min-height: 3.3333rem;
		width: calc(100% - 2.2222rem);
		margin: 0 auto 1.1111rem auto;
	}



	.page {
		padding: 4.1667rem 0 0 0;
	}

	.form {
		width: 25.5555rem;
		padding: 3.3333rem;
		border-radius: 0.2778rem;
		margin-top: 2rem;
		margin-bottom: 2rem;
	}

	.form:after {
		right: -3.3333rem;
		width: 1.6667rem;
		height: 1.6667rem;
	}

	.form h3 {
		margin-bottom: 2.5rem;
	}

	.form-headers {
		margin-bottom: 1rem;
	}

	.form-inputs {
		margin-bottom: 2.2222rem;	
	}

	.form .input {
		margin-bottom: 1.1111rem;
	}

	.form .input > span {
		top: 1.1111rem;
		left: 1.7361;
	}

	.form .input.required span:before, .required-notes:before {
		font-size: 1.1805rem;
		left: -0.6944rem;
	}

	.form .input > span.active {
		top: 0.5555rem;
		font-size: 0.8333rem;
	}

	.form .input > span.active:before {
		font-size: 0.8333rem;
	}

	.form input[type=text],
	.form input[type=phone],
	.form input[type=email],
	.form input[type=password] {
		height: 3.8889rem;
		border-radius: 0.2778rem;
		padding: 1.0417rem 0.6944rem 0 1.0417rem;
		font-size: 1.1111rem;
	}

	.required-notes {
		font-size: 0.9722rem;
		padding-left: 0.75rem;
		margin-bottom: 1rem;
	}

	.form p {
		font-size: 0.9722rem;
		margin-bottom: 1rem;
	}


	.form .input.required:before, .required-notes:before {
		font-size: 1.1111rem;
		left: 1rem;
	}

	.required-notes:before {
		top: -5%;
		left: 0;
	}
	
	.checkbox {
		margin-top: 0.6944rem;
	}

	.checkbox label {
		padding-left: 1.3889rem;
		font-size: 0.8333rem;
	}

	.checkbox label:before {
		width: 0.9722rem;
		height: 0.9722rem;
		top: 0.1389rem;
	}

	.action-button {
		height: 3.8889rem;
		border-radius: 0.2778rem;
		margin-bottom: 1.1111rem;
		padding: 0.5rem 1.75rem;
		font-size: 1.1111rem;
		margin-bottom: 1.5rem;
	}

	.terms-link {
		font-size: 0.9722rem;
		height: 1.1111rem;
		margin-top: 0.5rem;
	}


	.cpanel {
		padding-left: 15.8333rem;
	}

	.sidebar {
		top: 4.1667rem;
		width: 15.8333rem;
		min-height: calc(100vh - 4.1667rem);
	}

	.sidebar ul li, .sidebar h3 {
		padding: 0.8333rem 1.6667rem;
	}

	.counter {
		min-width: 1.1805rem;
		min-height: 1.1805rem;
		width: 1.1805rem;
		height: 1.1805rem;
		font-size: 0.9722rem;
	}

	.cpanel .wrapper {
		padding: 1.6667rem 2.7778rem;
	}

	.personal-settings-wrapper {
		min-height: calc(100vh - 13.8889rem);
	}

	.personal-settings {
		border-radius: 0.2778rem;
		padding: 2.2222rem;
		width: 52.2222rem;
	}

	.personal-settings h3 {
		margin-bottom: 1.875rem;
	}

	.personal-settings .form-inputs .required-notes {
		margin-bottom: 1.6667rem;
	}

	.personal-settings .form-inputs .row {
		margin-bottom: 2.0833rem;
	}

	.personal-settings .form-inputs .field {
		width: 10.2778rem;
	}

	.personal-settings .form-inputs .field.gender > div {
		width: 4.5833rem;
		height: 3.8889rem;
		border-radius: 0.2778rem;
		padding: 0.5rem 1.75rem;
		font-size: 1.1111rem;
	}

	.personal-settings .form-inputs .field.sub-action-link img {
		height: 0.8333rem;
		margin: 0.2778rem 0.5555rem;
	}

	.personal-settings .form-inputs .field.sub-action-link span {
		font-size: 0.8333rem;
	}
	
	.personal-settings .form-inputs .checkboxes {
		margin-top: 2.0833rem;
	}

}


*/


/*
		.hidden {
			opacity: 0;
			transform: translateY(5rem);
			transition: 0.8s !important;
			transition-duration: 0.8s !important;
		}
		
		
		.wpsisac-slider-short-content h1,
		h1.hidden,
		h2.hidden,
		h3.hidden,
		h4.hidden,
		h5.hidden,
		h6.hidden
		{
			transform: translateY(0) !important;
			transform: translateX(-200%) !important;
			transition: .4s !important;
		}

		.hidden.visible {
			opacity: 1;
			transform: translateY(0);
		}

		.wpsisac-slider-short-content h1.visible,
		h1.hidden.visible,
		h2.hidden.visible,
		h3.hidden.visible,
		h4.hidden.visible,
		h5.hidden.visible,
		h6.hidden.visible
		{
			transform: translateX(0) !important;
		}


		#site-content .wp-block-group__inner-container > *:nth-child(1) { transition-delay: 0 !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(2) { transition-delay: 0.2s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(3) { transition-delay: 0.4s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(4) { transition-delay: 0.6s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(5) { transition-delay: 0.8s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(6) { transition-delay: 1s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(7) { transition-delay: 1.2s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(8) { transition-delay: 1.4s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(9) { transition-delay: 1.6s !important; }
		#site-content .wp-block-group__inner-container > *:nth-child(10) { transition-delay: 1.8s !important; }

		#site-content .wp-block-group__inner-container > * > *:nth-child(1) { transition-delay: 0 !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(2) { transition-delay: 0.2s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(3) { transition-delay: 0.4s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(4) { transition-delay: 0.6s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(5) { transition-delay: 0.8s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(6) { transition-delay: 1s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(7) { transition-delay: 1.2s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(8) { transition-delay: 1.4s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(9) { transition-delay: 1.6s !important; }
		#site-content .wp-block-group__inner-container > * > *:nth-child(10) { transition-delay: 1.8s !important; }
		
		.wp-block-columns .wp-block-column:nth-of-type(2) { transition-delay: 0.4s !important; }
		.wp-block-columns .wp-block-column:nth-of-type(3) { transition-delay: 0.8s !important; }
		.wp-block-columns .wp-block-column:nth-of-type(4) { transition-delay: 1.2s !important; }
		.wp-block-columns .wp-block-column:nth-of-type(5) { transition-delay: 1.6s !important; }

		#site-content .wp-block-group__inner-container .work-order ol > li.visible:nth-child(1) { transition-delay: 0 !important; }
		#site-content .wp-block-group__inner-container .work-order ol > li.visible:nth-child(2) { transition-delay: 0.4s !important; }
		#site-content .wp-block-group__inner-container .work-order ol > li.visible:nth-child(3) { transition-delay: 0.8s !important; }
		#site-content .wp-block-group__inner-container .work-order ol > li.visible:nth-child(4) { transition-delay: 1.2s !important; }
		#site-content .wp-block-group__inner-container .work-order ol > li.visible:nth-child(5) { transition-delay: 1.6s !important; }

		.work-order ol > li.visible:nth-child(1):after { transition-delay: 1.6s !important; }
		.work-order ol > li.visible:nth-child(2):after { transition-delay: 2s !important; }
		.work-order ol > li.visible:nth-child(3):after { transition-delay: 2.4s !important; }
		.work-order ol > li.visible:nth-child(4):after { transition-delay: 2.6s !important; }
		.work-order ol > li.visible:nth-child(5):after { transition-delay: 3s !important; }*/



/*
@media (max-width: 1024px) {
	
	html, body {
		font-size: 14px;
	}
	
	.header {
		font-size: 80%;
	}
	
	.header, .logo img {
		height: 3rem;
	}
	
	.selector ul {
		height: 1rem;
	}
	
	.selector ul li {
		height: 1rem;
    	line-height: 1rem;
    	margin-bottom: 1rem;
	}
	
	.selector ul:after {
		top: -.2rem;
		right: 0;
		width: 1rem;
		height: 1rem;
	}
	
	.user-avatar div {
	    width: 2rem;
    	height: 2rem;
	}
	
	.user-avatar div i {
		font-size: 1rem;
	}

	.user-menu {
		top: 3rem;
		width: max-content;
	}

	.user-menu-header .user-avatar > div {
		width: 2rem;
		height: 2rem;
	}
	
	.user-menu-header .user-avatar > div i {
		font-size: 1rem;
	}


	.user-info p strong {
		font-size: 1rem;
	}
	
	.user-menu ul {
		font-size: 1rem;
	}
	
	.form-headers > div {
		padding: 0 1rem;
	}

	.form .close-button {
		top: 1rem;
		right: 1rem;
		font-size: 1.5rem;
	}

	.form .input.required span:before, .required-notes:before {
		font-size: 1rem;
		top: 0;
    	left: -0.5rem;
	}
	
	.required-notes:before {
		top: -0.2rem;
		left: -0.2rem;
	}

	.terms-link {
		font-size: 0.9rem;
		height: 1rem;
		margin-top: 0.25rem;
	}
	
	h1 { font-size: 2.5rem; }
	h2 { font-size: 2rem; }
	h3 { font-size: 1.5rem; }
	h4 { font-size: 1.25rem; }
	
	.video-banner {
	    height: 50rem;
	}
	
	.video-banner-content h2 {
		font-size: 4.5rem;
	}
	
	.video-banner-features ul li {
		font-size: 1.9rem;
	}
	
	.features h2 {
		max-width: 100%;
		text-align: center;
	}	
	
	.features ul li {
		font-size: 1.8rem;
	}
	
	.features-icons > div {
		width: 7rem;
	}	
	
	.features-icons > div img {
		height: 4rem;
	}
	
	.features-icons h3 {
		font-size: 1rem;	
	}
	
	.features-icons > div:nth-of-type(1) { top: 50%; left: 20%; }
	.features-icons > div:nth-of-type(2) { top: 35%; left: 35%; }
	.features-icons > div:nth-of-type(3) { top: 35%; right: 35%; }
	.features-icons > div:nth-of-type(4) { top: 50%; right: 20%; }
	.features-icons > div:nth-of-type(5) { bottom: 10%; left: 20%; }
	.features-icons > div:nth-of-type(6) { bottom: -5%; left: 35%; }
	.features-icons > div:nth-of-type(7) { bottom: -5%; right: 35%; }
	.features-icons > div:nth-of-type(8) { bottom: 10%; right: 20%; }	
	
	.referal .image-text {
		align-items: center;
	}
	
	.footer-info {
		flex-basis: 50%;
	}
	
	.footer-contact p {
   		font-size: .9rem;
	}
	
	.footer-contact p.footer-phone {
		font-size: 1.5rem;
		margin-top: 0.8rem;
	}
	
	.footer-contact img {
		width: 12rem;
	}
	
	
	.robot-params {
		flex-wrap: wrap;
	}
	
	.robot-params > div {
		flex-basis: 100%;
	}
	
	.robot-params > div:not(:last-child) {
		padding-right: 0;
	}
	
	.form p {
		font-size: 1rem;
	}
	
	.numbers {
		flex-wrap: wrap;
	}
	
	.numbers > div {
		flex-basis: 48%;
		border-bottom: none;
	}

	.number {
		width: 5rem;
		height: 5rem;
		font-size: 2rem;
	}
	
	.contact .image-text {
		flex-wrap: wrap;
	}
	
	.contact .image-text:nth-of-type(odd) > div:nth-of-type(1),
	.contact .image-text:nth-of-type(odd) > div:nth-of-type(2) {
		flex-basis: 100%;
	}
	
	
	.page {
    	padding: 3rem 0 0 0;
	}

	.investors {
		padding: 6rem 3rem;
	}

	.cpanel {
		padding-left: 13.2rem;
		min-height: 70vh;
	}

	.popup-form {
		top: 3rem;
		left: 13.2rem;
		width: calc(100% - 13.2rem);
		height: calc(70vh - 3rem);
	}

	.sidebar {
		top: 3rem;
		width: 13.2rem;
		min-height: initial;
		height: calc(100% - 3rem);
	}
	
	.sidebar-inner {
		top: 3rem;
	}
	
	.personal-settings-wrapper {
		min-height: initial;	
	}
	
	.personal-settings {
		width: 100%;
	}
	
	.required-notes {
    	font-size: 0.9rem;
	}
	
	.personal-settings .form-inputs .field.sub-action-link span {
		font-size: 0.9rem;
	}
	
	.personal-settings .form-inputs .field.sub-action-link img {
		height: 1rem;
		margin: 0 .5rem .25rem 0;
	}
	
	.form {
		width: initial;
	}
	
	.form input[type=text],.form input[type=number],
	.form input[type=phone],
	.form input[type=email],
	.form input[type=password] {
	    height: 3rem;
	    font-size: 1rem;
		padding: 0.6rem 0.7rem 0 0.9rem;
	}
	
	.form .input > span {
		top: 0.9rem;
		left: 0.9rem;
	}	
	
	.form .input > span.active {
		top: 0.25rem;
		font-size: 0.7rem;
	}	
	
	.checkbox label {
		padding-left: 1.3rem;
		font-size: 0.9rem;
	}
	
	.checkbox label:before {
		width: 1rem;
		height: 1rem;
	    top: 0.1rem;
	}
	
	.action-button {
		min-height: 2.75rem;
		font-size: 1rem;
		margin-bottom: 1.2rem;
	}
	
	.msg-text .reply-block {
		right: 1rem;
		top: 30%;
		max-width: 20rem;
		max-height: 2rem;
	}
	
	.deposit {
		height: 2rem;
		font-size: 1rem;
	}
	
	.balans-history {
		flex-wrap: wrap;
	}
	
	.balans-history > div {
		flex-basis: 100%;
	}
	
	table th, table td {
		font-size: 1rem;
	}
	.header, .user-menu-header {
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		}
	.selector ul {
		border-bottom: 1px solid rgba(0, 0, 0, 0);
		border-left: 1px solid rgba(0, 0, 0, 0);
		border-right: 1px solid rgba(0, 0, 0, 0);
	}
	.selector ul:hover {
		height: initial;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
		border-left: 1px solid rgba(0, 0, 0, 0.1);
		border-right: 1px solid rgba(0, 0, 0, 0.1);
		box-shadow: 3px 3px 3px (0,0,0,0.1);	
	}
	.action-button, .user-menu {
		border: 1px solid #184;
	}
	.form input[type=text],.form input[type=number],
	.form input[type=phone],
	.form input[type=email],
	.form input[type=password],
	.checkbox label:before {
		border: 1px solid #D7D9DB;
	}
	.terms-link {
		border-bottom: 1px solid #2C2C2C;
	}
	.terms-link:hover {
		border-bottom: 1px solid transparent;
	}
	.msg-preview {
		border: 1px solid transparent;
	}
	.menu ul li:before, .menu ul li.active:before, .menu ul li:hover:before,
	.form-headers h4:before, .form-headers .active h4:before, .form-headers h4:hover:before,
	.underline:before {
		height: 2px;
	}
	.personal-settings .form-inputs .field.gender > div {
		border: 2px solid #FFBABB;
	}
	.msg-single.recep {
		border-right: 2px solid #184;
	}
	.msg-single.send {
		border-left: 2px solid #184;
	}
	.deposit {
		border: 2px solid #184;
	}
	.sidebar ul li:before {
		width: 4px;
	}
	.banner-content h2 span:before {
		width: calc(100% + 0.5rem);
		height: 4px;
	}
	.image-text .image-text-img:before {
		top: -1rem;
		right: -4px;
		width: 4px;
		height: calc(100% + 2rem);
	}
	.image-text:nth-of-type(even) .image-text-img:before {
		left: -4px;
	}
	.contact .image-text-img iframe {
		box-shadow: 0 0 4px rgba(0,0,0,0.5);
	}
	
}
*/



@media (max-width: 767px) {
	
	.desktop,
	.tablet,
	.tablet-desktop	{
		display: none !important;
	}

	html, body {
		font-size: 14px;
	}
	
	.mobile-column {
		display: flex;
		flex-direction: column;
		justify-content: initial;
	}
	
	.mobile-column > * {
		width: 100%;
	}
	
	.page {
		padding-top: 3rem;
	}
	
	.header {
		font-size: 100%;
	}
	
	.header, .logo img {
		height: 3rem;
	}	
	
	.logo {
		font-size: 2rem;
	}
	
	.menu-toggler {
		color: #184;
		position: relative;
		height: 2rem;
		cursor: pointer;
		display: flex;
		align-items: center;
		width: 2rem;
		height: 2rem;
		font-size: 2rem;
		margin-top: 0.5rem;
		margin-right: 1rem;
		/*filter: hue-rotate(190deg) brightness(1.2);*/
	}

/*	.menu-toggler:after {
		display: block;
		content: '';
		position: absolute;
		top: -0.0694rem;
		right: .5rem;
		width: 1.7361rem;
		height: 1.5973rem;
		background: url('../img/menu-toggler.svg') no-repeat center;
		background-size: contain;
	}

	.menu-toggler span {
		font-size: 1.1111rem;
	}*/
		
	
	.menu {
		position: absolute;
		top: 3rem;
		left: 0;
		width: 100rem;
		height: calc(100vh - 3rem);
		align-items: center;
		justify-content: center;
		background: rgba(0,0,0,0.6);
		color: #fff;
		text-align: center;
		display: none;
		margin: 0;
	}
	
	.menu.active {
		display: flex;
	}
	
	.menu ul {
		flex-direction: column;
		font-size: 1.5rem;
	}
	
	.menu ul li {
		margin-bottom: 3vh;
	}
	
	.menu ul a {
		color: #fff;
		font-weight: 600;
	}

	.menu ul li.has-child:after{
		display: none;
	}

	.menu ul.sub-menu {
		display: none;
	}

	.selector-wrapper {
		padding-top: 0.8rem;
	}	

	.language-selector {
		margin-right: 1rem;
	}

	.selector ul {
		padding: 0 1.25rem;
	}
	
	.selector ul:after {
    	top: -0.1rem;
	}

/*	.user-block {
		padding: 0 2rem;
	}*/

	.user-avatar div {
		width: 1.6667rem;
		height: 1.6667rem;
	}

	.user-avatar div i {
		font-size: 1rem;
	}

	.user-menu {
		top: 3rem;
		right: 0;
		width: 17.3611rem;
	}

	.user-menu-header {
		padding: 0.8333rem 1.1111rem;
	}

	.user-menu-header .user-avatar > div {
		width: 2.7778rem;
		height: 2.7778rem;
	}

	.user-menu-header .user-avatar > div i {
		font-size: 1.75rem;
	}

	.user-info {
		margin-left: 0.6944rem;
	}

	.user-info p {
		font-size: 0.9722rem;
	}

	.user-info p strong {
		font-size: 1.1111rem;
	}

	.user-menu ul {
		margin: 0.8333rem 0;
		font-size: 1.1111rem;
	}

	.user-menu ul li {
		padding: 0.8333rem 1.6667rem;
	}

	.user-menu .action-button {
		min-height: 3.3333rem;
		width: calc(100% - 2.2222rem);
		margin: 0 auto 1.1111rem auto;
	}

	.form .close-button {
		top: 0.5rem;
		right: 0.5rem;
		font-size: 1.5rem;
		width: 1.5rem;
		height: 1.5rem;
	}


	.video-banner {
	    height: 100rem;
	}
	
	.bg-video, .bg-video video {
    	width: initial;
		height: 100%;
	}
	
	.video-banner-content {
		padding: 2.5rem;
	}
	
	.video-banner-content h2 {
    	font-size: 2rem;
	    text-align: center;
	}
	
	.video-banner-features {
		display: none;
	}

	h1 { font-size: 1.5rem; }
	h2 { font-size: 1.5rem; }
	h3 { font-size: 1.25rem; }
	h4 { font-size: 1.25rem; }

	p, strong {
		font-size: 1.1rem;
	}

	.pm-banner {
		background-image: url(../img/banner-1-m.jpg);
		height: auto;
	}
	
	.pm-banner-content {
		padding: 1rem;
	}
	
	.pm-banner-content h1 {
		color: #184;
		text-align: center;
		font-size: 4rem;
		font-family: 'Corinthia';
		text-transform: none;
		font-weight: 500;
	}
	
	.pm-banner-content h1 span {
		font-size: 1.25rem;
		font-family: 'AvantGardeGothicC';
		font-weight: 400;
	}
	
	.pm-banner-content h2 {
		font-size: 1.5rem;
		margin-top: 1.5rem;
	}
	
	.pm-banner-content h3 {
		color: #184;
		font-size: 1.5rem;
		font-weight: 400;
		margin-bottom: 1rem;
	}
	
	.pm-banner-1 .pm-banner-content > div > div:first-child {
		opacity: 1;
	}
	
	.pm-banner-features ul {
		margin: 0 auto;
		
	}
	
	.pm-banner-features ul li {
		font-size: 1.25rem;
		transform: translateX(-100rem);
	}
	
	.pm-banner-features:last-child ul li {
		transform: translateX(100rem);
	}
	
	.pm-banner-features ul li.visible {
		transform: none;	
	}
	
	.filter .form .filter-header {
		display: none;
	}
	
	.filter-inputs {
		flex-direction: column;
		/*color: #fff;*/
	}

	.personal-settings .form-inputs .field {
		width: 100%;
	}

	.form {
		width: initial;
		max-width: 100%;
	}
	
	.form .input {
		margin-bottom: 1rem;
	}
	
	.form input[type=text],.form input[type=number],
	.form input[type=phone],
	.form input[type=email],
	.form input[type=password],
	.form select,
	.filter .form select,
	.filter .form input,
	.filter .form input:hover {
	    height: 3rem;
	    font-size: 1rem;
		padding: 0.6rem 0.7rem 0 0.9rem;
	}
	
	.form .input > span {
		font-size: 1rem;
		top: 0.9rem;
		left: 0.9rem;
	}	
	
	.form .input > span.active {
		top: 0.25rem;
		font-size: 0.7rem;
	}	
	
	.user-inputs {
		width: 100%;
		order: 2;
	}
	
	.required-notes {
		font-size: 0.9rem;
	}
	
	.form .input.required span:before, .required-notes:before {
		font-size: 1rem;	
		left: -0.6rem;
	}
	
	.form .input > span.active:before {
		font-size: 1rem;
	}
	
	.form p {
		font-size: 1rem;
		margin-bottom: 1rem;
	}
	
	.checkbox label {
		padding-left: 2rem;
		font-size: 1.2rem;
	}
	
	.checkbox label:before {
		width: 1.5rem;
		height: 1.5rem;
	    top: 0.1rem;
	}
	
	.filter .form .action-button, .action-button {
		min-height: 2.75rem;
		font-size: 1rem;
		margin-bottom: 1.2rem;
	}

	.pmadverts > * {
		width: 100%;
		margin-right: 0;
		margin-bottom: 1.5rem;
	}

	.pmadverts .pmadv-line .pmadv-img {
		height: 15rem;
	}

	.pmadv-data {
		height: 15rem;
		padding: 1rem;
	}

	.pmadv-descr {
		height: 13rem;
		max-height: 13rem;
	}

	.pmadv-for-sale, .pmadv-for-sale-text {
		bottom: 1rem;
		right: 1rem;
	}

	.pmadv-for-sale i {
		font-size: 8rem;
	}

	.pmadv-for-sale-text {
		left: 1rem;
		bottom: 1rem;
	}


	.pmadverts .pmadv-header {
		font-size: 1.3rem;
		max-height: 3rem;
		overflow: hidden;
	}

/*	.pm-rate {
		width: 10rem;
		height: 1.8333rem;
	}

	.pm-rate-pos, .pm-rate-neg {
		background-size: 10rem;
	}*/
	
	.pm-rate {
		transform: translateX(-8rem) scale(2.5)  !important;
	}


	.avatar-img {
		width: 10rem;
		height: 10rem;
		margin-bottom: 1rem;
	}

	.cats-checks-list {
		columns: 1;
	}
	

	.image-text {
		flex-wrap: wrap;
	}

	.image-text:nth-of-type(odd) > div:nth-of-type(1),
	.image-text:nth-of-type(odd) > div:nth-of-type(2),
	.image-text:nth-of-type(even) > div:nth-of-type(1),
	.image-text:nth-of-type(even) > div:nth-of-type(2) {
		flex-basis: 100%;
		padding-left: 0;
		padding-right: 0;
	}

	.image-text:nth-of-type(odd) > div:nth-of-type(2),
	.image-text:nth-of-type(even) > div:nth-of-type(2) {
		order: 1;
		height: 75rem;
	}

	.image-text:nth-of-type(odd) > div:nth-of-type(1),
	.image-text:nth-of-type(even) > div:nth-of-type(1) {
		order: 2;
	}

	.features .content .picture {
		padding: 0;
		height: 100rem;
	}
	
	.features .content .picture img {
		width: 10rem;
	}
	
	.features-icons > div:nth-of-type(1) { top: 50%; left: 5%; }
	.features-icons > div:nth-of-type(2) { top: 35%; left: 25%; }
	.features-icons > div:nth-of-type(3) { top: 35%; right: 25%; }
	.features-icons > div:nth-of-type(4) { top: 50%; right: 5%; }
	.features-icons > div:nth-of-type(5) { bottom: 10%; left: 5%; }
	.features-icons > div:nth-of-type(6) { bottom: -5%; left: 25%; }
	.features-icons > div:nth-of-type(7) { bottom: -5%; right: 25%; }
	.features-icons > div:nth-of-type(8) { bottom: 10%; right: 5%; }	

	.footer-inner {
		flex-wrap: wrap;
	}
	
	.footer-info {
		order: 1;
		flex-basis: 100%;
	}
	
	.footer-menu > * {
		width: 100%;
	}
	
	.footer-menu a {
		text-decoration: underline;
	}
	
	.footer-contact {
		order: 3;
		flex-basis: 60%;
	}

	.form {
		padding: 2rem;
	}


	.copyright a img {
		width: 3.4rem;
	}


	.robot {
		flex-basis: 100%;
		padding: 0;
	}
	
	.robot p {
		margin-top: 0.5rem;
	}
	
	.numbers > div {
    	flex-basis: 100%;
		margin-bottom: 2rem;
		border-bottom: 2px solid #184;
		margin-top: 1rem;
	}
	
	.contact .image-text:nth-of-type(odd) > div:nth-of-type(2) {
		order: 5;
		height: initial;
	}

	.contact .image-text-img iframe {
		height: 15rem;
	}
	
	.cpanel {
		padding-left: 1rem;
	}

	.sidebar {
		top: 3rem;
		width: 13.2rem;
		min-height: initial;
		height: calc(100% - 3rem);
	}
	
	.sidebar-inner {
		top: 3rem;
	}

	.sidebar {
		transform: translateX(-12rem);
		transition: 0.2s;
		z-index: 99999;
	}
	
	.sidebar.active {
		transform: none;
		border-right: 1px solid #184;
	}
	
	.sidebar-inner {
		padding-top: 1rem;
		padding-right: 2rem;
		font-size: 1.25rem;
	}
	
	.sidebar-inner h3 {
		display: none;
	}
	
	.sidebar-inner ul li {
		margin-bottom: 3vh;
	}
	
	.sidebar-toggler {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 1rem;
		right: 0.2rem;
		font-size: 1.5rem;
		color: #184;
		transform: rotate(270deg);
		transition: 0.2s;
		
	}
	
	.sidebar-toggler.active {
		transform: rotate(90deg);
	}
	
	.user-menu-header, .user-menu ul {
		padding: 1rem;
	}
	
	.user-menu-header .user-avatar > div {
		width: 2rem;
		height: 2rem;
		margin-right: 0.5rem;
	}
	
	.user-menu-header .user-avatar > div i {
		font-size: 1rem;
	}

	.user-menu ul {
		font-size: 1.25rem;
	}
	
	.user-menu ul li {
		margin-bottom: 2vh;
	}

	.form-inputs .row {
		flex-wrap: wrap;
	}

	.form-inputs .field {
		flex-basis: 100%;
		margin-bottom: 1rem;
	}
	
	.cpanel .pmadv-data {
		height: auto;
	}
	
	.pmadv-line {
		margin-bottom: 2rem;
	}
	
	.cpanel .pmadv-line .pmadv-img {
		width: 100%;
		height: 12rem;
	}	
	
	.cpanel .pmadv-line .pmadv-data .action-button {
		height: 3rem;
		font-size: 1.75rem;
	}
	
	.pmadv-header {
		font-size: 1.5rem;
	}
	
	.pmadv-images .avatar-form {
		width: 35rem;
	}
	
	.pmadv-images .avatar-img {
		width: 35rem;
		height: 35rem;
	}
	
	.single-adv-content {
		margin-bottom: 1rem;
		margin-top: 2rem;
	}
	
	.single-adv-content .flexslider {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 2rem;
	}
	
	.master-info .avatar-img {
		width: 4rem;
		height: 4rem;
	}
	
	.reviews {
		margin-top: 2rem;
	}
	
	
	.reply-form {
		flex-direction: column;
	}
	
	.reply-form button {
		width: 10rem;
		margin: 1rem auto;
	}
	
	.popup-form {
		top: 3rem;
		left: 1.2rem;
		width: calc(100% - 1.2rem);
		height: calc(70vh - 3rem);
	}

	.user-line .avatar-img {
		width: 6rem;
		height: 6rem;
		margin-right: 2rem;
	}
	
	.user-data {
		position: relative;
		flex-direction: column;
		align-items: flex-start;
		padding-bottom: 0.5rem;
	}
	
	.user-data > p {
		flex-basis: 100%;
		margin: 0.5rem 0 0 0;
	}
	
	.user-data > div {
		padding-left: 0;
	}
	
	.user-line form {
		position: absolute;
		bottom: 0.5rem;
		left: calc(100% - 4rem);;
	}
	
	.user-line .action-button {
		height: 2rem;
		font-size: 1.25rem;
	}	
	
	
	.waiting .avatar-img {
		width: 4rem;
		height: 4rem;
	}
	
	
	.pmadverts.masters-list {
		justify-content: space-between;
	}
	
	.pmadverts.masters-list > * {
		width: 45%;
		margin-bottom: 2rem;
	}
	
	.pmadverts.masters-list .pmadv-line .pmadv-img {
		height: 10rem;
	}

	.pmadverts.masters-list .user-rang {
		margin: 1rem auto;
	}
	
	.user-rang {
		width: 6rem;
		height: 2rem;
	}
	
	.pmadverts.masters-list .pmadv-price {
    	font-size: 125%;
	}
	
	.pmadverts.masters-list .pmadv-descr .pm-rate {
		margin: 1rem auto;
		transform: translateX(0rem) scale(2.5) !important;
	}
	
	.master-contacts {
		padding: 0 1rem;
		font-size: 1.25rem;
		margin-top: 3rem;
	}
	
	.master-contacts i {
		width: 2rem;
	}
	
	.master-about .cpanel-text {
		margin-bottom: 2rem;
	}
	
	.master-about .flexslider {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
		margin: 0;
	}
	
	.master-about .pm-rate {
		margin: 1rem auto;
		transform: translateX(0rem) scale(2.5) !important;
	}
	
	.contact .image-text {
		flex-wrap: wrap;
	}
	
	.contact .image-text:nth-of-type(odd) > div:nth-of-type(1),
	.contact .image-text:nth-of-type(odd) > div:nth-of-type(2) {
		flex-basis: 100%;
	}
	
	.contact .image-text:nth-of-type(odd) > div:before {
		display: none;
	}
	
	.contact .image-text-img iframe {
		height: 35rem;
		box-shadow: none;
	}
	
	
	


	.tariff-table {
		width: 100%;	
	}

	.tariff-table > div {
		min-height: 2.5rem;
		padding: .5rem;
	}

	.tariff-table > div > div {
		width: 16%;	
	}

	.tariff-table > div > div:first-child {
		width: 31%;
		padding-right: 1rem;
	}
	
	.tariff-table > div > div:nth-of-type(3) {
		width: 22%;
	}
	
	.tariff-table > div > div:last-child {
		width: 15%;
	}

	.tariff-header {
		font-size: .75rem;
	}

	.tariff-header span {
		font-size: .75rem;
	}

	.tariff-option .fas {
		font-size: 1.5rem;
	}

	.tariff-option > div:not(:first-child) {
		font-size: 1.2rem;
	}
	
	.tariff-option span {
		font-size: 0.75rem;
	}
	
	.tariff-forms > form {
		width: 100%;	
	}
	
	.counter {
		min-width: 1.2rem;
		min-height: 1.2rem;
		width: 1.5rem
		height: 1.5rem;
		font-size: 1rem;
		margin-left: 1rem;
	}

	.notice i {
		font-size: 1.5rem;
	}

	.notice .counter {
		margin-left: 0.2rem;
	}
	
	.basket-notice p {
		display: none;
	}

	.basket-position:nth-of-type(1) {
		margin-top: 1rem;
	}

	.basket-position-image {
		display: none;
	}
	
	.basket-position {
		flex-wrap: wrap;	
	}
	
	.basket-position-header {
		font-size: 130%;
		font-weight: 600;
		width: 100%;
		line-height: 1.1;
		margin-top: 0.5rem;
	}
	
	.basket-position-sum {
		min-width: 5rem;
	}
	
	.basket-position-email, .basket-position-phone {
		text-align: left;
		flex-basis: 50%;
		box-sizing: border-box;
		width: initial;
	}
	
	.basket-info {
		flex-basis: 100%;
	}


	.client-form {
		margin: 2rem 0;
		width: 100%;
		position: static;
	}
	
	

	.form textarea {
		height: 200px !important;
	}	

	.reply-form textarea {
		height: 200px !important;
	}	


	/*body {
		padding-top: 2rem;
	}*/
	


	.location {
		position: absolute;
		top: 3rem;
		left: initial;
		right: 0;
		height: 1.75rem;
		padding-top: 1rem;
		padding-right: 1rem;
		width: calc(100rem - 14rem);
		width: 40rem;
		background: linear-gradient(270deg, #f5f5f5, transparent);		
		
	}
	

	.location .location-selector-box {
		position: absolute;
		left: initial;
		right: 1rem;
		top: 2rem;
		width: calc(100rem - 4rem);
		height: initial;
	}

	.location-selector {
		left: initial;
		right: 0;
		min-width: calc(100rem - 4rem);
	}

	.location-title {
		height: 1rem;
		width: 100%;
		text-align: right;
		justify-content: flex-end;
		line-height: 1.1;
	}


	
	

	
}



















.sk-three-bounce {
  width: 8em;
  margin: auto;
  text-align: center;
}
.sk-three-bounce .sk-child {
  width: 2em;
  height: 2em;
  background-color: #0050cf;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
          animation: sk-three-bounce 1.4s ease-in-out 0s infinite both;
}
.sk-three-bounce .sk-bounce-1 {
  -webkit-animation-delay: -0.32s;
          animation-delay: -0.32s;
}
.sk-three-bounce .sk-bounce-2 {
  -webkit-animation-delay: -0.16s;
          animation-delay: -0.16s;
}

@-webkit-keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-three-bounce {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}


.feedback-loader, .feedback-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	align-items: center;
	justify-content: center;
	z-index: 999999999;
}

.feedback-loader.visible, .feedback-popup.visible {
	display: flex;
}

.feedback-popup-content {
	width: 50%;
	min-width: 320px;
	background: #fff;
	position: relative;
	padding: 30px;
}

.tox .tox-tbtn svg {
    fill: #184 !important;
}


.flex-direction-nav a {
	height: 60px;
	top: 40%;
}

.flex-control-thumbs li {
	border: 4px solid transparent;
	box-sizing: border-box;
}