/* CSS Variables */
.insurance-quote-app {
  --rrt-primary-color: #0086FA;
  --rrt-primary-color-light: #e0f6ff;
  --rrt-primary-color-dark: #008fcc;
  --border-color: #DAE0E6;
  --text-color-primary: #1d2a39;
  --text-color-secondary: #6B7280;
  --text-color-secondary-light: #9CA3AF;
  --bg-color-light: #ffffff;
  --bg-color-medium: #f7faff;
  --bg-color-disabled: #f0f4f8;
  --border-radius-md: 0.5rem;
  --border-radius-1: 0.5rem;
  --border-radius-lg: 0.75rem;
  --shadow: 0 10px 30px rgba(0, 100, 150, 0.08);
  position: relative;
  line-height: normal;
  padding: 0px 4px !important;
}

.article-wrapper.tool-landing-wrapper.result_active .blue_banner .tool-banner-container,
.article-wrapper.tool-landing-wrapper .blue_banner .result-banner-container {
  display: none;
}

.article-wrapper.tool-landing-wrapper.result_active .blue_banner .result-banner-container,
.article-wrapper.tool-landing-wrapper .blue_banner .tool-banner-container {
  display: block;
}

.insurance-quote-app .zip-tool-container {
  margin: 48px auto;
  width: 100%;
  max-width: 760px;
}

.insurance-quote-app .quote-app-result {
  margin: 30px auto;
  width: 100%;
  max-width: 992px;
}

.article-wrapper.tool-landing-wrapper .blue_banner {
  background: linear-gradient(134.75deg, #F2F7FF 43.93%, #FFFBF2 103.65%);
  padding: 62px 0px 175px 0px;
}

.article-wrapper.tool-landing-wrapper.result_active .blue_banner {
  padding-bottom: 14px !important;
}

.article-wrapper.tool-landing-wrapper:not(.result_active) .insurance-quote-app {
  top: -270px;
}

.article-wrapper.tool-landing-wrapper h1 {
  
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
  text-align: center;
  vertical-align: middle;
  color: #111827;
  margin-bottom: 8px !important;
}

.article-wrapper.tool-landing-wrapper .sub-text {
  
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: #4B5563;
}

.article-wrapper.tool-landing-wrapper .banner-text-container .security,
.article-wrapper.tool-landing-wrapper .banner-text-container .process {
  position: relative;
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: #6B7280;
}

.article-wrapper.tool-landing-wrapper .banner-text-container .security::before,
.article-wrapper.tool-landing-wrapper .banner-text-container .process::before {
  content: "";
  height: 15px;
  width: 13px;
  background-image: url(/images/rates-recommendation-tool/secured.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  display: flex;
  position: absolute;
  left: -16px;
  top: 2px;
}

.article-wrapper.tool-landing-wrapper .banner-text-container .process::before {
  background-image: url(/images/rates-recommendation-tool/process.png);
}

.article-wrapper.tool-landing-wrapper .banner-tabs {
  gap: 40px;
  margin-top: 16px;
}

/* Header */
.insurance-quote-app .app-header {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  color: var(--text-color-secondary);
  font-size: 0.875rem;
}

.insurance-quote-app .header-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insurance-quote-app .header-item svg,
.insurance-quote-app .header-item img {
  width: 1rem;
  height: 1rem;
  stroke: var(--rrt-primary-color);
}

/* Form Card */
.insurance-quote-app .form-card {
  background-color: var(--bg-color-light);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  min-height: 500px;
  box-shadow: 0px 1px 2px 0px #0000000D;
  border: 1px solid var(--border-color);
}

/* Form Sections */
.insurance-quote-app .form-section {
  margin-bottom: 28px;
}

.insurance-quote-app .form-section:last-child {
  margin-bottom: 0;
}

.insurance-quote-app .section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 12px;
}

.insurance-quote-app .section-header img {
  width: 28px;
  height: 28px;
  color: var(--rrt-primary-color);
}

.insurance-quote-app .section-title {
  
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.6px;
  vertical-align: middle;
  text-transform: uppercase;
  color: #1F232A;
}

/* Grid */
.insurance-quote-app .section-grid {
  display: grid;
  gap: 12px;
}

.insurance-quote-app .section-grid.input-layout {
  gap: 18px;
}

.insurance-quote-app .grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.insurance-quote-app .grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Input & Select Fields */
.insurance-quote-app .input-group {
  position: relative;
}

.insurance-quote-app .input-label {
  position: absolute;
  left: 1rem;
  top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color-secondary);
  pointer-events: none;
}

