﻿
.click_here {
	font-size: 26px;
	color: #d82d00
}
#regForm {
	background-color: #fff;
	margin: 100px auto;
	padding: 40px;
	width: 70%;
	min-width: 300px;
	box-shadow: 1px 5px 15px 0
}
.lable-right {
	text-align: right
}
input {
	padding: 10px;
	width: 100%;
	font-size: 17px;
	border: 1px solid #aaa
}
.tab {
	display: none
}
.step {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border: none;
	border-radius: 50%;
	display: inline-block;
	opacity: .5
}
.step.active {
	opacity: 1
}
.step.finish {
	background-color: #4CAF50
}
.onoffswitch {
	position: relative;
	width: 90px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none
}
.onoffswitch-checkbox {
	display: none
}
.onoffswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	border: 2px solid #999;
	border-radius: 20px
}
.onoffswitch-inner {
	display: block;
	width: 200%;
	margin-left: -100%;
	-moz-transition: margin 0.3s ease-in 0s;
	-webkit-transition: margin 0.3s ease-in 0s;
	-o-transition: margin 0.3s ease-in 0s;
	transition: margin 0.3s ease-in 0s
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
	display: block;
	float: left;
	width: 50%;
	height: 30px;
	padding: 0;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box
}
.onoffswitch-inner:before {
	content: "YES";
	padding-left: 10px;
	background-color: #006fc1;
	color: #FFF
}
.onoffswitch-inner:after {
	content: "NO";
	padding-right: 10px;
	background-color: #e10000;
	color: #FFF;
	text-align: right
}
.onoffswitch-switch {
	display: block;
	width: 18px;
	margin: 6px;
	background: #FFF;
	border: 2px solid #999;
	border-radius: 20px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 56px;
	-moz-transition: all 0.3s ease-in 0s;
	-webkit-transition: all 0.3s ease-in 0s;
	-o-transition: all 0.3s ease-in 0s;
	transition: all 0.3s ease-in 0s
}
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
	margin-left: 0
}
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
	right: 0
}
.full-width-container {
	width: 100%;
	min-width: 320px
}
.sized-container {
	max-width: 900px;
	width: 100%
}
.slide-container {
	position: relative;
	left: 0;
	overflow: hidden
}
.slide {
	float: left
}
.button-container {
	overflow: hidden;
	padding-top: 30px
}
.button-container button {
	float: right;
	margin-left: 30px
}
.pagination-container {
	margin-top: 0
}
.pagination {
	width: 100%;
	text-align: center;
	padding: 0 15px;
	margin-bottom: 20px
}
.indicator {
	width: 35px;
	height: 35px;
	border: 4px solid lightgray;
	border-radius: 50%;
	display: inline-block;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	position: relative
}
.indicator .tag {
	position: absolute;
	top: -30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	color: lightgray;
	white-space: nowrap
}
.indicator.active, .indicator.complete {
	border-color: #199abd
}
.indicator.active .tag, .indicator.complete .tag {
	color: #199abd
}
.indicator.complete:after {
	position: absolute;
	color: #4f1966;
	left: 4px;
	top: 3px;
	font-size: 14px
}
.progress-bar-container {
	width: 10%;
	height: 4px;
	display: inline-block;
	background-color: lightgray;
	position: relative;
	top: 15px
}
.progress-bar-container:last-of-type {
	display: none
}
.progress-bar-container .progress-bar {
	width: 0;
	height: 100%;
	background-color: #199abd
}
.next1 {
	width: 90px;
	text-align: center;
	float: right;
	margin-top: 15px;
	margin-right: 0
}
.previous1 {
	width: auto;
	text-align: center;
	float: right;
	margin-top: 15px;
	margin-left: 0px;
	margin-right: 0
}
.app-line {
	margin-bottom: 50px!important;
	margin-left: 25px!important
}
/*CheckBox Css*/

