/* --------------------------------------------------------
   CSS RESET & BASE TYPOGRAPHY
---------------------------------------------------------*/
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { font-size: 16px; box-sizing: border-box; }
body {
  min-height: 100vh;
  color: #184D47;
  background: #FFFFFF;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ol, ul { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; background: none; border: none; cursor: pointer; outline: none; }

/* --------------------------------------------------------
   TYPOGRAPHY
---------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #184D47;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.1; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.18; }
h3 { font-size: 1.375rem; margin-bottom: 14px; }
h4 { font-size: 1.125rem; }

p, li, span, td, th {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #184D47;
  line-height: 1.6;
}
p { margin-bottom: 16px; }
strong, b { font-weight: 700; }

blockquote {
  border-left: 3px solid #FFD369;
  margin: 0 0 8px 0;
  padding-left: 18px;
  font-style: italic;
  color: #184D47;
  background: #FFFDEA;
  border-radius: 7px;
  box-shadow: 0 0 10px rgba(24,77,71,.03);
}

/* --------------------------------------------------------
   LAYOUT & SPACING SYSTEM
---------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1110px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --------------------------------------------------------
   HEADER
---------------------------------------------------------*/
header { background: #FFFFFF; box-shadow: 0 1px 6px rgba(24,77,71,0.04); position: relative; z-index: 1010; }
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  justify-content: space-between;
}
.logo img, .logo-footer img { height: 46px; width: auto; }
nav.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #184D47;
  padding: 6px 2px;
  font-weight: 500;
  border-radius: 5px;
  transition: background .18s, color .18s;
}
nav.main-nav a:hover, nav.main-nav a:focus { color: #FFD369; background: rgba(24,77,71,.06); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #184D47;
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  padding: 12px 28px;
  margin-left: 10px;
  box-shadow: 0 3px 16px 0 rgba(24,77,71,0.10);
  border: none;
  transition: background .2s, color .2s, box-shadow .2s, transform .14s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFD369;
  color: #184D47;
  box-shadow: 0 7px 32px 0 rgba(24,77,71,0.10);
  transform: translateY(-2px) scale(1.05);
}

button.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #184D47;
  background: #FFFFFF;
  border-radius: 5px;
  padding: 6px 14px;
  margin-left: 10px;
  border: 1px solid #FFFDEA;
  box-shadow: 0 1px 3px rgba(24,77,71,.08);
  transition: background .15s, color .15s;
  z-index: 1101;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: #FFD369;
  color: #184D47;
}

/* --------------------------------------------------------
   MOBILE MENU OVERLAY
---------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(24,77,71,0.97);
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(.7,.32,.51,1);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
button.mobile-menu-close {
  font-size: 2.2rem;
  color: #FFD369;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 18px 24px 4px 0;
  cursor: pointer;
}
button.mobile-menu-close:hover, button.mobile-menu-close:focus {
  color: #FFFFFF;
  background: rgba(255,211,105,0.10);
  border-radius: 4px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 18px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 9px;
  padding: 14px 0 14px 6px;
  transition: background .18s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD369;
  color: #184D47;
}

/* --------------------------------------------------------
   HERO SECTIONS
---------------------------------------------------------*/
.hero {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  min-height: 300px;
  padding: 60px 0 30px 0;
  margin-bottom: 36px;
}
.hero .container  { 
  display: flex; 
  flex-direction: column; 
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.hero p { font-size: 1.125rem; margin-bottom: 10px; }

/* --------------------------------------------------------
   FEATURE/grid LIST STYLES
---------------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-grid li {
  background: #FFFDEA;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(24,77,71,0.06);
  padding: 28px 22px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 0;
  transition: box-shadow .22s, transform .13s;
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 4px 27px 0 rgba(24,77,71,.10);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img { height: 44px; width: 44px; margin-bottom: 6px; }
.feature-grid h3 { font-size: 1.13rem; color: #184D47; margin-bottom: 2px; }
.feature-grid p { font-size: 0.98rem; }

/* --------------------------------------------------------
   TEXT/IMAGE SECTIONS & GENERIC FLEX UTILS
---------------------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card { 
  background: #FFFFFF; 
  border-radius: 12px; 
  box-shadow: 0 2px 16px rgba(24,77,71,0.05);
  margin-bottom: 20px; 
  position: relative; 
  display: flex; 
  flex-direction: column;
  padding: 32px 24px;
  min-width: 220px;
  transition: box-shadow .18s, transform .13s;
}
.card:hover {
  box-shadow: 0 4px 32px 0 rgba(24,77,71,0.13);
  transform: translateY(-3px) scale(1.02);
}
.card-content { display: flex; flex-direction: column; justify-content: center; }

/* --------------------------------------------------------
   SERVICES LIST (index, servizi)
---------------------------------------------------------*/
.service-list, .article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.service-list > li, .service-list > .text-section,
.article-list > div {
  background: #FFFFFF;
  border-radius: 13px;
  box-shadow: 0 2px 7px rgba(24,77,71,0.07);
  padding: 26px 20px 18px 20px;
  min-width: 210px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow .22s, transform .13s;
}
.service-list img { height: 42px; width: 42px; }
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #184D47;
  font-weight: 700;
  background: #FFFDEA;
  border-radius: 5px;
  padding: 2px 10px;
  margin-top: 4px;
  display: inline-block;
}

