@import url('https://fonts.googleapis.com/css?family=DM+Sans&display=swap');
body {
	font-size: 13px;
	font-family: 'DM Sans', sans-serif;
	color: rgb(180, 162, 201);
	background: #244E97;
}

.indicator {
	z-index: 100000;
	text-align: center;
	clear: both;
	display: none;
	position: fixed;
	top: 30px;
	right: 20px;
	min-height: 50px;
	width: 300px;
	border-radius: 200px;
	background: aliceblue;
	/* box-shadow: 0px 0px 0px 1px #f1eeee */
}

.modal-title {
	color: #333;
	font-weight: bolder;
}
.policy {
	color: #333;
}
.policy .paragraph {
	padding-left: 15px;
}

/*------------------------------------------------------------------
[2.Input & Labels ]
*/

.form-group {
	margin-bottom: 60px;
	position: relative;
}

.formLabel {
	display: block;
	position: absolute;
	font-size: 20px;
	color: #999;
	font-weight: 500;
	line-height: 1.2;
	transition: all .2s;
}
.formLabel.active {
	-webkit-transform: translateY(-140%);
	transform: translateY(-140%);
	font-size: 16px;
}

.formInput {
	background-color: transparent;
	border-top: none;
	border-left: none;
	border-right: none;
	font-size: 24px;
	width: 100%;
	border-bottom: 2px solid #eee;
	display: block;
}
.formInput:focus {
	outline: none;
	border-bottom: 2px solid #ccc;
	-webkit-transition: border-bottom .5s;
	-moz-transition: border-bottom .5s;
	-ms-transition: border-bottom .5s;
	-o-transition: border-bottom .5s;
	transition: border-bottom .5s;
}
.formInput.input-error {
	border-bottom-color: rgba(0, 0, 0, 0.5);
}
.formInput.error {
	border-bottom-color: #ff6d6d;
}
.errorIcon {
	position: absolute;
	top: 8px;
	right: 0;
	display: none;
}
.errorIcon i {
	color: #ff6d6d;
	font-size: 18px;
}
.error {
	color: #ff6d6d;
}

.help-error {
	font-size: 14px;
	font-style: italic;
	color: rgba(0, 0, 0, 0.5);
	font-weight: bold;
	padding: 10px 0;
	display: none;
	text-align: right;
}
.help-error i {
	font-weight: bold;
	font-size: 16px;
	vertical-align: middle;
	float: right;
	margin-left: 20px;
}
.help-info {
	text-align: right;
	font-size: 13px;
	font-style: italic;
	font-weight: 600;
	padding: 10px 0;
}

.help-block {
	color: #ecb200;
	font-size: 14px;
}

/* Customize the label (the container) */
.checkbox-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 20px;
	width: 20px;
	background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
	background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
	background-color: #ff015b;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
	left: 7px;
	top: 3px;
	width: 6px;
	height: 10px;
	border: solid white;
	border-width: 0 2.5px 2.5px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }

/*------------------------------------------------------------------
[3. Buttons ]
*/
.btn {
	font-weight: 700;
	font-size: 15px;
}
.btn-rounded {
	border-radius: 4px;
}
.btn-blue {
	background: #ff015b;
	color: #fff !important;
	padding: 10px 30px !important;
	border: none;
	box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease 0s;
	cursor: pointer;
	outline: none;
}
.btn-blue:hover {
	background: #ff9600;
	box-shadow: 0px 8px 6px rgba(0, 0, 0, 0.2);
	transform: translateY(-7px);
}

.btn-green {
	background: #32b367;
	color: #fff;
	padding: 10px 30px !important;
}
.btn-green:hover {
	background: #12b957;
	color: #fff;
}

.btn-white-transparent {
	border: 2px solid #fff;
	background: none;
	color: #fff;
	padding: 10px 30px !important;
}
.btn-white-transparent:hover {
	background: #fff;
	color: #777;
}

/*------------------------------------------------------------------
[4. Loader / .luna-loader-container]
*/
.luna-loader-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	background: #fff;
	z-index: 1000;
}
.luna-loader {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	left: 50%;
	margin-left: -25px;
	border: 4px solid #f3f3f3; /* Light grey */
	border-top: 4px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite;
}

/*------------------------------------------------------------------
[5. Signup Container / .luna-signup-container]
*/
.luna-signup-container {
	display: none;
	position: relative;
	z-index: 0;
	overflow-x: hidden;
}