.radio-tile-group {
	
	flex-wrap: wrap;
	-webkit-box-pack: center;
	justify-content: center;
	display:flex
}
.radio-tile-group .input-container {
	position: relative;
	height: 2rem;
	width: 40rem;
margin:.5rem
}
.radio-tile-group .input-container .radio-button {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	margin: 0;
	cursor: pointer
}
.radio-tile-group .input-container .radio-tile {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-direction: column;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border: 2px solid #199abd;
	border-radius: 5px;
	padding: 1rem;
	-webkit-transition: -webkit-transform 300ms ease;
	transition: -webkit-transform 300ms ease;
	transition: transform 300ms ease;
	transition: transform 30ms ease, -webkit-transform 30ms ease;
}
.radio-tile-group .input-container .icon svg {
	fill: #079ad9;
	width: 3rem;
	height: 3rem
}
.radio-tile-group .input-container .radio-tile-label {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #199abd
}
.radio-tile-group .input-container .radio-button:checked+.radio-tile {
	background-color: #199abd;
	border: 2px solid #199abd;
	color: #fff;
	-webkit-transform: scale(1.1, 1.1);
	transform: scale(1.1, 1.1)
}
.radio-tile-group .input-container .radio-button:checked+.radio-tile .icon svg {
	fill: #fff;
	background-color: #4648ca
}
.radio-tile-group .input-container .radio-button:checked+.radio-tile .radio-tile-label {
	color: #fff;
	background-color: #199abd
}
@media (max-width:1024px) {
.build-btn {
	margin-right: 40px !important;
}
.header_btn a.ttm-btn {
	margin-right: 0;
	font-size: 12px;
	padding: 9px 8px 10px 8px
}
.radio-tile-group .input-container {
	width: auto
}
.radio-tile-group {
	margin: auto 0
}
.site-branding img {
	width: 150px
}
.radio-tile-group .input-container .radio-tile-label {
font-size:.8rem
}
.header_btn #appointment {
	top: 100%
}
.slide-button {
	margin-right: 0px!important;
	padding: 9px 23px 10px 22px!important
}
.slide-button-mob {
	width: 50%
}
.indicator {
	height: 22px;
	border: 3px solid lightgray
}
.progress-bar-container {
	height: 3px;
	top: 10px
}
}
@media (max-width:767px) {
.header_btn a.ttm-btn {
	margin-right: 0;
	margin-left: 0;
	font-size: 12px;
	padding: 9px 8px 10px 8px
}
.radio-tile-group .input-container {
	width: auto
}
.radio-tile-group {
	margin: auto 0
}
.site-branding img {
	width: 150px
}
.radio-tile-group .input-container .radio-tile-label {
font-size:.8rem
}
.header_btn #appointment {
	top: 100%
}
.slide-button {
	margin-right: 0px!important;
	padding: 9px 23px 10px 22px!important
}
.slide-button-mob {
	width: 50%
}
.pagination {
	padding: 0 0px!important;
	margin-bottom: 10px!important
}
.header_btn #appointment {
	padding: 20px 10px 20px 10px!important
}
.build-btn {
	margin-right: 40px!important
}
.indicator {
	height: 16.3px;
	width: 18px;
	border: 3px solid lightgray
}
.progress-bar-container {
	height: 3px;
	width: 3%;
	top: 7px
}
}
.fleft {
	float: left!important
}
.panel-close {
    font-size: 20px;
    color: #fff !important;
    font-weight: 100;
    padding: 5px 12px;
    text-decoration: none;
    position: absolute;
    top: 0px;
    z-index:9;
}
    .panel-close:hover {
        background: #bc290a;
        color: #fff
    }
.ttm-stickable-header.fixed-header .header_btn #appointment {
	top: 0
}
.mb100 {
	margin-bottom: 100px!important
}
.panel-close {
    background: #bc290a;
}
.next1, .previous1 {
    background-color: #bc290a;
    color: #fff !important;
    padding: 10px;
    border: 1px solid #bc290a !important;
    text-decoration:none;
}
.next1:hover, .previous1:hover {
	color: #fff !important;
	background: #bc290a !important;
	border: 1px solid #bc290a !important;
}
.carouselLength a {
    color: #bc290a;
    text-decoration: none;
}
.indicator.active, .indicator.complete {
    border-color: #bc290a;
}
.radio-tile-group .input-container .radio-button:checked + .radio-tile {
    background-color: #bc290a;
    border: 2px solid #bc290a;
    margin-left: 3px;
    margin-right: 3px;
}
.radio-tile-group .input-container .radio-button:checked+.radio-tile .radio-tile-label {
	background-color: #bc290a;
}
.radio-tile-group .input-container .radio-tile {
    border: 2px solid #bc290a;
}
.radio-tile-group .input-container .radio-tile-label {
    color: #bc290a;
}
.progress-bar-container .progress-bar {
    background-color: #bc290a;
}
.question-heading {
    font-size: 18px;
    font-family: 'Mont-HeavyDEMO';
    padding-bottom: 0px;
    margin-top: 5px;
}