.insurance-quote-app .select-field+.input-label {
  font-size: 12px;
  color: var(--rrt-primary-color);
}

.insurance-quote-app .input-field,
.insurance-quote-app .select-field {
  width: 100%;
  height: 56px;
  padding: 24px 24px 8.5px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-1) !important;
  background-color: var(--bg-color-light);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-color-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.insurance-quote-app .input-field,
.insurance-quote-app .select-field {
  color: #000000;
}

.insurance-quote-app .select-field option { 
  font-weight: normal;
}

.insurance-quote-app .select-field:hover,
.insurance-quote-app .input-field:hover {
  border: 2px solid var(--rrt-primary-color);
}

.insurance-quote-app .input-field:focus,
.insurance-quote-app .select-field:focus {
  outline: none;
  border-color: var(--rrt-primary-color);
  box-shadow: 0 0 0 3px var(--rrt-primary-color-light);
}

.insurance-quote-app .input-with-icon {
  padding-right: 3rem;
}

.insurance-quote-app .input-with-icon+.input-label {
  transform: translate(0px, 12px);
  transform-origin: 0 0;
  transition: transform 120ms ease-in;
}

.insurance-quote-app .input-with-icon:focus+.input-label,
.insurance-quote-app .input-with-icon:not(:placeholder-shown)+.input-label {
  transform: translate(0px, 0%);
  font-size: 12px;
  color: var(--rrt-primary-color);
}

/* Icons */
.insurance-quote-app .input-icon,
.insurance-quote-app .select-arrow {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  color: var(--text-color-secondary);
  pointer-events: none;
}

.insurance-quote-app .select-wrapper {
  position: relative;
}

/* Tags */
.insurance-quote-app .tags-label {
  color: var(--text-color-secondary);
  margin-top: 16px;
  margin-bottom: 8px;
  display: block;
  
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.2px;
  vertical-align: middle;
}

.insurance-quote-app .tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.insurance-quote-app .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 12px 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  background-color: var(--bg-color-light);
  cursor: pointer;
  transition: all 0.2s;
}

.insurance-quote-app .tag:hover,
.insurance-quote-app .tag.is-selected {
  border: 2px solid var(--rrt-primary-color);
  color: var(--rrt-primary-color);
}

.insurance-quote-app .tag svg,
.insurance-quote-app .tag img {
  width: 20px;
  height: 20px;
}

.insurance-quote-app .tag .close-icon {
  height: 21px;
  width: 21px;
}

/* Radio Inputs */
.insurance-quote-app .radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.insurance-quote-app .radio-label {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  padding: 20px 45px 20px 20px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-md);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  position: relative;
  height: 100%;
  flex: 1;
  
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.4px;
  text-align: center;
  vertical-align: middle;
}

.insurance-quote-app .radio-label.insured-btn {
  height: 44px;
}

.insurance-quote-app .toggle-buttons .radio-label {
  justify-content: center;
  flex-direction: row;
}

.insurance-quote-app .radio-label:hover {
  border-color: var(--rrt-primary-color-dark);
}

.insurance-quote-app .radio-input:focus-visible+.radio-label {
  box-shadow: 0 0 0 3px var(--rrt-primary-color-light);
}

.insurance-quote-app .radio-input:checked+.radio-label {
  transition: all 0.8s;
  border: 2px solid var(--rrt-primary-color);
  background-color: var(--rrt-primary-color-light);
}

.insurance-quote-app .coverage-option .radio-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #111827;
}