/*------------------------------------------------------------------
[5.1 Left Panel / .luna-signup-left]
*/
.luna-signup-left {
	padding: 60px 30px 30px;
	background: url("../images/message.svg") right bottom no-repeat #fff;
	position: fixed;
	width: 200px;
}

.luna-signup-left:after {
	position: absolute;
	content: '';
	display: block;
	bottom: 0;
	right: -58px;
	z-index: 500;
	/* background:url(../images/bg.png); */
	width: 102px;
	height: 133px;
}

.luna-signup-left-overlay {
	z-index: -1;
	position: fixed;
	height: auto;
	display: block;
	content: '';
	top: 0;
	left: 0;
	width: 19%;
	background: url("../images/bg-left.png") right bottom no-repeat #fff;
}

.luna-signup-left p {
	font-size: 18px;
	line-height: 30px;
	color: #999;
}

.luna-navigation {
	height: calc(100% - 70px);
	position: relative;
}

.dots {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 25%;
	margin-left: -10px;
	margin-top: -20px;
}
.dots li {
	margin-bottom: 6px;
	text-align: center;
	width: 20px;
}
.dots span {
	position: relative;
	width: 8px;
	height: 8px;
	display: block;
	margin: auto;
	border-radius: 50%;
	background: #ff015b;
	opacity: 0.8;
}
.dots span:hover {
	cursor: default;
}
.dots span.selected {
	width: 10px;
	height: 10px;
	opacity: 1;
	margin-top: 10px;
}
.dots span.selected:after {
	content: '';
	position: absolute;
	top: -6px;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 10px 5px;
	border-color: transparent transparent #ff015b transparent;
}
.toPrev,
.toNext {
	width: 50px;
	height: 50px;
	border: 2px solid #244E97;
	color: #244E97;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	font-size: 30px;
	line-height: 50px;
	position: absolute;
	left: 25%;
	margin-left: -20px;
	z-index: 1000;
}
.toNext:hover,
.toPrev:hover {
	text-decoration: none;
	-ms-transform: scale(1.2); /* IE 9 */
	-webkit-transform: scale(1.2); /* Safari */
	transform: scale(1.2);
	color: #244E97;
}
.toNext {
	bottom: 0;
}
/*------------------------------------------------------------------
[5.1.1. Logo / .luna-signup-logo]
*/
.luna-signup-logo {
	margin-bottom: 20px;
	max-width: 200px;
	width: 60%;
	margin-left: -10px;
}

.employed {
	display: none;
}

.selfemployed {
	display: none;
}

span.imgCheckbox,
.imgChked {
	border: unset !important;
}

.employer2 {
	display: none;
}

/*------------------------------------------------------------------
[5.2. Right Panel / .luna-signup-right]
*/
.luna-signup-right {
	position: relative;
	margin-left: 200px;
	/*overflow-y: auto;*/
	padding: 40px 30px 0 0;
}

/*------------------------------------------------------------------
[5.2.1 Steps Counts / .steps-count]
*/
.steps-count {
	font-weight: bold;
	font-size: 15px;
	text-align: right;
	margin-bottom: 50px;
}
.step-current {
	font-size: 13px;
}

.name {
	font-size: 16px;
	color: #ff9600;
}

/*------------------------------------------------------------------
[5.2.2 Steps / .luna-steps]
*/
.luna-steps {
	min-height: 300px;
	position: relative;
}

.luna-steps .step {
	padding-left: 60px;
	position: relative;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
}
.step.step-active {
	transform: none;
	visibility: visible;
	opacity: 1;
}

.step .form-group {
	display: none;
}
.step.step-active .form-group {
	display: block;
}

.step-hide {
	-webkit-transform: translateY(-50px) !important;
	transform: translateY(-50px) !important;
	display: none;
}

.step-label {
	font-size: 16px;
	margin-bottom: 5px;
	font-weight: 500;
	color: #fff;
	margin-top: -29px;
}

.luna-steps .checkbox-inline,
.luna-steps .radio-inline {
	font-size: 20px;
	font-weight: 500;
	padding-left: 25px;
	line-height: 20px;
	margin-right: 20px;
	margin: 10px 20px 10px 0;
}
.checkbox-inline + .checkbox-inline,
.radio-inline + .radio-inline {
	margin-left: 0;
}

