﻿﻿/*
Description:
		1 - Including files ("fonts.css", "reset.css" and others)
		2 - Tags styles and General styles
		3 - header
		4 - .content
		5 - footer
		* - @media rules
*/

/* 1 - BEGIN of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Regular.eot');
	src: url('fonts/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Regular.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Regular.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Regular.svg#Montserrat') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Light.eot');
	src: url('fonts/Montserrat/Montserrat-Light.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Light.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Light.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Light.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Light.svg#Montserrat') format('svg');
	font-weight: 300;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Medium.eot');
	src: url('fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'),
	   url('fonts/Montserrat/Montserrat-Medium.woff') format('woff'),
	   url('fonts/Montserrat/Montserrat-Medium.ttf') format('truetype'),
	   url('fonts/Montserrat/Montserrat-Medium.svg#Montserrat') format('svg'),
	   url('fonts/Montserrat/Montserrat-Medium.eot?#iefix') format('embedded-opentype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-SemiBold.eot');
	src: url('fonts/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-SemiBold.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-SemiBold.svg#Montserrat') format('svg');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat';
	src: url('fonts/Montserrat/Montserrat-Bold.eot');
	src: url('fonts/Montserrat/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
		 url('fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'),
		 url('fonts/Montserrat/Montserrat-Bold.woff') format('woff'),
		 url('fonts/Montserrat/Montserrat-Bold.ttf') format('truetype'),
		 url('fonts/Montserrat/Montserrat-Bold.svg#Montserrat') format('svg');
	font-weight: 700;
	font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('fonts/Montserrat/Montserrat-ExtraBold.eot');
  src: url('fonts/Montserrat/Montserrat-ExtraBold.eot?#iefix') format('embedded-opentype'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.svg#Montserrat') format('svg'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.woff') format('woff'),
	   url('fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

/* BEGIN of CSS RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display: block;
}

/* END of CSS RESET */

/* 1 - END of Including files ("fonts.css", "reset.css" and others) ---------------------------------------------------------- */
/* 2 - BEGIN of Tags and General styles ---------------------------------------------------------- */

body {
	margin: 0 auto;
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	line-height: 1.85;
	letter-spacing: -.02em;
	font-weight: 300;
	color: #343140;
	background: inherit;
}

a {
	text-decoration: none;
	outline: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

a:hover {
	opacity: 0.7;
	text-decoration: none;
	color: inherit;
	outline: none;
}

a:active {
	opacity: 0.6;
	outline: none;
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline: none;
	color: inherit;
	text-decoration: none;
}

button, input, textarea, select {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

button:hover, input:hover, textarea:hover, select:hover {
	opacity: 0.8;
}

strong, b {
	font-weight: 700;
}

em {
	font-style: italic;
}

u {
	text-decoration: underline;
}

img {
	max-width: 100%;
}

h1 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 50px;
	line-height: 1.2;
	font-weight: 500;
}

h2 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 500;
}

h3 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: 0;
}

h4 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 24px;
	line-height: 1.2;
	font-weight: 300;
}

h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
}

h6 {
	margin: 0 0 0;
	padding: 0 0 15px;
	font-size: 16px;
	line-height: 1.2;
	font-weight: 700;
}

blockquote {
	display: block;
	margin: 20px auto 20px;
	max-width: 840px;
	font-size: 28px;
	line-height: 1.2;
	font-weight: 700;
	text-align: center;
}

p {
	padding: 0 0 15px;
}

p:last-child {
	padding-bottom: 0;
}

ul, ol {
	padding: 0 0 15px 20px;
}

ul ol, ul ul, ol ul, ol ol {
	padding-bottom: 0;
}

.clear:before, .clear:after {
	content: "";
	display: block;
	clear: both;
}

.hide, .hidden {
	display: none;
}

.content-wrapper {
	width: 1000px;
	height: 100%;
	margin: 0 auto;
}

.alignleft, img.alignleft {
	float: left;
	display: block;
	margin: 0 5px 0 0;
}

.alignright, img.alignright {
	float: right;
	display: block;
	margin: 0 0 0 5px;
}

.aligncenter, img.aligncenter {
	float: none;
	display: block;
	margin: 0 auto 0;
}

.alignnone, img.alignnone {
	margin: 0 0 0;
	display: block;
}

/* 2 - END of Tags styles and General styles ---------------------------------------------------------- */
/* 3 - BEGIN of header ---------------------------------------------------------- */

