@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,700|Open+Sans:400,300,600&display=swap);
 * {
	 box-sizing: border-box;
}
 body {
	 font-family: 'open sans', helvetica, arial, sans;
	 -webkit-background-size: cover;
	 -moz-background-size: cover;
	 -o-background-size: cover;
	 background-size: cover;
}
 .log-form {
	 width: 40%;
	 min-width: 320px;
	 max-width: 475px;
	 background: #fff;
	 position: absolute;
	 top: 50%;
	 left: 50%;
	 -webkit-transform: translate(-50%,-50%);
	 -moz-transform: translate(-50%,-50%);
	 -o-transform: translate(-50%,-50%);
	 -ms-transform: translate(-50%,-50%);
	 transform: translate(-50%,-50%);
	 box-shadow: 0px 2px 5px rgba(0,0,0,0.25);
}
 @media (max-width: 40em) {
	 .log-form {
		 width: 95%;
		 position: relative;
		 margin: 2.5% auto 0 auto;
		 left: 0%;
		 -webkit-transform: translate(0%,0%);
		 -moz-transform: translate(0%,0%);
		 -o-transform: translate(0%,0%);
		 -ms-transform: translate(0%,0%);
		 transform: translate(0%,0%);
	}
}
 .log-form form {
	 display: block;
	 width: 100%;
	 padding: 2em;
}
 .log-form h2 {
	 width: 100%;
	 color: #5d5d5d;
	 font-family: 'open sans condensed';
	 font-size: 1.35em;
	 display: block;
	 background: #2a2a2a;
	 text-transform: uppercase;
	 padding: .75em 1em .75em 1.5em;
	 box-shadow: inset 0px 1px 1px rgba(255,255,255,0.05);
	 border: 1px solid #1d1d1d;
	 margin: 0;
	 font-weight: 200;
}
 .log-form input {
	 display: block;
	 margin: auto auto;
	 width: 100%;
	 margin-bottom: 2em;
	 padding: .5em 0;
	 border: none;
	 border-bottom: 1px solid #eaeaea;
	 padding-bottom: 1.25em;
	 color: #757575;
}
 .log-form input:focus {
	 outline: none;
}
 .log-form .btn {
	 display: inline-block;
	 background: #1fb5bf;
	 border: 1px solid #1ba0a9;
	 padding: .5em 2em;
	 color: white;
	 margin-right: .5em;
	 box-shadow: inset 0px 1px 0px rgba(255,255,255,0.2);
}
 .log-form .btn:hover {
	 background: #23cad5;
}
 .log-form .btn:active {
	 background: #1fb5bf;
	 box-shadow: inset 0px 1px 1px rgba(0,0,0,0.1);
}
 .log-form .btn:focus {
	 outline: none;
}
 .log-form .forgot {
	 color: #33d3de;
	 line-height: .5em;
	 position: relative;
	 top: 2.5em;
	 text-decoration: none;
	 font-size: .75em;
	 margin: 0;
	 padding: 0;
	 float: right;
}
 .log-form .forgot:hover {
	 color: #1ba0a9;
}

/* MODULE: COMPLETE STEPS --------------------------------------------- */
.complete-profile-module {
	padding-top: 40px;
	padding-bottom: 20px;
	position: relative;
	min-height: calc(100vh - 130px);
}

.complete-profile-module .steps-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 50px;
	padding: 0;
}

.complete-profile-module .steps-wrapper .step {
	text-align: center;
	position: relative;
}

.complete-profile-module .steps-wrapper .step-line {
	content: '';
	max-width: 110px;
	height: 1px;
	background: #C1C1C1;
	margin: 0 12px;
	flex: 1;
	position: relative;
}