.step-title {
	color: #ff9600;
	font-size: 22px;
	margin-bottom: 30px;
	margin-top: -40px;
}
.step-sub-title {
	font-size: 20px;
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
.centered {
	text-align: center;
	font-size: 18px;
	color: #fff;
}
.small-text {
	font-size: 14px;
	color: #eee;
	padding-bottom: 8px;
}

/*------------------------------------------------------------------
[5.2.2.2 Confirm Step / .step-confirm]
*/

.step-confirm {
	height: 0;
	overflow: hidden;
}

.step-confirm.step-active {
	height: initial;
	overflow: initial;
}

.step-confirm.step-active .fadeTop {
	opacity: 0;
	animation: animateInput .3s forwards;
	-webkit-transform: translateY(50px);
	transform: translateY(50px);
}

.step-confirm.step-active .fadeTop:nth-of-type(1) {
	animation-delay: 0.5s;
}
.step-confirm.step-active .fadeTop:nth-of-type(2) {
	animation-delay: 0.7s;
}
.step-confirm.step-active .fadeTop:nth-of-type(3) {
	animation-delay: 0.9s;
}
.step-confirm.step-active .fadeTop:nth-of-type(4) {
	animation-delay: 1.05s;
}
.step-confirm.step-active .fadeTop:nth-of-type(5) {
	animation-delay: 1.20s;
}
.step-confirm.step-active .fadeTop:nth-of-type(6) {
	animation-delay: 1.35s;
}
.step-confirm.step-active .fadeTop:nth-of-type(7) {
	animation-delay: 1.5s;
}
.step-confirm.step-active .fadeTop:nth-of-type(8) {
	animation-delay: 1.65s;
}
.step-confirm.step-active .fadeTop:nth-of-type(9) {
	animation-delay: 1.75s;
}
.step-confirm.step-active .fadeTop:nth-of-type(10) {
	animation-delay: 1.85s;
}
.step-confirm.step-active .fadeTop:nth-of-type(11) {
	animation-delay: 1.95s;
}
.step-confirm.step-active .fadeTop:nth-of-type(12) {
	animation-delay: 2s;
}
.step-confirm.step-active .fadeTop:nth-of-type(13) {
	animation-delay: 2.05s;
}
.step-confirm.step-active .fadeTop:nth-of-type(14) {
	animation-delay: 2.08s;
}
.step-confirm.step-active .fadeTop:nth-of-type(15) {
	animation-delay: 2.1s;
}

.step-confirm-buttons {
	padding: 15px;
	text-align: center;
}

.agreement {
	font-size: 14px !important;
}
.agreement a {
	color: #48a5ea;
	text-decoration: underline;
	font-weight: 600;
}

.confirm-label,
.confirm-text {
	font-size: 14px;
	margin-bottom: 10px;
}
.confirm-label {
	color: #999;
	font-size: 13px;
}

/*------------------------------------------------------------------
[5.2.3 Buttons / .button-container]
*/
.button-container {
	text-align: right;
	position: relative;
	z-index: 10000;
	width: 100%;
	margin-top: 25px;
}
.button-container > div {
	display: inline-block;
	text-align: center;
	float: right;
	margin: 0 0 10px 10px;
}
.button-container > div a {
	margin-bottom: 10px;
	display: block;
}
.prevStep {
	outline: none;
	display: none;
}
.button-container a,
.button-container a:hover,
.button-container a:focus,
.button-container a:active,
.button-container a:active:focus {
	outline: none;
}

/*------------------------------------------------------------------
[6. Animations]
*/

.luna_loading {
	width: 60px;
	height: 60px;
	margin: auto;
	margin-bottom: 20px;
	display: block;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes animateInput {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}
@keyframes animateInput {
	0% {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

/*------------------------------------------------------------------
[9. BootStrap Select]
*/
.bootstrap-select.form-control {
	background: none;
	border-radius: 0;
	box-shadow: none;
	height: auto;
}

.bootstrap-select button {
	border: none;
	background: none;
	color: #333 !important;
	font-weight: normal;
	border-bottom: 2px solid #eee;
	border-radius: 0;
	box-shadow: none;
	outline: none !important;
	font-size: 20px;
}

.bootstrap-select .btn-default:hover,
.bootstrap-select.open > .dropdown-toggle.btn-default:hover {
	background: none;
	border-color: #ccc;
	box-shadow: none !important;
}

.btn-group.open .dropdown-toggle {
	box-shadow: none;
}

.bootstrap-select .btn-default.active,
.bootstrap-select .btn-default:active,
.bootstrap-select.open > .dropdown-toggle.btn-default,
.bootstrap-select .btn-default.focus,
.bootstrap-select .btn-default:focus {
	background: none;
	outline: none !important;
	border-color: #ccc;
	color: #333;
}

.bootstrap-select .dropdown-menu {
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
	background-color: #fff;
	border-radius: 0;
}

.bootstrap-select .dropdown-menu a:focus {
	outline: none;
}

.bootstrap-select.btn-group .dropdown-menu li a {
	padding: 6px 20px;
}

.bootstrap-select.btn-group .dropdown-menu li.selected a {
	color: #fff;
	background: #48a5ea;
}

.tooltip-inner {
	color: #8a8a8a;
	background: #fff;
	border: 2px solid #999;
	font-size: 14px;
}
.tooltip.top .tooltip-arrow {
	border-top-color: #999;
}

/* Luna Default Theme  */

.luna-default .bootstrap-select button {
	border: 2px solid #c9c9c9;
	border-radius: 3px;
	font-size: 18px;
}
.luna-default .errorIcon {
	top: 37px;
	right: 10px;
	cursor: pointer;
	z-index: 90;
}

.luna-default .input-group-addon {
	border: 2px solid #c9c9c9;
}

.luna-default .input-group-addon:first-child {
	border-right: 0;
}

.form-control {
	border: 2px solid #f4f4f4;
	box-shadow: none;
	border-radius: 3px;
	height: 40px;
	font-size: 18px;
	background-color: #fffdfa;
}

.form-control:focus {
	border: 2px solid rgb(238, 231, 247);
	opacity: 0.7;
}

.error {
	border: 2px solid #ff6d6d !important;
}

.form-control.error {
	border-color: #ff6d6d !important;
}

/* .form-control:focus {
    border-color:#52bad5;
    box-shadow:none;
} */

.luna-default .form-group {
	margin-bottom: 15px;
}

.luna-default .step-label {
	margin-top: 0;
}

/*------------------------------------------------------------------
[8. Responsive Styles]
*/

@media only screen and (max-width: 990px) {
	.luna-signup-left {
		padding: 60px 15px 30px;
	}

	.luna-signup-right {
		padding-right: 0;
	}

	.luna-signup-testimonial {
		height: 360px;
	}

	.luna-steps .step {
		padding-left: 15px;
	}
}

@media only screen and (max-width: 767px) {
	.container {
		width: 100%;
	}

	.luna-signup-logo {
		margin: 20px auto;
	}

	.step-hide {
		height: 0;
		overflow: hidden;
	}
	.luna-signup-container:after {
		display: none;
	}
	.luna-signup-left {
		padding: 15px;
		width: 100%;
		position: initial;
		height: auto !important;
	}

	.luna-navigation {
		position: relative;
		height: auto;
		padding: 20px;
	}
	.luna-navigation:after {
		clear: both;
		content: '';
		display: block;
	}
	.dots {
		position: initial;
	}
	.dots {
		text-align: center;
	}
	.dots li {
		display: inline-block;
	}
	.toNext {
		float: right;
		transform: rotate(270deg);
		right: 0;
		top: 0;
		left: auto;
	}
	.toPrev {
		float: left;
		transform: rotate(270deg);
		left: 0;
		top: 0;
		bottom: auto;
		left: auto;
	}

	.luna-signup-right {
		min-height: 400px;
		padding: 20px 0;
		margin-left: 0;
	}
	.luna-steps {
		height: auto;
	}
	.luna-steps .step {
		padding: 0 15px;
		position: relative;
	}
	.steps-count,
	.button-container {
		padding-right: 15px;
	}
	.step-confirm .form-group {
		margin-bottom: 0;
		padding: 10px 0;
	}
	.step-confirm .control-label {
		font-size: 16px;
	}
	.step-confirm input,
	.step-confirm .bootstrap-select button {
		padding: 6px 15px;
		font-size: 16px;
	}

	.button-container {
		bottom: 15px;
	}

	.formLabel,
	.formInput,
	.step-label {
		font-size: 20px;
	}

	.luna-signup-left:after {
		display: none;
	}

	.confirm-label {
		text-align: left;
		margin-bottom: 5px;
	}
	.confirm-text {
		margin-bottom: 20px;
	}
	.step-confirm-buttons {
		padding: 15px 0;
	}
}
.Firstimage {
	margin-top: 10px;
	margin-bottom: 0;
}
.image1 {
	width: 100px;
	display: inline-block;
	position: relative;
	left: 45%;
	/* margin-bottom: 40px; */
}
.image3 {
	width: 70px;
	/* margin: 0 auto; */
	margin-bottom: 10px;
}

.mb-5 {
	margin-bottom: 10px;
}

@media only screen and (max-width: 990px) {
	.image1 {
		width: 200px;
		display: inline-block;
		margin-bottom: 10px;
		position: relative;
		left: 15%;
	}
}

/* upload */
.uploader {
	display: block;
	clear: both;
	margin: 0 auto;
	width: 100%;
	/* max-width: 600px; */
	float: left;
}
.uploader label {
	float: left;
	clear: both;
	width: 100%;
	padding: 2rem 1.5rem;
	text-align: center;
	background: #fff;
	border-radius: 8px;
	border: 2px solid #eee;
	transition: all .2s ease;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.uploader label:hover {
	cursor: pointer;
	border-color: #dedede;
}
.uploader label.hover {
	border: 2px solid #eee;
	box-shadow: inset 0 0 0 6px #eee;
}
.uploader label.hover #start i.fa {
	-webkit-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0.3;
}
.uploader #start {
	float: left;
	clear: both;
	width: 100%;
}
.uploader #start.hidden {
	display: none;
}
.uploader #start i.fa {
	font-size: 50px;
	margin-bottom: 1rem;
	transition: all .2s ease-in-out;
}
.uploader #response {
	float: left;
	clear: both;
	width: 100%;
}
.uploader #response.hidden {
	display: none;
}
.uploader #response #messages {
	margin-bottom: .5rem;
}
.uploader #file-image {
	display: inline;
	margin: 0 auto .5rem auto;
	width: auto;
	height: auto;
	max-width: 180px;
}
.uploader #file-image.hidden {
	display: none;
}
.uploader #notimage {
	display: block;
	float: left;
	clear: both;
	width: 100%;
}
.uploader #notimage.hidden {
	display: none;
}
.uploader progress,
.uploader .progress {
	display: inline;
	clear: both;
	margin: 0 auto;
	width: 100%;
	max-width: 180px;
	height: 8px;
	border: 0;
	border-radius: 4px;
	background-color: #eee;
	overflow: hidden;
}
.uploader .progress[value]::-webkit-progress-bar {
	border-radius: 4px;
	background-color: #eee;
}
.uploader .progress[value]::-webkit-progress-value {
	background: linear-gradient(to right, #393f90 0%, #454cad 50%);
	border-radius: 4px;
}
.uploader .progress[value]::-moz-progress-bar {
	background: linear-gradient(to right, #393f90 0%, #454cad 50%);
	border-radius: 4px;
}
.uploader input[type="file"] {
	display: none;
}
.uploader div {
	margin: 0 0 .5rem 0;
	color: #5f6982;
}
.uploader .btn {
	display: inline-block;
	margin: .5rem .5rem 1rem .5rem;
	clear: both;
	font-family: inherit;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	text-transform: initial;
	border: none;
	border-radius: .2rem;
	outline: none;
	padding: 0 1rem;
	height: 36px;
	line-height: 36px;
	color: #fff;
	transition: all 0.2s ease-in-out;
	box-sizing: border-box;
	background: #454cad;
	border-color: #454cad;
	cursor: pointer;
}

/* modal */
.show {
	/* position: absolute; */
	/* top: 50%; */
	/* left: 50%; */
	width: 150px;
	height: 40px;
	/* margin-top: -20px; */
	/* margin-left: -75px; */
	background: #e74c3c;
	color: #fff;
	border-radius: 5px;
	border: 0;
	border-bottom: 2px solid #c0392b;
	cursor: pointer;
}
.show:hover {
	background: #c0392b;
}

.show:active {
	transform: scale(0.9);
}

/* // Close Button */

.close {
	position: absolute;
	top: 0;
	right: 0;
	width: 35px;
	height: 30px;
	background: #000;
	color: #fff;
	cursor: pointer;
	border: 0;
}

/* The mask */

.mask {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(52, 73, 94, 0.8);
	z-index: 50;
	visibility: hidden;

	opacity: 0;

	transition: 0.3s;
}

/* // Modal */

/* .modal{
    position: fixed;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 300px;
    margin-left: -200px;
    margin-top: -150px;
    background: #bdc3c7;
    z-index: 100;
    visibility: hidden;
    
    opacity: 0;
    
    transition: 0.3s ease-out;
    
    transform: translateY(45px);
  } */

/* // Class Active */

.active {
	visibility: visible;
	opacity: 1;
}

/* // When active class is added, that affects the modal class */

.active + .modal {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.twitter-typeahead .tt-query,
.twitter-typeahead .tt-hint {
	margin-bottom: 0;
}

.tt-dropdown-menu {
	min-width: 160px;
	margin-top: 2px;
	padding: 5px 0;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, .2);
	*border-right-width: 2px;
	*border-bottom-width: 2px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
	-webkit-background-clip: padding-box;
	-moz-background-clip: padding;
	background-clip: padding-box;
}

.tt-suggestion {
	display: block;
	padding: 3px 20px;
}

.tt-suggestion.tt-is-under-cursor {
	color: #fff;
	background-color: #0081c2;
	background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
	background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
	background-image: -o-linear-gradient(top, #0088cc, #0077b3);
	background-image: linear-gradient(to bottom, #0088cc, #0077b3);
	background-repeat: repeat-x;
	filter: progid:DXImageTransform.Microsoft.gradient(
			startColorstr='#ff0088cc',
			endColorstr='#ff0077b3',
			GradientType=0
		);
}

.tt-suggestion.tt-is-under-cursor a {
	color: #fff;
}

.tt-suggestion p {
	margin: 0;
}

.tt-menu {
	width: 100%;
}

.scrolling {
	overflow-y: scroll;
	/* overflow-x: hidden; */
	max-height: 150px;
}

#style-2::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	background-color: #f5f5f5;
}

#style-2::-webkit-scrollbar {
	width: 12px;
	background-color: #f5f5f5;
}

#style-2::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
	background-color: #ff9600;
}

/* MODAL */
.modal__overlay {
	z-index: 10000;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.5);
	transition: opacity 200ms;
	visibility: hidden;
	opacity: 0;
}