.click_here_modal:hover {
    text-decoration: none;
    color: #bc290a;
}

input {
    width: auto;
}
.click_here_modal {
    text-decoration: none;
    color: #bc290a;
}

.wdth_60 {
    max-width: 800px;
    width: 100%;
}

.cross_header {
    justify-content: end;
    border: none;
}

.txt-upper.app-online {
    text-transform: uppercase;
    font-family: 'SF UI Display Medium';
    margin-bottom: 30px;
}

.heading_h6{
    font-size: 1.375rem;
    font-weight: 300;
    margin-top: 20px;
    font-family: 'SF UI Display Light';
}

.modal {
    background: rgb(0 0 0 / 0%) !important;
    -o-filter: blur(20px);
    -ms-filter: blur(20px);
    -moz-filter: blur(20px);
    backdrop-filter: blur(5px);
}




.formbold-mb-5 {
    margin-bottom: 20px;
    position: relative;
}

.formbold-pt-3 {
    padding-top: 12px;
}

.formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
}

.formbold-form-label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    margin-bottom: 12px;
}

.formbold-form-label-2 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

.formbold-form-input {
    width: 100%;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    background: white;
    font-weight: 500;
    font-size: 16px;
    color: #6b7280;
    outline: none;
    resize: none;
}

    .formbold-form-input:focus {
        border-color: #6a64f1;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
    }

.formbold-btn {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    padding: 14px 32px;
    border: none;
    font-weight: 600;
    background-color: #6a64f1;
    color: white;
    cursor: pointer;
}

    .formbold-btn:hover {
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
    }

.formbold--mx-3 {
    margin-left: -12px;
    margin-right: -12px;
}

.formbold-px-3 {
    padding-left: 12px;
    padding-right: 12px;
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.w-full {
    width: 100%;
}

.formbold-file-input input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}

.formbold-file-input label {
    position: relative;
    border: 1px dashed #bc290a;
    border-radius: 6px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
    width: 58%;
    margin: auto;
}

.formbold-drop-file {
    display: block;
    font-weight: 600;
    color: #bc290a;
    font-size: 20px;
    margin-bottom: 8px;
}

.formbold-or {
    font-weight: 500;
    font-size: 16px;
    color: #bc290a;
    display: block;
    margin-bottom: 8px;
}

.formbold-browse {
    font-weight: 500;
    font-size: 16px;
    color: #bc290a;
    display: inline-block;
    padding: 8px 28px;
    border: 1px solid #bc290a;
    border-radius: 4px;
}

.formbold-file-list {
    border-radius: 6px;
    background: #f5f7fb;
    padding: 16px 32px;
}

.formbold-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .formbold-file-item button {
        color: #bc290a;
        border: none;
        background: transparent;
        cursor: pointer;
    }

.formbold-file-name {
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    padding-right: 12px;
}

.formbold-progress-bar {
    margin-top: 20px;
    position: relative;
    width: 100%;
    height: 6px;
    border-radius: 8px;
    background: #e2e5ef;
}

.formbold-progress {
    position: absolute;
    width: 75%;
    height: 100%;
    left: 0;
    top: 0;
    background: #6a64f1;
    border-radius: 8px;
}

.progress {
    height: 40px;
    margin-bottom: 10px;
}

.progress .progress-bar {
    background: #f4911d;
}

.modal-btn {
    background: #bc290a !important;
    color: #fff !important;
    max-width: 100%;
    padding: 10px 30px;
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: 18px;
}

.modal-title {
    font-family: 'Mont-HeavyDEMO';
    font-size: 1.5rem;
}

.received_email_span {
    font-family: 'Mont-HeavyDEMO';
}

.onboarding_modal {
    color: #bc290a;
    cursor: pointer;
    text-decoration:none;
}
.onboarding_modal:hover{
    color: #bc290a;
}

