/* RESET & BASE --------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0; padding: 0; border: 0;
  font-size: 100%; font: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45; color: #143144; background: #F3F8FC;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: #14416B; text-decoration: none; transition: color 0.25s; }
a:hover, a:focus {
  color: #3AC16B;
}
button {
  background: none; border: none; cursor: pointer; font-family: inherit; font-size: inherit;
}
:focus { outline: 2px solid #3AC16B; outline-offset: 2px; }

/* BRAND TYPOGRAPHY -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.1;
  color: #14416B;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.7rem; margin-bottom: 24px; text-transform: uppercase; }
h2 { font-size: 2rem; margin-bottom: 20px; text-transform: uppercase; }
h3 { font-size: 1.3rem; margin-bottom: 14px; text-transform: uppercase; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol, blockquote { font-size: 1rem; margin-bottom: 1.1em; }
strong { font-weight: 700; }

/* GLOBAL CONTAINERS ------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}


/* SECTION SPACING --------------------------------------------------- */
section {
  margin-bottom: 60px; padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(20,65,107,0.06);
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  section { padding: 30px 12px; border-radius: 18px; }
}
@media (max-width: 700px) {
  section { padding: 18px 4vw; margin-bottom: 36px; border-radius: 14px; }
}

/* HEADER & NAV ------------------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 6px 18px 0 rgba(20,65,107,0.07);
  position: sticky; top: 0; z-index: 40;
}
header .container {
  min-height: 74px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
header nav {
  display: flex; align-items: center; gap: 28px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 8px 2px;
  border-radius: 4px;
  position: relative;
  transition: color 0.2s;
}
header nav a.btn-primary {
  padding: 10px 24px;
  margin-left: 18px;
}
@media (max-width: 980px) {
  header nav { gap: 16px; }
}

/* HEADER LOGO SIZING ------------------------------------------------ */
header img[alt="GleamCRM"],
header img[alt="GleamCRM"] {
  max-height: 48px; width: auto;
}

/* BUTTONS ----------------------------------------------------------- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #14416B;
  color: #fff;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 36px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(20,65,107,0.06);
  transition: background 0.22s, box-shadow 0.22s, color 0.17s, transform 0.17s;
  text-transform: uppercase;
  cursor: pointer;
}
.btn-primary:hover, .btn-primary:focus {
  background: #3AC16B;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(58,193,107,0.10);
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: #F3F8FC;
  color: #14416B;
  border: 2px solid #14416B;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 24px;
  transition: background 0.2s, color 0.18s;
  margin-right: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #14416B;
  color: #fff;
}

/* FLEXBOX GRIDS ----------------------------------------------------- */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(20,65,107,0.07);
  padding: 24px 28px;
  min-width: 260px;
  flex: 1 1 290px;
  transition: box-shadow 0.22s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(20,65,107,0.10);
  transform: translateY(-2px) scale(1.02);
}
.content-grid {
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between;
}
.text-image-section {
  display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* FEATURES & VALUES ------------------------------------------------- */
.features-grid, .values-grid, .benefits-grid, .industry-cards, .blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 20px;
}
.features-grid > div,
.values-grid > div,
.benefits-grid > div,
.industry-cards > div,
.blog-post-previews > div {
  background: #F3F8FC;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(20,65,107,0.05);
  flex: 1 1 220px;
  min-width: 200px;
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
}
.features-grid > div img,
.values-grid > div img,
.benefits-grid > div img,
.industry-cards > div img {
  height: 48px; width: 48px;
}
@media (max-width: 900px) {
  .features-grid, .values-grid, .benefits-grid, .industry-cards, .blog-post-previews {
    gap: 16px;
  }
}

/* TABS & ACCORDIONS ------------------------------------------------- */
.features-tabs {
  display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 28px;
}
.features-tabs > div {
  background: #F3F8FC;
  border-radius: 14px;
  flex: 1 1 260px;
  min-width: 180px;
  padding: 18px 18px 16px 18px;
}
.faq-accordion { display: flex; flex-direction: column; gap: 20px; }
.faq-accordion > div {
  background: #F9FBFD;
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 4px rgba(20,65,107,0.04);
  transition: box-shadow 0.14s;
}
.faq-accordion > div:hover {
  box-shadow: 0 2px 10px rgba(20,65,107,0.08);
}

