/************************************************************************************
forms
*************************************************************************************/

#form {
	padding-top: 2px;
}
#form input#datetimepicker4 {
	background: url("../img/calendar-check.png") no-repeat scroll 0 0;
	background-position: right;
	border: none;
	border-bottom: 2px solid #024b82;
}
#form checkbox{
	width: 10px;
	height: 10px;
	border: none;
	border-bottom: 2px solid #024b82;
}
#form input {
	width: 100%;
	height: 50px;
	color: #9fa1a4;
    font: 14px/18px Arial, Helvetica, sans-serif;
	margin-bottom: 10px;
	outline: none;
	padding: 5px 12px 6px;
	border: none;
	border-bottom: 2px solid #024b82;
}
#form textarea {
	width: 100%;
	height:150px;
	color: #9fa1a4;
    font: 14px/35px Arial, Helvetica, sans-serif;
	line-height : 25px;
	outline: none;
	padding: 5px 12px 6px;
	border: none;
	border-bottom: 2px solid #024b82;
}
#form ._placeholder {
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	color: #024b82;
    font: 12px/35px Arial, Helvetica, sans-serif;
	border: 2px solid transparent;
    padding: 5px 12px 6px;
	height: 50px !important;
	width: 100% !important;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	position: absolute;
	right: 0;
	top: 0 !important;
	bottom: 0;
	left: 0;
	cursor: text !important;
	display: block;
}
#form ._placeholder.hidden {
	display: none;
}
#form ._placeholder.focused {
	opacity: 0.3;
}
#form .message ._placeholder {
	height: 100% !important;
}
#form label {
	width: 100%;
	position:relative;
	display: block;
	min-height: 40px;
}
#form label.message {
	width: 100%;
	position: relative;
}
#form .error-message, #form .empty-message {
	color: #E71B1F;
	font-size: 10px;
	line-height:14px;
	width:auto;
	position: absolute;
	z-index: 5;
	top: 18px;
	opacity: 0;
	right: 50px;
	float:left;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
}
#form .invalid .error-message, #form .empty .empty-message {
	opacity: 1;
}

/************************************************************************************
btns
*************************************************************************************/

#btnss {
	text-align: left;
	padding-top: 24px;
	font-size: 0;
	line-height: 0;
	width: 100%;
	height: auto;
}
#btnss a.btns {
	font: 14px/18px Arial, Helvetica, sans-serif;
	border-radius: 0px;
	margin-top: 10px;
	width: 100%;
}
a.btns {
	font: 14px Arial, Helvetica, sans-serif;
    color: #FFF;
    display: inline-block;
    padding: 15px 60px 15px;
    margin-top: 21px;
	margin-left: 0px;
	font-weight: normal; 
	text-transform: uppercase; 
	cursor: pointer;  
	background-color: #024b82; 
	border: 2px solid #FFF;
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	width: 100%;
	text-align: center;
	border-radius: 5px;
}
a.btns:hover, a.btns:visited, a.btns:active {
    background-color: #35ade3;
	color: #FFF;
}

/************************************************************************************
message
*************************************************************************************/

.message br {
	height: 0;
	line-height: 0;
}
#form .success-message {
	background: #D5F5E3;
	width: 100%;
	color: #2d4948;
    font: 14px/18px Arial, Helvetica, sans-serif;
	display: none;
	opacity: 0;
    padding: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /*Firefox 1-3*/
	-webkit-box-sizing: border-box; /* Safari */
	transition: 0.5s ease;
	-o-transition: 0.5s ease;
	-webkit-transition: 0.5s ease;
	margin-top: 25px;
	text-shadow: none;
	border-radius: 3px;
	border: 1px solid #2d4948;
	height: auto;
	float: left;
}
#form.success .success-message {
	display: block;
	opacity: 1;
}
.success_wrapper {
	position: relative;
	width: 100%;
}
.clear {
	float: none !important;
	clear: both;
}

/************************************************************************************
CHECKBOX
*************************************************************************************/
.control-group{
	margin-top: 25px;
}

/* Base for label styling */
.control{
font-family: arial;
display: block;
position: relative;
padding-left: 30px;
margin-bottom: 5px;
padding-top: 3px;
cursor: pointer;
font-size: 16px;
}
.control input {
position: fixed;
z-index: -1;
opacity: 0;
}
.control_indicator {
position: absolute;
top: 2px;
left: 0;
height: 20px;
width: 20px;
background: #e6e6e6;
border: 0px solid #000000;
border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
background: #cccccc;
}
.control input:checked ~ .control_indicator {
background: #006897;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
background: #0e6647d;
}
.control input:disabled ~ .control_indicator {
background: #e6e6e6;
opacity: 0.6;
pointer-events: none;
}
.control_indicator:after {
box-sizing: unset;
content: '';
position: absolute;
display: none;
}
.control input:checked ~ .control_indicator:after {
display: block;
}
.control-checkbox .control_indicator:after {
left: 8px;
top: 4px;
width: 3px;
height: 8px;
border: solid #ffffff;
border-width: 0 2px 2px 0;
transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
border-color: #7b7b7b;
}
.control-checkbox .control_indicator::before {
content: '';
display: block;
position: absolute;
left: 0;
top: 0;
width: 4.5rem;
height: 4.5rem;
margin-left: -1.3rem;
margin-top: -1.3rem;
background: #2aa1c0;
border-radius: 3rem;
opacity: 0.6;
z-index: 99999;
transform: scale(0);
}
@keyframes s-ripple {
0% {
         transform: scale(0);
}
20% {
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(1);
}
}
@keyframes s-ripple-dup {
0% {
transform: scale(0);
}
30% {
transform: scale(1);
}
60% {
transform: scale(1);
}
100% {
opacity: 0;
transform: scale(1);
}
}
.control-checkbox input + .control_indicator::before {
animation: s-ripple 250ms ease-out;
}
.control-checkbox input:checked + .control_indicator::before {
animation-name: s-ripple-dup;
}

/************************************************************************************
GPDR
*************************************************************************************/

.GPDR {
	font-size: 14px;
	width: 100%;
	padding-top: 25px;
}
.lpd {
	float: left;
	background-color:transparent;
	border: 2px solid #EEE;
	border-radius: 5px;
	width: 100%;
}
.lpd p {
	font-size: 14px;
	padding: 15px;
	border-radius: 3px;
}
.lpd h3 {
	padding: 15px;
}