.insurance-quote-app .coverage-option .radio-label::after {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  display: inline-block;
  transition: all 0.2s;
  position: absolute;
  right: 20px;
}

.insurance-quote-app .radio-input:checked+.radio-label::after {
  background-color: white;
  border-color: var(--rrt-primary-color);
  box-shadow: inset 0 0 0 6px var(--rrt-primary-color);
}

.insurance-quote-app .coverage-option .radio-description {
  font-size: 12px;
  color: var(--text-color-secondary);
}

.insurance-quote-app .coverage-option .radio-input:checked+.radio-label .radio-description {
  color: #000000;
}

/* Toggle Group */
.insurance-quote-app .toggle-group {
  display: flex;
  align-items: center;
  background: #F6F7F8;
}

.insurance-quote-app .toggle-group .toggle-label {
  flex-grow: 1;
  
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.4px;
  vertical-align: middle;
  color: #111827;
}

.insurance-quote-app .toggle-buttons {
  display: flex;
  overflow: hidden;
  justify-content: flex-end;
}

.insurance-quote-app .toggle-buttons .radio-label {
  border: 2px solid var(--border-color);
  background-color: #FFFFFF;
  border-radius: 8px;
  max-width: 146px;
  padding: 12px 0px;
  color: #374151;
}

.insurance-quote-app .toggle-buttons .radio-label img {
  display: none;
}

.insurance-quote-app .toggle-buttons .radio-input:checked+.radio-label {
  color: var(--rrt-primary-color);
  font-weight: 600;
}

.insurance-quote-app .toggle-buttons .radio-input:checked+.radio-label img {
  display: block;
  margin-left: 4px;
}

/* Submit Button */
.insurance-quote-app .submit-btn {
  width: 100%;
  height: 56px;
  padding: 1rem;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: #E5E7EB;
  color: #9CA3AF;
  font-size: 18px;
  font-weight: 600;
  cursor: not-allowed;
}

.insurance-quote-app .submit-btn.active {
  background: var(--rrt-primary-color);
  color: white;
  cursor: pointer;
  position: relative;
}

.insurance-quote-app .submit-btn.active:hover {
  outline: none;
  box-shadow: 0 5px 15px rgba(0, 174, 255, 0.4);
  transform: translateY(-2px);
}

.insurance-quote-app .submit-btn.active .get_quote {
  position: relative;
}

.insurance-quote-app .submit-btn.active .get_quote::after {
  content: '';
  background-image: url(/images/rates-recommendation-tool/submit-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  height: 12px;
  width: 18px;
  right: -40px;
  top: 50%;
  bottom: 50%;
  transform: translate(-50%, -50%);
}

/* Misc */
.insurance-quote-app .currently-insured-wrapper {
  background-color: #F6F7F8;
  padding: 16px;
  border-radius: 8px;
}

.tool-landing-wrapper .insurance-quote-app .mascot {
  right: -100px;
}

.insurance-quote-app .mascot {
  position: absolute;
  right: -96px;
  top: 75px;
  background: url(/images/rates-recommendation-tool/mascot-image.svg) no-repeat;
  width: 100px;
  height: 160px;
  z-index: 10;
}

.insurance-quote-app .mascot.result {
  display: none;
}

/* Error Messages */
.insurance-quote-app .fs-error-msg {
  display: none;
  font-size: 13px;
  color: #C31B31;
  padding-left: 3px;
  position: absolute;
  bottom: -18px;
  left: 0px;
}

.insurance-quote-app .no-data-available {
  display: none;
  font-size: 13px;
  color: #C31B31;
}

/* Result Strip */
.insurance-quote-app .res-strip-container {
  
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #272B32;
  letter-spacing: 0.4px;
  vertical-align: middle;
  margin-bottom: 30px;
}

.tool-landing-wrapper .insurance-quote-app .res-strip-container {
  margin-bottom: 40px;
}

.insurance-quote-app .res-strip-container .zip-text,
.insurance-quote-app .res-strip-container .coverage-text {
  color: #6B7280;
  font-weight: 400;
}

.insurance-quote-app .res-strip-container .zip-text,
.insurance-quote-app .res-strip-container .coverage-text,
.insurance-quote-app .zip-text-val, .insurance-quote-app .coverage-text-val, .insurance-quote-app .make-model-val  {
  align-self: center;
}

.insurance-quote-app .res-strip-container .start-over {
  color: #2563EB;
  cursor: pointer;
}

.insurance-quote-app .res-strip-container .zip-text::before,
.insurance-quote-app .res-strip-container .coverage-text::before {
  content: '\00B7';
  position: relative;
  color: #6B7280;
  padding: 0px 8px;
}

/* QUOTE RESULTS*/
.quote-app-result * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.quote-app-result .container {
  max-width: 768px;
  margin: 0 auto;
}

/* Pricing Card */
.quote-app-result .pricing-section-parent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: -webkit-fill-available;
  width: -moz-available;
}