header {
	padding: 25px 0 25px;
	background: transparent;
	color: #ffffff;
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.navbar, header, .logo, header + * {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-fixed {
	position: absolute;
	z-index: 60;
	left: 0;
	right: 0;
	top: 0;
}

.logo {
	float: none;
	display: block;
	margin: 0 auto 0;
	padding: 0 0 0;
	max-width: 180px;
	text-align: center;
}

.logo img {
	display: block;
}

header a {
	color: inherit;
	font-weight: normal;
}

header a i {
	margin: 0 5px 0 0;
	display: inline-block;
	vertical-align: middle;
}

.bg-gray header {
	color: inherit;
}

header .container-fluid {
	max-width: 1300px;
}

/*  */

.btn-main-nav {
	padding: 13px 10px 13px;
	border-radius: 5px;
	margin: 7px 5px 0;
	border: none;
	min-height: 25px;
	position: fixed;
	z-index: 5;
	z-index: 5555;
	left: 0;
	top: 0;
}

.btn-main-nav:hover {
	opacity: 1;
}

.btn-main-nav .icon-bar {
	width: 32px;
	height: 3px;
	background: #ffffff;
	display: block;
	position: relative;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}
.btn-main-nav.active .icon-bar {
	margin: 0;
	height: 3px;
}
.btn-main-nav.active .icon-bar:nth-of-type(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn-main-nav.active .icon-bar:nth-of-type(2) {
	background-color: transparent;
}
.btn-main-nav.active .icon-bar:nth-of-type(3) {
	top: -8px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.btn-main-nav .icon-bar+.icon-bar {
	margin-top: 5px;
}

/* spinner css start */

.spinner-wr {
	background: rgba(54,209,220,1);
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	/*!!!!!!!!!!!!!!!!!!!!!!!*/
	/*display: none;*/
}

.spinner {
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50px;
	border-radius: 50%;
	background-color: #ffffff;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% {
	transform: scale(0.0);
	-webkit-transform: scale(0.0);
	} 50% {
	transform: scale(1.0);
	-webkit-transform: scale(1.0);
	}
}

/* spinner css end */
/* back-to-top css start */

.back-to-top {
	position: fixed;
	bottom: 5px;
	right: 4px;
	z-index: 99;
	width: 44px;
	height: 44px;
	padding: 0 0 0;
	margin: 0 0 0;
	overflow: hidden;
	text-align: center;
	font-size: 18px;
	line-height: 1;
	background: transparent url('img/i-arr-up.png') no-repeat center center;
	cursor: pointer;
	text-decoration: none;
	text-indent: -9999px;
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	opacity: 0;
}

.back-to-top.show {
	opacity: 1;
}

.back-to-top:not(.show):hover {
	opacity: 0;
	cursor: default;
}

.back-to-top:hover {
	-moz-animation: bounce 1.5s infinite;
	-webkit-animation: bounce 1.5s infinite;
	animation: bounce 1.5s infinite;
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-20px);
		-ms-transform: translateY(-20px);
		-webkit-transform: translateY(-20px);
		transform: translateY(-20px);
	}
	60% {
		-moz-transform: translateY(-10px);
		-ms-transform: translateY(-10px);
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

/* back-to-top css end */

#ho_adv {
	display: none;
	position: absolute;
	width: 0;
	height: 0;
	left: -9999px;
}

/* 3 - END of header ---------------------------------------------------------- */
/* 4 - BEGIN of .content ---------------------------------------------------------- */

.content {
	position: relative;
}

.box-wr {
	padding: 0 0 0;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	background-size: cover;
}

/*  */

html body .bg-gradient-blue {
	background: rgba(54,209,220,1);
	background: -moz-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(54,209,220,1)), color-stop(100%, rgba(91,134,229,1)));
	background: -webkit-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: -o-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: -ms-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: linear-gradient(to right, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36d1dc', endColorstr='#5b86e5', GradientType=1 );
	color: #ffffff;
}

html body .bg-gradient-blue:hover {
	color: #fff;
}

html body .bg-gradient-green {
	background: rgba(0,170,186,1);
	background: -moz-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,170,186,1)), color-stop(100%, rgba(0,201,221,1)));
	background: -webkit-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: -o-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: -ms-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: linear-gradient(to right, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00aaba', endColorstr='#00c9dd', GradientType=1 );
	color: #ffffff;
}

html body .bg-gradient-green:hover {
		color: #fff;
}

html body .bg-white {
	background-color: #ffffff;
}

.bg-gray {
	background-color: #f6f6f6;
}

html body .bg-red {
	background-color: #fa3e3e;
	color: #ffffff;
}

/*  */

html body .color-white {
	color: #ffffff;
}

html body .color-gray {
	color: #868686;
}

/*  */

.img-wr {
	position: relative;
}

.img-wr img {
	display: block;
	margin: 0 auto 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

.img-wr > a {
	display: block;
	overflow: hidden;
	width: 100%;
	-webkit-backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
	-webkit-transition: all .7s ease;
	transition: all .7s ease;
}

.img-wr:hover a img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

/*  */

.vertical-align-wrapper {
	display: table;
	width: 100%;
	padding: 0 0 0;
	margin: 0 0 0;
}

.vertical-align-middle {
	display: table-cell;
	vertical-align: middle;
}

.vertical-align-bottom {
	display: table-cell;
	vertical-align: bottom;
}

.vertical-align-top {
	padding: 30px 0 30px;
	display: table-cell;
	vertical-align: top;
}

.block-full-height {
	height: 100vh;
}

.block-rounded {
	border-radius: 10px;
}

html body .display-block {
	display: block;
	width: 100%;
}

.bg-gradient-blue .bg-white {
	color: #666666;
}
.bg-gradient-green .bg-white {
	color: #666666;
}

/*  */

.bordered-bottom {
	padding: 0 0 20px;
	margin: 0 0 37px;
	position: relative;
}

.bordered-bottom:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 65px;
	border-bottom: 4px solid #38a9e0;
}

.bordered-bottom-blue {
	padding: 0 0 20px;
	margin: 0 0 37px;
	position: relative;
}