.complete-profile-module .steps-wrapper .step-line::before {
	content: '';
	width: 100%;
	height: 5px;
	background: #000;
	position: absolute;
	left: 0;
	top: -2px;
	z-index: 100;
	clip-path: polygon(0 0, 0% 0, 0% 100%, 0 100%);
	background: linear-gradient(90deg, #B4B4B4 0%, #B2C4EC 100%);
	transition: clip-path 0.35s ease;
}

.complete-profile-module .steps-wrapper .step-line:nth-of-type(2)::before {
	background: linear-gradient(90deg,#B2C4EC 0%, #AF88BE 100%);
}

.complete-profile-module .steps-wrapper  .step-line:nth-of-type(3)::before {  
	background: linear-gradient(90deg, #AF88BE 0%, #D3AD29 100%);
}

.complete-profile-module[data-current-step="2"] .steps-wrapper .step-line:nth-of-type(1)::before { 
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
}

.complete-profile-module[data-current-step="3"] .steps-wrapper .step-line:nth-of-type(1)::before,
.complete-profile-module[data-current-step="3"] .steps-wrapper .step-line:nth-of-type(2)::before { 
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
}

.complete-profile-module[data-current-step="4"] .steps-wrapper .step-line:nth-of-type(1)::before,
.complete-profile-module[data-current-step="4"] .steps-wrapper .step-line:nth-of-type(2)::before,
.complete-profile-module[data-current-step="4"] .steps-wrapper .step-line:nth-of-type(3)::before { 
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); 
}

.complete-profile-module .steps-wrapper .step h4 {
	margin: 0;
	font-size: 12px;
	color: #000;
	text-align: center;
	width: 120px;
	position: absolute;
	left: 50%;
	top: calc(100% + 10px);
	transform: translateX(-50%);
}

.complete-profile-module .steps-wrapper .step-circle {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 52px;
	height: 52px;
	padding-top: 4px;
	border-radius: 50%;
	background: transparent;
	color: #B3B3B3;
	border: 1px solid currentColor;
	text-align: center;
	font-size: 26px;
	font-weight: 700;
	line-height: 1;
	flex: 0 0 1;
	transition: all 0.3s ease;
}

.complete-profile-module .steps-wrapper .step:nth-of-type(4) svg {
	width: 24px;
	height: auto;
}

.complete-profile-module .steps-wrapper .step-circle img,
.complete-profile-module .steps-wrapper .step-circle .step-icon {
	opacity: 0;
	width: 22px;
	height: auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease-out;
	pointer-events: none;
}

.complete-profile-module .steps-wrapper .step-circle .step-icon {
	height: 16px;
}

.complete-profile-module .steps-wrapper .passed .step-circle img,
.complete-profile-module .steps-wrapper .passed .step-circle .step-icon { 
	opacity: 1;
	transition: opacity 0.3s ease-out 0.3s;
} 

.complete-profile-module .steps-wrapper .step-circle .step-number {
	opacity: 1;
	transition: opacity 0.3s ease-out 0.3s;
}

.complete-profile-module .steps-wrapper .passed .step-circle .step-number { 
	opacity: 0;
	transition: opacity 0.3s ease-out;
} 

.complete-profile-module .steps-wrapper .step:nth-of-type(2) .step-circle { color: #B2C4EC; }
.complete-profile-module .steps-wrapper .step:nth-of-type(3) .step-circle { color: #AF88BE; }
.complete-profile-module .steps-wrapper .step:nth-of-type(4) .step-circle { color: #D3AD29; padding-top: 0;}

.complete-profile-module[data-current-step="1"] .steps-wrapper .step:nth-of-type(1) .step-circle,
.complete-profile-module .steps-wrapper .step:nth-of-type(1).passed .step-circle {
	color: #000;
	border-color: #B3B3B3;
	background: #B3B3B3;
}

.complete-profile-module[data-current-step="2"] .steps-wrapper .step:nth-of-type(2) .step-circle,
.complete-profile-module .steps-wrapper .step:nth-of-type(2).passed .step-circle {
	color: #000;
	border-color: #B2C4EC;
	background: #B2C4EC;
}

.complete-profile-module[data-current-step="3"] .steps-wrapper .step:nth-of-type(3) .step-circle,
.complete-profile-module .steps-wrapper .step:nth-of-type(3).passed .step-circle {
	color: #000;
	border-color: #AF88BE;
	background: #AF88BE;
}

.complete-profile-module[data-current-step="4"] .steps-wrapper .step:nth-of-type(4) .step-circle,
.complete-profile-module .steps-wrapper .step:nth-of-type(4).passed .step-circle {
	color: #000;
	border-color: #D3AD29;
	background: #D3AD29;
}

.complete-profile-module .complete-block {
	background: #FFF;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
	position: relative;
	padding: 48px 120px 60px;
	max-width: 1110px;
	margin: 0 auto;
}

.complete-profile-module .complete-block .dialog-vector {
	position: absolute;
	right: 150px;
	top: calc(100% - 3px);
	max-width: 62px;
	height: auto;
}

.complete-profile-module .complete-block-inside {
	overflow: hidden;
	position: relative;
}

.complete-profile-module .complete-block::before {
	content: '';
	display: block;
	width: 100%;
	height: 24px;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(94deg, #AF88BE -0.12%, #B2C4EC 42.1%, #B2C4EC 59.25%, #D3AD29 111.21%);
}

.complete-profile-module .step-title {
	color: #B3B3B3;
	font-size: 40px;
	margin: 0 0 44px;
}

.complete-profile-module .step-form-fields {
	display: flex;
	column-gap: 36px;
	row-gap: 26px;
	flex-flow: row wrap;
	align-items: flex-end;
}

.complete-profile-module .form-field {
	position: relative;
	width: calc(50% - 18px);
}

.complete-profile-module .form-field + .form-field {
	margin-top: 0;
}

.complete-profile-module .form-field.full-field {
	width: 100%;
}

.complete-profile-module .form-field input[type="text"],
.complete-profile-module .form-field input[type="email"],
.complete-profile-module .form-field input[type="tel"],
.complete-profile-module .form-field input[type="number"],
.complete-profile-module .form-field input[type="date"],
.complete-profile-module .form-field select {
	height: 40px;
	border: 1px solid #A3A3A3;
	transition: all 0.3s ease;
	padding: 0 10px;
	outline: 0;
	box-shadow: none;
	width: 100%;
	border-radius: 0;
	background-color: transparent;
	color: #000;
}

.complete-profile-module .form-field input[type="text"]:focus,
.complete-profile-module .form-field input[type="email"]:focus,
.complete-profile-module .form-field input[type="tel"]:focus,
.complete-profile-module .form-field input[type="number"]:focus,
.complete-profile-module .form-field input[type="date"]:focus,
.complete-profile-module .form-field select:focus {
	border-color: #000;
} 

.complete-profile-module .form-field input[type="text"]:disabled,
.complete-profile-module .form-field input[type="email"]:disabled,
.complete-profile-module .form-field input[type="tel"]:disabled,
.complete-profile-module .form-field input[type="number"]:disabled,
.complete-profile-module .form-field input[type="date"]:disabled,
.complete-profile-module .form-field select:disabled {
	background: #E5E5E5;
}

.complete-profile-module .validate .form-field input[type="text"]:invalid,
.complete-profile-module .validate .form-field input[type="email"]:invalid,
.complete-profile-module .validate .form-field input[type="tel"]:invalid,
.complete-profile-module .validate .form-field input[type="number"]:invalid,
.complete-profile-module .validate .form-field input[type="date"]:invalid,
.complete-profile-module .validate .form-field select:invalid {
	border-color: #e04f4f;
}

.complete-profile-module .form-field label,
.complete-profile-module .form-field h4 {
	display: block;
	color: #000;
	margin: 0 0 4px;
	font-size: 13px;
	font-weight: 700;
	left: 0;
}

.complete-profile-module .form-field label.required::after {
	content: '*';
	color: #e04f4f;
	display: inline;
}

.complete-profile-module .form-field label.radio-item {
	display: inline-block;
}

.complete-profile-module .form-field .radio-options {
	display: flex;
	column-gap: 20px;
	margin-top: 10px;
	font-weight: 400;
}

.complete-profile-module .form-field .radio-options .radio-item {
	font-weight: 400;
	font-size: 14px;
	background-color: transparent;
}

.complete-profile-module .form-field .radio-options .radio-item input[type="radio"] {
	background: none;
	border: 0;
	outline: 0;
	box-shadow: none;
	display: inline-block;
	margin-right: 3px;
	position: relative;
	top: -1px;
}


.complete-profile-module .complete-profile-actions {
	margin-top: auto;
	padding-top: 50px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	column-gap: 24px;
	margin-left: auto;
}

.complete-profile-module .complete-profile-actions .btn {
	height: 50px;
	font-size: 17px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	font-weight: 700 !important;
	text-transform: uppercase;
}

.complete-profile-module .complete-profile-actions .btn.btn-previous {
	background: #FFF ;
	color: #000 !important;
	border: 1px solid #000;
}

.complete-profile-module .complete-profile-actions .btn.btn-previous:hover {
	border-color: #B3B3B3;
	background: #B3B3B3;
}

.complete-profile-module .complete-profile-step.step-2 .step-title {color: #B6C6EC;}
.complete-profile-module .complete-profile-step.step-3 .step-title {color: #AF88BE;}
.complete-profile-module .complete-profile-step.step-4 .step-title {color: #D3AD29;}

.complete-profile-module .complete-profile-step.step-4 { text-align: center; }
.complete-profile-module .complete-profile-step.step-4 .complete-profile-actions { justify-content: center; }
.complete-profile-module .complete-profile-step.step-4 .complete-profile-welcome-message { 
	color: #000;
	font-size: 26px;
	line-height: normal;
	max-width: 480px;
	margin: 0 auto;
}

.complete-profile-module .complete-profile-step.step-4 .complete-profile-welcome-message span {
	display: block;
}

.complete-profile-module .complete-profile-step {
	display: none;
}

.complete-profile-module .complete-profile-steps-list .complete-profile-step {
	min-height: inherit;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
}

.complete-profile-module[data-current-step="1"] .complete-profile-step.step-1 { display: flex; }
.complete-profile-module[data-current-step="2"] .complete-profile-step.step-2 { display: flex; }
.complete-profile-module[data-current-step="3"] .complete-profile-step.step-3 { display: flex; }
.complete-profile-module[data-current-step="4"] .complete-profile-step.step-4 { display: block; }

.complete-profile-module .wizards-wrapper {
	height: 460px;
	min-height: 340px;
	z-index: 100;
	position: relative;
	overflow: hidden;
	margin: -50px auto 0;
	pointer-events: none;
}

.complete-profile-module .wizard-container {
	position: relative;
	height: 100%;
}

.complete-profile-module .wizard {
	width: 400px;
	height: 100%;
	position: absolute;
	right: -6%;
	top: 0;
	display: none;
}

.complete-profile-module .wizard img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: right top;
}

.complete-profile-module .wizard:nth-child(3) {
	right: -9%;
}

.complete-profile-module[data-current-step="1"] .wizard:nth-child(1),
.complete-profile-module[data-current-step="3"] .wizard:nth-child(1), 
.complete-profile-module[data-current-step="2"] .wizard:nth-child(2), 
.complete-profile-module[data-current-step="4"] .wizard:nth-child(3) {
	display: block;
}

.complete-profile-module[data-current-step="4"] .wizards-wrapper {
	min-height: 350px;
	margin-top: -120px;
}

.complete-profile-module .conditional-label label {opacity: 0;}
.complete-profile-module .conditional-label.show-label label {opacity: 1;}

@media (max-width: 991px) {
	.complete-profile-module .complete-block {
		padding: 50px 40px;
	}
	
	.complete-profile-module .step-form-fields {
		row-gap: 20px;
		column-gap: 20px;
	}
	
	.complete-profile-module .form-field:not(.full-field) {
		width: calc(50% - 10px);
	}
	
	.complete-profile-module .complete-profile-actions {
		padding-top: 30px;
	}
	
	.complete-profile-module .step-title {
		font-size: 32px;
		margin-bottom: 28px;
	}
	
	.complete-profile-module .steps-wrapper {
		padding-left: 30px;
		padding-right: 30px;
	}
	
	.complete-profile-module .wizards-wrapper {
		margin-top: -30px;
	}
	
	.complete-profile-module .wizard {
		right: -10%;
	}
	
	.complete-profile-module .wizard:nth-child(3) {
		right: -12%;
	}
	
	.complete-profile-module .wizards-wrapper {
		min-height: 300px;
	}
	
	.complete-profile-module[data-current-step="4"] .wizards-wrapper {
		min-height: 250px;
	}
}

@media (max-width: 767px) {
	.complete-profile-module .steps-wrapper .step h4 {
		width: 80px;
		line-height: 1;
	}
	
	.complete-profile-module .steps-wrapper {
		margin-bottom: 50px;
	}
	
	.complete-profile-module .steps-wrapper {
		padding-left: 15px;
		padding-right: 15px;
	}
	
	.complete-profile-module .steps-wrapper .step-circle {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	
	.complete-profile-module .steps-wrapper .step:nth-of-type(4) svg {
		width: 20px;
	}
	
	.complete-profile-module .step-title {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	.complete-profile-module .complete-block {
		padding: 40px 20px 50px;
	}
	.complete-profile-module .complete-block::before {
		height: 18px;
	}
	
	.complete-profile-module .complete-profile-actions {
		column-gap: 10px;
		justify-content: space-between;
		width: 100%;
	}
	
	.complete-profile-module .complete-profile-actions .btn {
		height: 44px;
		font-size: 14px;
		width: 100%;
		padding-left: 0;
		padding-right: 0;
		max-width: 160px;
	}
	
	.complete-profile-module .complete-profile-step:not(.step-4) .complete-profile-actions .btn.btn-next {
		margin-left: auto;
	}

	.complete-profile-module[data-current-step="4"] .wizards-wrapper { 
		margin-top: -60px;
	}

	.complete-profile-module .wizard:nth-child(3) {
		right: -60px;
	}
}

@media (max-width: 600px) {
	.complete-profile-module .form-field:not(.full-field) {
		width: 100%;
	}

	.complete-profile-module .wizard:nth-child(1),
	.complete-profile-module .wizard:nth-child(2),
	.complete-profile-module .wizard:nth-child(3) {
		right: 0;
	}

	.complete-profile-module .complete-block .dialog-vector {
		right: 180px;
		max-width: 50px;
	}

	.complete-profile-module .complete-profile-steps-list {
		min-height: 0 !important;
	}

	.complete-profile-module .wizards-wrapper {
		max-height: 300px !important;
	}
	
	.complete-profile-module[data-current-step="4"] .wizards-wrapper {
		max-height: 250px !important;
		margin-top: -50px;
	}
	
	.complete-profile-module .complete-profile-step.step-4 .complete-profile-welcome-message  {
		font-size: 24px;
	}

	.complete-profile-module .complete-profile-step.step-4 .complete-profile-welcome-message span {
		display: inline;
	}
}
/* END MODULE: END COMPLETE STEPS ------------------------------------- */