.quote-app-result .pricing-card {
  margin: 20px 0px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: visible;
  position: relative;
  transition: all 0.4s ease;
}

.quote-app-result .best-value-badge {
  background: #16A34A;
  color: white;
  padding: 2px 0px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  height: 30px;
  line-height: 18px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 99%;
  left: 4px;
  border-radius: 4px;
  top: 5px;
  gap: 8px;
}

.quote-app-result .star-icon {
  width: 16px;
  height: 16px;
}

.quote-app-result .card-content {
  padding: 32px;
}

.quote-app-result .pricing-card.best-fit-card .card-content {
  padding-top: 48px;
  border: 1px solid #16A34A;
  border-radius: 4px;
}

.quote-app-result .card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  margin-bottom: 8px;
  border: none;
  background-color: white;
  padding: 0px;
}

.quote-app-result .logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.quote-app-result .logo {
  width: 52px;
  height: 52px;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.quote-app-result .company-name {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.quote-app-result .pricing-section {
  text-align: right;
  flex-shrink: 0;
}

.quote-app-result .price {
  color: #111827;
  
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
}

.quote-app-result .yearly-price {
  
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
  margin-top: 4px;
  position: relative;
  color: #525966;
}

.quote-app-result .period {
  
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: 0px;
  text-align: right;
  vertical-align: middle;
}

.quote-app-result .yearly-price sup,
.quote-app-result .price sup {
  font-size: 20px;
  position: relative;
  color: #111835a3;
  top: 3px;
}

/* CTA Button */
.quote-app-result .cta-button {
  color: var(--rrt-primary-color);
  border: 1px solid var(--rrt-primary-color);
  background: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-width: 204px;
  transition: all 0.2s ease;
}

.quote-app-result .cta-button::after {
  content: '';
  background-image: url(/images/rates-recommendation-tool/res-arrow.svg);
  background-repeat: no-repeat;
  height: 12px;
  width: 18px;
  right: 22px;
}

.quote-app-result .cta-button:hover {
  transform: scale(0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-app-result .cta-button.activeCompany {
  border: 1px solid var(--rrt-primary-color);
  color: #fff;
  background: var(--rrt-primary-color);
}

.quote-app-result .cta-button.activeCompany::after {
  background-image: url(/images/rates-recommendation-tool/res-arrow-white.svg);
}

.quote-app-result .arrow-icon {
  width: 16px;
  height: 16px;
}

.quote-app-result .disclaimer {
  font-size: 12px;
  color: #687484;
  text-align: center;
  width: inherit;
  margin-top: 7px;
  left: 50%;
  right: 50%;
}

/* Features & Content */
.quote-app-result .main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  transition: max-height 0.4s ease;
}

.quote-app-result .main-content.collapsed {
  max-height: 100px;
}

.quote-app-result .main-content.expanded {
  max-height: 380px;
  overflow: hidden;
  overflow-y: auto;
  padding-bottom: 20px;
}

.quote-app-result .main-content.collapsed::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, white);
}

.quote-app-result .section-title {
  font-size: 12px;
  font-weight: 700;
  color: #1F232A;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.quote-app-result .feature-list {
  margin-bottom: 16px;
}

.quote-app-result .check-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-app-result .chevron-icon,
.quote-app-result .chevron-down-icon {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  flex-shrink: 0;
  margin-top: 2px;
}

.quote-app-result .feature-item {
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.quote-app-result .collapsed-text {
  color: #9ca3af !important;
}

.quote-app-result .discount-item,
.quote-app-result .feature-header {
  
  font-weight: 400;
  font-size: 14px;
  padding-left: 28px;
  color: #4B5563;
  list-style: none;
  margin: 16px 0px 0px 0px;
  line-height: 20px;
  letter-spacing: 0.2px;
  position: relative;
  vertical-align: middle;
}

.quote-app-result .feature-header::before,
.quote-app-result .discount-item::before {
  content: "";
  height: 20px;
  width: 11px;
  background-image: url(/images/rates-recommendation-tool/available.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  display: flex;
  position: absolute;
  left: 8px;
}

.quote-app-result .feature-header::before {
  background-image: url(/images/rates-recommendation-tool/tick.svg) !important;
}

/* See More Button */
.quote-app-result .see-more-btn,
.see-more-btn {
  background: none;
  border: none;
  color: #0086FA;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  transition: all 0.2s;
}

.quote-app-result .see-more-btn:hover,
.see-more-btn:hover {
  color: #2563eb;
}

.quote-app-result .see-more-btn::after {
  position: absolute;
  display: block;
  content: "";
  color: #0086FA;
  width: 8px;
  height: 8px;
  border-top: solid 2px;
  border-left: solid 2px;
  top: 75%;
  right: -20px;
  transform-origin: 0% 0%;
  transform: rotatez(225deg);
}

.quote-app-result .see-more-btn.clicked::after {
  transform: rotatez(44deg);
  top: 36%;
}

.see-more-btn .arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.see-more-btn .arrow.rotated {
  transform: rotate(180deg);
}

/* Owl Mascot */
.quote-app-result .pricing-card .owl-mascot {
  position: absolute;
  bottom: 0;
  right: -66px;
  width: 80px;
  height: auto;
  pointer-events: none;
  z-index: 10;
}

/* ============ BANNER ============ */

.quote-app-result-bannar {
  background: linear-gradient(to bottom, #f9fbff, #fdfdfd);
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
}

.quote-app-result-bannar .banner-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.quote-app-result-bannar .banner-content h2 span {
  color: #000;
}

.quote-app-result-bannar .banner-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.quote-app-result-bannar .banner-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.quote-app-result-bannar .banner-icons .icon-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.quote-app-result-bannar .banner-icons svg {
  color: #3b82f6;
}

/* Quote Summary */
.quote-app-result-bannar .quote-summary {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  font-family: Arial, sans-serif;
  gap: 6px;
}

.quote-app-result-bannar .quote-summary .dot {
  color: #999;
}

.quote-app-result-bannar .quote-summary strong {
  font-weight: 600;
  color: #000;
}

.quote-app-result-bannar .quote-summary a.start-over {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #2563eb;
  text-decoration: none;
}

.quote-app-result-bannar .quote-summary a.start-over:hover {
  text-decoration: underline;
}

.quote-app-result-bannar .quote-summary a.start-over svg {
  color: #2563eb;
}

#cards-wrapper .desclaimer {
  padding: 16px;
  border: 1px solid #E3E3E3;
  border-radius: 6px;
  
  font-weight: 600;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin-top: 24px;
  color: #4B5563;
}

#cards-wrapper .desclaimer b {
  color: #000000;
}

/* ============ LOADER ============ */

.rate-loader-container {
  height: 99%;
  z-index: 999;
  width: 99%;
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rate-loader-container .loading-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 100px;
}

.rate-loader-container .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
  color: #0F172A;
}

.rate-loader-container .subtitle {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 32px;
  text-align: center;
}

.rate-loader-container .compass-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.rate-loader-container .sophie {
  position: relative;
  z-index: 10;
  width: 100px;
  height: 100px;
  will-change: transform;
  animation: breathe 3s ease-in-out infinite;
  transform: translateZ(0);
}

.rate-loader-container .compass-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  top: 50%;
  left: 50%;
  will-change: transform;
  transform-origin: center center;
}

