body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0; /* Remove padding from body as it can Gabaritofere with 100vh sections */
  background-color: #fafafa; /* A default background, though main-content will cover it */
}

p {
  font-family: "Gabarito", sans-serif;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

/* New: Hero section for the initial view */
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem; /* Padding for the card inside this section */
  background-size: cover;
  background-position: center;
  box-sizing: border-box; /* Ensures padding is included in the element's total width and height */
  position: relative; /* For positioning the scroll indicator */
}

button {
  padding: 12px;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Gabarito", sans-serif;
  border: none;
  border-radius: 48px;
  font-size: 16px;
  background-color: #f1db11;
  cursor: pointer; /* Add cursor pointer for buttons */
  transition: all 0.1s ease-out;
  align-items: center;
}

button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Define the animation for the pop-up effect */
@keyframes popInOnLoad {
  0% {
    opacity: 0;
    transform: scale(0); /* Start smaller */
  }
  50% {
    opacity: 1;
    transform: scale(1.05); /* Settle at its final size */
  }
  100% {
    opacity: 1;
    transform: scale(1); /* Settle at its final size */
  }
}

.profile-card {
  display: flex;
  align-items: center;
  width: 360px;
  background-color: #fafafa;
  border-radius: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 48px;
  max-width: 520px;
  width: 100%;
  animation: popInOnLoad 0.9s cubic-bezier(0.35, 0.25, 0.22, 0.99) forwards;
}

.profile-photo {
  width: 248px;
  height: 248px; /* Fix the typo: "224 px" should be "224px" */
  object-fit: cover; /* Ensures the image covers the entire 224x224 area, no gaps */
  margin-right: 2rem;
  flex-shrink: 0;

  mask-image: url("./assets/pill.svg");
  mask-size: cover; /* Ensures the mask itself covers the entire 224x224 area */
  /* You could also use mask-size: 100% 100%; if you want it to stretch precisely */
  mask-repeat: no-repeat;
  mask-position: center;

  /* Vendor prefixes */
  -webkit-mask-image: url("./assets/pill.svg");
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}

.profile-info {
  text-align: left;
}

.profile-info h1 {
  margin: 0 0 0.3rem 0;
}

.profile-info p {
  margin: 0;
  color: #555;
}

/* Responsive styles for smaller viewports */
@media (max-width: 600px) {
  .profile-card {
    flex-direction: column;
    text-align: left;
    padding: 1.5rem; /* Adjusted for smaller screens */
    width: calc(100% - 2rem); /* Account for hero-section padding */
  }

  .profile-photo {
    width: 90%;
    margin-top: 16px;
    height: auto;
    margin-right: 0;
    margin-bottom: 24px; 
    border-radius: 12px;
  }

  .profile-info {
    width: 100%;
  }
}

.scroll-indicator {
  position: absolute; /* Changed to absolute to be relative to .hero-section */
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-align: center;
  z-index: 100;
}

.scroll-indicator p {
  margin: 0;
  font-size: 0.9rem;
}

.material-symbols-outlined {
  font-size: 1.5rem;
}

.main-content {
  /* Removed min-height here, it will naturally expand with content */
  width: 100%;
  max-width: 1080px;
  margin-left: auto; /* Center the main content */
  margin-right: auto; /* Center the main content */
  padding: 24px;
  background-color: #fafafa;
  /* Remove initial opacity and transform, these will be handled by JavaScript for instant appearance */
  transition: none; /* No transition for instant appearance */
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box; /* Include padding in width */
}

/* New class for when main content is fully visible. This will be added by JS */
.main-content.show-instant {
  opacity: 1; /* Make it instantly visible */
  transform: translateY(0); /* Ensure it's in its final position */
}

.tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 2rem;
  background-color: none;
  border-radius: 48px;
  padding: 0px;
}

