@charset "UTF-8";
/* CSS Document */

/* Prevent scroll-to-top on mobile when address bar hides */
html {
	height: auto;
	min-height: 100%;
}

body {
	overscroll-behavior-y: contain;
	height: auto;
	min-height: 100%;
}

input:focus {
    outline:none;
}
.input-group input[type="text"], .input-group textarea {
	outline: none;
	box-shadow:none !important;
	border:1px solid transparent !important;
}

.input-group{
	padding:0px;
}

/* ===== Error States ===== */
.error {
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
	animation: shake 0.4s ease-in-out;
}

.error:focus {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

/* Text inputs and textareas */
input.error,
textarea.error,
.form-control.error {
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
}

input.error:focus,
textarea.error:focus,
.form-control.error:focus {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
	outline: none;
}

/* Input group wrapper error */
.input-icon.error {
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
}

.input-icon.error:focus-within {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

.input-icon.error input,
.input-icon.error textarea {
	background: transparent !important;
}

/* Bootstrap Select error */
.bootstrap-select.error > .dropdown-toggle,
.bootstrap-select .error.dropdown-toggle {
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
}

.bootstrap-select.error > .dropdown-toggle:focus,
.bootstrap-select.error.show > .dropdown-toggle {
	border-color: #ef4444 !important;
	box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

/* Radio button group error */
.radioimg .btn-outline-info.bOption.error {
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
	color: #b91c1c;
}

.radioimg .btn-outline-info.bOption.error:hover {
	border-color: #dc2626 !important;
	background: #fee2e2 !important;
}

/* Checkbox and radio error */
.checkbox.error i:before,
.radio.error i:before {
	color: #ef4444 !important;
}

.checkbox.error,
.radio.error {
	color: #b91c1c;
}

/* Readonly inputs with error */
input:read-only.error,
input[readonly="readonly"].error,
input[readonly].error {
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
}

/* Shake animation for error feedback */
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	20%, 60% { transform: translateX(-4px); }
	40%, 80% { transform: translateX(4px); }
}

/* Error label text */
.error-message {
	color: #dc2626;
	font-size: 13px;
	margin-top: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.error-message::before {
	content: '\f06a';
	font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 12px;
}
.hide{
	display: none !important;
}
.redText{
	color: #D40D10;
}
.defaultOption{
	margin-bottom:20px;
}
.radioimg img {
    height: auto;
    width: 80%;
    margin: 10px auto;
}
/* ===== Text Inputs & Textareas ===== */
.input-icon{
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.input-icon:focus-within {
    border-color: #4B61DD;
    box-shadow: 0 0 0 4px rgba(75, 97, 221, 0.1);
}

.input-icon input{
    border: 0;
    box-shadow: none;
    font-size: 15px;
    padding: 6px 4px;
}

.input-icon textarea {
    border: 0;
    box-shadow: none;
    font-size: 15px;
    padding: 6px 4px;
    min-height: 80px;
    resize: vertical;
}

.input-icon-down{
	padding-top: 4px;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.input-icon:focus-within .input-icon-down,
.input-icon:focus-within .fad,
.input-icon:focus-within .fa {
    color: #4B61DD;
}

.input-icon button{
    margin: 2px 0 0 0;
    background: none;
    box-shadow: none;
    border: 0;
    color: #9ca3af;
    padding: 0 8px 0 10px;
    border-left: solid 1px #e0e0e0;
    transition: color 0.2s ease;
}

.input-icon button:hover {
    color: #4B61DD;
}

/* Standalone form controls */
.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
    background-color: #fff;
}

.form-control:focus {
    border-color: #4B61DD;
    box-shadow: 0 0 0 4px rgba(75, 97, 221, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

/* ===== Select Dropdowns (Bootstrap Select) ===== */
.bootstrap-select > .dropdown-toggle {
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-size: 15px;
    background: #fff !important;
    transition: all 0.2s ease;
    height: auto !important;
}

.bootstrap-select > .dropdown-toggle:focus,
.bootstrap-select > .dropdown-toggle:active,
.bootstrap-select.show > .dropdown-toggle {
    border-color: #4B61DD !important;
    box-shadow: 0 0 0 4px rgba(75, 97, 221, 0.1) !important;
    outline: none !important;
}

.bootstrap-select .dropdown-menu {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 8px;
    margin-top: 4px;
}

.bootstrap-select .dropdown-menu .dropdown-item,
.bootstrap-select .dropdown-menu li a {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    transition: all 0.15s ease;
    color: #374151;
}

.bootstrap-select .dropdown-menu .dropdown-item:hover,
.bootstrap-select .dropdown-menu li a:hover,
.bootstrap-select .dropdown-menu .dropdown-item.active,
.bootstrap-select .dropdown-menu li.selected a {
    background: #f0f3ff;
    color: #4B61DD;
}

.bootstrap-select .dropdown-menu li.selected a::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
    font-weight: 900;
    float: right;
    color: #4B61DD;
    font-size: 12px;
}

/* Input group styling */
.input-group-text {
    background: #f5f7fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 10px 14px;
}

.input-group > .form-control,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append > .input-group-text {
    border-radius: 12px;
}

.number-spinner input{
	border-top: 1px solid #e0e0e0 !important;
	border-bottom: 1px solid #e0e0e0 !important;
}
@media only screen and (max-width: 768px) {
	.radioimg img {
		height: auto;
		width: 50%;
	}
}
.radioimg brn-group {
    overflow-y: scroll;
}
.btn:hover{
	cursor: pointer;
}
.radioimg ul{
	padding:0px;
}
.radioimg [type='radio'] {
display: none;
}

/* ===== Button Group (Radio Options) ===== */
.radioimg .btn-outline-info.bOption {
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	padding: 16px 20px;
	font-weight: 600;
	font-size: 15px;
	color: #374151;
	background: #fff;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}

.radioimg .btn-outline-info.bOption:hover {
	border-color: #4B61DD;
	background: #f8f9ff;
	color: #4B61DD;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(75, 97, 221, 0.15);
}

.radioimg .btn-outline-info.bOption.active,
.radioimg .btn-outline-info.bOption:active {
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border-color: #4B61DD;
	color: #fff;
	box-shadow: 0 4px 12px rgba(75, 97, 221, 0.3);
	transform: translateY(-1px);
}

.radioimg .btn-outline-info.bOption.active::before {
	content: '\f00c';
	font-family: 'Font Awesome 5 Pro', 'Font Awesome 5 Free';
	font-weight: 900;
	position: absolute;
	top: 8px;
	right: 10px;
	font-size: 11px;
	background: rgba(255,255,255,0.25);
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.radioimg .row {
	margin: 0 -6px !important;
}

.radioimg .col-sm-6,
.radioimg .col-lg-4 {
	padding: 6px !important;
}

.radioimg .btn-outline-info.bOption:focus {
	box-shadow: 0 0 0 3px rgba(75, 97, 221, 0.2);
	outline: none;
}
/* ===== End Button Group ===== */

.checkbox,
.radio {
  display: inline-block;
   }
  .checkbox:hover,
  .radio:hover {
    cursor: pointer; }
  .checkbox .fa,
  .radio .fa {
    width: 1em; }

.indent {
  padding-left: 30px; }
  .indent .fa {
    margin-left: -30px; }

.checkbox input[type="checkbox"],
.radio input[type="radio"] {
  display: none; }
  .checkbox input[type="checkbox"] + i:before,
  .radio input[type="radio"] + i:before {
    content: "\f0c8";
    position: relative;
    bottom: -4px;
    margin-right: 5px;
    color: #999; }

.checkbox:hover input[type="checkbox"] + i:before,
.radio:hover input[type="radio"] + i:before {
  color: green; }

.checkbox input[type="checkbox"]:checked + i:before,
.radio input[type="radio"]:checked + i:before {
  content: "\f14a";
  color: green; }

.checkbox input[type="checkbox"]:disabled + i:before,
.checkbox input[type="checkbox"]:disabled:checked + i:before,
.radio input[type="radio"]:disabled + i:before,
.radio input[type="radio"]:disabled:checked + i:before {
  color: #ddd; }

/*RADIO*/
.radio input[type="radio"] + i:before {
  content: "\f111"; }

.radio input[type="radio"]:checked + i:before {
  content: "\f058"; }


.Xradio input[type="radio"]:hover + i:before {
color:#777777;}
.Xradio input[type="radio"]:checked + i:before {
  content: "\f057";
color:#777777;}
.radio{
	margin-bottom: 0px;
}

/* CHECKBOX&RADIO XS*/
.checkbox-xs input[type="checkbox"] + i:before,
.radio-xs input[type="radio"] + i:before {
  bottom: 0; }

.checkbox-xs.indent,
.radio-xs.indent {
  padding-left: 20px; }
  .checkbox-xs.indent .fa,
  .radio-xs.indent .fa {
    margin-left: -20px; }
.radio{
	margin-right:14px;
}
.belowgap{
	margin-bottom: 20px;
}
/* START PROGRESS ICONS */
.progress-stripe{
	position: relative;
	overflow: visible;
	background: #e0e0e0;
	height: 3px;
	top: 20px;
	z-index: 1;
	width: 100%;
	border-radius: 3px;
}
.progress-circle{
	position: relative;
	border-radius: 50%;
	text-align: center;
	line-height: 38px;
	border: 2px solid #e0e0e0;
	background: #fff;
	color: #9e9e9e;
	width: 42px;
	height: 42px;
	font-weight: 600;
	z-index: 3;
	float: left;
	font-size: 16px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.ico:last-of-type .progress-step .progress-circle{
	margin-top: 3px;
}
.progress-title{
	z-index: 2;
	position: relative;
	top: 5px;
	padding: 7px;
	background: white;
	font-weight: 600;
	color: #9e9e9e;
}
.progress-name{
	position: absolute;
	bottom: -26px;
	text-align: center;
	width: 105px;
	left: -17px;
	font-size: 11px;
	font-weight: 600;
	color: #bdbdbd;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
@media only screen and (max-width: 908px) {
	.progress-name{
		display: none;
	}
}
@media only screen and (max-width: 768px) {
	.progress-title{
		display: none;
	}
	.no-pad{margin-right:0;margin-left:0}
	.no-pad>.col,.no-pad>[class*=col-]{padding-right:0;padding-left:0}
	.progress-stripe{
		width: 70%;
	}
	.progress-circle{
		width: 36px;
		height: 36px;
		line-height: 32px;
		font-size: 14px;
	}
}
.progress-container{
	padding: 12px 0;
	margin-bottom: 28px;
}

.past .progress-stripe{
	background: #4B61DD;
}
.completed .progress-circle{
	border: 2px solid #4B61DD;
	background: #4B61DD;
	color: #fff;
	box-shadow: 0 4px 12px rgba(75,97,221,0.3);
}
.completed .progress-name{
	color: #333;
	font-weight: 700;
}
.completed .progress-title{
	color: #4B61DD;
}
.ico{
	margin-left: -50px;
}

.ico:last-child{
	margin-top: 0;
}
/* END PROGRESS ICONS */


.progress-background{ 
	background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
	/* min-height: 100vh; */
	padding-bottom: 40px;
}
.progress-content{
	background: #fff;
	padding: 40px 70px;
	margin: 20px auto;
	max-width: 1100px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	overflow: hidden;
	padding-bottom: 140px;
	min-height: 199px;
	height: 670px;
	position: relative;
     
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.progress-navigation{
	position: absolute;
	bottom: 0px;
	background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, #ffffff 100%);
	border-top: 1px solid #e5e7eb;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
	width: 100%;
	left: 0px;
	padding: 24px 40px;
	border-radius: 0 0 20px 20px;
}

.progress-navigation .btn-primary {
	padding: 12px 28px;
	font-weight: 600;
	border-radius: 10px;
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border: none;
	box-shadow: 0 4px 12px rgba(75, 97, 221, 0.3);
	transition: all 0.2s ease;
}

.progress-navigation .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(75, 97, 221, 0.4);
}

.progress-navigation .btn-outline-secondary {
	padding: 12px 28px;
	font-weight: 600;
	border-radius: 10px;
	border: 2px solid #e0e0e0;
	color: #6b7280;
	transition: all 0.2s ease;
}

.progress-navigation .btn-outline-secondary:hover {
	border-color: #4B61DD;
	color: #4B61DD;
	background: #f8f9ff;
}

#progressBack{
	display: none;
}
.progress-box{
	width:100%;
	background: white;
	position: absolute;
	left:100%;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: visible;
	padding: 0px 110px 0px 110px;
}
@media only screen and (max-width: 1468px) {
.progress-box{
	padding: 0px 30px;
}
}
@media only screen and (max-width: 992px) {
.progress-content{
	padding: 30px 40px;
	margin: 15px;
	border-radius: 16px;
}
.progress-navigation{
	padding: 20px 30px;
}
}
@media only screen and (max-width: 768px) {
.progress-content{
	padding: 20px 20px;
	margin: 10px;
	border-radius: 12px;
}
.progress-navigation{
	padding: 16px 20px;
	border-radius: 0 0 12px 12px;
}
.progress-navigation .btn-primary,
.progress-navigation .btn-outline-secondary {
	padding: 10px 20px;
	font-size: 14px;
}
.progress-box{
	/* padding: 0px 10px; */
}
}
.activeStage{
	left:0px;
}
.done{
	left:-100%;
}
.icon-color{
	--fa-primary-color: #5789BA;
    --fa-secondary-color: dimgray;
}
.type-header{
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}
.type-icon{
	--fa-primary-color: #4B61DD;
	--fa-secondary-color: #8b9be8;
	background: linear-gradient(135deg, #f0f3ff 0%, #e8ecff 100%);
	border: none;
	text-align: center;
	border-radius: 16px;
	padding: 16px;
	min-width: 64px;
	width: 64px;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(75, 97, 221, 0.15);
	flex-shrink: 0;
}
.type-title{
	margin-left: 18px;
	line-height: 1.4;
	white-space: nowrap;
}
.type-title strong{
	font-size: 24px;
	font-weight: 700;
	color: #1a1a2e;
	letter-spacing: -0.3px;
}
.type-title br + text,
.type-title{
	color: #6b7280;
	font-size: 14px;
}
@media only screen and (max-width: 480px) {
	.type-icon{
		width: 48px;
		min-width: 48px;
		height: 48px;
		padding: 12px;
		border-radius: 12px;
	}
	.type-title{
		margin-left: 12px;
	}
	.type-title strong{
		font-size: 18px;
	}
	.type-title{
		font-size: 12px;
	}
}
.subquote{
	top: 0px; padding-bottom:25px;
	background-size: cover;
	background-position: center;
	padding-top: 40px;
}
#QUOTE{
	width:100%;height: 100%; overflow: visible;
}

.valuation{
	margin-top:-10px;color: blue;
}
.valuation:hover{
	cursor: pointer;
}

/* quote box */
.qcontainer{
	width:100%;
	margin-left:0px;
}
.qcontainer .qleft{
	padding-top:15px;
}
.qbox-dark, .qbox_light{
	background-color: #3a474e;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    max-height: 120px;
    width: 100%;
	margin-bottom: 16px;
}
.qbox-light{
	background-color: #fff;
    
    box-shadow: 0 4px 8px 0 rgba(58,71,78,.25);
	border: 1px solid #eeeeee;
}

.qbutton_box{
	align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 86px;
    position: relative;
}
.qtitle_box{
	padding-top: 5px;
}
.qbox-title{
	margin: 0px -15px;
    padding: 15px;
	
    border-bottom: 2px dotted #c3c7c9;
}
.qtick{
    font-size: 34px;
    color: green;
}
.q-title-text{
	position: relative;
    top: -7px;
}
.q-title-text-direct{
	font-size: 32px;
	line-height: 12px !important;
}
.q-discount{
	margin-bottom: 16px;
    font-size: 18px;
    color: red;
    text-decoration: line-through;
}
.q-title-text-direct small{
	font-size: 12px;
}
.qbox-content{
	padding: 10px;
}
.moreInfo{
	background: rgb(239, 239, 246);
    padding: 5px 30px 20px 30px;
	border-radius: 5px;
}
.moreInfo-sm{
	background: rgb(239, 239, 246);
    padding: 5px;
	border-radius: 5px;
	margin-top: -27px;
}
.moreInfo-md{
	background: rgb(239, 239, 246);
    padding: 5px 15px;
	border-radius: 5px;
	
}
.manualAddress label{
	margin-bottom:  0px;
}
.mrb{
	    text-align: center;
    display: block;
	font-size: 12px;
	font-style: italic;
}


/* whats covered */

.img-responsive {
    display: block;
    height: auto;
    max-width: 100%;
}

.img-rounded {
    border-radius: 3px;
}

.img-thumbnail {
    background-color: #fff;
    border: 1px solid #ededf0;
    border-radius: 3px;
    display: inline-block;
    height: auto;
    line-height: 1.428571429;
    max-width: 100%;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    padding: 2px;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

.img-circle {
    border-radius: 50%;
}

.timeline-centered {
    position: relative;
    margin-bottom: 30px;
}

    .timeline-centered:before, .timeline-centered:after {
        content: " ";
        display: table;
    }

    .timeline-centered:after {
        clear: both;
    }

    .timeline-centered:before, .timeline-centered:after {
        content: " ";
        display: table;
    }

    .timeline-centered:after {
        clear: both;
    }

    .timeline-centered:before {
        content: '';
        position: absolute;
        display: block;
        width: 4px;
        background: #f5f5f6;
        /*left: 50%;*/
        top: 20px;
        bottom: 20px;
        margin-left: 30px;
    }

    .timeline-centered .timeline-entry {
        position: relative;
        /*width: 50%;
        float: right;*/
        margin-top: 5px;
        margin-left: 30px;
        margin-bottom: 10px;
        clear: both;
    }

        .timeline-centered .timeline-entry:before, .timeline-centered .timeline-entry:after {
            content: " ";
            display: table;
        }

        .timeline-centered .timeline-entry:after {
            clear: both;
        }

        .timeline-centered .timeline-entry:before, .timeline-centered .timeline-entry:after {
            content: " ";
            display: table;
        }

        .timeline-centered .timeline-entry:after {
            clear: both;
        }

        .timeline-centered .timeline-entry.begin {
            margin-bottom: 0;
        }

        .timeline-centered .timeline-entry.left-aligned {
            float: left;
        }

            .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner {
                margin-left: 0;
                margin-right: -18px;
            }

                .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-time {
                    left: auto;
                    right: -100px;
                    text-align: left;
                }

                .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-icon {
                    float: right;
                }

                .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label {
                    margin-left: 0;
                    margin-right: 70px;
                }

                    .timeline-centered .timeline-entry.left-aligned .timeline-entry-inner .timeline-label:after {
                        left: auto;
                        right: 0;
                        margin-left: 0;
                        margin-right: -9px;
                        -moz-transform: rotate(180deg);
                        -o-transform: rotate(180deg);
                        -webkit-transform: rotate(180deg);
                        -ms-transform: rotate(180deg);
                        transform: rotate(180deg);
                    }

        .timeline-centered .timeline-entry .timeline-entry-inner {
            position: relative;
            margin-left: -20px;
        }

            .timeline-centered .timeline-entry .timeline-entry-inner:before, .timeline-centered .timeline-entry .timeline-entry-inner:after {
                content: " ";
                display: table;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner:after {
                clear: both;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner:before, .timeline-centered .timeline-entry .timeline-entry-inner:after {
                content: " ";
                display: table;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner:after {
                clear: both;
            }

            .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time {
                position: absolute;
                left: -100px;
                text-align: right;
                padding: 10px;
                -webkit-box-sizing: border-box;
                -moz-box-sizing: border-box;
                box-sizing: border-box;
            }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span {
                    display: block;
                }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:first-child {
                        font-size: 15px;
                        font-weight: bold;
                    }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-time > span:last-child {
                        font-size: 12px;
                    }

            .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon {
                background: #fff;
                color: #737881;
                display: block;
                width: 40px;
                height: 40px;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 20px;
                -moz-border-radius: 20px;
                border-radius: 20px;
                text-align: center;
                -moz-box-shadow: 0 0 0 5px #f5f5f6;
                -webkit-box-shadow: 0 0 0 5px #f5f5f6;
                box-shadow: 0 0 0 5px #f5f5f6;
                line-height: 40px;
                font-size: 15px;
                float: left;
            }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-primary {
                    background-color: #303641;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-secondary {
                    background-color: #ee4749;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-success {
                    background-color: #00a651;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-info {
                    background-color: #21a9e1;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-warning {
                    background-color: #fad839;
                    color: #fff;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-icon.bg-danger {
                    background-color: #cc2424;
                    color: #fff;
                }

            .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label {
                position: relative;
                background: #f5f5f6;
                padding: 1em;
                margin-left: 60px;
                -webkit-background-clip: padding-box;
                -moz-background-clip: padding;
                background-clip: padding-box;
                -webkit-border-radius: 3px;
                -moz-border-radius: 3px;
                border-radius: 3px;
            }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label:after {
                    content: '';
                    display: block;
                    position: absolute;
                    width: 0;
                    height: 0;
                    border-style: solid;
                    border-width: 9px 9px 9px 0;
                    border-color: transparent #f5f5f6 transparent transparent;
                    left: 0;
                    top: 10px;
                    margin-left: -9px;
                }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2, .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p {
                    color: #737881;
                    font-size: 12px;
                    margin: 0;
                    line-height: 1.428571429;
                }

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label p + p {
                        margin-top: 15px;
                    }

                .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 {
                    font-size: 16px;
                    margin-bottom: 10px;
                }

                  

                    .timeline-centered .timeline-entry .timeline-entry-inner .timeline-label h2 span {
                        -webkit-opacity: .6;
                        -moz-opacity: .6;
                        opacity: .6;
                        -ms-filter: alpha(opacity=60);
                        filter: alpha(opacity=60);
                    }
.cfval{
	width:0px;
	height:0px;
	overflow: hidden;
}

/* Biz Loading Bar */
.biz-loading-bar {
	position: relative;
	width: 100%;
	height: 3px;
	margin-top: 2px;
	border-radius: 2px;
	overflow: hidden;
    position: absolute;
}
.biz-loading-progress {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #4B61DD, #5789BA);
	border-radius: 2px;
	transition: width 2s ease-out;
}