.rate-loader-container .ring-outer {
  width: 280px;
  height: 280px;
  border: none;
  animation: rotate-slow 60s linear infinite;
  transform: translate(-50%, -50%) translateZ(0);
}

.rate-loader-container .ring-middle {
  width: 220px;
  height: 220px;
  border: 2px dotted #94A3B8;
  animation: rotate-medium 45s linear infinite reverse;
  transform: translate(-50%, -50%) translateZ(0);
}

.rate-loader-container .ring-inner {
  width: 160px;
  height: 160px;
  border: 1px solid #2563EB;
  animation: rotate-fast 25s linear infinite;
  transform: translate(-50%, -50%) translateZ(0);
}

.rate-loader-container .glint {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
  will-change: opacity, transform;
  animation: glint 3s ease-in-out infinite;
}

.rate-loader-container .glint-1 {
  top: 6%;
  right: 31%;
  animation-delay: 0s;
  box-shadow: 0 0 10px rgb(41 34 197 / 50%);
  background: #2262c5fa;
}

.rate-loader-container .glint-2 {
  bottom: 50%;
  left: 1%;
  animation-delay: 1s;
  background: #d9dd31;
  box-shadow: 0 0 10px rgb(221 203 28 / 50%);
}

.rate-loader-container .glint-3 {
  top: 50%;
  right: 10%;
  animation-delay: 2s;
}