.tab-button {
  background-color: transparent;
  border: none;
  padding: 16px 20px;
  border-radius: 48px;
  position: relative;
  cursor: pointer;
  color: #848484;
  transition: all 0.1s ease;
  margin-top: 12px;
  border: 0px solid #ff7325;  
  transition: all 0.3s cubic-bezier(.6,-0.4,.22,1.45);
}

.tab-button.active {
  color: #ff7325;
  font-weight: 800;
  border: 1px solid #ff7325;
  transform: scale(1.1);
  z-index: 200;
}

.tab-button:hover {
  color: #ff9257;
  box-shadow: NONE;
}


.tab-content-area {
  width: 100%;
}

.tab-content {
  animation: fadeIn 0.5s cubic-bezier(0.24, 0.52, 0.17, 1);
}

.hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.chip {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  text-decoration: none;
}

.chip h3 {
  margin: 0 0 8px 0;
}

.chip p {
  margin: 0 0 8px 0;
  color: #6b6b6b;
}

.chip h2 {
  margin: 0 0 8px 0;
}

/* First, define the custom properties for the contact card's base state */
.contact-card {
  /* Default colors
  --_color-1: #e3e3e3;
  --_color-2: #e3e3e3;
  --_color-3: #e3e3e3;
  --text-color: #6b6b6b;
  --heading-color: #000;
    background: linear-gradient(
    to right, 
    var(--_color-1) 0%, 
    var(--_color-2) 50%, 
    var(--_color-3) 100%
  );*/
  border: 1px solid #e3e3e3;
  background-color: #f2f2f2;
  display: flex;
  height: fit-content;
  flex-direction: column;
  align-items: left;
  background-size: 200% 100%;
  background-position: 100% 0;
  padding: 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.5s cubic-bezier(.23,.51,0,1);
}

.contact-card:hover {
  /* Override the colors to match the .ev-bar.svensk gradient */
  /*--_color-1: #29c4d8;
  --_color-2: #f1db11;
  --_color-3: #29c4d8;
  --text-color: #ffffff;
  --heading-color: #ffffff;

  /* Animate the background position */
  background-position: 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  background-color: #edecec;
}

.contact-card p {
  margin: 0 0 0 0;
  color: #7c7c7c;
}


.contact-card h2 {
  margin: 0 0 8px 0;
  color: #000;
}

/* Unvisited link */
a:link {
  color: #007367; /* Default color for unvisited links */
  text-decoration: none;
}

a:link:hover {
  color: #00443d;
}

/* Visited link */
a:visited {
  color: #007367; /* Color for links that have been visited */
}

/* Mouse over link */
a:hover {
  color: #007367; /* Color when the mouse hovers over the link */
}

/* Selected link */
a:active {
  color: #007367; /* Color while the link is being clicked (active state) */
}

.portfolio-card-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(280px, 1fr)
  ); /* Default: flexible columns (3+ on large screens) */
  gap: 12px;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .portfolio-card-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Force two columns on medium screens */
  }
}

@media (max-width: 600px) {
  .portfolio-card-grid {
    grid-template-columns: 1fr; /* Force single column on small screens */
  }
}

.portfolio-card-category {
  display: flex;
  border: 1px solid #e3e3e3;
  flex-direction: column; /* Arrange items vertically */
  align-items: flex-start; /* Align items to the start */
  padding: 24px;
  background-color: #f2f2f2;
  border-radius: 12px; /* Add some rounded corners */
  /* margin-top: 24px; */ /* Remove margin-top as gap is used in grid */
  transition: all 0.3s cubic-bezier(0.24, 0.52, 0.17, 1); 
  text-align: left;
}

.portfolio-card-category:hover {
  background-color: #edecec;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}


.portfolio-card-category .banner {
  width: 100%;
  aspect-ratio: 16/10.5; /* Set a fixed aspect ratio instead of fixed height */
  object-fit: cover; /* Cover the area while maintaining aspect ratio */
  margin-bottom: 24px; /* Space between banner and text */
  filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25));
}

.portfolio-card-category h3 {
  margin: 0 0 8px 0;
}