.modal__overlay:target {
	visibility: visible;
	opacity: 1;
}

.modal__cancel {
	position: absolute;
	width: 100%;
	height: 100%;
	cursor: default;
}
/* POPUP */
.popup {
	width: 500px;
	position: relative;
	margin: 75px auto;
	padding: 20px;
	border: 1px solid #666;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
	background: #fff;
}

.popup__close {
	position: absolute;
	width: 20px;
	height: 20px;
	top: 20px;
	right: 20px;
	opacity: 0.8;
	transition: all 200ms;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
	color: #666;
}
.popup__close:hover {
	opacity: 1;
	text-decoration: none;
}

.popup__content {
	max-height: 500px;
	overflow: hidden;
}
/* END POPUP */
/* END MODAL */

.verf-title {
	color: #dd6b4d;
	font-size: 18px;
}

.image3 {
	width: 70px;
	/* margin: 0 auto; */
	margin-bottom: 10px;
}

.mb-5 {
	margin-bottom: 10px;
}

.close {
	color: #000000;
}

.media-body,
.media-left,
.media-right {
	padding-left: 5px;
}
.text-white {
	color: #fff !important;
	background-color: #293462 !important;
	border-color: #293462 !important;
	font-weight: 500;
}

.fw-600 {
	font-weight: 600;
}