/* PRICING TABLE ----------------------------------------------------- */
.pricing-table {
  display: flex;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 16px;
}
.pricing-table > div {
  flex: 1 1 240px;
  background: #fff;
  border: 2px solid #F3F8FC;
  border-radius: 20px;
  box-shadow: 0 2px 14px rgba(20,65,107,0.07);
  padding: 28px 18px 24px 18px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 20px;
  transition: border 0.2s, box-shadow 0.2s;
  min-width: 200px;
}
.pricing-table > div:hover, .pricing-table > div:focus-within {
  border-color: #3AC16B;
  box-shadow: 0 6px 26px rgba(58,193,107,0.12);
}
.pricing-table h3 { margin-bottom: 0; font-size: 1.19rem; }
.pricing-table p { color: #3AC16B; font-weight: 700; font-size: 1.13rem; margin-bottom: 10px; }

.comparison-features {
  margin: 24px 0 8px 0;
  background: #F3F8FC;
  border-radius: 16px;
  padding: 18px 22px;
}
.comparison-features h3 { font-size: 1.12rem; margin-bottom: 8px; }

/* BLOG COMPONENTS --------------------------------------------------- */
.categories-filter {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px; font-size: 0.99rem;
}
.categories-filter label {
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: #14416b; text-transform: uppercase; margin-right: 6px;
}
.categories-filter span {
  padding: 3px 10px;
  background: #F3F8FC;
  border-radius: 9px;
  font-size: 0.96em;
  font-weight: 500;
  margin-right: 3px;
}

.blog-post-previews > div {
  flex: 1 1 290px;
  min-width: 200px;
  background: #F3F8FC;
  border-radius: 12px;
  box-shadow: 0 1px 6px 0 rgba(20,65,107,0.06);
  padding: 22px 16px;
  display: flex; flex-direction: column; justify-content: flex-start;
  gap: 10px;
}
.blog-post-previews > div a {
  margin-top: auto;
  color: #3AC16B;
  font-weight: 700;
  transition: color 0.18s;
  text-decoration: underline;
}
.blog-post-previews > div a:hover { color: #14416B; }

/* NEWSLETTER SECTION ------------------------------------------------ */
.newsletter-signup {
  display: flex;
  flex-direction: column;
  background: #F3F8FC;
  border-radius: 16px;
  padding: 28px 24px;
  gap: 16px;
  align-items: flex-start;
  margin-top: 12px;
}

/* STATS BOXES ------------------------------------------------------- */
.stats {
  display: flex; flex-wrap: wrap; gap: 28px; margin-bottom: 16px;
}
.stats > div {
  background: #F3F8FC;
  border-radius: 15px;
  box-shadow: 0 1px 6px rgba(20,65,107,0.07);
  flex: 1 1 120px; min-width: 100px;
  padding: 18px 12px;
  text-align: center;
}
.stats h3 {
  color: #3AC16B;
  font-size: 1.7rem; margin-bottom: 6px; font-weight: 700;
}
.stats p {
  margin-bottom: 0;
  color: #14416B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}

/* TESTIMONIALS ------------------------------------------------------ */
.testimonial-card {
  display: flex; align-items: center; gap: 20px; padding: 20px;
  background: #EEEFFA; color: #14416B;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(20,65,107,0.07);
  margin-bottom: 20px;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-style: italic;
  color: #14416B;
}
.testimonial-card cite {
  margin-left: 1.5em;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #3AC16B; font-style: normal; font-weight: 700;
}
.testimonial-card:before {
  content: '"';
  font-size: 4.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3AC16B;
  opacity: 0.12;
  position: absolute;
  top: 10px; left: 18px;
  pointer-events: none;
}
@media (max-width: 700px) {
  .testimonial-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 18px; }
  .testimonial-card:before { left: 4px; top: 2px; font-size: 3rem; }
}

.industry-testimonials {
  display: flex; flex-wrap: wrap; gap: 20px;
}

/* FORM ELEMENTS ----------------------------------------------------- */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 12px;
  background: #f3f8fc;
  border: 1.8px solid #dce7f3;
  border-radius: 8px;
  transition: border 0.18s;
  margin-bottom: 10px;
}
input:focus, textarea:focus, select:focus { border-color: #3AC16B; }

/* ICON GRIDS, CASE STUDIES, ETC -------------------------------------- */
.icon-grid {
  display: flex;
  gap: 18px;
  margin: 16px 0 0 0;
}
.icon-grid img {
  height: 42px; width: 42px;
}
.case-studies {
  margin: 18px 0;
  background: #F3F8FC;
  border-radius: 9px;
  padding: 14px 14px 6px 20px;
}
.case-studies h3 { font-size: 1.12rem; margin-bottom: 3px; }

/* FOOTER ------------------------------------------------------------ */
footer {
  background: #14416B;
  color: #fff;
  padding: 38px 0 26px 0;
  border-radius: 0 0 24px 24px;
}
footer .container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 0;
}
footer nav {
  display: flex; flex-direction: column; gap: 8px;
}
footer nav a {
  color: #fff; text-transform: uppercase; font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 600;
  border-radius: 3px;
  transition: color 0.15s;
}
footer nav a:hover {
  color: #3AC16B;
}
.footer-contact {
  display: flex; flex-direction: column; gap: 4px; font-size: 0.99rem; color: #d7e7f7;
}
.footer-contact img {
  height: 20px; margin-right: 7px; vertical-align: middle; display: inline-block;
}
.footer-contact span { margin-bottom: 0; margin-right: 5px; }
footer img[alt="GleamCRM"], footer img[alt="GleamCRM"] {
  max-width: 50px; margin-bottom: 9px; display: block;
}
@media (max-width: 700px) {
  footer .container { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* RESPONSIVE -------------------------------------------------------- */
@media (max-width: 1050px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; }
}
@media (max-width: 720px) {
  header .container { flex-direction: row; gap: 6px; }
  .content-wrapper { gap: 18px; }
  .card-container { gap: 14px; }
  .features-grid, .values-grid, .benefits-grid, .industry-cards, .blog-post-previews { gap: 10px; }
}

/* MOBILE NAVIGATION ------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #14416B;
  color: #fff;
  border-radius: 11px;
  font-size: 2.1rem; line-height: 1;
  padding: 6px 18px;
  margin-left: 12px;
  transition: background 0.2s, color 0.15s, transform 0.16s;
  z-index: 502;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #3AC16B;
  color: #fff;
  transform: scale(1.09);
}
@media (max-width: 1050px) {
  .mobile-menu-toggle { display: block; }
  header nav { display: none; }
}

.mobile-menu {
  position: fixed; top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,65,107,0.98);
  z-index: 500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.71,.27,.33,1.28);
  overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: transparent;
  position: absolute; top: 22px; right: 32px;
  z-index: 510;
  border: 2px solid #fff;
  border-radius: 11px; padding: 2px 11px;
  transition: background 0.22s, color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #3AC16B;
  color: #fff;
}
.mobile-nav {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 90px;
  margin-left: 38px;
  width: 70vw; max-width: 330px;
}
.mobile-nav a {
  color: #fff; font-size: 1.3rem; padding: 15px 5px 15px 0;
  font-family: 'Montserrat', Arial, sans-serif; font-weight: 700;
  border-radius: 8px;
  transition: background 0.13s, color 0.15s;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus { color: #3AC16B; background: rgba(58,193,107,0.07); }
@media (max-width: 700px) {
  .mobile-nav { width: 95vw; margin-left: 19px; }
}

/* COOKIE CONSENT BANNER --------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #F3F8FC;
  color: #14416B;
  border-top: 3px solid #3AC16B;
  box-shadow: 0 -4px 18px rgba(20,65,107,0.10);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 36px;
  font-size: 1.06rem;
  transition: transform 0.3s;
}
#cookie-banner.hide { transform: translateY(130%); transition: transform 0.3s; }
#cookie-banner .banner-actions {
  display: flex; flex-direction: row; gap: 12px;
}
#cookie-banner button {
  min-width: 40px;
  min-height: 35px;
  padding: 8px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-right: 3px;
  margin-top: 4px;
}
#cookie-accept {
  background: #3AC16B; color: #fff;
  transition: background 0.18s, color 0.18s;
}
#cookie-accept:hover, #cookie-accept:focus { background: #14416B; }
#cookie-reject {
  background: #fff; color: #14416B;
  border: 1.7px solid #14416B;
}
#cookie-reject:hover, #cookie-reject:focus { background: #14416B; color: #fff; }
#cookie-settings {
  background: #F3F8FC; color: #14416B; border: 1.5px solid #3AC16B;
}
#cookie-settings:hover, #cookie-settings:focus { background: #3AC16B; color: #fff; }
@media (max-width: 700px) {
  #cookie-banner {
    flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 4vw;
    font-size: 0.97rem;
  }
  #cookie-banner .banner-actions { gap: 4px; margin-bottom: 3px; }
}

/* COOKIE PREFERENCES MODAL ------------------------------------------ */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10020;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,65,107, 0.60);
  align-items: center; justify-content: center;
  transition: background 0.32s;
}
#cookie-modal-overlay.active { display: flex; }
#cookie-modal {
  background: #fff;
  color: #14416B;
  padding: 28px 34px 18px 34px;
  border-radius: 18px;
  box-shadow: 0 10px 60px rgba(20,65,107,0.18);
  max-width: 410px; width: 96vw;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
  animation: cookieModalIn 0.33s ease;
}
@keyframes cookieModalIn {
  from { transform: scale(0.85) translateY(48px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
#cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  color: #14416B;
  margin-bottom: 13px;
  text-transform: uppercase;
}
.cookie-modal-category {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #F3F8FC;
}
.cookie-modal-category:last-child { border-bottom: none; }
.cookie-switch {
  appearance: none;
  width: 38px; height: 20px;
  background: #d5e7ed;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.19s;
  cursor: pointer;
}
.cookie-switch:checked {
  background: #3AC16B;
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 12px;
  background: #fff;
  position: absolute; left: 1.5px; top: 1px;
  transition: left 0.15s;
  box-shadow: 0 1px 4px rgba(80,100,130,0.12);
}
.cookie-switch:checked:before {
  left: 18px;
}
.cookie-modal-actions {
  display: flex; gap: 12px; justify-content: flex-end; margin-top: 14px;
}
.cookie-modal-actions button {
  min-width: 93px; min-height: 36px; font-family: 'Montserrat', Arial, sans-serif;
}
#cookie-modal-close {
  background: none; color: #14416B; font-size: 1.6rem;
  border: none; position: absolute; top: 12px; right: 16px; cursor: pointer;
  transition: color 0.15s;
}
#cookie-modal-close:hover, #cookie-modal-close:focus { color: #3AC16B; }

@media (max-width: 700px) {
  #cookie-modal { padding: 19px 11px 15px 11px; max-width: 99vw; }
}

/* UTILITIES --------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }

/* GEOMETRIC STRUCTURED VISUALS -------------------------------------- */
section, .card, .features-grid > div, .values-grid > div, .benefits-grid > div, .industry-cards > div, .testimonial-card, .faq-accordion > div, .pricing-table > div {
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(20,65,107,0.055);
  position: relative;
}
section:after {
  content: '';
  display: block;
  position: absolute;
  right: 46px; bottom: 32px;
  width: 48px; height: 48px;
  border-radius: 13px 60px 35px 7px / 22px 18px 60px 10px;
  background: rgba(20,65,107, 0.085);
  z-index: 0;
  pointer-events: none;
}
@media (max-width:980px) {
  section:after { right: 15px; bottom: 5px; width: 33px; height: 33px; }
}

/* GEOMETRIC BUTTON EFFECTS ------------------------------------------ */
.btn-primary, .btn-secondary {
  box-shadow: 0 2px 8px 0 rgba(20,65,107,0.07);
}

/* ADDITIONAL FLEXBOX-BASED CASCADING STRUCTURES -------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F3F8FC;
  padding: 16px 12px;
  border-radius: 14px;
}

/* FOCUS EFFECTS FOR ACCESSIBILITY ----------------------------------- */
a:focus, button:focus, input:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.2px solid #3AC16B !important;
  outline-offset: 2.2px;
}

/* ANIMATIONS & TRANSITIONS ------------------------------------------ */
section, .card, .features-grid > div, .pricing-table > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.2s, transform 0.18s;
}

/* GEOMETRIC STRUCTURE DECORATIVE MARKS ------------------------------ */
.card:before, .features-grid > div:before, .pricing-table > div:before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  background: #3AC16B;
  border-radius: 4px 8px 2px 8px / 3px 7px 11px 0px;
  position: absolute;
  right: 12px; top: 13px;
  opacity: 0.13;
  z-index: 2;
  pointer-events: none;
}

/* MISC ------------------------------------------------------------- */
::-webkit-scrollbar { width: 10px; background: #dce7f3; }
::-webkit-scrollbar-thumb { background: #b0ccd6; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #14416B; }

/* Hide default number input spinners for style consistency --------- */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance:textfield; }
