@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 */

.hide{
	display: none !important;
}
.redText{
	color: #D40D10;
}
.defaultOption{
	margin-bottom:20px;
}
.radioimg img {
    height: auto;
    width: 80%;
    margin: 10px auto;
}
/* ===== Text Inputs & Textareas ===== */
/* Wrapper + inner paddings total the same box as a bare .form-control
   (2px border + 22.5px line + 24px padding = 50.5px) so icon fields sit
   flush with plain ones on the quote and bind steps */
.input-icon{
    padding: 6px 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;
}

/* The wrapper draws the border - kill the global .input-group transparent
   1px border in here so grouped and ungrouped inputs box out identically */
.input-icon .input-group input[type="text"],
.input-icon .input-group textarea {
    border: 0 !important;
}

/* Centre the icon column instead of stretching it: keeps a fa-2x icon from
   setting the row height and replaces the old padding-top nudge */
.input-icon .input-group{
    align-items: center;
}
.input-icon .input-icon-down{
    padding-top: 0;
}

.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 .fa-duotone,
.input-icon:focus-within .fa-solid,
.input-icon:focus-within .fa-regular {
    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 7 Pro', 'Font Awesome 7 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 7 Pro', 'Font Awesome 7 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-regular,
  .radio .fa-regular {
    width: 1em; }

.indent {
  padding-left: 30px; }
  .indent .fa-regular {
    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";
    font-family: "Font Awesome 7 Pro";
    font-weight: 400;
    position: relative;
    bottom: -4px;
    margin-right: 5px;
    color: #6b7280;
    transition: color .15s ease; }

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

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

.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: #d1d5db; }

/*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*/

  
.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-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) {
	
	.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;
}

.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%;
}

.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 Results ===== */
.qcontainer{
	width:100%;
	margin-left:0px;
}
.qcontainer .qleft{
	padding-top:15px;
}