.rate-loader-container .glint-4 {
  right: 58%;
  top: 95%;
  animation-delay: 3s;
}

.rate-loader-container .glint-5 {
  top: 50%;
  right: 1%;
  animation-delay: 4s;
}

.rate-loader-container .status-text {
  font-size: 15px;
  color: #475569;
  text-align: center;
  margin-bottom: 6px;
  min-height: 22px;
  will-change: opacity, transform;
}

.rate-loader-container .status-text.fade-in {
  animation: fade-in 0.4s ease-out;
}

.rate-loader-container .reassurance {
  font-size: 13px;
  color: #94A3B8;
  text-align: center;
}

.insurance-quote-app .toggle-buttons .radio-label.label-first {
  margin-right: 12px;
}

.insurance-quote-app #insurerSelectWrapper {
  margin-top: 12px;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1) translateZ(0);
  }

  50% {
    transform: scale(1.08) translateZ(0);
  }
}

@keyframes rotate-fast {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateZ(0);
  }
}

@keyframes rotate-medium {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateZ(0);
  }
}

@keyframes rotate-slow {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateZ(0);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateZ(0);
  }
}

@keyframes glint {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .quote-app-result .card-content {
    padding: 16px;
  }

  .quote-app-result .pricing-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-app-result .main-content {
    gap: 24px;
  }
}

@media (min-width: 580px) {
  .insurance-quote-app .toggle-buttons .radio-label {
    width: 146px;
  }
}