.bordered-bottom-blue:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 65px;
	border-bottom: 4px solid #38a9e0;
}

.bordered-bottom-green {
	padding: 0 0 20px;
	margin: 0 0 37px;
	position: relative;
}

.bordered-bottom-green:after {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 65px;
	border-bottom: 4px solid #1AB4C7;
}

/*  */

body .btn-main {
	padding: 15px 25px 15px;
	margin: 0 auto 0;
	font-size: 16px;
	letter-spacing: .05em;
	min-width: 180px;
	line-height: 20px;
	color: #ffffff;
	width: auto;
	background: green;
	border: none;
	outline: none;
	cursor: pointer;
	font-weight: 500;
	text-align: center;
	position: relative;
	display: inline-block;
	border-radius: 30px;
	z-index: 100;


	font-style: normal;
	/* background: #343140; */
	background: rgba(0,170,186,1);
	background: -moz-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(0,170,186,1)), color-stop(100%, rgba(0,201,221,1)));
	background: -webkit-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: -o-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: -ms-linear-gradient(left, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	background: linear-gradient(to right, rgba(0,170,186,1) 0%, rgba(0,201,221,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00aaba', endColorstr='#00c9dd', GradientType=1 );
	color: #ffffff;
}

body .btn-main:hover {
	opacity: 1;
	box-shadow: inset 0px 0px 20px 0px rgba(0,0,0,.15);
}


.btn-main.btn-small {
	padding: 8px 15px 6px;
	margin: 0 5px 0;
	font-size: 16px;
	letter-spacing: .05em;
	min-width: 130px;
	line-height: 20px;
	top: -3px;
}

/*  */

form {
	margin: 0 0 0;
	padding: 0 0 0;
}

form:after {
	content: "";
	display: block;
	clear: both;
}

form input, form textarea, form select {
	display: block;
	margin: 0 0 0;
	padding: 12px 10px 12px;
	font-size: 16px;
	line-height: 20px;
	font-family: inherit;
	font-weight: 300;
	color: #343140;
	background-color: #ffffff;
	clear: both;
	outline: none;
	width: 100%;
	border: none;
	border-bottom: 1px solid #dadada;
	border-radius: 0px;
}

form input[type="submit"] {
	margin: 0 0 0;
	width: auto;
}

form input:hover, form textarea:hover, form select:hover {
	color: #343140;
	border-color: #343140;
	opacity: .65;
}

form input:focus, form textarea:focus, form select:focus {
	color: #343140;
	border-color: #343140;
	opacity: 1;
}

label {
	display: block;
	position: relative;
	cursor: pointer;
}

*::-webkit-input-placeholder {
	color: #b8b8b8;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-moz-placeholder {
	color: #b8b8b8;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*::-moz-placeholder {
	color: #b8b8b8;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:-ms-input-placeholder {
	color: #b8b8b8;
	text-indent: 0;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

*:focus::-webkit-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus::-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-moz-placeholder {
	text-indent: 220px;
	opacity: 0;
}

*:focus:-ms-input-placeholder {
	text-indent: 220px;
	opacity: 0;
}

/*  */

.input-item {
	margin: 0 0 15px;
	padding: 0 0 0;
	position: relative;
}

.input-label {
	margin: 0 0px 10px;
	font-size: 14px;
	font-weight: 400;
	display: block;
	position: relative;
	/* color: #b8b8b8; */
	z-index: 3;
	top: 0;
	left: 0;
	letter-spacing: 0;
	line-height: 1;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.input-focused .input-label, .input-not-empty .input-label {
	margin: 0 2px 0;
	font-size: 60%;
}

/*  */

form a {
	color: inherit;
}

form .logo {
	margin: 0 auto 48px;
}

/*  */

.block-form-sm {
	padding: 50px 70px 35px;
	max-width: 500px;
	margin: 50px auto 50px;
}

.checkbox-label {
	font-size: 14px;
	letter-spacing: 0;
}

input[type="checkbox"], input[type="radio"] {
	margin: 0 5px 0 0;
	display: inline-block;
	vertical-align: middle;
	width: auto;
}

body form .btn-main {
	margin: 16px auto 0;
}

/*  */

.bg-bubles .container {
	z-index: 5;
	position: relative;
}

.bg-bubles:before {
	content: "";
	padding: 0 0 0;
	margin: 0 0 0;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 321px;
	height: 280px;
	background: url('img/bg-bubbles-top-right.png') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
}

.bg-bubles:after {
	content: "";
	padding: 0 0 0;
	margin: 0 0 0;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 278px;
	height: 278px;
	background: url('img/bg-bubbles-bottom-left.png') no-repeat center;
	-webkit-background-size: contain;
	background-size: contain;
}

/*  */

.customer-panel-links {
	padding: 30px 0 80px;
	margin: 0 -15px 0;
}

.panel-link-item {
	padding: 45px 15px 25px;
	margin: 5px 5px 9px;
	width: 163px;
	height: 175px;
	border-radius: 5px;
	background: rgba(255,255,255,.2);
	text-align: center;
	color: inherit;
	display: inline-block;
	vertical-align: middle;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border: 1px solid rgba(255,255,255, 0.2);
}

.panel-link-item:hover {
	opacity: 1;
	background: rgba(255,255,255,.4);
}

.panel-link-item i {
	display: block;
	margin: 0 auto 5px;
}

.panel-link-item h5 {
	padding: 0 0 0;
	font-size: 90%;
	font-weight: 300;
}

.panel-link-item i img {
	height: 40px;
}

.box-wr.bg-gradient-blue .vertical-align-wrapper {
	padding: 30px 0 30px;
}

/*  */

.box-grid {
	padding: 0 0 0;
	margin: 0 0 0;
	position: relative;
}

.box-grid:after {
	content: "";
	display: block;
	clear: both;
}

.box-grid a {
	color: inherit;
}

.sidebar-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	padding: 0 0 25px;
	margin: -2px 0 27px;
}

.grid-sidebar-left {
	padding: 45px 40px 20px;
	margin: 0 0 0;
	width: 350px;
	min-height: 100vh;
	float: left;
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
}

.grid-sidebar-left:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 322px;
	height: 95px;
	z-index: 3;
	background: url('img/bg-bubbles-top-left.png') no-repeat left top;
	-webkit-background-size: contain;
	background-size: contain;
}

.grid-sidebar-left > * {
	z-index: 15;
	position: relative;
}

.grid-sidebar-left:after {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	width: 350px;
	background: inherit;
	height: 1000px;
}

.grid-sidebar-left h4 {
	font-size: 25px;
	font-weight: 500;
	padding: 0 0 2px;
	letter-spacing: -.025em;
}

.grid-sidebar-left h5 {
	font-size: 16px;
	font-weight: 300;
	letter-spacing: .03em;
}

/*  */

nav ul {
	padding: 0 0 15px;
	margin: 0 0 0;
}

nav ul li {
	padding: 6px 0 7px;
	margin: 0 0 0;
	list-style: none;
}

nav ul a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 18px;
	font-weight: 300;
	display: block;
	position: relative;
}

nav ul a:not(:last-child):after {
	content: "\f105";
	margin: 1px 0 -1px;
	display: inline-block;
	float: right;
	font-family: 'FontAwesome';
}

nav li.active > a:not(:last-child):after {
	content: "\f107";
}

nav ul ul {
	padding: 12px 0 1px 50px;
	margin: 0 0 0;
	list-style: none;
	display: none;
}

nav li.active > ul {
	display: block;
}

nav ul ul li {
	padding: 0 0 0;
	margin: 0 0 0;
	list-style: none;
}

nav ul ul a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 16px;
	font-weight: 400;
}