.portfolio-card-category h2 {
  margin: 0 0 8px 0;
}

.portfolio-card-category p {
  margin: 0;
  color: #555;
}

.alt-card-category {
  border: 1px solid #e3e3e3;  
  margin: 0;
  padding: 0;
  display: flex;
  text-align: left;
  flex-direction: column; /* Arrange items vertically */
  align-items: flex-start; /* Align items to the start */
  background-color: #f2f2f2;
  border-radius: 12px;
  /* margin-top: 24px; */ /* Remove margin-top as gap is used in grid */
}

.alt-card-category:hover {
  background-color: #edecec;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.alt-card-category .banneralt {
  width: 100%;
  object-fit: cover; /* Cover the area while maintaining aspect ratio */
  border-radius: 12px 12px 0 0;
}

.alt-card-category h3 {
  margin: 0 0 8px 0;
}

.alt-card-category h2 {
  margin: 0 0 8px 0;
}

.alt-card-category p {
  margin: 0;
  color: #555;
}




/* --- Portfolio Gallery Display Styles (Revised for Aspect Ratio Preservation) --- */

.portfolio-display-container {
  column-count: 3;
  column-gap: 8px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  background: none;
  box-shadow: none;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 8px;
  background: none;
  border: none;
  display: block;
  cursor: pointer;
}

.portfolio-image-wrapper {
  /* Existing styles */
  aspect-ratio: var(--aspect-ratio, 1);
  width: 100%;
  overflow: hidden;
  position: relative; /* Essential for positioning the throbber */
  background-color: #f0f0f0; /* Optional: light background while loading */
  display: flex; /* Use flexbox to center the throbber */
  justify-content: center;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.48, 0.18, 0.04, 0.98);


  box-shadow: 0 4px 8px rgba(0, 0, 0, 0);
  border-radius: 8px;
}

.portfolio-image-wrapper:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.189);
  filter: brightness(0.8);  
}