.swal-icon--success {
	border-color: #a5dc86
}

	.swal-icon--success:after, .swal-icon--success:before {
		content: "";
		border-radius: 50%;
		position: absolute;
		width: 60px;
		height: 120px;
		background: #fff;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg)
	}

	.swal-icon--success:before {
		border-radius: 120px 0 0 120px;
		top: -7px;
		left: -33px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transform-origin: 60px 60px;
		transform-origin: 60px 60px
	}

	.swal-icon--success:after {
		border-radius: 0 120px 120px 0;
		top: -11px;
		left: 30px;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		-webkit-transform-origin: 0 60px;
		transform-origin: 0 60px;
		-webkit-animation: rotatePlaceholder 4.25s ease-in;
		animation: rotatePlaceholder 4.25s ease-in
	}

.swal-icon--success__ring {
	width: 80px;
	height: 80px;
	border: 4px solid #66993e;
	border-radius: 50%;
	box-sizing: content-box;
	position: absolute;
	left: -4px;
	top: -4px;
	z-index: 2
}

.swal-icon--success__hide-corners {
	width: 5px;
	height: 90px;
	background-color: #fff;
	padding: 1px;
	position: absolute;
	left: 28px;
	top: 8px;
	z-index: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.swal-icon--success__line {
	height: 5px;
	background-color: #66993e;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 2
}

.swal-icon--success__line--tip {
	width: 25px;
	left: 14px;
	top: 46px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-animation: animateSuccessTip .75s;
	animation: animateSuccessTip .75s
}

.swal-icon--success__line--long {
	width: 47px;
	right: 8px;
	top: 38px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: animateSuccessLong .75s;
	animation: animateSuccessLong .75s
}

@-webkit-keyframes rotatePlaceholder {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg)
	}

	to {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg)
	}
}

@keyframes rotatePlaceholder {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg)
	}

	12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg)
	}

	to {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg)
	}
}

@-webkit-keyframes animateSuccessTip {
	0% {
		width: 0;
		left: 1px;
		top: 19px
	}

	54% {
		width: 0;
		left: 1px;
		top: 19px
	}

	70% {
		width: 50px;
		left: -8px;
		top: 37px
	}

	84% {
		width: 17px;
		left: 21px;
		top: 48px
	}

	to {
		width: 25px;
		left: 14px;
		top: 45px
	}
}

@keyframes animateSuccessTip {
	0% {
		width: 0;
		left: 1px;
		top: 19px
	}

	54% {
		width: 0;
		left: 1px;
		top: 19px
	}

	70% {
		width: 50px;
		left: -8px;
		top: 37px
	}

	84% {
		width: 17px;
		left: 21px;
		top: 48px
	}

	to {
		width: 25px;
		left: 14px;
		top: 45px
	}
}

@-webkit-keyframes animateSuccessLong {
	0% {
		width: 0;
		right: 46px;
		top: 54px
	}

	65% {
		width: 0;
		right: 46px;
		top: 54px
	}

	84% {
		width: 55px;
		right: 0;
		top: 35px
	}

	to {
		width: 47px;
		right: 8px;
		top: 38px
	}
}

@keyframes animateSuccessLong {
	0% {
		width: 0;
		right: 46px;
		top: 54px
	}

	65% {
		width: 0;
		right: 46px;
		top: 54px
	}

	84% {
		width: 55px;
		right: 0;
		top: 35px
	}

	to {
		width: 47px;
		right: 8px;
		top: 38px
	}
}

.swal-icon {
	width: 80px;
	height: 80px;
	border-width: 4px;
	border-style: solid;
	border-radius: 50%;
	padding: 0;
	position: relative;
	box-sizing: content-box;
	margin: 20px 0px;
}



@media(min-width:768px) and (max-width:991px) {
    .wdth_60 {
        max-width: 650px;
        width: 100%;
    }
}

@media(min-width:540px) and (max-width:767px) {
    .wdth_60 {
        max-width: 500px;
        width: 100%;
        margin: auto;
    }
}

@media(max-width:539px) {
    .wdth_60 {
        max-width: 360px;
        width: 100%;
        margin: auto;
    }
    .formbold-file-input label {
        padding: 10px;
    }
}


@media (min-width: 540px) {
    .sm\:w-half {
        width: 50%;
    }
      margin: auto;
    }
}