nav ul ul a:before {
	content: "- ";
}

nav a i {
	width: 20px;
	padding: 0 0 0;
	margin: -3px 14px 0 9px;
	display: inline-block;
	vertical-align: middle;
}

nav a i img {
	display: block;
}

.social-links{
	padding: 10px 0 10px;
}

nav .social-links i {
	display: inline-block;
	vertical-align: middle;
}

nav .social-links i {
	width: auto;
	padding: 0 0 0;
	font-size: 16px;
	margin: 0 6px 0;
	display: inline-block;
	vertical-align: middle;
}

/*  */

.grid-main-area {
	padding: 40px 75px 40px 425px;
	margin: 0 0 0;
	overflow: hidden;
	position: relative;
}

.block-item {
	padding: 35px 50px 28px 40px;
	margin: 0 0 30px;
	font-size: 16px;
	max-width: 930px;
	/*font-weight: normal; removed by CL gor summernote */
	border-radius: 4px;
	position: relative;
}

.block-item .row {
	margin-left: -10px;
	margin-right: -10px;
}

.block-item [class*="col-"] {
	padding-left: 10px;
	padding-right: 10px;
}

.block-item form {
	margin: 0 0 0;
	padding: 20px 0 0;
}

.block-item .input-item {
	margin: 0 0 24px;
}

.block-item label {
	padding: 9px 0 9px;
}

.block-item .btn-main {
	margin: 9px auto 0;
}

.block-item h5 {
	font-size: 14px;
	padding: 0 0 10px;
	font-weight: 300;
}

.block-item h3 {
	padding: 0 0 10px;
}

.block-item a {
	display: inline-block;
	vertical-align: middle;
}

.block-item a .fa {
	color: #9A9A9A;
	line-height: 35px;
	font-size: 16px;
	width: 35px;
	height: 35px;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
}

.input-simple {
	font-size: 16px;
	padding: 13px 16px 14px;
	height: 50px;
	border: 1px solid #f0f1f5;
	background: #f9fbfd;
	font-weight: normal;
	outline: none;
}

[type="date"], .datepicker {
	padding-right: 30px;
	background-image: url('img/icon-calendar.svg');
	background-repeat: no-repeat;
	-webkit-background-size: 20px auto;
	background-size: 20px auto;
	background-position: right 13px center;
}

textarea.input-simple {
	line-height: 1.8;
	min-height: 150px;
	height: auto;
}

.block-shadowed {
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .1);
}

/*  */

.display-inline-block {
	display: inline-block;
	vertical-align: middle;
}

.sortable-item {
	padding: 12px 0 11px;
}

.sortable-item+.sortable-item {
	border-top: 1px solid #ededed;
}

.sortable-items-wr {
	padding: 12px 0 5px;
}

.sortable-item .display-inline-block {
	margin: 0 13px 0 0;
}

/*  */