.portfolio-image-wrapper img {
  /* Existing styles */
  position: absolute; /* Keep absolute for precise centering */
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: contain;
  display: block;

  /* Rounded corners on images */
  border: 1px solid inset #000000;

  /* Start hidden and fade in */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.portfolio-image-wrapper img.loaded {
  opacity: 1; /* Show when loaded */
}

/* Throbber spinner styles */
.throbber {
  border: 4px solid #b8b8b8; /* Light grey */
  border-top: 4px solid #007367; /* Your brand color */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite; /* Animation */
  position: absolute; /* Position it in the center */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; /* Ensure it's above the image initially */
}

/* Hide throbber when image is loaded */
.portfolio-image-wrapper.loaded .throbber {
  display: none;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.portfolio-item-caption {
  display: none;
  text-align: left;
  font-size: 12px;
  color: #555;
}

@media (max-width: 600px) {
  .portfolio-display-container {
    column-count: 2;
  }
}

@media (max-width: 400px) {
  .portfolio-display-container {
    column-count: 2; /* Maintain two columns even on the smallest screens */
  }
}

.back-button {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 56px;
  max-width: 56px;
  padding: 12px;
}

.ev-wrapper {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: stretch;
  position: fixed;
  z-index: -1;
}

.ev-bar {
  --_color-1: #ff7325;
  --_color-2: #f4dc14;
  --_color-3: #ff4cc8;

  flex: var(--_width, 1);
  background-image: linear-gradient(
    var(--_color-1),
    var(--_color-2),
    var(--_color-3),
    var(--_color-2),
    var(--_color-1),
    var(--_color-2),
    var(--_color-3),
    var(--_color-2),
    var(--_color-1)
  );
  background-size: 100% 400%;

  animation: ev-lights 10s linear infinite,
    ev-lights--width 12s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
  animation-delay: calc(var(--_spot) * 300ms);
}

.ev-bar.svensk {
  /* Override the custom properties for the .svensk class */
  --_color-1: #29c4d8;
  --_color-2: #f1db11;
  --_color-3: #29c4d8;
}

@keyframes ev-lights {
  from {
    background-position-y: 0%;
  }
  to {
    background-position-y: 200%;
  }
}

@keyframes ev-lights--width {
  0% {
    flex: calc(var(--_width, 1));
  }
  25% {
    flex: calc(var(--_width, 1) + 7);
  }
  50% {
    flex: calc(var(--_width, 1) + 3);
  }
  75% {
    flex: calc(var(--_width, 1) + 11);
  }
  100% {
    flex: calc(var(--_width, 1));
  }
}

/*
* The following selectors define the specific animation properties
* for each bar to create the "sides to center" effect.
* We'll need to define the --_spot and --_width variables for each bar
* to control its unique animation start time and size.
*/

.ev-bar:nth-of-type(1) { --_spot: 1; --_width: 1; animation-delay: 0s; }
.ev-bar:nth-of-type(2) { --_spot: 2; --_width: 2; animation-delay: 0.1s; }
.ev-bar:nth-of-type(3) { --_spot: 3; --_width: 3; animation-delay: 0.3s; }
.ev-bar:nth-of-type(4) { --_spot: 4; --_width: 4; animation-delay: 0.2s; }
.ev-bar:nth-of-type(5) { --_spot: 5; --_width: 3; animation-delay: 0.5s; }
.ev-bar:nth-of-type(6) { --_spot: 6; --_width: 0.5; animation-delay: 0.8s; }
.ev-bar:nth-of-type(7) { --_spot: 7; --_width: 1; animation-delay: 1.1s; }
.ev-bar:nth-of-type(8) { --_spot: 8; --_width: 1.5; animation-delay: 1.3s; }
.ev-bar:nth-of-type(9) { --_spot: 9; --_width: 2.5; animation-delay: 2s; }
.ev-bar:nth-of-type(10) { --_spot: 10; --_width: 3; animation-delay: 1.7s; }
.ev-bar:nth-of-type(11) { --_spot: 11; --_width: 3; animation-delay: 1.3s; }
.ev-bar:nth-of-type(12) { --_spot: 12; --_width: 2; animation-delay: 1.6s; }
.ev-bar:nth-of-type(13) { --_spot: 13; --_width: 4; animation-delay: 1.0s; }
.ev-bar:nth-of-type(14) { --_spot: 14; --_width: 3; animation-delay: 1.2s; }
.ev-bar:nth-of-type(15) { --_spot: 15; --_width: 4; animation-delay: 0.9s; }
.ev-bar:nth-of-type(16) { --_spot: 16; --_width: 2; animation-delay: 0.7s; }
.ev-bar:nth-of-type(17) { --_spot: 17; --_width: 3; animation-delay: 0.5s; }
.ev-bar:nth-of-type(18) { --_spot: 18; --_width: 4; animation-delay: 0.4s; }

@keyframes modalFadeIn {
  from {
    opacity: 0.9;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


@keyframes modalBackdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  animation: modalBackdropFadeIn 0.3s ease-out forwards;
}

.modal.hidden { 
  display: none;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  opacity: 0;
  animation: modalFadeIn 0.4s cubic-bezier(0.25, 1.2, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.modal-close {
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  color: #000;
  cursor: pointer;
  width: 24px;
  height: 24px;
  padding: 16px;
  border-radius: 48px;
  background-color: #F1DB11;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);  

}

.modal-close:hover {
  transform: scale(1.1);
}

@keyframes modalFadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.5); }
}

@keyframes modalBackdropFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Apply when JS adds .closing (keep element in DOM until animation ends) */
.modal.closing {
  animation: modalBackdropFadeOut 0.3s ease-in forwards; /* hides backdrop */
}

.modal-content.closing {
  animation: modalFadeOut 0.4s cubic-bezier(0.25,1.2,0.2,1) forwards;
}

/* Modal header row – spans full width between left & right paddings */
.modal-header {
  z-index: 1001;
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;           /* allows the button to hug the far right */
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0;                /* no extra gap – handled by internal padding */
  pointer-events: none;  /* header itself doesn't block clicks */
  transition: opacity .25s ease, transform .3s cubic-bezier(.15,.27,0,1);   /* smooth hide/show */
}

.modal-header.hide {
  opacity: 0;                  /* fade out */
  pointer-events: none;        /* ignore clicks while hidden */
  transform: translateY(-100%);/* slide fully above the image */
}

/* Caption block on the left */
.caption-container {
  pointer-events: auto;  /* re-enable interaction for inner elements */
  display: flex;
  align-items: center;
  max-width: fit-content;      
  /* width: fit-content;          <-- delete */
  padding: 0 20px;
  padding-right: 16px;
  height: 48px;
  background-color: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  flex: 1 1 auto;      /* consume remaining space */
  min-width: 0;        /* allow flexbox to shrink, so inner text can truncate */
  gap: 8px;

}

#modalCaption {
  flex: 1 1 auto;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;   /* adds … when too long */
}

/* Close button on the far right – now lives directly in the header */
.modal-header .modal-close {
  pointer-events: auto;      /* clickable */
  position: static;          /* no absolute positioning */
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: 12px;
  border-radius: 50%;
  background: #F1DB11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: transform .2s ease;
}
.modal-header .modal-close:hover { transform: scale(1.15); }

/* keep original absolute-positioned rule for other contexts if needed */
.modal.hidden { 
  display: none;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  opacity: 0;
  animation: modalFadeIn 0.4s cubic-bezier(0.25, 1.2, 0.2, 1) forwards;
  animation-delay: 0.1s;
}

.modal-close {
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  color: #000;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
  padding: 16px;
  border-radius: 48px;
  background-color: #F1DB11;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);  
}

.modal-close:hover {
  transform: scale(1.1);
}

.modal-caption {
  z-index: 1002;
  align-items: flex-start;
  overflow: hidden;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  padding: 0 20px;
  display: flex;
  background-color: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 28px;
  top: 24px;
  left: 24px;
  color: #121212;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
}

@keyframes modalFadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.5); }
}

