﻿/*#region COLORS*/
/*#endregion*/
/*#region METHODS*/
/*#endregion*/
/* Font & Global Reset */
:root {
  /* ─── PRIMARY COLORS ───────────────────────────── */
  --color-primary-brand-teal: #008687;
  --color-primary-nightshade-teal: #004f56;
  --color-primary-aria-cloud: #d9e7e3;
  /* ─── SECONDARY COLORS ─────────────────────────── */
  --color-secondary-deep-navy: #003A61;
  --color-secondary-blue-thunder: #5c7389;
  --color-secondary-gray-tide: #8595a3;
  --color-secondary-soft-sky: #a9c2ca;
  --color-secondary-black: #000000;
  --color-secondary-electric-lemon-shock: #fff200;
  --color-secondary-lemon-sorbet-shade: #f5f483;
  --color-secondary-vapor-cream: #f4f2e4;
  --color-secondary-mint: #d9efe9;
  /* ─── BACKGROUND GRADIENT (Bottom Fade) ─── */
  --gradient-bottom-fade: linear-gradient(180deg, #f4f2e4 0%, #d9efe9 100%);
  /* BUTTONS */
  --btn-primary-bg: #003A61;
  --btn-primary-hover: #1b2e3c;
  --btn-primary-pressed: #2c3d4d;
  --btn-secondary-bg: #fbff11;
  --btn-secondary-hover: #e5db00;
  --btn-secondary-pressed: #c9be00;
  --btn-outline-border: #003A61;
  --btn-disabled-bg: #e0e0e0;
  --btn-disabled-text: #a0a0a0;
  --btn-text-color-dark: #003A61;
  --btn-text-color-light: #ffffff;
  /* ─── TEXT COLORS ────────────────────────────── */
  --text-color-dark: #003A61;
  --text-color-light: #ffffff;
  --text-color-muted: #8595a3;
  --text-color-accent: #5c7389;
  /* ─── LINK COLORS ────────────────────────────── */
  --link-color: #008687;
  --link-hover-color: #006f6f;
  /* ─── BORDER COLORS ─────────────────────────── */
  --border-color: #d9e7e3;
  /* ─── SHADOW COLORS ─────────────────────────── */
  --shadow-color: rgba(0, 0, 0, 0.1);
  /* ─── FONT FAMILIES ──────────────────────────── */
  --font-family-primary: 'Archivo', sans-serif;
  --font-family-secondary: 'Roboto Slab', serif;
  /* ─── FONT SIZES ────────────────────────────── */
  --font-size-base: 1rem;
  /* 16px */
  --font-size-lg: 1.125rem;
  /* 18px */
  --font-size-sm: 0.875rem;
  /* 14px */
}
body {
  font-family: 'Archivo', sans-serif;
  overflow-x: hidden;
  /* Prevent scroll on narrow devices */
  padding-top: 4.5rem !important;
  /* Adjust for fixed navbar height */
}
/* text colors */
.light-yellow-text {
  color: #28333F !important;
}
.dark-text {
  color: var(--text-color-dark) !important;
}
.light-text {
  color: var(--text-color-light) !important;
}
.muted-text {
  color: var(--text-color-muted) !important;
}
.accent-text {
  color: var(--text-color-accent) !important;
}
.primary-text {
  color: var(--color-primary-brand-teal);
}
/* background colors */
.primary-bg {
  background-color: var(--color-primary-brand-teal);
}
.secondary-bg {
  background-color: var(--color-secondary-deep-navy);
}
.section-bg {
  background-color: #daf7eb;
}
/* link colors */
a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.link-color {
  color: var(--link-color);
}
/* ====== BUTTON SYSTEM ====== */
.btn {
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  display: inline-block;
}
.btn:disabled {
  background-color: var(--btn-disabled-bg);
  color: var(--btn-disabled-text);
  cursor: not-allowed;
  border: none;
}
/* Sizes */
.btn-large {
  font-size: 1.125rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
}
.btn-medium {
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
}
.btn-small {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
}
/* Primary */
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-text-color-light);
}
.btn-primary:hover {
  background-color: var(--btn-primary-hover);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.btn-primary:active {
  background-color: var(--btn-primary-pressed);
}
/* Secondary */
.btn-secondary {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-text-color-dark);
  border: none;
  border-radius: 5px;
}
.btn-secondary:hover {
  background-color: var(--btn-secondary-hover);
  box-shadow: 0 0 5px rgba(0, 134, 135, 0.5);
  transition: ease-in 0.2s;
}
.btn-secondary:active {
  background-color: var(--btn-secondary-pressed);
}
/* Outline */
.btn-outline {
  background-color: transparent;
  color: var(--btn-text-color-dark);
  border: 1px solid var(--btn-outline-border) !important;
}
.btn-outline:hover {
  background-color: #f5f5f5;
}
.btn-outline:active {
  background-color: #e0e0e0;
}
body {
  font-family: 'Archivo', sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', serif;
  margin-top: 0;
}
h2 {
  font-size: 4rem !important;
}
h3 {
  font-size: 2.1rem !important;
  line-height: 1.5 !important;
}
h4 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
}
/* headers class font size */
.header-1 {
  font-size: 3.5rem;
  font-weight: 600;
}
.header-2 {
  font-size: 2.5rem;
  font-weight: 600;
}
.header-3 {
  font-size: 2rem;
  font-weight: 600;
}
.header-4 {
  font-size: 1.5rem !important;
  font-weight: 500 !important;
}
.hero-title {
  font-size: 5rem;
}
/* Custom Ordered List */
.custom-list {
  counter-reset: section;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.custom-list li {
  counter-increment: section;
  position: relative;
  padding: 0 0 1.5rem 3rem;
  /* text padding + space for number */
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  background: none !important;
  /* remove white background if inherited from Bootstrap */
  font-size: 1.1rem;
  font-family: 'Roboto Slab', serif;
}
.custom-list li::before {
  content: "0" counter(section);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #0B1926;
  font-family: 'Roboto Slab', serif;
}
/* Reusable hero subtext styling */
.hero-subtext {
  font-family: 'Roboto Slab', serif;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.6;
  color: white;
}
/* Placeholder Image Styling */
.placeholder-img {
  width: 100%;
  height: 150px;
  background-color: #e9ecef;
  background-image: url('https://via.placeholder.com/150');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
/* Utility Classes */
.bg-offwhite {
  background-color: #fcfcfa !important;
}
.bg-offwhite-dark {
  background-color: #f9f8ef !important;
}
/* border colors */
.border-offwhite-dark {
  border-color: #eeecde !important;
}
/*font colors */
.text-offwhite-dark {
  color: #e7e5d3 !important;
}
/* min heights */
.min-height-100vh {
  min-height: 100vh;
}
.min-height-50vh {
  min-height: 50vh;
}
.min-height-25vh {
  min-height: 25vh;
}
.bg-gradient-mint {
  background: linear-gradient(0deg, hsl(155, 64%, 91%) 57%, hsl(53, 40%, 96%) 100%);
}
.bg-gradient-mint-top {
  background: linear-gradient(180deg, hsl(155, 64%, 91%) 0%, hsl(53, 40%, 96%) 100%);
}
.bg-brand-primary {
  background-color: var(--color-primary-brand-teal);
}
.video-section {
  background-color: var(--color-primary-nightshade-teal);
  position: relative;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem auto;
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 2rem;
}
.video-overlay {
  color: #ffffff;
  max-width: 500px;
  z-index: 1;
}
.cta-section {
  background-color: var(--color-primary-nightshade-teal);
  padding: 5rem 0 10rem;
}
/*#region BLAZOR DEFAULT STUFF*/
.valid.modified:not([type=checkbox]) {
  outline: 1px solid var(--color-primary-aria-cloud);
}
.invalid {
  outline: 1px solid red;
}
.validation-message {
  color: red;
}
#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}
.blazor-error-boundary {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 0.55555556rem, #b32121;
  padding: 1rem 1rem 1rem 3.7rem;
  color: white;
}
.blazor-error-boundary::after {
  content: "An error has occurred.";
}
/*#endregion*/
.rev-hyperlink-b {
  color: #14365C;
}
.rev-hyperlink-b:hover,
.rev-hyperlink-b:focus {
  text-decoration: none;
  color: #57AAAE;
}
/* buttons */
.rev-button {
  background-color: #14365C;
  color: #F7F7F7;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.rev-button:hover {
  background-color: #57AAAE;
}
.rev-button-secondary {
  background-color: #F7F7F7;
  color: #14365C;
  border: 1px solid #14365C;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.rev-button-secondary:hover {
  background-color: #14365C;
  color: #F7F7F7;
}
.primary-btn {
  background-color: var(--btn-primary-bg);
  color: var(--btn-text-color-light);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-btn:hover {
  background-color: var(--btn-primary-hover);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--btn-text-color-light);
}
.primary-btn:active {
  background-color: var(--btn-primary-pressed);
}
.small-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.primary-light-btn {
  background-color: #007275;
  color: var(--btn-text-color-light);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.primary-light-btn:hover {
  background-color: var(--color-primary-brand-teal);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--btn-text-color-light);
}
.primary-light-btn:active {
  background-color: var(--btn-primary-pressed);
}
/* Secondary Button */
.secondary-btn {
  background-color: var(--btn-secondary-bg);
  color: var(--btn-text-color-dark);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.secondary-btn:hover {
  background-color: var(--btn-secondary-hover);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--btn-text-color-dark);
}
.secondary-btn:active {
  background-color: var(--btn-secondary-pressed);
}
/* Outline Button */
.outline-btn {
  background-color: transparent;
  color: var(--btn-text-color-dark);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid var(--btn-outline-border);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.outline-btn:hover {
  background-color: #f5f5f5;
  color: var(--btn-text-color-dark);
}
.outline-btn:active {
  background-color: #e0e0e0;
  color: var(--btn-text-color-dark);
}
/* Disabled Button */
.disabled-btn {
  background-color: var(--btn-disabled-bg);
  color: var(--btn-disabled-text);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: not-allowed;
}
/* Hover Effect */
.hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-effect:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Focus Effect */
.focus-effect {
  outline: 2px solid var(--color-primary-brand-teal);
  outline-offset: 2px;
}
/* Active Effect */
.active-effect {
  background-color: var(--btn-primary-pressed);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
/* Disabled Effect */
.disabled-effect {
  background-color: var(--btn-disabled-bg);
  color: var(--btn-disabled-text);
  cursor: not-allowed;
  opacity: 0.6;
}
/* cursor */
.cursor-pointer {
  cursor: pointer;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
/* login form */
.form-signin {
  max-width: 330px;
  padding: 1rem;
}
.form-signin .form-floating:focus-within {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
/*#Toast related*/
.cs-toast {
  display: none;
  padding: 1.5rem;
  color: #fff;
  z-index: 9999;
  position: fixed;
  width: 25rem;
  top: 2rem;
  border-radius: 1rem;
  right: 2rem;
}
.cs-toast-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
  font-size: 2.5rem;
}
.cs-toast-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 1rem;
}
.cs-toast-body h5 {
  color: #fff;
}
.cs-toast-body p {
  margin-bottom: 0;
}
.cs-toast-visible {
  display: flex;
  flex-direction: row;
  animation: fadein 1.5s;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.alert-index {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
}
/* Toast related end*/
.bind-options-modal .modal-content {
  background-color: #2ea6a6;
}
.bind-options-modal .modal-content::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: #f7fdfb;
  border-radius: 6px;
  z-index: 0;
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.bind-options-modal .modal-footer {
  border-top: none;
  z-index: 10;
}
.bind-options-modal .modal-footer {
  border-top: none;
}
.bind-options-modal .modal-header {
  border-bottom: none;
}
.bind-options-modal .modal-header .btn-close {
  color: #2ea6a6;
}
.dark-btn {
  font-family: "Roboto Slab", serif !important;
  text-decoration: none;
  text-transform: none !important;
  background-color: black;
  color: white;
}
.dark-btn:hover {
  background-color: var(--btn-primary-hover);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  color: var(--btn-text-color-light);
}
.dark-btn:active {
  background-color: var(--btn-primary-pressed) !important;
}
.bind-options-table {
  border-collapse: collapse;
  width: 100%;
  border: 1.5px solid var(--color-primary-brand-teal);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
}
.bind-options-table th,
.bind-options-table td {
  padding: 8px;
  text-align: left;
}
.bind-options-table th:first-child,
.bind-options-table td:first-child {
  border-right: 1px solid var(--color-primary-brand-teal);
}
.bind-options-table tr {
  border-bottom: 1px solid var(--color-primary-brand-teal);
}
.bind-options-table .form-check-input:checked {
  background-color: var(--color-primary-brand-teal);
  border-color: var(--color-primary-brand-teal);
}
.text-pathfinder {
  color: var(--color-primary-brand-teal) !important;
}
.selected-bg-pathfinder {
  background-color: var(--color-primary-aria-cloud) !important;
}
.icon-pathfinder {
  color: var(--color-primary-brand-teal) !important;
  -webkit-text-stroke: 2px;
}
.button-pathfinder {
  background-color: var(--color-primary-brand-teal) !important;
  color: white;
}
.scrollbar-pathfinder {
  scrollbar-width: thin;
  scrollbar-color: #008687 #00000000;
}
@media screen and (max-width: 767px) {
  .footer-links-column {
    display: none;
  }
  .footer-logo-column {
    width: 100%;
  }
  .footer-logo-column .footer-logo {
    display: flex;
    justify-content: center;
  }
  .cerc-header {
    font-size: 3rem !important;
  }
}
/*.content-body {
  min-height: calc(90vh - 4.5rem); !* Adjust for fixed navbar height *!
}*/
.bottom-border-gray {
  border-bottom: 1px solid #4D4F5C;
  margin-bottom: 3rem;
  padding: 2% 0%;
}
.insured-dashboard .card {
  height: 100%;
}
.card.h-100 {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #fdfcf5;
}
.card-body label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
  margin-bottom: 0.25rem;
}
.card-body p {
  font-size: 1rem;
  font-weight: 500;
}
.row.g-4 {
  gap: 1.5rem;
}
.insured-dash {
  padding-bottom: 3rem;
  max-width: 1500px !important;
}
.insured-dashboard.row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.insured-dashboard label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 4px;
  display: block;
}
.insured-dashboard p {
  font-size: 1rem;
  font-weight: 500;
  color: #212529;
  margin-bottom: 16px;
}
.insured-dashboard .card-body label {
  font-weight: 600;
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
  margin-bottom: 0.25rem;
}
.insured-dashboard .card-body p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.insured-dashboard a {
  color: #2ea6a6;
  text-decoration: none;
}
.insured-dashboard a:hover {
  text-decoration: underline;
}
.quote-builder-container {
  padding: 2rem 0;
  font-family: 'Roboto Slab', sans-serif;
}
.quote-title {
  font-weight: 700;
  margin-bottom: 1rem;
}
.quote-card-wrapper {
  position: relative;
  padding-bottom: 3rem;
  margin: 1.5rem;
}
.quote-card-wrapper::after {
  content: '';
  position: absolute;
  top: 12px;
  right: -12px;
  bottom: 0;
  left: 12px;
  background-color: #2ea6a6;
  border-radius: 6px;
  z-index: 0;
  transform: skewY(-1.5deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.quote-card {
  position: relative;
  z-index: 1;
  background-color: #f7fdfb;
  border: 1px solid #d9ebea;
  border-radius: 6px;
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.quote-section {
  flex: 1 1 20%;
  text-align: center;
  padding: 1rem;
  border-right: 1px solid #e0e0e0;
}
.quote-section:last-child {
  border-right: none;
}
.center-section {
  border-right: 1px solid #e0e0e0;
}
.quote-section.center-section {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.logo,
.dcat-new-logo {
  max-width: 120px;
  margin: 0.5rem auto;
  height: auto;
}
.docu-logo {
  width: 60px;
  height: 70px;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.quote-logo {
  height: 70px;
  margin-bottom: 2rem;
  margin-top: 1.5rem;
}
.quote-box {
  width: 60px;
  height: 80px;
  margin: 0.5rem auto;
  background-color: #fff;
  border-radius: 4px;
}
.dashed {
  border: 2px dashed #00a0a0;
}
.view-btn {
  background-color: #00b7b7;
  color: white;
}
.view-btn:hover {
  background-color: #009999;
}
.dark-btn {
  background-color: black;
  color: white;
}
.dark-btn:hover {
  background-color: #333;
}
.quote-arrow-bar {
  position: absolute;
  left: 50%;
  bottom: -70px;
  transform: translateX(-50%);
  background-color: #2ea6a6;
  padding: 10px 20px;
  border-radius: 2px;
}
.arrow_bottom {
  position: relative;
  z-index: 1;
}
.arrow_bottom:after,
.arrow_bottom:before {
  top: 105%;
  left: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.arrow_bottom:after {
  border-top-color: #f7fdfb;
  border-width: 25px 35px;
  margin-left: -35px;
}
.broker-section {
  padding: 1rem;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.broker-image {
  max-width: 120px;
  margin: 0.25rem 0;
  border-radius: 6px;
}
.broker-name {
  font-weight: 600;
  font-size: 16px;
  color: #208e8f;
  margin: 1px 0;
}
.broker-position,
.broker-email,
.broker-contact {
  font-weight: 400;
  font-size: 14px;
  margin: 1px 0;
}
.online-support-card {
  background-color: #fdfcf5;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  margin-bottom: 2rem;
}
.support-label {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.support-search {
  display: flex;
  align-items: center;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  overflow: hidden;
  background-color: #fcfaf0;
}
.support-input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border: none;
  font-size: 0.95rem;
  background-color: transparent;
}
.support-input:focus {
  outline: none;
}
.support-btn {
  background-color: #047575;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-btn:hover {
  background-color: #035f5f;
}
.card.h-100 {
  height: 100%;
}
@media (max-width: 768px) {
  .quote-section {
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  .quote-section:last-child {
    border-bottom: none;
  }
  .broker-section,
  .online-support-card {
    margin-top: 2rem;
  }
  .quote-card {
    flex-direction: column;
  }
}
.policy-binder-container {
  font-family: 'Roboto Slab', sans-serif;
  margin-top: 2rem;
}
.policy-binder-card {
  border: 1px solid #b4e0df;
  border-radius: 6px;
  background-color: #fbfefc;
  padding: 1.25rem 1.25rem 2rem;
  box-sizing: border-box;
  overflow-x: auto;
  /* allows clean stacking if needed */
  margin: 4px;
}
.policy-col {
  flex: 1 1 0;
  min-width: 280px;
  padding: 0;
  /* remove inner column padding */
}
.border-end {
  border-right: 1px solid #e0e0e0;
}
.policy-logo {
  display: block;
  margin: 0 auto 1rem auto;
  /* auto left & right centers it */
  max-width: 45%;
  height: auto;
}
.policy-details-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.95rem;
  background-color: white;
  outline: 1px solid #208e8f;
  /* Outer border */
  border-radius: 8px;
  overflow: hidden;
}
.policy-details-table tr:not(:last-child) td {
  border-bottom: 1px solid #e0e0e0;
  /* Inner row lines (gray) */
}
.policy-details-table td {
  padding: 10px 16px;
  vertical-align: middle;
  border-right: 1px solid #e0e0e0;
  /* Inner column divider (gray) */
}
.policy-details-table td:last-child {
  border-right: none;
  /* No right border on last column */
}
.policy-details-table .label-cell {
  font-weight: 700;
  color: #212529;
  width: 140px;
  white-space: nowrap;
}
.detail-btn {
  background-color: #7dc7c7;
  color: white;
  font-weight: 600;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  text-transform: uppercase;
}
.endorsements p {
  margin-bottom: 0.5rem;
}
.endorsements .text-muted {
  font-size: 0.85rem;
}
.policy-col {
  flex: 1 1 33%;
  min-width: 300px;
  max-width: 100%;
  overflow-x: auto;
}
.policy-col.selected-policy {
  padding-left: 0.5rem;
}
.policy-col.requirements {
  padding: 0.5rem;
}
.requirements-table-wrapper {
  width: 100%;
  overflow-x: auto;
}
.requirements-table-inner {
  padding: 0 8px;
}
/* Table Styling */
.requirements-table {
  width: 100%;
  border-radius: 8px;
  border-collapse: collapse;
  font-size: 0.85rem;
  box-sizing: border-box;
  table-layout: auto;
}
.requirements-table td {
  border: 1px solid #208e8f !important;
}
/* Header Styling */
.requirements-table thead {
  background-color: #208e8f;
}
.requirements-table thead th {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
  padding: 12px;
  border: none;
  background-color: #208e8f;
  white-space: nowrap;
}
.requirements-table thead th:first-child {
  border-top-left-radius: 8px;
}
.requirements-table thead th:last-child {
  border-top-right-radius: 8px;
}
/* Cell Styling */
.requirements-table td {
  padding: 12px;
  vertical-align: middle;
  border: none;
}
/* Center columns */
.requirements-table td:nth-child(3),
.requirements-table td:nth-child(5) {
  text-align: center;
  width: 90px;
}
/* Ensure no leftover borders */
.requirements-table th,
.requirements-table td {
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
/* Optional muted span (for sublabels like PDF text) */
.requirements-table .text-muted {
  color: white !important;
  font-weight: 200;
}
.status-circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #000;
}
.status-circle.filled {
  background-color: #208e8f;
  border-color: #208e8f;
}
.status-circle.empty {
  background-color: white;
}
.light-btn {
  background-color: #66b6b7;
  color: #333;
}
.link-btn {
  font-family: 'Roboto Slab', sans-serif;
  background-color: #66b6b7;
  color: #004f4f;
}
.dark-btn {
  background-color: black;
  color: white;
}
.dark-btn:hover,
.link-btn:hover,
.light-btn:hover {
  opacity: 0.9;
}
.link-btn:disabled {
  background-color: #66b6b7 !important;
  color: #dddedd !important;
  cursor: not-allowed !important;
}
.bind-btn {
  background-color: #dddedd;
}
.disabled-btn {
  background-color: #ccc;
  color: white;
  cursor: not-allowed;
  padding: 6px 14px;
}
.requirement-footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
  gap: 0.5rem;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}
.modal.file-modal {
  position: fixed;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  background-color: white;
  border-radius: 8px;
  z-index: 1050;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}
.generate-esign-modal .modal-content {
  background-color: #2ea6a6;
  position: relative;
  border-radius: 10px;
  padding: 20px;
  overflow: hidden;
}
.generate-esign-modal .modal-content::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: #f7fdfb;
  border-radius: 8px;
  z-index: 0;
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}
.generate-esign-modal .modal-body,
.generate-esign-modal .modal-header,
.generate-esign-modal .modal-footer {
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.generate-esign-modal .modal-footer {
  border-top: none;
  padding-top: 1rem;
  justify-content: flex-end;
  gap: 0.5rem;
}
.generate-esign-modal .modal-header {
  border-bottom: none;
  padding-bottom: 0;
}
.generate-esign-modal .modal-header .btn-close {
  color: #2ea6a6;
  z-index: 2;
}
.generate-esign-modal .form-label {
  z-index: 2;
  position: relative;
  color: #2ea6a6;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.generate-esign-modal input.form-control {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  width: 100%;
}
.string-component {
  font-family: 'Archivo', sans-serif;
  font-weight: 300;
}
.generate-quote-btn {
  font-family: 'Roboto Slab', serif;
  text-transform: none;
}
/* Component Specific Styles */
.bottom-border-gray {
  border-bottom: 1px solid #4D4F5C;
  margin-bottom: 3rem;
  padding: 2% 0%;
}
.learning-button-nav {
  display: block;
  padding: 0.5rem 1rem;
  text-align: center;
}
.learning-button-nav a {
  opacity: 0.5;
  color: #333;
  text-decoration: none;
}
.learning-button-nav a:focus,
.learning-button-nav a:hover {
  text-decoration: none;
  opacity: 1;
  transition: all ease-in 0.1s;
}
.learning-button-nav a:hover p {
  color: #333;
  opacity: 1;
  transition: all ease-in 0.1s;
}
.learning-button-nav a p {
  opacity: 0.5;
}
.learning-button-nav a p.active {
  opacity: 1;
}
.learning-button-nav a.active {
  opacity: 1;
}
.learning-button-nav a.active p {
  color: #333;
  opacity: 1;
}
.learning-button-nav img {
  max-height: 50px;
}
#flipBook {
  width: 1300px;
  height: 800px;
}
#flipBook .turn-page {
  background-color: white;
  background-size: 100% 100%;
}
/* Component Specific Styles End */
.new-account-breadcrumb {
  z-index: 1001;
}
.quote-now-card-clip-path {
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
  color: white;
  margin-top: 1vw;
  padding: 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}
.quote-now-card {
  background-color: #daf7eb;
  font-family: 'Roboto Slab', serif !important;
}
.quote-now-card ul {
  margin-top: 1rem;
  margin-bottom: 0;
}
.match-my-coverage-card {
  background-color: #f9f8ef;
}
.project-specific-box {
  border-radius: 4px;
  padding: 16px;
  margin: 8px 0;
  background-color: #fdfcfa;
}
.project-specific-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.project-specific-question {
  flex: 2;
  display: flex;
  align-items: flex-start;
}
.view-app-modal .modal-content {
  background-color: #2ea6a6;
}
.view-app-modal .modal-content::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background-color: #f7fdfb;
  border-radius: 6px;
  z-index: 0;
  clip-path: polygon(0 0, 100% 7%, 100% 100%, 0% 100%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}
.view-app-modal .modal-footer {
  border-top: none;
  z-index: 10;
}
.view-app-modal .modal-header {
  border-bottom: none;
}
.view-app-modal .modal-header .btn-close {
  color: #2ea6a6;
}
.view-app-modal .nav-tabs .nav-item.show .nav-link,
.view-app-modal .nav-tabs .nav-link.active {
  background-color: #f7fdfb;
  border-bottom: solid #f7fdfb;
}
@media (min-width: 992px) {
  .full-width-container {
    min-width: 80%;
  }
}
@media (max-width: 991px) {
  .project-specific-options {
    margin-left: 3rem;
    margin-top: 1rem;
  }
  .project-specific-container {
    flex-direction: column;
  }
  .insured-info {
    font-size: x-large;
  }
  .flex-check-box-label {
    white-space: nowrap;
  }
}
.quote-label {
  font-size: 0.85rem;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
}
.annual {
  background-color: #f6a623;
  /* orange or gold */
}
.project {
  background-color: #009688;
  /* teal */
}
.page-scrollable {
  overflow: auto;
  height: 100%;
}
.applications-heading {
  text-transform: uppercase;
  text-align: left;
}
.applications-center-p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}
.rev-hyperlink-application {
  color: #FF5D2A;
  font-weight: 600;
}
.rev-hyperlink-application:hover,
.rev-hyperlink-application:focus {
  text-decoration: underline;
  color: #FF5D2A;
}
.app-icon-house {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/house.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-trees {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/trees.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-logging {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/logging.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-excavator {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/excavator.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-hardhat {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/hardhat.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-distributor {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/distributors.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-factory {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/factory.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.app-icon-tank {
  width: 72px;
  height: 72px;
  background-color: #255248;
  border-radius: 50%;
  background-image: url('/images/tank.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}