/* Reveal choreography — transform/opacity only so reSizeQuote() height math stays valid */
@keyframes qRise{
	from{ opacity:0; transform:translateY(18px); }
	to{ opacity:1; transform:translateY(0); }
}
@keyframes qPop{
	0%{ opacity:0; transform:scale(.94); }
	65%{ opacity:1; transform:scale(1.015); }
	100%{ opacity:1; transform:scale(1); }
}
@keyframes qSheen{
	from{ transform:translateX(-160%) skewX(-18deg); }
	to{ transform:translateX(320%) skewX(-18deg); }
}
.q-ref-bar,
.qcontainer > [class*=col]{
	animation: qRise .55s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.qcontainer > [class*=col]:nth-child(2){ animation-delay:.09s; }
.qcontainer > [class*=col]:nth-child(3){ animation-delay:.18s; }
.qcontainer > [class*=col]:nth-child(4){ animation-delay:.27s; }
.q-price-option{
	animation: qPop .55s cubic-bezier(0.16, 1, 0.3, 1) .18s both;
}
.q-price-option ~ .q-price-option{ animation-delay:.32s; }
.q-price-divider{
	animation: qRise .55s cubic-bezier(0.16, 1, 0.3, 1) .26s both;
}
.q-btn-buy{
	position: relative;
	overflow: hidden;
}
.q-btn-buy::after{
	content:'';
	position:absolute;
	top:0; bottom:0; left:0;
	width:40%;
	background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
	transform: translateX(-160%) skewX(-18deg);
	animation: qSheen 1s ease-in-out 1.1s 1 both;
	pointer-events:none;
}
@media (prefers-reduced-motion: reduce){
	.q-ref-bar,
	.qcontainer > [class*=col],
	.q-price-option,
	.q-price-divider,
	.q-btn-buy::after{
		animation: none;
	}
}

/* Quote reference bar */
.q-ref-bar{
	display: flex;
	align-items: baseline;
	gap: 10px;
	width: 100%;
	background: linear-gradient(135deg, #252261 0%, #37337e 100%);
	padding: 14px 22px;
	border-radius: 14px;
	box-shadow: 0 6px 18px rgba(37, 34, 97, .22);
}
.q-ref-label{
	font-size: 10.5px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,.65);
	font-weight: 700;
}
.q-ref-id{
	font-size: 15px;
	font-weight: 800;
	color: #ffc107;
	letter-spacing: .5px;
}

/* Cards */
.qbox-dark{
	background: linear-gradient(135deg, #252261 0%, #3b3894 100%);
	color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	padding: 18px 26px;
	width: 100%;
	margin-bottom: 16px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(37, 34, 97, .18);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: .2px;
}
.qbox-dark:has(+ .qbox-light){
	border-radius: 16px 16px 0 0;
	margin-bottom: 0;
	box-shadow: none;
}
.qbox-light{
	background-color: #fff;
	color: #374151;
	padding: 16px 24px;
	width: 100%;
	margin-bottom: 18px;
	border: 1px solid #e8ebf3;
	border-top: 0;
	border-radius: 0 0 16px 16px;
	box-shadow: 0 10px 30px rgba(23, 32, 90, .08);
}
.qbox-light + .qbox-light{
	border-radius: 16px;
	border-top: 1px solid #e8ebf3;
}
.qbutton_box{
	align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 86px;
    position: relative;
}
.qtitle_box{
	display: flex;
	align-items: center;
	min-height: 38px;
}
/* Ghost buttons inside dark card headers (Edit / Add Discount / Get 5% off) */
.qbox-dark .btn{
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.4);
	color: #fff;
	border-radius: 10px;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 14px;
	white-space: nowrap;
	transition: all .2s ease;
	box-shadow: none;
}
.qbox-dark .btn:hover,
.qbox-dark .btn:focus{
	background: #fff;
	color: #252261;
	border-color: #fff;
}
.qbox-title{
	margin: -16px -24px 0;
	padding: 20px 24px 18px;
	border-bottom: 1px solid #eef0f7;
}
/* Sidebar transaction header — green/teal from the docs-page palette */
.q-side-head{
	background: linear-gradient(135deg, #1e9e40 0%, #20c997 100%);
	box-shadow: 0 8px 24px rgba(32, 160, 110, .22);
}
.q-side-head:has(+ .qbox-light){
	box-shadow: none;
}
.qtick{
	font-size: 26px;
	color: #20c997;
	vertical-align: middle;
}
.q-title-text{
	font-size: 18px;
	font-weight: 800;
	color: #1a1a2e;
	margin-left: 8px;
	vertical-align: middle;
}
.qbox-content{
	padding: 16px 2px 4px;
	font-size: 14.5px;
	line-height: 1.8;
}

/* Price hero (direct customers) */
.q-price-row{
	display: flex;
	align-items: stretch;
	justify-content: center;
	gap: 14px;
	padding: 8px 0 4px;
	flex-wrap: wrap;
}
.q-price-option{
	flex: 1 1 200px;
	max-width: 290px;
	background: linear-gradient(180deg, #f8f9ff 0%, #f2f4fe 100%);
	border: 1px solid #e3e7fb;
	border-radius: 14px;
	padding: 18px 20px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}
.q-price-eyebrow{
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 800;
	color: #0d7a62;
}
.q-price-was{
	font-size: 14px;
	font-weight: 600;
	color: #9ca3af;
	text-decoration: line-through;
	margin-top: 4px;
}
.q-price{
	font-size: 34px;
	font-weight: 800;
	color: #1a1a2e;
	line-height: 1.15;
	font-variant-numeric: tabular-nums;
	margin-top: 2px;
}
.q-price .q-price-cur{
	font-size: 19px;
	font-weight: 700;
	color: #6b7280;
	position: relative;
	top: -9px;
	margin-right: 1px;
}
.q-price-per{
	font-size: 12.5px;
	color: #6b7280;
	font-weight: 600;
}
.q-save-pill{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #d9f6ee;
	color: #0d7a62;
	font-size: 12px;
	font-weight: 700;
	border-radius: 999px;
	padding: 4px 12px;
	margin-top: 8px;
}
.q-price-divider{
	display: flex;
	align-items: center;
	color: #9ca3af;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}
@media only screen and (max-width: 575px){
	.q-price-divider{ width: 100%; justify-content: center; }
	.q-price-option{ max-width: 100%; }
}
.q-cta{
	max-width: 420px;
	margin: 18px auto 4px;
	text-align: center;
}
.q-quiet-actions{
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-top: 8px;
}

/* Buttons */
.q-btn{
	border-radius: 12px;
	font-weight: 700;
	font-size: 15.5px;
	padding: 13px 22px;
	border: 2px solid transparent;
	transition: all .2s ease;
	line-height: 1.4;
}
.q-btn-primary{
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(75, 97, 221, .3);
}
.q-btn-primary:hover,
.q-btn-primary:focus{
	background: linear-gradient(135deg, #4356cc 0%, #4B61DD 100%);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(75, 97, 221, .4);
}
/* Buy / Bind — conversion green (wins over q-btn-primary via .q-btn.q-btn-buy specificity) */
.q-btn.q-btn-buy{
	background: linear-gradient(135deg, #0e9744 0%, #1fb15c 100%);
	color: #fff;
	box-shadow: 0 4px 14px rgba(20, 158, 70, .35);
}
.q-btn.q-btn-buy:hover,
.q-btn.q-btn-buy:focus{
	background: linear-gradient(135deg, #0c853c 0%, #169e4f 100%);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(20, 158, 70, .45);
}
.q-btn-gold{
	background: linear-gradient(135deg, #ffb300 0%, #ffc820 100%);
	color: #252261;
	box-shadow: 0 4px 14px rgba(255, 193, 7, .35);
}
.q-btn-gold:hover,
.q-btn-gold:focus{
	background: linear-gradient(135deg, #ffa000 0%, #ffc107 100%);
	color: #252261;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 179, 0, .45);
}
.q-btn-outline{
	background: #fff;
	border-color: #e0e0e0;
	color: #374151;
}
.q-btn-outline:hover,
.q-btn-outline:focus{
	border-color: #4B61DD;
	background: #f8f9ff;
	color: #4B61DD;
}
.q-btn-doc{
	background: transparent;
	color: #6b7280;
	font-size: 12.5px;
	font-weight: 600;
	padding: 8px 10px;
}
.q-btn-doc:hover{
	color: #4B61DD;
	text-decoration: none;
}
.q-btn-ghost{
	background: transparent;
	border: 0;
	color: #4B61DD;
	font-weight: 700;
	font-size: 14px;
	padding: 9px 14px;
	border-radius: 10px;
	transition: background .2s ease;
}
.q-btn-ghost:hover{
	background: #f0f3ff;
	color: #4356cc;
	cursor: pointer;
}

/* Premium breakdown (broker / sidebar) */
.q-breakdown-eyebrow{
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-weight: 800;
	color: #6b7280;
	padding: 4px 0 8px;
}
.q-line{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	border-bottom: 1px dashed #e8ebf3;
	font-size: 14px;
	line-height: 1.5;
}
.q-line-label{
	color: #6b7280;
	font-weight: 600;
}
.q-line-value{
	color: #1a1a2e;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	text-align: right;
}
.q-line-total{
	border-bottom: 0;
	margin-top: 6px;
	background: #f5f7ff;
	border-radius: 10px;
	padding: 12px 14px;
}
.q-line-total .q-line-label{
	color: #1a1a2e;
	font-weight: 800;
	font-size: 15px;
}
.q-line-total .q-line-value{
	color: #4B61DD;
	font-weight: 800;
	font-size: 19px;
}
.q-line-discount .q-line-label,
.q-line-discount .q-line-value{
	color: #1a7f55;
}
.q-line select{
	color: #1a1a2e;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 4px 8px;
	font-weight: 700;
	font-size: 13px;
	background: #fff;
}
.q-line-sep{
	border-top: 1px solid #e8ebf3;
	margin: 12px 0 8px;
}
.q-comm-actions{
	padding: 10px 0 4px;
}
.q-comm-actions .btn{
	border-radius: 9px;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	transition: all .2s ease;
}
.q-comm-actions .btn-danger{
	background: #fff;
	color: #dc2626;
	border: 2px solid #fecaca;
}
.q-comm-actions .btn-danger:hover{
	background: #fef2f2;
	color: #b91c1c;
}
.q-comm-actions .btn-success{
	background: #fff;
	color: #1a7f55;
	border: 2px solid #bbe7d4;
}
.q-comm-actions .btn-success:hover{
	background: #f0faf5;
	color: #14532d;
}

/* Referral / decline notice */
.q-notice{
	display: flex;
	gap: 16px;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 16px;
	padding: 22px 24px;
	margin-bottom: 6px;
}
.q-notice-icon{
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #fef3c7;
	color: #b45309;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 19px;
}
.q-notice-body{
	flex-grow: 1;
	min-width: 0;
}
.q-notice-title{
	font-size: 17px;
	font-weight: 800;
	color: #92400e;
	margin: 2px 0 6px;
}
.q-notice-text{
	font-size: 14px;
	color: #a16207;
	margin-bottom: 10px;
}
.q-notice-reason{
	background: rgba(255,255,255,.85);
	border-left: 4px solid #f59e0b;
	border-radius: 10px;
	padding: 12px 16px;
	font-weight: 700;
	font-size: 14.5px;
	color: #78350f;
}
.q-notice-reason li{
	margin-left: 18px;
}
.q-notice-foot{
	font-size: 12.5px;
	color: #a16207;
	margin: 12px 0 0;
	display: flex;
	align-items: flex-start;
	gap: 7px;
}
.q-notice-foot .fa-clock{
	margin-top: 3px;
}
@media only screen and (max-width: 480px){
	.q-notice{ flex-direction: column; }
}

/* Change-of-insurer alert */
.qcontainer .alert-success{
	background: #f0faf5;
	border: 1px solid #c6ecd9;
	border-radius: 16px;
	color: #14532d;
	padding: 20px 22px;
	font-size: 14px;
	line-height: 1.7;
}
.qcontainer .alert-success .btn-success{
	background: #fff;
	border: 2px solid #bbe7d4;
	color: #1a7f55;
	border-radius: 10px;
	font-weight: 700;
	font-size: 13px;
	padding: 8px 14px;
	margin: 4px 6px 8px 0;
	transition: all .2s ease;
}
.qcontainer .alert-success .btn-success:hover{
	background: #1a7f55;
	color: #fff;
	border-color: #1a7f55;
}

/* SCRC comparison table.
   Cells also match cargo/product_quote.css .tbl rules (solid #E0E2E5 grid,
   colored header, mobile band) — every property it sets is reset here, and
   .qcontainer keeps these rules more specific regardless of load order. */
.qcontainer .tbl{
	padding: 11px 8px;
	border: 0;
	border-bottom: 1px dashed #e8ebf3;
	font-size: 14px;
	text-align: center;
}
.qcontainer .tbl:last-child{
	border-right: 0;
}
.qcontainer .tbl-h{
	font-weight: 800;
	font-size: 13px;
	color: #1a1a2e;
	background: #f5f7ff;
	border-radius: 10px 10px 0 0;
	border-bottom: 0;
	padding: 12px 8px;
}
.qcontainer .tbls{
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
	font-size: 13.5px;
	color: #6b7280;
	font-weight: 600;
	padding: 6px 8px;
	border: 0;
	background: transparent;
}
.qcontainer .tbls:empty{
	padding: 0;
	background: transparent;
}
.qcontainer .tbll{
	padding: 14px 8px 4px;
	border-top: 0;
}
@media only screen and (max-width: 575px){
	.qcontainer .tbls{
		justify-content: center;
		text-align: center;
		background: #f5f7ff;
		border: 0;
		border-radius: 8px;
		padding: 8px;
		margin-top: 6px;
		font-weight: 700;
		color: #1a1a2e;
	}
	.qcontainer .tbls:empty{
		background: transparent;
		padding: 0;
		margin-top: 0;
	}
}
.qcontainer .tbll .btn{
	border-radius: 11px;
	font-weight: 700;
	font-size: 14px;
	padding: 11px 16px;
	transition: all .2s ease;
}
.qcontainer .tbll .btn-success{
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border: 0;
	box-shadow: 0 4px 12px rgba(75, 97, 221, .3);
}
.qcontainer .tbll .btn-success:hover{
	background: linear-gradient(135deg, #4356cc 0%, #4B61DD 100%);
	transform: translateY(-2px);
}
.qcontainer .tbll .btn-danger{
	background: #fff;
	color: #dc2626;
	border: 2px solid #fecaca;
}
.qcontainer .tbll .btn-danger:hover{
	background: #fef2f2;
	color: #b91c1c;
}

/* Quote modals */
#exampleModal .modal-content,
#discountModal .modal-content,
#feedbackModal .modal-content,
#emailQModal .modal-content,
#textQModal .modal-content{
	border: 0;
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(23, 32, 90, .28);
}
#exampleModal .modal-body,
#discountModal .modal-body,
#feedbackModal .modal-body,
#emailQModal .modal-body,
#textQModal .modal-body{
	padding: 28px;
}
#exampleModal .close,
#discountModal .close,
#feedbackModal .close,
#emailQModal .close,
#textQModal .close{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f3f4f6;
	opacity: 1;
	text-shadow: none;
	color: #6b7280;
	font-size: 18px;
	top: 12px;
	margin: 6px;
	transition: all .15s ease;
}
#exampleModal .close:hover,
#discountModal .close:hover,
#feedbackModal .close:hover,
#emailQModal .close:hover,
#textQModal .close:hover{
	background: #e5e7eb;
	color: #1a1a2e;
}
#exampleModal .btn-primary,
#discountModal .btn-primary,
#feedbackModal .btn-primary,
#emailQModal .btn-primary,
#textQModal .btn-primary{
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border: 0;
	border-radius: 11px;
	font-weight: 700;
	padding: 11px 24px;
	box-shadow: 0 4px 12px rgba(75, 97, 221, .3);
	transition: all .2s ease;
}
#exampleModal .btn-primary:hover,
#discountModal .btn-primary:hover,
#feedbackModal .btn-primary:hover,
#emailQModal .btn-primary:hover,
#textQModal .btn-primary:hover{
	background: linear-gradient(135deg, #4356cc 0%, #4B61DD 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(75, 97, 221, .35);
}
.moreInfo{
	background: #f7f8fd;
	border: 1px solid #e8ebf3;
	padding: 14px 22px 20px;
	border-radius: 14px;
}
.moreInfo-sm{
	background: #f7f8fd;
	border: 1px solid #e8ebf3;
	padding: 8px;
	border-radius: 12px;
	margin-top: -27px;
}
.moreInfo-md{
	background: #f7f8fd;
	border: 1px solid #e8ebf3;
	padding: 8px 15px;
	border-radius: 12px;
}
.manualAddress label{
	margin-bottom:  0px;
}
.mrb{
	text-align: center;
	display: block;
	font-size: 12px;
	font-weight: 600;
	color: #9ca3af;
	padding: 4px 0;
	transition: color .15s ease;
}
.mrb:hover{
	color: #4B61DD;
	text-decoration: none;
}

/* whats covered */

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

    

    

    

    

    

    

        

        

        

        

        

        

            

                

                

                

                    

        

            

            

            

            

            

                

                    

                    

            

                

                

                

                

                

                

            

                

                

                    

                

                  

                    
.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;
}

/* ===== Payment Card Form (buy step) ===== */
.cc-pay {
	border: 2px solid #e0e0e0;
	border-radius: 16px;
}
.cc-pay > .card-header {
	background: #fff;
	border-bottom: 0;
	border-radius: 14px;
	padding: 20px 22px;
}
.cc-methods-wrap {
	margin-bottom: 4px;
}
.cc-pay .cc-methods {
	gap: 10px;
}
.cc-pay .cc-methods .nav-item {
	flex: 1 1 0;
}
.cc-pay .cc-methods .nav-link {
	border: 2px solid #e0e0e0;
	border-radius: 12px;
	background: #fff;
	color: #374151;
	font-weight: 600;
	font-size: 14px;
	padding: 12px 14px 10px 34px;
	position: relative;
	text-align: center;
	transition: all 0.2s ease;
}
.cc-pay .cc-methods .nav-link br {
	display: none;
}
.cc-pay .cc-methods .nav-link img {
	display: block;
	margin: 8px auto 0;
}
.cc-pay .cc-methods .nav-link:hover {
	border-color: #4B61DD;
	background: #f8f9ff;
	color: #4B61DD;
}
.cc-pay .cc-methods .nav-link.active {
	border-color: #4B61DD;
	background: #f0f3ff;
	color: #4B61DD;
	box-shadow: 0 0 0 4px rgba(75, 97, 221, 0.1);
}
.cc-pay .cc-methods .nav-link::before {
	content: '';
	position: absolute;
	top: 14px;
	left: 12px;
	width: 16px;
	height: 16px;
	border: 2px solid #d1d5db;
	border-radius: 50%;
	background: #fff;
	transition: all 0.2s ease;
}
.cc-pay .cc-methods .nav-link.active::before {
	border-color: #4B61DD;
	background: radial-gradient(circle, #4B61DD 0 4px, #fff 4.5px);
}
.cc-field {
	margin-bottom: 16px;
}
.cc-label {
	display: block;
	font-weight: 600;
	font-size: 13px;
	color: #374151;
	margin-bottom: 6px;
}
.cc-label .fa-circle-question {
	color: #9ca3af;
	cursor: help;
}
.cc-number-wrap {
	position: relative;
}
.cc-number-wrap .form-control {
	padding-right: 96px;
	letter-spacing: 0.5px;
}
.cc-brands {
	position: absolute;
	top: 50%;
	right: 14px;
	transform: translateY(-50%);
	display: flex;
	gap: 8px;
	font-size: 24px;
	color: #c3c8d4;
	pointer-events: none;
}
.cc-brands i {
	transition: all 0.2s ease;
}
.cc-number-wrap.cc-visa .cc-brand-visa {
	color: #1434CB;
}
.cc-number-wrap.cc-mastercard .cc-brand-mastercard {
	color: #EB001B;
}
.cc-number-wrap.cc-visa .cc-brand-mastercard,
.cc-number-wrap.cc-mastercard .cc-brand-visa {
	opacity: 0.3;
}
.cc-pay select.form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b7280'%3E%3Cpath d='M4.22 6.22a.75.75 0 0 1 1.06 0L8 8.94l2.72-2.72a.75.75 0 1 1 1.06 1.06l-3.25 3.25a.75.75 0 0 1-1.06 0L4.22 7.28a.75.75 0 0 1 0-1.06z'/%3E%3C/svg%3E") no-repeat right 14px center/14px;
	padding-right: 38px;
	color: #374151;
	height: auto;
}
.cc-footer {
	margin-top: 4px;
}
.cc-pay-btn.btn-primary {
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border: 0;
	border-radius: 12px;
	padding: 14px 20px;
	font-weight: 600;
	font-size: 16px;
	box-shadow: 0 4px 12px rgba(75, 97, 221, 0.25);
	transition: all 0.2s ease;
}
.cc-pay-btn.btn-primary:hover {
	background: linear-gradient(135deg, #4356cc 0%, #4B61DD 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(75, 97, 221, 0.35);
}
.cc-pay-btn.btn-primary:focus,
.cc-pay-btn.btn-primary:active {
	background: linear-gradient(135deg, #4356cc 0%, #4B61DD 100%);
	box-shadow: 0 0 0 4px rgba(75, 97, 221, 0.25);
	outline: none;
}
.cc-trust {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 14px;
}
.cc-trust-note {
	font-size: 12.5px;
	color: #6b7280;
	display: flex;
	align-items: center;
	gap: 7px;
	flex: 1 1 220px;
}
.cc-trust-note .fa-shield-check,
.cc-trust-note .fa-lock {
	color: #22a06b;
	font-size: 15px;
}
.cc-trust-logos {
	display: flex;
	align-items: center;
	gap: 10px;
}
.cc-trust-logos img {
	height: 34px;
	width: auto;
	opacity: 0.9;
}
@media only screen and (max-width: 575px) {
	.cc-pay .cc-methods {
		flex-direction: column;
	}
	.cc-pay > .card-header {
		padding: 16px;
	}
	.cc-trust {
		justify-content: center;
	}
}
@media (prefers-reduced-motion: reduce) {
	.cc-pay *,
	.cc-pay-btn.btn-primary {
		transition: none !important;
	}
	.cc-pay-btn.btn-primary:hover {
		transform: none;
	}
}
/* ===== Quote Forms (modernized) =====
   Rules below are scoped under .progress-box (or use compound selectors) so they
   outrank the duplicated legacy blocks in quote_box/<product>/product_quote.css,
   which load AFTER this file. Body-appended chrome (datepicker popup, popovers,
   selectpicker menus) is styled unscoped because it renders outside .progress-box. */

/* Question labels */
.progress-box [class*=col] > strong,
.progress-box [class*=col] > label{
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	color: #1a1a2e;
	line-height: 1.45;
	margin-bottom: 6px;
	letter-spacing: .1px;
}
/* inline optional toggles ("Provide later" checkboxes on bind pages) are not
   question labels — keep them quiet */
.progress-box [class*=col] > label:has(input, select, textarea){
	display: inline;
	font-size: 13.5px;
	font-weight: 600;
	color: #374151;
	margin-bottom: 0;
}
.progress-box h2{
	font-family: inherit;
	font-weight: 800;
	color: #1a1a2e;
	font-size: 24px;
}

/* Stage entrance — transform/opacity only (reSizeQuote measures height) */
@keyframes qFormRise{
	from{ opacity:0; transform:translateY(12px); }
	to{ opacity:1; transform:translateY(0); }
}
/* fill-mode backwards, NOT both: a retained end-state transform would give every
   question row a stacking context and paint .selectdown dropdowns under later rows */
.activeStage .belowgap{
	animation: qFormRise .38s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.activeStage .belowgap:nth-of-type(2){ animation-delay:.05s; }
.activeStage .belowgap:nth-of-type(3){ animation-delay:.1s; }
.activeStage .belowgap:nth-of-type(4){ animation-delay:.15s; }
.activeStage .belowgap:nth-of-type(n+5){ animation-delay:.2s; }
/* the entrance shorthand outranks .error's shake — re-assert it for group panels */
.activeStage .belowgap.error{
	animation: shake 0.4s ease-in-out;
}
@media (prefers-reduced-motion: reduce){
	.activeStage .belowgap{ animation: none; }
}

/* Progress steps — passed steps show a tick */
.completed.past .progress-circle{
	font-size: 0;
}
.completed.past .progress-circle::before{
	content: '\f00c';
	font-family: 'Font Awesome 7 Pro', 'Font Awesome 7 Free';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
}

/* Dropdown-trigger inputs (.caret / .caret2) — restore the design-system focus,
   recolor + recenter the arrow (product files pin it to the old input height) */
.progress-box .caret::after{
	top: 50%;
	margin-top: -0.125em;
	border-top-color: #6b7280;
}
.progress-box .caret2 input:focus{
	border: 1px solid transparent !important;
	box-shadow: none !important;
	outline: none;
}
.progress-box .caret input.form-control:focus{
	border: 2px solid #4B61DD !important;
	box-shadow: 0 0 0 4px rgba(75, 97, 221, 0.1) !important;
	outline: none;
}
/* Only dropdown-TRIGGER inputs (inside .caret/.caret2) should look active while
   readonly; :read-only also matches disabled inputs and true locked fields, which
   must keep their per-product grey — hence the narrow scope and exclusions */
.progress-box .caret input.form-control:read-only:not(:disabled):not(.error),
.progress-box .caret2 input.form-control:read-only:not(:disabled):not(.error){
	background-color: #fff !important;
}

/* Autocomplete / commodity dropdown panels (.selectdown) */
.caret .selectdown,
.caret2 .selectdown{
	top: calc(100% + 6px);
	margin: 0;
	border: 1px solid #e8ebf3;
	border-radius: 14px;
	box-shadow: 0 16px 44px rgba(23, 32, 90, .16);
	background: #fff;
	padding: 6px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 99;
}
/* inside an .input-icon the wrapper's chrome extends ~10px below the inner input */
.input-icon .caret .selectdown,
.input-icon .caret2 .selectdown{
	top: calc(100% + 16px);
}
.caret2 .selectdown{
	height: auto;
	max-height: 300px;
}
.caret .selectdown{
	height: 300px;
}
/* business occupation search injects .selectdown-lg with NO .caret wrapper and its
   own proven geometry (top/margins in business/product_quote.css) — skin only */
.selectdown.selectdown-lg{
	border: 1px solid #e8ebf3;
	border-radius: 14px;
	box-shadow: 0 16px 44px rgba(23, 32, 90, .16);
	background: #fff;
	padding: 6px;
	height: auto;
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
}
.selectdown .list-group-item{
	border: 0;
	border-radius: 9px;
	padding: 9px 12px;
	font-size: 14px;
	color: #374151;
	transition: background .15s ease, color .15s ease;
}
.selectdown .list-group-item:hover{
	background: #f0f3ff;
	color: #4B61DD;
}
.selectdown .backButton{
	font-weight: 700;
	color: #4B61DD;
}
.selectdown .occupation-result{
	border-radius: 9px;
}
.selectdown .occupation-result:hover{
	border-left-color: #4B61DD;
	background: #f0f3ff;
}
.selectdown .search_highlight{
	background: #e8ecff;
	color: #3a49b8;
	border-radius: 3px;
}

/* Repeating item rows (commodities, goods, UAVs, equipment) */
.progress-box .uavtitles{
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 800;
	color: #6b7280;
}
.progress-box .uavrow,
.progress-box .eqprow{
	position: relative;
	margin-bottom: 8px;
	padding: 8px 32px 8px 10px;
	background: #fafbff;
	border: 1px solid #edf0f9;
	border-radius: 12px;
	transition: border-color .15s ease;
}
.progress-box .uavrow:hover,
.progress-box .eqprow:hover{
	border-color: #d9def0;
}
.progress-box .uavdel{
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	color: #c3c8d4;
	font-size: 17px;
	transition: color .15s ease;
	cursor: pointer;
}
.progress-box .uavdel:hover{
	color: #dc2626;
}
@media only screen and (max-width: 767px){
	.progress-box .uavdel{
		top: 12px;
		right: 10px;
		transform: none;
	}
}
.progress-box .addDroneButton{
	border: 2px dashed #d9def0;
	border-radius: 12px;
	padding: 10px 14px;
	color: #4B61DD;
	font-weight: 700;
	cursor: pointer;
	transition: all .2s ease;
}
.progress-box .addDroneButton:hover{
	border-color: #4B61DD;
	background: #f8f9ff;
	color: #4356cc;
}

/* Grouped question panels */
.progress-box .transportBox,
.progress-box .commodityQuestion,
.progress-box .blanketItemsQuestion{
	background: #fff !important;
	border: 1px solid #e8ebf3;
	border-radius: 12px;
	padding: 12px 14px;
}
.progress-box .transportBox.error,
.progress-box .commodityQuestion.error,
.progress-box .blanketItemsQuestion.error{
	border: 2px solid #ef4444 !important;
	background: #fef2f2 !important;
}

/* Inline reveal links */
.valuation{
	margin-top: -8px;
	color: #4B61DD;
	font-weight: 600;
}
.valuation:hover{
	color: #4356cc;
	cursor: pointer;
}

/* Number spinner */
.number-spinner .btn{
	border: 2px solid #e0e0e0;
	background: #fff;
	color: #4B61DD;
	font-weight: 700;
	border-radius: 10px;
	transition: all .15s ease;
}
.number-spinner .btn:hover{
	border-color: #4B61DD;
	background: #f8f9ff;
}

/* Captcha */
.captchaForm #captcha{
	border: 1px solid #e8ebf3 !important;
	border-radius: 10px;
	margin-bottom: 8px;
}
.captchaForm span{
	color: #b45309 !important;
	font-size: 13px;
	font-weight: 600;
}

/* Three-dot loader recolor (base rule lives in main.css, this file loads later) */
#loader-2 span{
	background-color: #4B61DD;
	width: 14px;
	height: 14px;
	margin: 24px 4px;
}

/* Popovers (help hints + validation pointer) */
.popover{
	border: 0;
	border-radius: 12px;
	box-shadow: 0 12px 36px rgba(23, 32, 90, .18);
	font-family: inherit;
}
.popover .popover-body{
	color: #374151;
	font-size: 13.5px;
	line-height: 1.6;
}
.popover .btn-success{
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border: 0;
	border-radius: 9px;
	font-weight: 700;
}

/* Generic popup modals (popUp / popUpLg) + compForm item builder */
#popUp .modal-content,
#popUp-lg .modal-content{
	border: 0;
	border-radius: 18px;
	box-shadow: 0 24px 70px rgba(23, 32, 90, .28);
}
#popUp .close,
#popUp-lg .close{
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f3f4f6;
	opacity: 1;
	text-shadow: none;
	color: #6b7280;
	font-size: 18px;
	margin: 6px;
	transition: all .15s ease;
}
#popUp .close:hover,
#popUp-lg .close:hover{
	background: #e5e7eb;
	color: #1a1a2e;
}
.compForm .cfbutton,
.compForm .btn-primary{
	background: linear-gradient(135deg, #4B61DD 0%, #5a6fe8 100%);
	border: 0;
	border-radius: 11px;
	font-weight: 700;
	padding: 10px 22px;
	box-shadow: 0 4px 12px rgba(75, 97, 221, .3);
}
.cfrow{
	align-items: center;
	background: #fafbff;
	border: 1px solid #edf0f9;
	border-radius: 12px;
	padding: 8px 12px;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 8px;
}
.cfrow .btn{
	border-radius: 9px;
	padding: 6px 10px;
	font-size: 13px;
	transition: all .15s ease;
}
.cfrow .btn-outline-warning{
	color: #b45309;
	border: 2px solid #fde68a;
}
.cfrow .btn-outline-warning:hover{
	background: #fef3c7;
	color: #92400e;
}
.cfrow .btn-outline-danger{
	color: #dc2626;
	border: 2px solid #fecaca;
}
.cfrow .btn-outline-danger:hover{
	background: #fef2f2;
	color: #b91c1c;
}

/* Bootstrap-datepicker popup reskin (body-appended; vendor CSS uses 2012-era
   gradients, hence background-image:none + !important on the colored states) */
.datepicker.dropdown-menu{
	border: 0;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(23, 32, 90, .18);
	padding: 10px;
	font-family: inherit;
	color: #374151;
}
.datepicker.dropdown-menu:before,
.datepicker.dropdown-menu:after{
	display: none;
}
.datepicker table tr td,
.datepicker table tr th{
	border-radius: 9px;
	width: 34px;
	height: 32px;
	font-weight: 600;
}
.datepicker .datepicker-switch,
.datepicker .prev,
.datepicker .next{
	color: #1a1a2e;
	font-weight: 800;
}
.datepicker .datepicker-switch:hover,
.datepicker .prev:hover,
.datepicker .next:hover,
.datepicker tfoot tr th:hover{
	background: #f0f3ff !important;
}
.datepicker table tr td.day:hover,
.datepicker table tr td.focused{
	background: #f0f3ff !important;
	cursor: pointer;
}
.datepicker table tr td.old,
.datepicker table tr td.new{
	color: #c3c8d4;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover{
	color: #d1d5db;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover{
	background-image: none !important;
	background-color: #fff8e1 !important;
	color: #92600a !important;
	text-shadow: none;
	border: 0;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active.active,
.datepicker table tr td.active:hover.active{
	background-image: none !important;
	background-color: #4B61DD !important;
	color: #fff !important;
	text-shadow: none;
	box-shadow: 0 4px 12px rgba(75, 97, 221, .35);
}
.datepicker table tr td span{
	border-radius: 10px;
	font-weight: 600;
}
.datepicker table tr td span:hover{
	background: #f0f3ff !important;
}
.datepicker table tr td span.active,
.datepicker table tr td span.active:hover,
.datepicker table tr td span.active.active{
	background-image: none !important;
	background-color: #4B61DD !important;
	color: #fff !important;
	text-shadow: none;
}
.datepicker table tr td span.old,
.datepicker table tr td span.new{
	color: #c3c8d4;
}

/* ── Product quote styles (merged from the per-product product_quote.css files) ── */

.uavtitles{
	font-size: 12px;
}

.uavrow,.eqprow{
	position: relative;
	margin-bottom:2px;
}

.uavdel{
	position: absolute;
	right:-3px;
	top:6px;
	z-index:2;
}

.uavdel:hover{
	color:red;
	cursor: pointer;
}

.addDroneButton:hover{
	color:lightslategray;
	cursor: pointer;
}

@media only screen and (max-width: 768px){
	.uavdel{
		right: 20px;
		top: -4px;
	}
}

.caret, .caret2{
	position: relative;
	display: inline-block;
	width:100%;
}

.caret input:hover{
	cursor: pointer;
}

.caret::after{
	right: 10px;
	top: 18px;
	color: rgb(130,130,130);
	position: absolute;
	margin-left: .255em;
	vertical-align: .255em;
	content: "";
	border-top: .3em solid;
	border-right: .3em solid transparent;
	border-bottom: 0;
	border-left: .3em solid transparent;
}

.caret input:focus{
	outline: none;
	box-shadow: none !important;
	border: 1px solid #ced4da !important;
}

input:read-only, input[readonly="readonly"], input[readonly]{
	background-color: white !important;
}

.selectdown{
	width: 100%;
	position: absolute;
	z-index: 98;
	left: 0px;
	overflow: scroll;
	height: auto;
	top:39px;
	height: 240px;
	overflow-x: hidden;
	padding: 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: .25rem;
}

.com-right span:hover, .com-left span:hover{
	cursor: pointer;
}

.com-left{
	width:100%;
	height: 100%;
	overflow-y: scroll;
	border-radius: .25rem;
}

.backButton{
	padding:0px 3px;
}

.com-right{
	width:100%;
	padding:0px;
	height:100%;
	background: white;
	overflow-y: scroll;
	position: absolute;
	border-radius: .25rem;
	left:100%;
	top:1px;
	z-index: 100;
	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

.copen{
	left:0px;
}

.subquote{
	padding:0px;
}

.bOption{
	font-size: 12px;
}

.input-icon-down i{
	font-size: 24px;
}

.selectdown-lg{
	margin: 0px 6px;
	width: calc(100% - 12px);
	top: 50px !important;
}

input:read-only{
	background-color: #e9ecef !important;
}

.btn-remove-row{
	height: 38px;
	width:100%;
}

.country-entry{
	position: relative;
	display: none;
}

.invalid-feedback{
	display: none;
	font-size: 0.875rem;
	color: #dc3545;
	margin-top: 0.25rem;
}

.country-entries{
	display: none;
}

.country-search-container{
	position: relative;
	margin-bottom: 1rem;
	width: 100%;
}

.country-search-wrapper{
	border: 1px solid #ced4da;
	border-radius: 8px;
	padding: 0.5rem;
	min-height: 50px;
	background: white;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	cursor: text;
}

.country-search{
	border: none;
	outline: none;
	flex: 1;
	min-width: 150px;
	padding: 0.25rem;
	background: transparent;
}

.country-tag{
	background: #e9ecef;
	border-radius: 4px;
	padding: 0.25rem 0.5rem;
	display: inline-flex;
	align-items: center;
	font-size: 0.875rem;
}

.country-tag .remove-tag{
	margin-left: 0.5rem;
	cursor: pointer;
	color: #6c757d;
}

.country-tag .remove-tag:hover{
	color: #dc3545;
}

.country-results{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	max-height: 200px;
	overflow-y: auto;
	background: white;
	border: 1px solid #ced4da;
	border-radius: 8px;
	z-index: 1000;
	display: none;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	margin-top: 0.25rem;
}

.country-results.show{
	display: block;
}

.country-result-item{
	padding: 0.5rem 1rem;
	cursor: pointer;
}

.country-result-item:hover{
	background-color: #f8f9fa;
}

.country-code{
	color: #6c757d;
	font-size: 0.875rem;
	margin-left: 0.5rem;
}

.occupation-result{
	padding: 12px 15px;
	cursor: pointer;
	border-left: 3px solid transparent;
	transition: all 0.15s ease;
}

.occupation-result:hover{
	background-color: #f8f9fa;
	border-left-color: #007bff;
}

.occupation-name{
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 4px;
}

.occupation-category{
	font-size: 12px;
	color: #6c757d;
}

.occupation-category i{
	margin-right: 5px;
	font-size: 11px;
}

.search_highlight{
	background-color: #fff3cd;
	border-radius: 2px;
}

.tbls{
	padding:10px;
	text-align: right;
	font-weight: bold;
}

.tbll{
	border-top: 1px solid #E0E2E5;
	padding: 2px;
}

@media only screen and (max-width: 575px){
	.tbls{
		padding:0px;
		border: 1px solid #E0E2E5;
		text-align: center;
		background: #F5F5F5;
		border-bottom:none;
	}
}

.tbl{
	padding:10px;
	text-align: center;
	border-left: 1px solid #E0E2E5;
	border-top: 1px solid #E0E2E5;
}

.tbl:last-child{
	border-right: 1px solid #E0E2E5;
}

.tbl-h{
	background: #69D1E2;
	color: white;
	font-weight: bold;
}

.datepicker-dropdown td.day.trip-depart{
	background: #4B61DD !important;
	color: #fff !important;
	border-radius: 4px;
}

.datepicker-dropdown td.day.trip-range, .datepicker-dropdown td.day.trip-hover-range{
	background: #e6eafb !important;
	border-radius: 0;
}

/* Equipment-only variants (scoped; markup adds these classes) */
.selectdown-equip{
	margin-top: 10px;
}
.com-right-static{
	height: auto;
	overflow-y: hidden;
}