.tooltip-wr i {
	padding: 0 0 0;
	margin: 0 0 0;
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	line-height: 15px;
	text-align: center;
	border-radius: 50px;
	border-radius: 50%;
	font-size: 12px;
	font-weight: 700;
	background: #777777;
	color: #ffffff;
	cursor: pointer;
}

.tooltip-wr {
	display: inline-block;
	margin-left: 5px;
}

.tooltip-inner {
	max-width: 300px;
	min-width: 300px;
	padding: 10px 15px;
	font-size: 13px;
	font-family: inherit;
	font-weight: normal;
	text-align: left;
	background-color: rgba(78, 78, 78, 0.92);
	border-radius: 4px;
}

.tooltip.top .tooltip-arrow {
	opacity: .6;
}

.tooltip.top {
	font-family: inherit;
}

.ui-widget.ui-widget-content {
	border: 1px solid #000000;
	background: rgba(0, 0, 0, 0.8);
	color: #fff;
	font-family: inherit;
	text-align: center;
	font-size: 12px;
	letter-spacing: 0;
	padding: 10px 10px 10px;
	margin: -10px 0 0;
	max-width: 220px;
	line-height: 1.4;
}

/*  */

.table-simple {
	padding: 0 0 0;
	margin: 0 auto 0;
	width: 100%;
	border-collapse: collapse;
}

.table-simple tr+tr {
	border-top: 1px solid #ededed;
}

.table-simple th {
	font-size: 17px;
	font-weight: 600;
	padding: 10px 10px 11px 0;
}

.table-simple td {
	padding: 10px 10px 11px 0;
}

/*  */

.sortable-items-gallery .upload-img-item {
	margin: 0 18px 20px;
}

.upload-img-item {
	width: 170px;
	padding: 0 0 0;
	margin: 0 30px 25px 0;
	cursor: grab;
	text-align: center;
	display: inline-block;
	vertical-align: top;
}

.upload-img-item .input-simple {
	text-align: center;
	padding: 6px 16px 8px;
	height: 40px;
	font-size: 14px;
}

.upload-img-item h5 {
	font-size: 14px;
	padding: 0 0 0;
	font-weight: normal;
	color: #6c6b75;
}

.ui-sortable-helper {
	background-color: rgba(0,0,0,.05);
	opacity: .8;
}

/*  */

.input-file-wrapper {
	margin: 4px 0 10px;
	padding: 0 0 0;
	border: 2px dashed #d1d7e0;
	position: relative;
	height: 114px;
	width: 100%;
}