@keyframes modalBackdropFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

/* Apply when JS adds .closing (keep element in DOM until animation ends) */
.modal.closing {
  animation: modalBackdropFadeOut 0.3s ease-in forwards; /* hides backdrop */
}

.modal-content.closing {
  animation: modalFadeOut 0.4s cubic-bezier(0.25,1.2,0.2,1) forwards;
}

/* bottom overlay panel */
.modal-info {
  position: fixed;
  left: 50%;
  bottom: 0;
  width: 420px;
  z-index: 1003;            /* above #imageModal caption+button */
  background: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  padding: 24px;
  transform: translateX(-50%) translateY(100%);   /* center horizontally and keep off-screen when hidden */
  transition: transform .3s cubic-bezier(.15,.27,0,1); 
  min-height: fit-content;
  gap: 12px;
  box-sizing: border-box; 
}

/* Stretch modal info panel on smaller screens */
@media (max-width:600px){
  .modal-info{
    width:100%;             /* fills viewport */
    max-width:100%;         /* guard against overflow */
    left:0;                 /* align to left edge */
    transform:translateY(100%);
  }
  .modal-info.visible{
    transform:translateY(0);
  }
}

/* Regular screens maintain centered position */
@media (min-width: 601px) {
  .modal-info.visible {
    transform: translateX(-50%) translateY(0);  /* Maintain horizontal centering while showing */
  }
}

.modal-info h2 {
  margin: 0;
}

.modal-info p {
  margin: 0;
  color: #848484;

}

/* simple info button style (optional) */
.info-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.info-btn:hover .material-symbols-outlined { color:#555; }

.modal-info-close {
  color: #000;
  cursor: pointer;
  border-radius: 48px;
  width: 100%;
  justify-content: center;
  background-color: #F1DB11;
}

.spacer {
  height: 8px;
}