.fade-text {
	color: #999 !important;
}

.home-link {
	color: #fff;
	text-decoration: underline;
	margin-left: 8px;
}

.external-link {
  font-size: 12px;
color: #ff9600;
}
.external-link {
	text-decoration: underline;
}

a:hover {
	color: inherit;
}





.product-holder {
	margin: 2% auto;
	text-align: center;
}

.product {
	width: 250px;
	 /* height: 150px; */
	margin: 0 auto;
}

.product-type {
	padding-top: 2%;
	padding-bottom: 4%;
	border-color: transparent;
	margin: 20px;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	cursor: pointer;
	display: inline-block;
	border-color: rgba(180, 162, 201, 0.233);
}

.selected {
	background-color: #68bd97;
	color: white;
	transition: 0.45s all;
}
.hovered {
	border-color: #68bd97;
	border-width: 1px;
	border-style: solid;
	border-radius: 3px;
	transition: color 0.30s ease-in-out;
}


.bold-text {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

.prim-color {
	color: #ff015b;
	text-decoration: underline;
}

.round-icon {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

.count {
	position: absolute;
	left: 14px;
	width: 18px;
	height: 18px;
	background-color: rgb(250, 71, 61);
	border-radius: 50%;
	text-align: center;
	display: block;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.custom--help {
	--cooltipz-cursor: help;
	--cooltipz-font-size: 12px;
	--cooltipz-bg-color: #fff;
  --cooltipz-text-color: #000;
  }