body .input-file {
	margin: 0 0 0;
	padding: 0 0 0;
	display: block;
	cursor: pointer;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

body .input-file input {
	display: none;
}

.input-file-img-preview {
	padding: 10px;
	margin: -2px -2px -2px;
	background-color: #00283d;
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

body .input-file-img-preview img {
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 100%;
	max-height: 100%;
}

body .input-file-placeholder {
	margin: 0 0 0;
	padding: 5px 10px 5px;
	font-size: 14px;
	line-height: 1.3;
	background: url('img/icon-camera.svg') no-repeat center;
	-webkit-background-size: 40px auto;
	background-size: 40px auto;
	height: 100%;
	text-transform: none;
	font-weight: normal;
	position: relative;
	z-index: 5;
	text-align: center;
}

body .input-file-placeholder p {
	padding: 0 0 15px;
}

body .input-file-placeholder i {
	margin: 0 auto 15px;
	max-width: 50px;
	display: block;
}

body .input-file-placeholder i img {
	display: block;
	margin: 0 auto 0;
}

.input-file-img-preview .btn-delete {
	margin: 0;
	position: absolute;
	right: 0;
	top: 0;
}

body .btn-delete {
	width: 25px;
	height: 25px;
	padding: 0 0 0;
	margin: 0 0 0;
	text-align: center;
	font-size: 0;
	display: block;
	color: transparent;
	background: #d63030 url('img/i-delete.svg') no-repeat center;
	-webkit-background-size: 10px auto;
	background-size: 10px auto;
}

.file-preview-hidden .input-file-img-preview {
	display: none;
}

.file-preview-active .input-file-img-preview {
	display: block;
}

.form-upload-picture .input-file-wrapper {
	height: 250px;
	width: 428px;
}

.block-pictures-form .form-upload-picture .img-wr {
	margin: 0 0 0 0;
}

.form-upload-picture .input-file-placeholder {
	padding: 66px 30px 5px;
}

/*  */

.checkbox-styled input {
	display: none;
}

.checkbox-styled input + .checkbox-label {
	display: block;
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 16px;
	position: relative;
}

.checkbox-styled input + .checkbox-label:before {
	width: 30px;
	height: 30px;
	line-height: 28px;
	font-size: 18px;
	padding: 0 0 0;
	margin: 0 15px 0 0;
	font-family: 'FontAwesome';
	color: #ffffff;
	text-align: center;
	border: 1px solid #f0f1f5;
	background: #f9fbfd;
	border-radius: 4px;
	content: "";
	display: block;
	float: left;
}

.checkbox-styled input:checked + .checkbox-label:before {
	background: #5a86e5;
	content: "\f00c";
}

.text-right .checkbox-styled input + .checkbox-label:before {
	float: right;
	margin: 0 0 0 18px;
}

.checkbox-styled:after {
	content: "";
	display: block;
	clear: both;
}

/*  */

html body .btn-clean-image-upload {
	font-size: 0;
	width: 13px;
	height: 13px;
	line-height: 8px;
	text-align: center;
	color: transparent;
	border-radius: 50px;
	border-radius: 50%;
	position: absolute;
	font-weight: 400;
	left: 100%;
	top: 0;
	bottom: 0;
	margin: 5px -20px auto;
	display: none;
	background-image: url(img/i-delete.svg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: 6px auto;
	background-size: 6px auto;
}

.active ~ .btn-clean-image-upload {
	display: block;
}

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

html body .btn-add-image-upload {
	font-size: 30px;
	width: 32px;
	height: 32px;
	line-height: 24px;
	padding: 0 0 3px;
	text-align: center;
	border-radius: 50px;
	border-radius: 50%;
	position: absolute;
	font-weight: 300;
	left: 100%;
	top: 0;
	bottom: 0;
	margin: auto 20px auto;
	display: block;
	border: none;
	outline: none;
}

.active ~ .btn-add-image-upload {
	/* display: none; */
}

/*  */

.pos-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 30px 30px;
}

/*  */

body .search-row label {
	padding: 0 0 0;
}

body .search-row  h3 {
	padding: 10px 0 10px;
	font-size: 20px;
	font-weight: 600;
}

body .input-search {
	margin: 0 0 0;
	width: 100%;
	padding: 10px 15px 10px 36px;
	height: 40px;
	background-image: url('img/icon-search.svg');
	background-repeat: no-repeat;
	background-position: 13px center;
	-webkit-background-size: 13px auto;
	background-size: 13px auto;
}

.search-row {
	padding: 0 0 25px;
}

/*  */

html body .btn-send {
	display: block;
	margin: 0 0 0 -8px;
	padding: 0 0 0;
	font-size: 0;
	color: transparent;
	height: 50px;
	border: 1px solid #f0f1f5;
	background: #f9fbfd url(img/send.svg) no-repeat center;
	-webkit-background-size: 20px auto;
	background-size: 20px auto;
	outline: none;
}

/*  */

i.fa.fa-lock {
	margin: 0 5px 0 0;
	display: inline-block;
	vertical-align: middle;
}

.fa-lock + a {
	font-weight: 400;
}

h3+.form-row.row {
	padding-top: 20px;
}

body .checkbox-styled.text-right {
	display: block;
	margin: 5px 0 0;
}

.checkbox-styled.text-right input + .checkbox-label:before {
	float: right;
	margin: -3px 0 0 15px;
}

body  .note-editor.note-airframe .note-editing-area .note-editable, body  .note-editor.note-frame .note-editing-area .note-editable {
	background-color: #f9fbfd;
	color: #000;
	padding: 10px 15px 10px;
	overflow: auto;
	word-wrap: break-word;
	min-height: 250px;
}

body .card {
	border-radius: 0;
}

.note-editing-area p {
	padding: 0;
	margin: 0 0 5px;
	line-height: 1.35;
}

.note-editor.note-airframe, .note-editor.note-frame {
	border: 1px solid #f0f1f5;
}

.note-editor.note-frame:hover {
	border-color: #343140;
}

.note-editor.note-frame:focus {
	border-color: #343140;
}

/*  */

body .btn-logout {
	color: inherit;
	position: fixed;
	z-index: 13;
	right: 0;
	top: 0;
	margin: 30px 30px;
}

.header-bg-transparent header {
	background: transparent;
}

header.header-unlogged {
	background: transparent;
}

/*  */

.reviews-empty {
	padding: 55px 0 55px;
}

.reviews-empty img {
	width: 120px;
	margin: 0 auto 25px;
}

.reviews-empty h3 {
	font-size: 20px;
	padding: 0 0 1px;
}

.reviews-empty h5 {
	font-size: 18px;
	letter-spacing: 0;
}

/*  */

body .show-hide-element {
	display: none;
}

body .btn-show-hide-element {
	margin: 0 33px 15px 0;
	font-size: 14px;
	font-weight: normal;
	display: inline-block;
	padding: 0 0 0;
	cursor: pointer;
	outline: none;
}

body .btn-show-hide-element .text-visible-default {
	display: inline-block;
}

body .btn-show-hide-element .text-visible-on-active {
	display: none;
}

body .btn-show-hide-element.active .text-visible-default {
	display: none;
}

body .btn-show-hide-element.active .text-visible-on-active {
	display: inline-block;
}

body .btn-show-hide-element i {
	padding: 0 0 0;
	margin: -3px 4px 0 0;
	width: 22px;
	height: 22px;
	line-height: 20px;
	font-size: 20px;
	font-weight: 400;
	border: 1px solid #edf2fa;
	text-align: center;
	display: inline-block;
	vertical-align: middle;
	border-radius: 50px;
	border-radius: 50%;
}

/*  */

div#ui-datepicker-div {
	z-index: 999 !important;
}

/*  */

body .btn-back {
	margin: 0 15px 0 15px;
	width: 50px;
	height: 50px;
	border: 4px solid #ffffff;
	text-align: center;
	color: transparent;
	border-radius: 50px;
	border-radius: 50%;
	overflow: hidden;
	font-size: 0;
	background-image: url('img/i-arrow-left-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: auto 18px;
	background-size: auto 18px;
	position: relative;
	z-index: 99;
	left: 0;
	top: 0;
	display: inline-block;
	vertical-align: middle;
}

body .btn-back:hover {
	left: -5px;
	opacity: 1;
}

.btn-back[class*="bg-gradient"] {
	border: none;
}

.btn-back[class*="bg-gradient"]:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-image: url('img/i-arrow-left-white.svg');
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: auto 18px;
	background-size: auto 18px;
}

h2 .btn-main {
	display: inline-block;
	vertical-align: middle;
}

/*  */

html body .checkbox-styled-button {
	padding: 0 0 0;
	margin: 0 0 10px;
}

html body .checkbox-styled-button .input-simple {
	display: block;
	margin: 0 auto 0;
	color: #868686;
	font-weight: normal;
	line-height: 24px;
}

html body .checkbox-styled-button input {
	display: none;
}

html body .checkbox-styled-button input:checked + .input-simple {
	background-color: #5299e3;
	color: #ffffff;
}

/*  */

.form-row .upload-img-item {
    margin: 13px 20px 20px 0;
}

html body h2 .btn-main {
    margin: 0 auto 0;
}

/*  */

.select2-container--default .select2-selection--multiple {
    background-color: #f9fbfd;
    border: 1px solid #f0f1f5;
    border-radius: 0;
    cursor: text;
}

.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 50px;
    user-select: none;
    -webkit-user-select: none;
}

