/* CONTACT FORM */
::-webkit-input-placeholder{
	color:@font-color;
}
div.view-contact-form{
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index:2000;
}
section.contact-form{
	padding: 0 5%;

}

section.contact-form.modal-form{
	padding:0;
	background: rgba(0,0,0,0.5);
	height: 100%;
	overflow: hidden;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity:0;
	pointer-events:none;
	transition:opacity 0.5s;
}

section.contact-form.modal-form.opened{
	opacity:1;
	pointer-events: all;
}

section.contact-form.modal-form .max-width{
	margin: 0 auto;
	padding: 30px;
	background: #fff;
	max-height:80vh;
	overflow-y: auto;
	width:100%;
	border-radius: 12px;
}

.centered-info{
	max-width:800px;
	text-align:center;
	margin:0 auto;
	
}
section.contact-form .ccm-block-express-form{
	padding: 0;
	margin: 45px 0;
	border-radius:3px;
	

}
section.contact-form .ccm-block-express-form form{
	max-width: @max-width;
	margin: 0 auto;
}
section.contact-form .ccm-dashboard-express-form{
	display:flex;
	margin:0 -2.5% 0 -2.5%;
}

section.contact-form fieldset{
	width: 95%;
	margin: 0 2.5%;
	border: none;
}

section.contact-form fieldset legend{
	color: lighten(@font-color, 10%);
	font-weight: 300;
	letter-spacing: @letter-spacing-big;
	font-size: 1.375em;
	display:none;
}

section.contact-form .form-group{
	margin-bottom:20px;
}
section.contact-form .form-group.captcha{
  transform: scale(0.75);
  transform-origin: top left;
  margin-bottom:0;
}

section.contact-form input{
	font-family:@main-font;
	
}

section.contact-form select,
.list-filter select,
.store-product-block select,
.store-checkout-page select {
  padding: 12px;
  font-family:@main-font;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E'), linear-gradient(158deg, #6fd0ff 0%, #5e57c8 35%, #6fd0ff 100%);
  color: #fff;
  border-radius: 3px;
  width: 100%;
  height: 47px;
  font-size: 1.125em;
  background-position: right .7em top 50%, 0 0;
  background-repeat: no-repeat;
  background-size: 12px auto, 100%;
  transition: all 0.3s;
}
section.contact-form select:hover,
.list-filter select:hover,
.store-product-block select:hover,
.store-checkout-page select:hover,
.store-checkout-page select:focus {
  box-shadow: 0 0 12px #6fd0ff, 0 0 2px #6fd0ff;
}

section.contact-form input[type=text],section.contact-form input[type=tel],section.contact-form input[type=email],section.contact-form textarea, .store-product-block input, .store-checkout-page input[type=email], .store-checkout-page input[type=text], .store-checkout-page input[type=number], .store-checkout-page input[type=tel], .store-checkout-page textarea{
	padding:14px 14px 14px 40px;
	border:none;
	border-radius:3px;
	transition:all 0.3s;
	font-size: 1em;
	color:@font-color;
	-webkit-appearance: none;
	display: block;
	width: 100%;
	background:darken(@body-color, 7%);
	box-shadow:0 1px 3px rgba(0,0,0,0.1) inset;
	font-family:@main-font;
	border: 2px solid transparent;
}

section.contact-form div.input, .store-checkout-page div.input{
	position:relative;
}
section.contact-form div.input:after, .store-checkout-page div.input:after{
	display: block;
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: @font-color;
	font-family:'Font Awesome 5 Pro';
	font-size:1.25em;
	transition:all 0.3s;
	font-weight:300;
}
div.input.first-name:after, div.input.last-name:after, div.input.name:after{
	content:'\f007';
}
div.input.email:after{
	content:'\f2b6';
}
div.input.phone-number:after{
	content:'\f095';
}
div.input.address:after{
	content:'\f3c5';
}
div.input.search:after{
	content:'\f002';
}



div.input.message:after,
div.input.enquiry:after
{
	top:10px!important;
	transform:none!important;
	content:'\f303';
}

section.contact-form textarea{
	min-height:247px;
}





/* Hide arrow icon in IE browsers */
section.contact-form select::-ms-expand {
  display: none;
}
section.contact-form input[type=text]:hover, section.contact-form input[type=tel]:hover, section.contact-form input[type=email]:hover,.store-checkout-page input[type=number]:hover, section.contact-form textarea:hover, .store-product-block input:hover, .store-checkout-page input[type=email]:hover, .store-checkout-page input[type=text]:hover, .store-checkout-page input[type=tel]:hover, .store-checkout-page textarea:hover{
	background:darken(@body-color, 5%);
	border: 2px solid #fff;
	
}
section.contact-form input[type=text]:focus, section.contact-form input[type=tel]:focus, section.contact-form input[type=email]:focus,.store-checkout-page input[type=number]:focus, section.contact-form textarea:focus, .store-product-block input:focus, .store-checkout-page input[type=email]:focus, .store-checkout-page input[type=text]:focus, .store-checkout-page input[type=tel]:focus, .store-checkout-page textarea:focus{
	background:darken(@body-color, 3%);
	outline:none;
	border: 2px solid @second-color;
}