@media (max-width: 580px) {
  .insurance-quote-app .toggle-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .insurance-quote-app .toggle-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

@media (max-width: 640px) {
  .rate-loader-container .loading-container {
    padding: 24px;
  }

  .rate-loader-container .compass-container {
    width: 260px;
    height: 260px;
  }

  .rate-loader-container .ring-outer {
    width: 240px;
    height: 240px;
  }

  .rate-loader-container .ring-middle {
    width: 190px;
    height: 190px;
  }

  .rate-loader-container .ring-inner {
    width: 140px;
    height: 140px;
  }

  .rate-loader-container .sophie {
    width: 85px;
    height: 85px;
  }

  .rate-loader-container .title {
    font-size: 20px;
  }

  .rate-loader-container .subtitle {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {

  .insurance-quote-app .mascot,
  .insurance-quote-app .best-fit-card::after {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .quote-app-result .container {
    max-width: 768px;
    padding: 0 16px;
  }

  .quote-app-result .card-content {
    padding: 16px;
  }

  .quote-app-result .card-header {
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
  }

  .quote-app-result .pricing-section {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .quote-app-result .btn-container {
    width: 100%;
  }

  .quote-app-result .cta-button {
    align-self: flex-start;
    margin-top: 0;
    min-width: 100%;
  }

  .quote-app-result .cta-button:hover {
    border: 1px solid #16A34A;
    box-shadow: -3px 3px 6px #00000029;
    transform: scale(1.03);
    border-radius: 10px;
  }

  .quote-app-result .main-content {
    grid-template-columns: 1fr;
  }

  .quote-app-result .discount-item,
  .quote-app-result .feature-item {
    font-size: 12px;
    line-height: 18px;
  }

  .insurance-quote-app .grid-cols-2,
  .insurance-quote-app .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .quote-app-result .best-value-badge {
    font-size: 10px;
    height: 22px;
  }

  .insurance-quote-app .res-strip-container .start-over {
    margin-top: 16px;
  }

}

@media (min-width: 768px) {

  .insurance-quote-app .toggle-buttons .radio-label.label-first {
    margin-right: 16px;
  }

  .insurance-quote-app #insurerSelectWrapper {
    margin-top: 12px;
  }

  .insurance-quote-app .form-card {
    padding: 32px;
  }

  .insurance-quote-app .section-header {
    margin-bottom: 16px;
  }

  .section-header .coverage-option label {
    margin-right: 16px;
  }

  .quote-app-result .pricing-card:not(.best-fit-card):hover {
    border: 1px solid #16A34A;
    box-shadow: -3px 3px 6px #00000029;
    transform: scale(1.03);
    border-radius: 10px;
  }

  #cards-wrapper .desclaimer {
    font-size: 12px;
    line-height: 22px;
    padding: 16px;
  }

  .article-wrapper.tool-landing-wrapper h1 {
    font-size: 40px;
    margin-bottom: 12px !important;
  }

  .article-wrapper.tool-landing-wrapper .sub-text {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.4px;
  }

  .article-wrapper.tool-landing-wrapper .banner-tag-text {
    font-size: 14px;
    line-height: 20px;
  }

  .article-wrapper.tool-landing-wrapper .banner-tabs {
    gap: 60px;
    margin-top: 24px;
  }

  .article-wrapper.tool-landing-wrapper .banner-text-container .security,
  .article-wrapper.tool-landing-wrapper .banner-text-container .process {
    font-size: 14px;
  }

  .article-wrapper.tool-landing-wrapper .banner-text-container .security::before,
  .article-wrapper.tool-landing-wrapper .banner-text-container .process::before {
    content: "";
    height: 20px;
    width: 13px;
    top: 0px;
  }

  .insurance-quote-app .best-fit-card {
    position: relative;
  }

  .article-wrapper.tool-landing-wrapper .blue_banner {
    padding: 82px 0px 160px 0px;
  }

  .article-wrapper.tool-landing-wrapper .insurance-quote-app .zip-tool-container {
    min-width: 760px;
  }

  .insurance-quote-app .section-grid {
    gap: 16px;
  }

  .tool-landing-wrapper .insurance-quote-app .res-strip-container {
    margin-bottom: 56px;
  }

  .quote-app-result .price {
    
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: right;
    vertical-align: middle;
  }

  .quote-app-result .period {
    
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: right;
    vertical-align: middle;
  }

  .quote-app-result .yearly-price {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: right;
    vertical-align: middle;
  }

  .quote-app-result .yearly-price sup,
  .quote-app-result .price sup {
    top: -1px;
  }
}

@media (min-width: 992px) {
  .insurance-quote-app .value-container {
  display: flex;
  flex-wrap: wrap;
 }
}
@media (min-width: 1024px) {
  .article-wrapper.tool-landing-wrapper:not(.result_active) .blue_banner {
    padding: 45px 0px 201px 0px;
  }

  .insurance-quote-app .best-fit-card::after {
    content: '';
    background: url(/images/rates-recommendation-tool/owl_res.png) no-repeat;
    position: absolute;
    display: block;
    right: -105px;
    top: 105px;
    height: 190px;
    width: 130px;
  }
}