.select2-container--default .select2-selection--single {
    background-color: #f9fbfd;
    border: 1px solid #f0f1f5;
    border-radius: 0;
    font-size: 16px;
    padding: 0 0 0;
    height: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 50px;
    line-height: 50px;
    font-weight: 400;
    padding: 0 15px 0 18px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 50px;
}

.select2-results__option {
    padding: 5px 15px 5px;
    font-size: 14px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    margin: 0;
    padding: 8px 15px 0;
    width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    border-radius: 1px;
    padding: 0 5px;
    margin: 3px 3px 0 0;
    font-size: 13px;
}




























/* 4 - END of .content ---------------------------------------------------------- */
/* 5 - BEGIN of footer ---------------------------------------------------------- */

footer {
	padding: 0 0 0;
	margin: 0 0 0;
}

.alert {color:#ff0000;}

/* 5 - END of footer ---------------------------------------------------------- */
/* * - BEGIN of @media ---------------------------------------------------------- */

@media (min-width: 1280px) {
	.container {
		width: 1250px;
	}
}

/* ----------------------------------------------------------------------------------- */

@media screen and (min-width: 1440px) {
body {
	min-width: 1440px;
}



}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1439px) {

}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 1199px) {
body {
	font-size: 14px;
	line-height: 1.85;
	letter-spacing: -.01em;
}
h1 {
	padding: 0 0 15px;
	font-size: 40px;
}
h2 {
	padding: 0 0 15px;
	font-size: 25px;
}
h3 {
	padding: 0 0 15px;
	font-size: 18px;
}
h4 {
	padding: 0 0 15px;
	font-size: 18px;
}
h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.grid-sidebar-left {
	padding: 30px 25px 50px 25px;
	margin: 0 0 0;
	width: 280px;
}
.grid-sidebar-left:after {
	width: 280px;
}
.grid-sidebar-left h4 {
	font-size: 20px;
}
.grid-sidebar-left h5 {
	font-size: 16px;
}
.sidebar-header {
	padding: 0 0 5px;
	margin: 0 0 15px;
}
nav ul li {
	padding: 3px 0 3px;
}
nav ul a {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 18px;
}
nav a i {
	width: 16px;
	padding: 0 0 0;
	margin: -3px 10px 0 0;
}
nav ul ul a {
	font-size: 14px;
}
nav ul ul {
	padding: 10px 0 0 30px;
	margin: 0 0 0;
}
.social-links {
	padding: 5px 0 10px;
}
header {
	padding: 15px 0 15px;
}
.grid-main-area {
	padding: 15px 20px 20px 300px;
	margin: 0 0 0;
}
.bordered-bottom {
	padding: 0 0 15px;
	margin: 0 0 25px;
}
.block-item {
	padding: 25px 25px 20px;
	margin: 0 0 15px;
	font-size: 13px;
	max-width: 930px;
}
.input-simple {
	font-size: 16px;
	padding: 10px 14px 10px;
	height: 45px;
}
.block-item .input-item {
	margin: 0 0 15px;
}
.sortable-item .display-inline-block {
	margin: 0 0 0 0;
}
.panel-link-item {
	padding: 30px 15px 25px;
	margin: 5px 5px 9px;
	width: 140px;
	height: 140px;
}
.sortable-items-gallery .upload-img-item {
	margin: 0 10px 20px;
}
.checkbox-styled input + .checkbox-label {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 13px;
}
.checkbox-styled input + .checkbox-label:before {
	width: 25px;
	height: 25px;
	line-height: 24px;
	font-size: 13px;
	padding: 0 0 0;
	margin: 0 10px 0 0;
}
.text-right .checkbox-styled input + .checkbox-label:before {
	margin: 0 0 0 10px;
}
html body .btn-send {
	height: 45px;
	margin: 0 0 0;
}
html body .btn-send {
	height: 45px;
	margin: 0 0 0;
}
















}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 991px) {
.grid-sidebar-left {
	padding: 55px 30px 20px 55px;
	margin: 0 0 0;
	width: 350px;
	min-height: 100vh;
	float: left;
	position: fixed;
	left: -380px;
	top: 0;
	bottom: 0;
	z-index: 999;
	overflow: auto;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.grid-main-area {
	padding: 80px 15px 25px;
	margin: 0 0 0;
}
.back-to-top {
	width: 24px;
	height: 24px;
	-webkit-background-size: contain;
	background-size: contain;
}
.content {
	/* padding: 70px 0 0; */
	padding: 0 0 0;
}
.header-unlogged + .content {
	/* padding: 0 0 0; */
}
.grid-sidebar-left.active {
	left: 0;
	z-index: 9999;
	width: 100%;
}
.customer-panel-links {
	padding: 10px 0 10px;
	margin: 0 -15px 0;
}
.grid-sidebar-left:after {
	/* width: 0; */
	/* display: none; */
	position: fixed;
	left: 0;
	right: 0;
	width: auto;
	top: 0;
	bottom: auto;
	height: 60px;
	/* background: red; */
}
header, .bg-gray header {
	padding: 18px 0 17px;
	z-index: 5555;
	color: #ffffff;
	position: fixed;
	background: rgba(54,209,220,1);
	background: -moz-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(54,209,220,1)), color-stop(100%, rgba(91,134,229,1)));
	background: -webkit-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: -o-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: -ms-linear-gradient(left, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	background: linear-gradient(to right, rgba(54,209,220,1) 0%, rgba(91,134,229,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#36d1dc', endColorstr='#5b86e5', GradientType=1 );
	color: #ffffff;
}
.btn-main-nav {
	z-index: 99999;
}

.pos-bottom {
	position: relative;
	padding: 15px 15px 15px;
}
.grid-sidebar-left:before {
	display: none;
}























}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 767px) {
body {
	font-size: 14px;
	line-height: 1.85;
	letter-spacing: -.01em;
}
h1 {
	padding: 0 0 15px;
	font-size: 30px;
}
h2 {
	padding: 0 0 15px;
	font-size: 23px;
}
h3 {
	padding: 0 0 15px;
	font-size: 19px;
}
h4 {
	padding: 0 0 15px;
	font-size: 16px;
}
h5 {
	margin: 0 0 0;
	padding: 0 0 15px;
}
h6 {
	padding: 0 0 15px;
	font-size: 12px;
}
.grid-sidebar-left {
	padding: 80px 30px 20px;
	margin: 0 0 0;
	width: 350px;
}
.block-item {
	padding: 25px 20px 20px;
	margin: 0 0 15px;
	font-size: 15px;
	max-width: 930px;
}
.block-item form {
	margin: 0 0 0;
	padding: 5px 0 0;
}
.block-item label {
	text-align: left;
	padding: 0 0 5px;
}
.block-item .input-item {
	margin: 0 0 10px;
}
.block-item .btn-main {
	margin: 5px auto 0;
}
body .btn-main {
	z-index: 1;
}
.block-item [class*="col-"] {
	padding-left: 5px;
	padding-right: 5px;
}
.block-item .row {
	margin-left: -5px;
	margin-right: -5px;
}
.block-item a .fa {
	line-height: 25px;
	font-size: 14px;
	width: 25px;
	height: 25px;
	border-radius: 3px;
}
.sortable-item {
	padding: 5px 0 9px;
}
html body .btn-clean-image-upload {
	margin: auto 2px auto;
}
.sortable-items-gallery {
	text-align: center;
}
.upload-img-item {
	width: 135px;
	margin: 0 10px 15px 0;
	padding: 0 0 0;
}
.sortable-items-gallery .upload-img-item {
	margin: 0 5px 15px;
}
.input-file-wrapper {
	margin: 3px 0 6px;
	padding: 0 0 0;
	border: 1px dashed #d1d7e0;
	height: 90px;
}
input[type="date"] {
	padding-right: 30px;
}
.block-form-sm {
	padding: 30px 20px 20px;
	max-width: 400px;
	margin: 30px auto 30px;
}
form .logo {
	margin: 0 auto 15px;
}
body form .btn-main {
	margin: 10px auto 0;
}
.checkbox-styled input + .checkbox-label {
	padding: 0 0 0;
	margin: 0 0 0;
	font-size: 15px;
}
.table-simple th {
	font-size: 15px;
	padding: 5px 5px 6px 0;
}
header.header-unlogged {
	/* background: transparent; */
}
body .btn-logout {
	margin: 10px 10px;
}
header {
	min-height: 60px;
}
body h2 .btn-back {
	margin: 0 1px 0 2px;
}
label.checkbox-styled.text-left {
    padding: 10px 0 5px;
}








}

/* ----------------------------------------------------------------------------------- */

@media screen and (max-width: 550px) {
.btn-main.btn-small {
	padding: 8px 10px 6px;
	margin: 0 6px 0;
	font-size: 12px;
	letter-spacing: .02em;
	min-width: 95px;
	top: -2px;
}











}

/* ----------------------------------------------------------------------------------- */
/* * - END of @media ---------------------------------------------------------- */