/* --------------------------------------------------------
   FAQ ACCORDION (servizi.html)
---------------------------------------------------------*/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.faq-item {
  background: #FFFDEA;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(24,77,71,0.06);
  padding: 18px 20px 14px 20px;
  position: relative;
  margin-bottom: 0;
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 6px;
  transition: color .16s;
}
.faq-item h3:hover { color: #FFD369; }
.faq-item div { display: block; font-size: 0.99rem; margin-top: 2px; }

/* --------------------------------------------------------
   CALENDAR GRID (calendario.html)
---------------------------------------------------------*/
.calendar-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.calendar-grid ul {
  min-width: 260px;
  flex: 2 1 360px;
  margin-bottom: 0;
}
.calendar-grid .content-wrapper { flex: 1 1 220px; }

/* --------------------------------------------------------
   TESTIMONIAL CARDS
---------------------------------------------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 rgba(24,77,71,0.07);
  margin-bottom: 24px;
  min-width: 220px;
  transition: box-shadow .19s, transform .14s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 9px 32px 0 rgba(24,77,71,.12);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card blockquote {
  margin: 0;
  padding-left: 0;
  font-size: 1.055rem;
  color: #184D47;
  background: none;
  border: none;
}
.testimonial-card span { display: block; margin-top: 6px; color: #184D47; font-size: 0.98rem; font-style: normal; }
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #184D47;
  color: #FFFFFF;
  font-size: 1rem;
  border-radius: 10px;
  padding: 10px 18px;
  margin-top: 10px;
}
.trust-badge img { height: 32px; width: 32px; }
.trust-badge span { font-weight: 600; color: #FFFFFF; }

/* --------------------------------------------------------
   FOOTER
---------------------------------------------------------*/
footer {
  background: #F8FAF7;
  border-top: 1.5px solid #f0f0e6;
  padding: 32px 0 24px 0;
  margin-top: 35px;
  font-size: 0.98rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-bottom: 10px;
  width: 100%;
  
}
footer nav a {
  color: #184D47;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 4px;
  padding: 2px 7px;
  transition: background .16s, color .16s;
}
footer nav a:hover, footer nav a:focus {
  background: #FFD369;
  color: #184D47;
}
footer .contact-info {
  color: #184D47;
  font-size: 0.92rem;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 0.75;
  margin-bottom: 8px;
}
.logo-footer img {
  height: 39px;
  width: auto;
  margin-top: 6px;
}

/* --------------------------------------------------------
   BUTTONS & INTERACTIVE ELEMENTS
---------------------------------------------------------*/
button, input[type="button"], input[type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #184D47;
  color: #FFFFFF;
  padding: 12px 28px;
  border-radius: 25px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background .21s, color .21s, transform .12s;
  cursor: pointer;
}
button:hover, button:focus, .cta-btn:hover, .cta-btn:focus {
  background: #FFD369;
  color: #184D47;
  transform: translateY(-1px);
}
.whatsapp-link {
  color: #184D47;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: 16px;
  border-radius: 16px;
  padding: 5px 15px;
  background: #FFD369;
  transition: background .19s, color .19s;
}
.whatsapp-link:hover, .whatsapp-link:focus {
  background: #184d47;
  color: #FFD369;
}

/* --------------------------------------------------------
   TABLE (Servizi)
---------------------------------------------------------*/
table {
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  margin-top: 10px;
}
thead { background: #FFFDEA; }
th, td { border: 1.5px solid #F0EFE8; padding: 10px 8px; text-align: center; }
th { font-weight: 600; color: #184D47; font-size: 1.01rem; }
tbody tr:nth-child(even) { background: #FCFCF7; }

/* --------------------------------------------------------
   VIDEO, ARTICLE & HEALTH LISTS (Risorse)
---------------------------------------------------------*/
.article-list { margin-bottom: 26px; }
.article-list > div > h3 { margin-bottom: 5px; }
.health-tips, .safe-practice-guides ul {
  margin-top: 13px;
  padding-left: 12px;
}
.health-tips li, .safe-practice-guides li {
  margin-bottom: 7px;
  position: relative;
}
.safe-practice-guides h4 {
  color: #184D47;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.video-guides ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-guides li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  background: #FFFDEA;
  border-radius: 7px;
  padding: 8px 11px;
}
.video-guides img {
  width: 22px; height: 22px;
}

/* --------------------------------------------------------
   FORM ELEMENTS (if any)
---------------------------------------------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px;
  border: 1.5px solid #E0E3DD;
  border-radius: 8px;
  outline: none;
  margin-bottom: 18px;
  background: #FAFBF8;
  color: #184D47;
  transition: border .17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FFD369;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #184D47;
  font-size: 1rem;
  margin-bottom: 6px;
  display: block;
}

/* --------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #184D47;
  color: #FFFFFF;
  z-index: 1500;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 24px 0 rgba(24,77,71,.07);
  animation: cookieBannerSlideIn 0.7s cubic-bezier(.7,.32,.51,1);
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(130%); }
  to   { transform: translateY(0); }
}
.cookie-banner p {
  color: #FFFFFF;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 3px;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 17px;
  padding: 8px 22px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .14s;
}
.cookie-btn.accept {
  background: #FFD369; color: #184D47;
}
.cookie-btn.reject {
  background: #FFFFFF; color: #184D47; border: 1.5px solid #FFD369;
}
.cookie-btn.settings {
  background: transparent; color: #FFD369; border: 1.5px solid #FFD369;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #184D47; color: #FFD369;
}

/* MODAL Cookie Settings */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,77,71,0.56);
  justify-content: center;
  align-items: center;
}
.cookie-modal-overlay.open { display: flex; }
.cookie-modal {
  background: #FFFFFF;
  color: #184D47;
  border-radius: 20px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 10px 44px 0 rgba(24,77,71,0.13);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  position: relative;
  animation: cookieModalIn .49s cubic-bezier(.57,.23,.62,1);
}
@keyframes cookieModalIn {
  from { transform: scale(0.83) translateY(66px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex; align-items: center; gap: 9px;
  margin-bottom: 8px;
}
.cookie-category label {
  margin: 0;
  font-size: 1rem;
  color: #184D47;
}
.cookie-modal .category-switch {
  margin-left: auto;
  margin-right: 0;
  appearance: none;
  width: 42px; height: 23px;
  background: #E0E3DD;
  border-radius: 18px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .category-switch:checked {
  background: #FFD369;
}
.cookie-modal .category-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 2.5px;
  top: 2.5px;
  width: 18px; height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: left .18s;
  box-shadow: 0 1.5px 4px 0 rgba(24,77,71,0.10);
}
.cookie-modal .category-switch:checked:before {
  left: 21px;
}
.essential-category label, .essential-category .category-switch {
  opacity: 0.7;
}
.cookie-modal .close-modal-btn {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  color: #184D47;
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
  width: 35px; height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .14s, color .14s;
  cursor: pointer;
}
.cookie-modal .close-modal-btn:hover, .cookie-modal .close-modal-btn:focus {
  background: #FFD369;
  color: #184D47;
}

/* --------------------------------------------------------
   MEDIA QUERIES: MOBILE-FIRST! RESPONSIVENESS
---------------------------------------------------------*/
@media (max-width: 1100px) {
  .container { max-width: 100vw; }
  .feature-grid, .service-list, .calendar-grid, .article-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container{ padding-left: 10px; padding-right: 10px; }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .calendar-grid {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .hero { padding: 37px 0 14px 0; }
  .content-wrapper { gap: 21px; padding: 0; }
  nav.main-nav, .cta-btn { display: none; }
  button.mobile-menu-toggle { display: inline-block; }
  header .container { gap: 14px; padding-top: 8px; padding-bottom: 8px; }
  .feature-grid, .service-list, .calendar-grid, .article-list {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card, .trust-badge { flex-direction: column; align-items: flex-start; font-size: 1rem; }
  .testimonial-card blockquote, .testimonial-card span { font-size: 1rem; }
  .footer .container { flex-direction: column; gap: 12px; }
  .logo img, .logo-footer img { height: 37px; }
  .booking-cta .cta-btn { width: 100%; font-size: 1.02rem; text-align: center; }
  .section { padding: 24px 8px; margin-bottom: 37px; }
  .calendar-grid ul { flex: unset; min-width: 0; }
  .content-grid { flex-direction: column; gap: 13px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .card-container { flex-direction: column; gap: 13px; }
  .card { padding: 18px 11px; }
  .trust-badge { font-size: .97rem; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.39rem; }
  h2 { font-size: 1.09rem; }
  .card, .service-list > li, .service-list > .text-section { padding: 12px 6px; }
  .cookie-modal { padding: 18px 6px 16px 12px; }
}

/* Hide scroll when mobile menu open */
body.mobile-menu-open {
  overflow: hidden;
}

/* --------------------------------------------------------
   A11Y: FOCUS STATES & HOVER
---------------------------------------------------------*/
a, button, .cta-btn, .cookie-btn {
  outline: none;
}
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px dashed #FFD369;
  outline-offset: 2px;
}

/* --------------------------------------------------------
   UTILITIES & EXTRAS
---------------------------------------------------------*/
.section:last-child { margin-bottom: 0; }
.gap-20 { gap: 20px !important; }
.gap-24 { gap: 24px !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }
.align-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }

/* --------------------------------------------------------
   OVERRIDES & MISCELLANEOUS
---------------------------------------------------------*/
::-webkit-input-placeholder { color: #A5A7A1; opacity: 1; }
::-moz-placeholder          { color: #A5A7A1; opacity: 1; }
:-ms-input-placeholder      { color: #A5A7A1; opacity: 1; }
::placeholder              { color: #A5A7A1; opacity: 1; }

/* Table responsive scroll on mobile */
@media (max-width: 600px) {
  table { display: block; width: 100%; overflow-x: auto; }
}
