



/*Base*/
html, body {
	background: #f5f7fa;
	font-family: "Roboto", sans-serif;
	font-weight: 400;
	font-style: normal;
    color: #546274;
    font-size: 15px;
}
ul, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
}
ul.margins {
	margin-bottom: 10px;
	padding-left: 30px;
}
ul.margins li {
	list-style-type: disc;
}
a, a:hover {
	text-decoration: none;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
	cursor: not-allowed;
	background-color: #fff;
	opacity: 1;
}



/*General*/
.display-none {
	display: none;
}
.width100 {
	width: 100%;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}
.img-responsive {
	max-width: 100%;
}
.container-fluid.full {
	padding-left: 0;
	padding-right: 0;
}








/*Text*/
.upper {
	text-transform: uppercase;
}
.heading1 {

}
.heading2 {

}
.heading3 {

}
.heading4 {

}
.heading5 {

}
.heading6 {

}
.text-white {
	color: #fff;
}
.text-primary {
	color: #265a92 !important;
}



/*Backgrounds*/
.bg-primary {
	background: #265a92 !important;
}



/*Buttons*/
.btn {
	transition: all .3s ease;
	font-weight: 600;
	font-size: 15px;
	padding: 13px 30px;
	margin-bottom: 10px;
}
.btn:hover,
.btn:focus,
.btn:active:hover,
.btn:not(:disabled):not(.disabled):active:focus {
	outline: none !important;
	box-shadow: none !important;
}
.btn-sm {
	padding: 6px 10px;
}
.btn-lg {
	padding: 15px 25px;
}
.btn-primary {
	background: #1e85ff;
	border: 1px solid #1e85ff;
	color: white;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus {
	background: #0b5ed7;
	border: 1px solid #0b5ed7;
	color: white;
}
.btn-info {
	background: #fff;
	border: 1px solid #fff;
	color: #546274;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active:hover,
.btn-info:not(:disabled):not(.disabled):active:focus {
	background: #fff;
	border: 1px solid #fff;
	color: #546274;
}




/*Header*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	background: #fff;
	padding-top: 22px;
	padding-bottom: 22px;
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.05);
}
.header .logo {
	height: 46px;
}


/*Progress*/
.progress, .progress-stacked {
    --bs-progress-height: 8px;
}
.progress .progress-bar {
	background: #1e85ff;
}


.content {
	margin-top: 170px;
	margin-bottom: 100px;
}

.card {
	background: #ffffff;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.04);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.04);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 30px;
    border: none;
}
.card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1c2437;
    font-family: "Roboto", sans-serif;
    margin-bottom: 30px;
}



.form-group {
	margin-bottom: 25px;
}
.form-group label {
    font-size: 12px;
    font-weight: 700;
    color: #1c2437;
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.form-control,
.form-select {
    padding: 13px 20px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 14px;
    color: #546274;
}
.form-control:focus,
.form-select:focus {
	outline: none;
	box-shadow: none;
}

.form-check .form-check-label {
	padding-left: 5px;
    color: #546274;
    padding-top: 2px;
    font-weight: 400;
    text-transform: none;
    font-size: 15px;
}
.form-check-input[type=checkbox] {
	height: 18px;
	width: 18px;
	border-width: 2px;
}
.form-check-input[type=checkbox]:focus {
	outline: none;
	box-shadow: none;
}


.custom-error {
	color: #ee4e60;
	display: block;
}
.error-border {
	border-color: #ee4e60;
}





/*Form Check Box*/
.form-check.box {
	padding-left: 0px;
	position: relative;
}

.form-check.box label {
	border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 5px;
	padding: 12px 18px 14px 49px;
	min-width: 100%;
	cursor: pointer;
}
.form-check.box label:before {
	content: '';
	position: absolute;
	top: 17px;
	left: 18px;
	height: 16px;
	width: 16px;
	background: white;
	border-radius: 50%;
	border: 1px solid rgba(0, 0, 0, 0.12);
}
.form-check.box label:after {
	content: '';
	position: absolute;
	top: 21px;
	left: 22px;
	height: 8px;
	width: 8px;
	background: white;
	border-radius: 50%;
}
.form-check.box input {
	opacity: 0;
	position: absolute;
	top: 12px;
	left: 20px;
	margin-left: 0px;
	cursor: pointer;
}
.form-check.box input:checked + label {
	border-color: #1e85ff;
	color: #1e85ff;
	background: #e6f7ff;
}
.form-check.box input:checked + label:before {
	background: #1e85ff;
	border-color: #1e85ff;
}


/*Signature*/
#signature {
	max-width: 100% !important;
	width: 100% !important;
}



/*Form Movement*/
.hidden-step {
	display: none;
}


/*Toooltip*/
i.tooltip-icon {
    font-style: normal;
    text-transform: lowercase;
    background: #1e85ff;
    display: inline-block;
    height: 18px;
    width: 18px;
    text-align: center;
    border-radius: 18px;
    color: #fff;
}

.scroll-terms {
	height: 300px;
    overflow: auto;
    margin-bottom: 40px;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 20px;
}


/*Summary*/
.summary-title {
}
.summary-subtitle {
}



@media(min-width: 768px) {

.mobile-verify {
	display: none;
}
.desktop-verify {
	display: block;
}

}

@media(min-width: 1200px) {

.mobile-step-2 {
	display: none;
}
.desktop-step-2 {
	display: block;
}

}