section.contact-form label, .store-product-block label, .store-checkout-page label{
	line-height: 1.5em;
	margin: 0 0 5px 0;
	color: @font-color;
	font-size: 1em;
	font-weight: 500;
	display: inline-block;
	user-select: none;
}

section.contact-form span.small{
	font-size:0.65em;
	color: #ed6b68;
}

section.contact-form .form-actions{
	margin-top:30px;
	padding:0 2px;
	text-align:center;
}


@media screen and (max-width:800px){
	section.contact-form .ccm-dashboard-express-form{
		flex-direction:column;
		margin:0 -2.5% 0 -2.5%;
	}
	section.contact-form textarea{
		min-height:150px;
	}
}



/* SITE ADMIN CSS - DO WE NEED THIS? */

section.admin-panel {
  padding: 45px 5%;
  margin: 45px 0;
}

section.admin-panel h3{
	color:@font-color;
}
section.admin-panel .max-width {
  border: 1px solid #eee;
  background: #fbfbfb;
  padding: 30px;
  max-width:860px;
  margin:0 auto;
  line-height:1em;
}
nav.page-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav.page-nav ul li {
  margin: 0 2px 5px 2px;
}
ul.list {
  list-style: none;
  margin: 30px 0;
}
.std-form .flex-wrapper {
  display: flex;
}
.std-form .flex-wrapper .form-group {
  margin-right: 10px;
}
.std-form div.form-input{
	margin-top:10px;
}
.std-form label,
.ccm-block-express-form label,
.ccm-block-express-form span.text-muted {
  display: inline-block;
  font-size: 0.875em;
  font-family: @main-font;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.std-form input,
.std-form textarea,
.ccm-block-express-form input,
.ccm-block-express-form textarea {
  border: none;
  padding: 10px;
  font-size: 16px;
  font-family: @main-font;
  font-weight: 400;
  font-style: normal;
  display: block;
  margin-bottom: 15px;
  color: #657380;
  width: 100%;
  box-shadow: 0 0 0 3px rgba(117, 180, 179, 0), 1px 1px 3px rgba(0, 0, 0, 0.15) inset;
  border-radius: 3px;
  transition: all 0.3s;
}
.std-form input:focus,
.std-form textarea:focus,
.ccm-block-express-form input:focus,
.ccm-block-express-form textarea:focus {
  outline: none;
}
.std-form div.checkbox {
  display: flex;
  align-items: center;
  margin-top:20px;
}
.std-form input[type=checkbox] {
  width: auto;
  margin: 0 0 0 10px;
}
.std-form .ccm-file-selector {
  margin: 0 0 20px 0;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -ms-border-radius: 2px;
  color: #ffffff;
  background-color: #3f9edc;
  text-align: center;
  font-size: 18px;
  line-height: 1.42857143;
  -webkit-transition: .1s linear all;
  -o-transition: .1s linear all;
  transition: .1s linear all;
  cursor: pointer;
}
.std-form .ccm-item-selector-loaded {
  display: flex;
  align-items: center;
  padding: 8px;
  text-align: left;
  background-color: #3f9edc;
}
.std-form .ccm-item-selector-loaded .btn-group{
	display:flex;
	align-items:center;
}
.std-form .ccm-item-selector-group .ccm-item-selector-loaded a.btn{
	padding-left:0;
	display:flex;
	align-items:center;
	color:#fff;
}
.std-form .cke_editor {
  margin-bottom: 20px !important;
}
section.admin-panel .cke_top{
	top: 105px;
	z-index: 1000;
	position: sticky;
}

.std-form .cke_wysiwyg_div{
	background-color:@body-color;
}
.std-form button{
	font-family: @main-font;
}
.std-form button[type = "submit"]{
  margin: 20px 0 5px 0;
  background:#111;
  color:#fff;
  border:none;
  padding:0.5em 1em;
  border-radius:3px;
  cursor:pointer;
  text-transform:uppercase;
  font-weight:500;
}
.std-form button.ccm-item-selector-reset{
	border: none;
	background: red;
	font-size: 20px;
	cursor: pointer;
	padding: 0;
	color: #fff;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.std-form button.ccm-item-selector-reset .fa-times-circle:before{
	content:'\f00d';
}
.std-form .image-picker {
  margin-top: 20px;
}
.std-form .form-group-inline {
  display: inline-block;
  margin: 0 10px 20px 0;
}
.std-form .date-picker input {
  margin-bottom: 5px;
}
.std-form .ccm-file-manager-list-thumbnail {
  display: block;
}
.std-form .ccm-item-selector-group .ccm-item-selector-loaded img{
	max-height:60px;
	max-width:60px;
	display:block;
}
.std-form select {
  padding: 10px;
  min-width: 200px;
  font-family:@main-font;
  font-weight:500;
}